网站首页  词典首页

请输入您要查询的英文单词:

 

单词 nonblocking
释义

nonblocking

  • 网络非阻塞;非阻塞式;非阻塞赋值
1.
非阻塞
1 非阻塞Nonblocking)体系结构   在这一部分,我将从理论的角度来解释非阻塞体系的结构及其工作原理。
www.blogjava.net
2.
非阻塞式
不能为任何客户端提供I/O 操作的阻塞等待,而必须排他地使用非阻塞式nonblocking)I/O。回顾前面所介绍的非阻塞式I/O, …
www.rritw.com
3.
非阻塞赋值
Verilog HDL中,有两种过程赋值方式,即阻塞赋值(blocking)和非阻塞赋值nonblocking)。阻塞赋值执行时,RHS(right …
zhidao.baidu.com
4.
无阻塞
无阻空间的英语 apparent free... ... ) open-flow capacity: 无阻流量 ) nonblocking: 无阻塞 ) interconnection: 无阻接续 ...
tech.zidian8.com
5.
非等待
...ceive):接收者等待,直到 有效讯息出现 ? 非等待(nonblocking)又称作非同步(asynchronous) ? 等待传送(nonblocking send): …
www.docin.com

例句

释义:
1.
An introduction to nonblocking algorithms: Describes how concurrent algorithms can be implemented without locks, using atomic variables.
非阻塞算法简介:介绍如何使用原子变量而不是锁实现并发算法。
www.ibm.com
2.
As the nonblocking channel is read, it is written into a pipe that is being consumed by a second thread.
当读取非阻塞通道时,把它写到正由第二个线程消费的管道。
www.ibm.com
3.
A nonblocking read makes no guarantee to the caller besides the fact that it won't block.
除了不会阻塞之外,非阻塞读不能给呼叫方任何保证。
www.ibm.com
4.
And best of all, DWR can auto-detect when it's running under Jetty and switch to using Continuations for nonblocking Comet.
最妙的是,当运行在Jetty下时,DWR能够自动检测并切换为使用Contiuations,实现非阻塞Comet。
www.ibm.com
5.
The nonblocking version has several performance advantages over the lock-based version.
非阻塞版本相对于基于锁的版本有几个性能优势。
www.ibm.com
6.
Because nonblocking channels give no indication when a message has been fully read, we are forced to handle this at the protocol layer.
因为当全部读取消息时,非阻塞通道没有给出任何提示,所以强制我们在协议层处理这一情况。
www.ibm.com
7.
Nonblocking algorithms tend to be far more complicated than lock-based ones.
非阻塞算法要比基于锁的算法复杂得多。
www.ibm.com
8.
Channels can be used in a blocking or a nonblocking mode, though of course we will focus on using channels in nonblocking mode.
尽管我们当然将把注意力放在以非阻塞方式使用通道上,但通道可以以阻塞方式或非阻塞方式使用。
www.ibm.com
9.
Nonblocking invocations are useful in designing user interfaces and when service invocations take a lot of time.
非阻塞调用在设计用户界面时以及服务调用非常费时的情况下很有用。
www.ibm.com
10.
In nonblocking mode, the thread will read whatever amount of data is available and return to perform other tasks.
在非阻塞模式中,线程将读取已经可用的数据(不论多少),然后返回执行其它任务。
www.ibm.com
1.
Data is read from the channel in a nonblocking fashion and written to the Client object.
数据是以非阻塞方式从通道中读取的,并被写到Client对象中。
www.ibm.com
2.
The createPipe subroutine is a simple method to create a nonblocking read from a pipe using threads.
createPipe子例程是从使用线程的管道中进行无阻塞读取的简单方法。
www.ibm.com
3.
In Chapter 2, we focus on the performance analysis of internal nonblocking packet switches with Bernoulli traffic arrival model.
在第2章中,研究在贝努里信元到达模型下,内部无阻塞交换机的性能分析。
word.hcbus.com
4.
Nonblocking algorithms are often called optimistic because they proceed with the assumption that there will be no interference.
非阻塞算法通常叫作乐观算法,因为它们继续操作的假设是不会有干扰。
www.ibm.com
5.
If you dive into the JVM and OS, you'll find nonblocking algorithms everywhere.
如果深入JVM和操作系统,会发现非阻塞算法无处不在。
www.ibm.com
6.
You can provide a nonblocking API to the client so it can hand over the request to the SOAP engine and continue with the other work.
你可以为客户端提供一个nonblockingAPI,这样它就可以把请求传递给SOAP引擎,继续做其他工作。
www.infoq.com
7.
Nonblocking reads and writes are essential to NIO, but they don't come trouble free.
对于NIO,非阻塞读写是必要的,但它们并不是完全没有麻烦。
www.ibm.com
8.
Many articles followed, explaining the basics of NIO and how to leverage the benefits of nonblocking channels.
下面的许多文章阐述了NIO的基本知识及如何利用非阻塞通道的好处。
www.ibm.com
9.
Developing nonblocking algorithms is a rather specialized discipline, and it can be extremely difficult to prove their correctness.
开发非阻塞算法是相当专业的训练,而且要证明算法的正确也极为困难。
www.ibm.com
10.
Thus it can be avoided efficiently to misuse blocking and nonblocking assignments.
才可以有效地避免阻塞与非阻塞过程赋值的误用。
www.juyy.net
1.
Nonblocking algorithms are used extensively at the operating system and JVM level for tasks such as thread and process scheduling.
无阻塞算法被广泛用于操作系统和JVM级别,进行诸如线程和进程调度等任务。
www.ibm.com
2.
On the other hand, a nonblocking read might read more than enough, forcing an overhead buffer for the next call.
另外,非阻塞读可能读取到太多的消息,从而强制为下一个呼叫准备一个额外的缓冲区。
www.ibm.com
3.
To make the channel nonblocking, we call configureBlockingMethod(false) on the channel, as shown here
为了使通道成为非阻塞的,我们在通道上调用configureBlockingMethod(false),如下所示
www.ibm.com
随便看

 

英汉双解词典包含2704715条英汉词条,基本涵盖了全部常用单词的翻译及用法,是英语学习的有利工具。

 

Copyright © 2004-2022 Newdu.com All Rights Reserved
更新时间:2024/11/9 9:23:06