• 线程模式影响组件运行性能资源消耗重要因素

    Thread model was one of the important factors that affect the performance and the consumption of resources of its component.

    youdao

  • 根据以上线程模式描述要想保证程序界面响应能力,关键不能阻塞UI线程

    Because of the single thread model described above, it's vital to the responsiveness of your application's UI that you do not block the UI thread.

    youdao

  • 公司我们使用无线程方法因为没有足够资源人力处理线程模式

    In my company, we went for the non threaded way, because I just don't have the resources and disposition to cope with the threaded.

    youdao

  • 不幸的是,上面的代码违背UI线程线程模式Android UItoolkit不是线程安全的,所以对UI的操作应该主ui线程中进行。

    Unfortunately, it violates the single-threaded model for the UI: the Android UI toolkit is not thread-safe and must always be manipulated on the UI thread.

    youdao

  • 对于服务器模式运行很多线程环境有利,因为这种环境必要可以在多个连接使用不同的优化目标

    This allows environments that run with many threads in server mode to have the benefit of running with distinct optimization goals across the multiple connections, if desired.

    youdao

  • 因为根据设计线程安全的,创建之后可以把它存在一个公共静态最终变量中,或者包装实例模式以供以后访问

    Since it is thread safe by design, you might cache it in a public static final variable, or wrap it in a singleton pattern after creation for later access.

    youdao

  • 非阻塞模式中,线程读取已经可用数据(不论多少),然后返回执行其它任务

    In nonblocking mode, the thread will read whatever amount of data is available and return to perform other tasks.

    youdao

  • 现有几个线程实现可以好地模式一起使用。

    Several thread pool implementations exist that will work fine with this model.

    youdao

  • 实例中,没有针对其他与此模式相关问题保持同步确保线程安全

    In this example, I don't focus on other issues related to this pattern, such as synchronization to make it thread safe.

    youdao

  • 两种编程模式中,线程可以不同应用程序重用

    In both programming models, threads can be reused by different applications.

    youdao

  • 因为上面介绍的模式非常有效,所以可以通过连接附加线程队列进行扩展相当简单的。

    Because the pattern demonstrated above is so effective, it is relatively simple to extend it by chaining additional thread pools with queues.

    youdao

  • 最简单的使用模式便是作为一个线程安全的队列,并且队列阻塞消费者

    In its simplest mode it ACTS as a thread-safe queue in which consumers are blocked while the queue is empty.

    youdao

  • 细粒度组件趋向同一执行线程交互从而减少通信量较多交互模式开销

    Fine-grained components also tend to interact on the same thread of execution, which reduces the overhead of a chatty interaction pattern.

    youdao

  • 显示线程内核模式跟踪

    It displays the kernel mode stack trace of the thread.

    youdao

  • 这种模式下,将依次完成各个处理过程,并将结果统一返回消费线程

    This completes all the processing at once and then turns over all the resources to the consumer thread.

    youdao

  • 阻塞模式中,线程在读时阻塞,一直到读或写操作彻底完成

    In blocking mode, a thread will block on a read or a write until the operation is completely finished.

    youdao

  • 每个线程逻辑遵循执行 >等待周期 > 执行 > 等待下一周期……模式

    The logic for each thread follows the model of execute>wait for next period>execute>wait for next period, and so on.

    youdao

  • 基于新的执行注释用户清楚地规定网络处理器中的调函数应该线程模式执行还是线程模式执行。

    Based on the new execution annotations the user can define if the call back methods of his network handler should be executed in single threaded mode or multithreaded mode.

    youdao

  • 工作站模式/并发执行,并发GC-工作流程与非并发GC基本相似不会整个清理周期起其他托管线程

    Workstation/Concurrency ON, also called Concurrent GC. – Like in the previous scenario, but the GC does not suspend the managed threads for the entire period when it reclaims unused memory.

    youdao

  • 虽然许多很好的联机资源详细说明线程API本文尝试提供一些实际示例,以说明一些常见线程使用模式

    There are many great resources online that document the threading API, but this article attempts to provide practicle examples of common threading usage patterns.

    youdao

  • 另外由于分数更新逻辑遵循check - then -act模式,因此可能出现两个线程争夺”更新最高分,从而导致难以预料结果

    Further, because the score-updating logic follows the check-then-act pattern, it is possible for two threads to "race" to update the high score, with unpredictable results.

    youdao

  • Python中使用线程时,这个模式一种常见并且推荐使用方式

    This pattern is a very common and recommended way to use threads with Python. The steps are described as follows.

    youdao

  • Participant模式可以简单方面转换复杂的方面,负责事务管理线程安全安全性等方面

    The Participant pattern lets you make the transition from simple aspects to more complex ones such as those for transaction management, thread safety, security, etc.

    youdao

  • 用来对这些线程进行初始化销毁代码都在 #ifdef INTR_SIMULATION 之下,这样普通模式编译代码不会影响驱动程序对象发行版本

    The code to initialize and destroy the threads will be under #ifdef INTR_SIMULATION, so that under normal compilation this code will not affect the release version of the driver object.

    youdao

  • 授权支持可以处理各种授权方式不管使用Windows验证线程安全主体、ASP.NET基于角色安全模式或者自己自定义的。

    Authorization Support: Handled a variety of ways whether you use Windows authentication, thread principals, ASP.NET role-based security or your own.

    youdao

  • 操作系统检测到一个线程空闲时,硬件控制权交还给系统管理程序,这会使线程进入 nap模式

    The way it works is that the OS detects when a thread is idle and then gives control of the hardware back to the hypervisor, which puts the thread into nap mode.

    youdao

  • 如果多个箭头显示环形请求模式由于它们正在相互等候其它线程释放锁,所以线程彼此阻止运行—结果形成一个死

    If multiple arrows show a circular lock-request patternthreads prevent each other from running because they are waiting for each other to release a lockthen you have a deadlock.

    youdao

  • 尽管这个基本模式比较简单可以通过队列线程连接在一起,以便将这个模式用于解决各种各样问题

    While this basic pattern is relatively simple, it can be used to solve a wide number of problems by chaining queues and thread pools together.

    youdao

  • 这种模式很多行业运用出版线信息工作者等等甚至博客)!

    This model can be applied to many businesses, from publishing to online apps to information workers and more ( even blogging!).

    youdao

  • 这种模式很多行业运用出版线信息工作者等等甚至博客)!

    This model can be applied to many businesses, from publishing to online apps to information workers and more ( even blogging!).

    youdao

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

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

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