Examples with "inlinear" and their translation in Engels
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
El optimizador es importante porque permite escribir código claro y lindo, y que el código que se ejecute sea eficiente sin que uno se preocupe por inlinear las optimizaciones obvias (y las no tan obvias).
The optimizer is important because it allows you to write clear and nice code, and the code is run efficiently without you worrying about inlining the obvious optimizations (and the not so obvious one).
Otro detalle importante es que si la función es sencilla el compilador de Racket la puede inlinear.
Another important detail is that if the function is simple, the Racket compiler can inline it.
Andere resultaten
Algunas funciones tienen dos versiones, una para ejecutar y otra para enlinear.
Some functions have two versions, one for running and one for inlining.
Las lambdas se inlinean, así que queda algo parecido a un loop unrolling.
The lambdas are inlined, so the final code looks similar to a loop unrolling.
Cuando tiene una imagen más pequeña que el límite definido para el inlineado, normalmente se rellena automáticamente.
When you have an image smaller than your defined limit for inlining, it normally gets inlined automatically.
Pero cuando el compilador de Racket puede actuar ormap ya está inlineada y la estructura que ve el optimizador es más complicada.
But when the Racket compiler can act, ormap is already inlined and the structure that the optimizer sees is more complicated.
Para desactivar completamente el inlineado de la imagen, establece este valor en -1.
To completely disable image inlining, set this value to -1.
Estos pasos incluyen inlineado de funciones y propagación de constantes, por lo que pueden aparecer expresiones que serían ridículas en el código fuente como (box?
These steps include functions inlining and constant propagation, so expressions that would be ridiculous in the source code as (box?
? inline: Forzar el inlineado de una imagen (data-uri)
? inline: Force inlining an image (data-uri)
El inlineado solo se deshabilitará exactamente para esta importación, así que si importas la imagen por segunda vez sin la opción? url, entonces se volverá al inlineado si está por debajo de su límite.
The inlining will only get disabled for exactly this import, so if you import the image a second time without the? url option, it will then get inlined again if it is below your limit.
Si no quieres que un archivo pequeño específico sea inlineado, puedes usar el parámetro de consulta? url para obtener siempre una URL de imagen, sin importar el límite de inlineado.
If you don't want a specific small file to get inlined, you can use the? url query param to always get back an image URL, regardless of the inline limit.
En realidad en este caso primero inlinea ormap y después inlinea las {lambda...}, así que en el código que se ejecuta no están estas closures y ni siquiera aparecen como llamados a funciones porque el código ya está inlineado.
Actually, in this case the compiler inlines first ormap and then it inlines the {lambda...}, so in the code that is executed these closures don't appear even as function calls because the code is already inlined.
Ignoramos la versión para enlinear.
We ignore the inlining version.