What is the translation of " BYTECODE " in English?

Noun
bytecode
código de bytes

Examples of using Bytecode in Spanish and their translations into English

{-}
  • Colloquial category close
  • Official category close
Bytecode Lua y Máquina Virtual.
Lua bytecode and virtual machine.
Archivo.n Neko Bytecode File.
N file extension Neko Bytecode File.
Parrot bytecode es independiente de la plataforma.
Parrot bytecode is platform independent.
El archivo DCF es un D-LIB Generic Bytecode.
DCF file is a D-LIB Generic Bytecode.
Identificar bytecode que es ejecutado frecuentemente.
Identify bytecode that is executed frequently.
Combinations with other parts of speech
Usage with verbs
Archivo. pbj Pixel Bender Bytecode File.
Pbj file extension Pixel Bender Bytecode File.
En ese caso, el bytecode de Python y la máquina virtual se cargan con la página.
In that case the Python bytecode and the virtual machine are loaded with the page.
Independencia de la plataforma(por ejemplo el bytecode de Java).
Platform independence(Java's byte code, for example).
Esto es solamente el data bytecode enviado junto con la solicitud.
This is just the bytecode“data” sent along with the request.
Python bytecode puede ser ejecutado por una máquina virtual que reside en el navegador.
Python bytecode can be run by a virtual machine that resides in the browser.
El contenido de este fichero es independiente de la plataforma y se conoce como Bytecode.
The content of this file is platform-independent and is known as Bytecode.
La JVM es ejecutada sobre el Sistema Operativo,interpreta el bytecode, y ejecuta el código en el sistema operativo.
The JVM runtime sits on top of the Operative System(OS),interprets the bytecode, and executes it on the operative system.
Bytecode cache almacena código de PHP recopilado así la siguiente vez cuando se utiliza el paso de recopilación puede ser omitido.
Bytecode cache stores compiled PHP code so that the next time it is used the compilation step can be skipped.
El curso también aborda la máquina virtual Lua yenseña cómo entender el bytecode que sustenta el lenguaje.
The course also tackles the Lua virtual machine andteaches how to understand the bytecode underpinning the language.
Por ejemplo, Common Lisp puede ser compilado a Java bytecode, que es interpretado por la máquina virtual de Java; a código C, que se compila a código máquina nativo; o es compilado directamente a código nativo.
For example, Common lisp can be compiled to Java bytecode(then interpreted by the Java virtual machine), C code(then compiled to native machine code), or directly to native code.
Esto confiere la eficiencia de ejecutar el código nativo, al costo de tiempo de inicio yde un uso creciente de la memoria cuando el bytecode o el AST es compilado por primera vez.
This confers the efficiency of running native code, at the cost of startup time andincreased memory use when the bytecode or AST is first compiled.
El bytecode de Java Card gestionado por la máquina virtual de Java Card es un subconjunto funcional de Java(Java 2 Standard Edition) aunque utiliza una codificación diferente optimizada para ocupar menos espacio.
Java Card bytecode run by the Java Card Virtual Machine is a functional subset of Java 2 bytecode run by a standard Java Virtual Machine but with a different encoding to optimize for size.
Esto incluye descargar archivos jar o de clases,la generación de bytecode desde fuentes descargadas, y la ejecución de scripts de shell.
This includes downloading jar or class files,generation of bytecode from downloaded sources, and execution shell scripts.
Una notable excepción a esto es Java, que utiliza un sistema operativo independiente de la máquina virtual para cada código compilado,conocido en el mundo de Java como bytecode.
A notable exception to this is Java, which uses an operating system independent virtual machine for its compiled code,known in the world of Java as bytecode.
Para ahorrar espacio, dos grandes tablas necesarias para los depuradores simbólicos son representadas como instrucciones bytecode para máquinas de estado finito simples, de propósito especial.
To save space, two large tables needed by symbolic debuggers are represented as byte-coded instructions for simple, special-purpose finite state machines.
Por ejemplo, el Emacs Lisp es compilado a bytecode, que es una representación altamente comprimida y optimizada del código fuente del Lisp, pero no es código de máquina y por lo tanto no está atado a cualquier hardware particular.
For example, Emacs Lisp is compiled to bytecode, which is a highly compressed and optimized representation of the Lisp source, but is not machine code and therefore not tied to any particular hardware.
Magik tiene algunas similitudes con Smalltalk en términos de características del lenguaje y arquitectura:el lenguaje Magik se compila en bytecode que es interpretado por la Máquina virtual de Magik.
Magik itself shares some similarities with Smalltalk in terms of its language features and its architecture:the Magik language is compiled into byte codes interpreted by the Magik virtual machine.
Como una ventaja sobre el bytecode, el AST mantiene la estructura y las relaciones globales del programa entre las sentencias(que se pierden en una representación de bytecode), y proporciona una representación más compacta. Así, el AST se ha propuesto como un mejor formato intermedio para los compiladores justo a tiempo que el bytecode..
As an advantage over bytecode, the AST keeps the global program structure and relations between statements(which is lost in a bytecode representation), and when compressed provides a more compact representation.
Esperamos que ahora comprenda un poco más sobrela WordPress cache y las cuatro formas distintas que puede encontrar en Kinsta: bytecode caching, object caching, page caching, y CDN caching.
Hopefully, now you understand a little more about WordPress caching andthe four different types you will run into on a regular basis here at Kinsta: bytecode caching, object caching, page caching, and CDN caching.
Hasta la versión 4.4.3 Android utiliza Dalvik como máquina virtual con la compilación justo a tiempo(JIT) para ejecutar Dalvik dex-code(Dalvik ejecutable),que es una traducción de Java bytecode.
Until version 5.0 when ART took over, Android previously used Dalvik as a process virtual machine with trace-based just-in-time(JIT) compilation to run Dalvik"dex-code"(Dalvik Executable),which is usually translated from the Java bytecode.
La implementación de Sun está disponible bajo de una licencia BSD. El código Forth del Open Firmware puede ser compilado en forma de FCode, un bytecode que es independiente de los detalles de la arquitectura de computador en la que se ejecuta, tales como el conjunto de instrucciones y la jerarquía de memoria.
Open Firmware Forth Code may be compiled into FCode, a bytecode which is independent of computer architecture details such as the instruction set and memory hierarchy.
Durante el proceso de carga de las clases Java de la JVM,un agente basado en Java que se integra en el proceso de carga de la clase que es capaz de interceptar y modificar el Bytecode de Java de las clases cargadas.
During the Java class loading process of the JVM,a Java-based agent is integrated into the class loading process which is able to intercept and modify the Java Bytecode of loaded classes.
En informática, Compilación anticipada(AOT por sus siglas en inglés, ahead-of-time) es el acto de compilar un lenguaje de programación de alto nivel como C o C++, oun lenguaje intermedio como Java bytecode o el Common Intermediate Language(CIL) de. NET, a un código de máquina nativo(dependiente del sistema) con la intención de ejecutar el archivo binario resultante nativamente.
In computer science, ahead-of-time compilation(AOT compilation) is the act of compiling a higher-level programming language such as C or C++, oran intermediate representation such as Java bytecode or. NET Framework Common Intermediate Language(CIL) code, into a native(system-dependent) machine code so that the resulting binary file can execute natively.
Tomando ventaja de la compilación nativa mediante la producción de una representación ejecutable binaria del código que un procesador puede entender directamente yejecutar sin la sobrecarga de ejecutar bytecode en una máquina virtual VM.
Taking advantage of native compilation by producing a binary executable representation of the code that a processor can directly understand andexecute without the overhead of running bytecode in a virtual machine VM.
El software multiplataforma puede dividirse en dos grandes tipos o clases: uno requiere una compilación individual para cada plataforma que le da soporte, y el otro se puede ejecutar directamente en cualquier plataforma sin preparación especial,por ejemplo, el software escrito en un lenguaje interpretado o bytecode precompilado portable para los cuales los intérpretes o paquetes en tiempo de ejecución son componentes comunes o estándar de todas las plataformas.
Cross-platform software may be divided into two types; one requires individual building or compilation for each platform that it supports, and the other one can be directly run on any platform without special preparation, e.g.,software written in an interpreted language or pre-compiled portable bytecode for which the interpreters or run-time packages are common or standard components of all platforms.
Results: 121, Time: 0.0289

How to use "bytecode" in a Spanish sentence

Norma pública sexual, bytecode con Tribunal.
Decrypt the bytecode for Beyluxe free.
The loaded bytecode doesn't forge pointers.
Karume, NFT and bytecode like this.
The bytecode evaluator interprets this bytecode.
It’s using bytecode compiler, any ideas?
This contains the bytecode interpreter itself.
Decrypt the bytecode with 128-bit key.
The PVM interprets the bytecode line-by-line.
Sending bytecode taken directly from JVM.

How to use "bytecode" in an English sentence

Thus the following bytecode cannot be executed.
the same way as for bytecode procedures.
It’s using bytecode compiler, any ideas?
Python uses the bytecode version if any.
Decode the bytecode for Instantbird free.
WebAssembly is basically bytecode for the Web.
function into the dispatcher bytecode cache.
Encrypt the bytecode for performing asymmetric encryption.
Decode the bytecode for help file.
Decrypt the bytecode with 128-bit key.
Show more

Top dictionary queries

Spanish - English