• As a result, the allocation of a sufficiently large object can fail if no free chunk of memory is large enough to satisfy the request.

    结果如果没有足够自由内存能够满足请求的需要,则分配一个很大对象失败

    youdao

  • In this case, the JVM tuning resulted in varying improvements for the three run time modes due to the unique object allocation patterns associated with each.

    例中jvm三种运行模式带来不同程度改善因为它们分别采用所特有对象分配模式

    youdao

  • Improve the VM performance especially for object allocation and method calls.

    完善虚拟性能尤其是对象分配方法调用方面。

    youdao

  • If an object is reference rich, it puts pressure on both allocation and collection.

    如果一个对象引用了太多其他对象,分配收集增加压力

    youdao

  • One is smaller and is automatically used for large object allocation.

    其中一个较小,会自动用于大型对象的分配。

    youdao

  • The most likely type is a memory problem, such as memory leak, heap fragmentation, or large object allocation.

    最有可能类型内存问题内存泄漏碎片或者对象分配

    youdao

  • In that case, lazy sweep spends a long time on a single object allocation.

    这种情况里延迟清理一个单独对象的分配上耗费时间

    youdao

  • This results in a "flat heap", where the entire heap space is available for transient object allocation rather than just the nursery space.

    导致一个扁平”,其中整个空间(而不只是保育空间)用于临时对象分配

    youdao

  • If the amount of free space available in the small object area is much greater than the size of the allocation request and yet the request can not be satisfied, the heap is fragmented.

    如果对象区域中的可用自由空间远远大于分配请求大小但是还无法满足请求,表明堆中都碎片。

    youdao

  • To provide that information, it is necessary to capture allocation stack traces for every object allocation, which is very expensive and is also not available in most formats of memory dumps.

    提供信息需要每个对象分配捕获分配堆栈跟踪开销很大并且许多格式内存转储中不可用。

    youdao

  • This "optimization" often does not deliver the expected savings; object allocation is cheaper than many give it credit for.

    优化通常带来预期好处对象分配很多人期望的便宜。

    youdao

  • The trigger for a GC is usually an allocation failure - this occurs when the allocation of an object to the JVM heap fails due to insufficient available space.

    GC触发器通常分配失败。分配失败由于可用空间不足,无法将一个对象分配jvm

    youdao

  • The aim of the GC is to clear up the JVM heap of any objects that are no longer required, thus providing enough space for the object that previously failed allocation.

    GC目标清理不再需要对象JVM从而此前分配失败对象提供足够空间

    youdao

  • If we don't need to do a GC, allocation is 1 moving a pointer forward and 2 clearing the memory for the new object.

    如果我们需要进行GC分配就是1指针前移2对象清除内存

    youdao

  • But the object requesting allocation space was also quite large.

    要求分配空间对象相当

    youdao

  • This entry lets us know that there was an allocation failure, which presents itself when there is not enough contiguous space in the heap to allocate the object.

    通过这个条目我们能够知道一个分配失败heap内没有足够连续空间可以分配对象时,就会发生分配失败。

    youdao

  • When analyzing native_stderr.log, we found that the GC cycles were fine, and there were no memory issues, such as memory leak, heap fragmentation, and large object allocation.

    分析native_stderr . log时,我们发现垃圾收集周期没有问题并且存在内存问题,内存泄漏碎片对象分配

    youdao

  • Benchmark object allocation and object reuse.

    基准对象分配对象重用

    youdao

  • To locate object allocation line from the object information

    对象信息定位对象分配

    youdao

  • The LTMemory class represents an area of memory where the time to instantiate an object is the combination of a fixed allocation time and a variable initialisation time.

    LTMemory表示这样内存域,在这里实例对象时间等于固定分配时间加上不定的初始化时间。

    youdao

  • Means that the object allocation routine completed unsuccessfully and an OutOfMemoryError will be thrown.

    表示对象分配例程已成功完成并且抛出Out Of MemoryError

    youdao

  • However, because of how it lays out objects in the heap, the gencon policy enables much faster object allocation and faster object access.

    但是由于gencon策略中放置对象特定方式,策略支持更快对象分配更快的对象访问。

    youdao

  • If an object created by a thread needs to do allocation internally, you must pass a reference to the thread itself to the object so that the allocate methods can be called when needed.

    如果线程创建对象需要在内部执行分配必须线程本身引用传递对象以便需要能够调用allocate方法

    youdao

  • Subpool: Speeds up object allocation on systems with very large Numbers of processors.

    subpool:加速处理器系统对象分配

    youdao

  • Part 1 examines object allocation; Part 2 details garbage collection; and Part 3 explains how to interpret verbosegc and how some of the command-line parameters work.

    第1部分讨论了对象地址分配第2部分详细描述垃圾收集第3部分描述了如何解释verbosegc以及如何使用其中一些命令行参数。

    youdao

  • If the large-object section is filled and another large object requests allocation, the object is placed on the other main section of the heap.

    如果大型对象部分且有一个大型对象请求分配,那么这个对象就放在heap另一个主要部分上。

    youdao

  • When using an object pool, the allocation, initialization, collection, and finalization only occur once, reducing both the memory usage and the processing time that is required.

    使用对象时,分配初始化回收终结发生一次,从而减少内存使用所需处理时间

    youdao

  • On the other hand, if the test code does any object allocation at all (and nearly all code does), it's going to create garbage, and eventually, the garbage collector is going to have to run.

    另一方面如果测试代码进行对象分配工作(差不多所有的代码都要这样),那么垃圾收集器肯定运行。

    youdao

  • The first ratio is the normal area of the heap (80 percent used for normal processing), and the second is what we have defined for the large objects (20 percent for large-object allocation).

    第一比率heap常规区域(80%用于常规处理),第二个比率是我们大型对象分配heap 段(20% 分配给大型对象)。

    youdao

  • On my desktop machine, one million iterations takes about 12 seconds to complete. The pooling code avoids the allocation of the MyClass object within the loop

    桌面计算机上,一百万次迭代需要大约12秒钟才能完成

    youdao

$firstVoiceSent
- 来自原声例句
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定
小调查
请问您想要如何调整此模块?

感谢您的反馈,我们会尽快进行适当修改!
进来说说原因吧 确定