• 为了达到良好的可扩充性,系统采用了线程结构吸收软件流水思想使用了组播技术

    To get high scalability, the DSM system USES multi-thread technology, multicast technology and absorbs the software pipeline ideas.

    youdao

  • 这个跟踪开始一些内部结构组成,比如线程对象全局引用

    This tracing starts with the root set, which consists of internal structures such as thread stacks and global references to objects.

    youdao

  • 但是这种数据结构不能使删除暂挂不再相关线程变得容易。

    But this data structure does nothing to make it easy to remove or suspend threads that are no longer relevant.

    youdao

  • 除了空间之外,每个线程都需要一些本机内存用于线程本地存储内存数据结构

    In addition to stack space, each thread requires some native memory for thread-local storage and internal data structures.

    youdao

  • VM对象包含了表示当前线程执行数据结构例如当前的绑定以及异常

    The VM object contains data structures for the very specific thread execution, like for instance current blocks, bindings, exceptions, etc.

    youdao

  • 可以考虑使用线程安全容器—一个保证用户操作线程安全的数据结构

    Consider a thread-safe container class - a data structure that guarantees thread safety to its clients.

    youdao

  • 某些方面第一卷入使用OOP(面向对象编程方法)、结构化编程线程概念上转变

    In some ways, this is like the conceptual shift involved in using OOP, or functional programming, or multi-threading, for the first time.

    youdao

  • 锁定互斥对象线程能够存取复杂数据结构不必担心同时其它线程干扰

    The thread in this image that has the mutex locked gets to access the complex data structure without worrying about having other threads mess with it at the same time.

    youdao

  • 列表添加元素甚至不必修改现有列表结构,就可以让其他线程自由地

    As long as you append to the front of the list, you won't even have to touch the existing list structure, allowing other threads to iterate through it freely.

    youdao

  • 然而即使擅长于线程逻辑,在获取数据结构元素项时,仍然有些复杂

    Yet even the act of retrieving an item can be rather complex if you try to be too clever with multi-threading logic.

    youdao

  • 内核线程读取这个全局结构根据这个全局结构中的元素生成中断

    Note: the kernel thread will read the global structure, and interrupts will be generated based on the elements in the global structure.

    youdao

  • 可以想象一下,如果能够基于每一个线程堆栈结构及其对象重建反向工程生成转储文件发生状态。

    You can imagine the power of being able to reconstruct or reverse-engineer what was happening at the time of the dump based on what was happening in each thread stack frame and on which objects.

    youdao

  • 接下来对于另一个线程DatamineThread几乎复制完全相同结构

    Next, you almost copy the exact same structure for the next thread pool class, DatamineThread.

    youdao

  • 如果no -os线程变量初始化变量结构中已经设置,对C_Initialize调用将会失败

    If the no-os threads argument is set in the initialize arguments structure, the call to C_Initialize will fail.

    youdao

  • 结构中,只需 /topics/ 后面输入某个内容即可容易收集讨论线程

    Within this structure, it's easy to pull up discussion threads just by typing something after /topics/.

    youdao

  • 可以访问进程线程用户mst结构中的特定字段

    You can access specific fields from the process, thread, user and MST structures.

    youdao

  • 数据结构要比传统shell更加强大语法简单易懂,其底层虚拟引擎支持枚举类型线程所有内容。

    Its data structures are more capable than a traditional shell, it's syntax is familiar, and its underlying virtual engine supports everything from enumerated types to threads.

    youdao

  • 字典可能线程管理更好数据结构

    A dictionary or a class is likely to be a better data structure for thread management. As a quick example, below is a class that can (almost) drop in for the threads list in the examples.

    youdao

  • 这两者都体现了延迟初始特性(因此称为futures)。前者后者则是一个轻量的,但并非“绝对”线程安全结构

    Both support the idea of deferred initialization, also known as futures, the former is a class and the later a lightweight and slightly less safe structure.

    youdao

  • 对于分离容器(Separate Containers)体系结构,为了进行线程测试Tomcat的server . xml中的设置需要作如下调整

    For multithreaded testing for Separate Containers, Settings in Tomcat's server.xml were adjusted as follows.

    youdao

  • 更慢一点儿的数据结构HashMap然后是ThreadLocal(这基本上是一个当前线程作为键特殊列表)。

    The next-fastest data structure is HashMap, followed by ThreadLocal (essentially, a specialized hash table in which the current thread is the key).

    youdao

  • 就是说通过线程锁定和解锁,对于数据结构确保某一时刻只能有一个线程能够访问

    That is, you make sure that only one thread at a time can access a certain data structure by locking and unlocking it.

    youdao

  • 这样允许创建任意复杂数据结构将它作为指针传送给需要这个数据结构进行操作线程

    This allows you to create an arbitrarily complicated data structure for the thread to work on, and pass it in as a single pointer.

    youdao

  • 如果需要一个进程内部线程使用很多那么可以考虑使用自动完成维护语言或者语言结构

    If you need many locks for threads inside a process, consider using a language and language constructs that automatically do a lot of lock maintenance.

    youdao

  • 这种类型无限循环有时由于线程访问共享的不同步数据结构造成的。

    This type of infinite loops can sometimes occur due to multithreaded access into a Shared unsynchronized data structure.

    youdao

  • 本文系列文章的第一篇,讨论如何线程环境设计并发数据结构

    This article, the first in a two-part series, discusses the design of concurrent data structures in a multithreaded environment.

    youdao

  • 释放J VM结构操作gc线程一种安全形式处理这些结构部分更新结构进行操作可能导致不可预测的行为冲突

    The act of releasing JVM structures lets the GC thread process these structures in a safe fashion; reading and writing to partially updated structures can cause unexpected behavior and crashes.

    youdao

  • 主要作用只是展示线程基础结构

    It's mostly just infrastructure for the threading.

    youdao

  • 问题同一时间内一个线程同一数据结构进行了一个修改

    The problem is that we have another thread performing the other modifications to the same data structure effectively at the same time.

    youdao

  • 通过保持较浅层次结构可以锁定最少量对象能够影响大量的需要调整优先级线程

    By keeping lock hierarchies shallow, which translates to locking as few objects as possible, you can affect the maximum number of threads that need to be priority adjusted.

    youdao

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

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

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