
词语导航
基本信息
词语:循环内存
繁体:循環內存
拼音:xún huán nèi cún
英语翻译
【电】 cyclic memory
分词翻译
循环的英语翻译:
cycle; recur; circle; rotate; circulation; repetition; revolution
【计】 DO-loop; for-loop; loop; unwinding
【化】 recirculate
【医】 circuIation; cycle
【经】 cycle; revolving; rotation
内存的英语翻译:
【计】 core storage; core store; EMS memory; internal storage; memory
翻译例句
1. 并采用了循环内存缓冲队列进行了数据的收发控制。
It also USES circulatory memory buffering queue to control the receiving and transmission of data.
2. 因此,垃圾收集器可以回收在每个循环上分配的大多数内存,但它不能回收添加到列表中的数组。
Thus the garbage collector can reclaim most of the memory allocated on each loop, but it can"t reclaim the arrays that are added to the list.
3. 在标题为案例研究3和案例研究4的部分中,讨论了对IBM支持中涉及无限循环的两种不同内存泄漏情况的分析结果。
Analysis results are shown from two different memory leak cases observed in IBM Support involving infinite loops are discussed in sections titled case study 3 and case study 4.
4. 往返用于描述从存储媒介到内存然后回到存储媒介的完整循环。
Round-tripping is the term used to describe a complete cycle, from storage medium into memory and back.
5. 不过,在本例中,我选择在每次循环结束后回收内存。
However, in this case I would much rather reclaim that memory at the end of each loop.
6. 这种特性特别适用于检测死锁、锁竞争、内存泄漏和循环线程。
It"s particularly useful for detecting symptoms of deadlocks, lock contention, memory leaks, and cycling threads.
7. 您还了解了涉及到循环引用的一些常见内存泄漏模式以及应对这些泄漏模式的几种简单方式。
You"ve seen several common memory leak patterns involving circular references and some easy ways to work around them.
8. 解析大量数据或可能隐藏无限次循环的脚本都趋于消耗大量内存。
Scripts that parse a great deal of data or which may be hiding an infinite loop have a tendency to consume large amounts of memory.
9. 机器中的内存数量是有限的,如果这个错误出现在某些循环中,那么系统最终会把内存耗尽。
Since the amount of memory in a machine is finite, if this error occurs in some kind of loop eventually the system will run out of memory.
10. 通过使用内存操作代替文件操作,循环缓冲区使得日志记录的效率更高。
A ring buffer makes logging efficient by using memory operations in place of file operations.
11. 有些内存泄漏是由于程序错误发生的,在存在此类错误的情况下,应用程序代码中的无限循环会分配新的对象,并将其添加到可从程序循环范围外面访问的数据结构中。
Some memory leaks occur due to program errors in which infinite loop in the application code allocates new objects and adds them to a data structure accessible from outside the program loop scope.
12. 虽然通过分析堆转储能够标识内存泄漏数据结构,但是标识无限循环中的内存泄漏代码并不简单。
While it might be possible to identify the memory leaking data structure by analyzing the heap dumps, identifying the memory leaking code which is in a infinite loop is not straightforward.
13. 现在,要从全部共享内存文件读取和打印所有记录,创建一个循环。
Now, to read and print all the records from the entire Shared memory file, create a loop.
14. 案例研究4:由于无限循环导致的内存泄漏示例。
Case study 4: Example of a memory leak due to an infinite loop.
15. 图8中的Suspects选项卡显示了从涉及无限循环的内存泄漏案例中获取的两个堆转储的分析结果。
Figure 8 shows the Suspects TAB from the analysis result of two heap dumps taken from a memory leak case involving an infinite loop.
16. 这个发布还包含许多针对循环、浮点运算和内存分配的性能优化,这使得SciMark2和SPEC JVM 98的Benchmark提高了1.7倍。
The release also includes a number of performance optimizations for loops, floating point operations, and memory allocation which have improved SciMark2 and SPEC JVM98 benchmarks by a factor of 1.7.
17. 将它设为true 可以确保当一个规则更新工作内存中的知识时,最终不会导致对规则重新求值并重新执行规则,也就不会导致无限循环。
Setting it to true ensures that when a rule updates the knowledge in the working memory, you don"t end up with rules being reevaluated and reexecuted, which could then cause an infinite recursion.
18. 她知道必须提供一个解决办法(比如周期性地对服务器进行循环或者逐渐增加堆的大小),直到可以修复这个内存泄漏问题。
She knows she must provide a workaround (such as cycling the servers periodically or increasing the heap sizes) until the memory leak can be fixed.
19. 循环缓冲区是一种用于应用程序的日志记录技术,它可以将相关的数据保存在内存中,而不是每次都将其写入到磁盘上的文件中。
A ring buffer is a logging technique for applications whereby the relevant data to be logged is kept in memory instead of writing it to a file on a disk every time.
20. 这个循环的、内存中的缓冲区称为循环缓冲区。WWw.wENTiYI.CoM
This circular, in-memory buffer is known as ring buffer.
21. 循环缓冲区日志记录由一个固定大小的内存缓冲区构成,进程使用这个内存缓冲区进行日志记录。
Ring buffer logging consists of a fixed size of allocated memory buffer that is used by the process for logging.
22. IE7天真的连接算法要求浏览器在循环过程中反复地为越来越大的字符串拷贝和分配内存。
IE7"s naive concatenation algorithm requires that the browser repeatedly copy and allocate memory for larger and larger strings each time through the loop.
23. 我想知道我还有另一个办法把这种双重转换成一个字符串或字符数组,等等,没有内存分配和收集每次循环运行。
I"m wondering if there is another way I can convert this double into a string or char array, etc, without allocating and collecting memory each time the loop runs.
24. 人们可以通过简单的分配一块内存,小心地维护指向其的指针来实现一个循环缓冲区。
One could simply implement a circular buffer by allocating a chunk of memory, and maintaining pointers.
25. 最后,本文提出了进一步优化的思路:基于超标量思想对算法进行优化,合理配置内存,采用循环展开技术,简化算法等。
Finally, this paper put forward the method to optimize code: write code on the basis of superscale, dispose the memory rationally, adopt circulation-expand technology, simplify the algorithms, etc.
26. 采用优化的循环除算法及开辟内存存储数据方式实现了分数的快速高精度求解。
The paper uses cyclic division algorithm and opening-up-memory data storage to realize rapid high-precis- ion based on fraction.
27. 交换通道可以循环读取文件对象中的行。这是内存操作的效率,快速,代码简单。
An alternate approach to reading lines is to loop over the file object. This is memory efficient, fast, and leads to simpler code.
28. 通过一个8位异或对给定的内存块进行循环解密。
The loop decrypts a given memory block using an 8bit XOR key.
29. 更重要的是, -O3也避免了在内存中保留循环计数器,即使使用原始源。
More importantly, -O3 also avoids keeping the loop counter in memory, even with the original source.
30. 内存中只会生成可见的卡片,顶部的卡片被划走之后,会作为最后一张卡片循环利用。
There are only visible cards in memory, after you drag and removed the top one, it will be reused as the last one.
版权声明:问题易所有作品(图文、音视频)均来源网络,版权归原创作者所有,与本站立场无关,如不慎侵犯了你的权益,请联系我们告知,我们将做删除处理!
