单词 | thread-safe | ||||||||||||||
释义 | thread-safe
更多释义 收起释义 例句释义: 线程安全,线程安全的,执行绪安全 1. It would be nice if thread safety were a binary attribute of a class, and you could just document whether the class is thread-safe or not. 如果线程安全性是类的一个二元属性就好了,您只需要记录类是线程安全还是线程不安全的。 www-128.ibm.com 2. The Office object model is not thread safe, but it is possible to work with multiple threads in an Office solution. Office对象模型不是线程安全的,但可在Office解决方案中用于多个线程。 msdn2.microsoft.com 3. In some situations, the methods you implement might be called from more than one thread, and therefore must be written to be thread-safe. 在某些场合,方法可能会从不止一个线程中被调用,因此这些方法必须是写成线程安全的。 www.cnblogs.com 4. It includes advanced synchronization tools like the Barrier, several thread-safe collections, and a couple different ways to create futures. 此外,它还包含了高级的同步工具,如Barrier,多种线程安全的集合,以及多种构建Future模型的方式。 www.infoq.com 5. Because these methods might be called from any number of threads at the same time, they too must be implemented to be thread-safe. 因为这些方法可能会从很多线程同时调用,它们也必须实现为线程安全的。 www.cnblogs.com 6. You may have occasionally pondered whether to synchronize an entire method call or only the thread-safe subset of that method. 您可能偶尔会思考是否要同步化这个方法调用,还是只同步化该方法的线程安全子集。 www.ibm.com 7. Methods, you provide a collection to the method and are given back a synchronized, thread-safe version of that same collection. 方法时,要向该方法提供一个集合,然后该方法将返回同一个集合的同步的、线程安全的版本。 www-128.ibm.com 8. The object pool needs to keep track of the state of each object and to be thread safe. 对象池需要跟踪每个对象的状态,而且应该是线程安全的。 www.ibm.com 9. Do not use volatile variables . Lock your object or fields instead to guarantee deterministic and thread- safe access . 不要使用不稳定变量。锁定对象或域,而不是去保证决定性和线程安全访问。 www.bing.com 10. WCF service clients are thread-safe, so it is not necessary to synchronize access to a client across multiple threads. WCF服务客户端是线程安全的,因此不必跨多个线程同步对某个客户端的访问。 msdn2.microsoft.com 1. Compass: A thread safe instance used to open Compass Sessions for single thread usage. Compass:为单线程使用,创建线程安全的实例来打开CompassSeesion。 www.infoq.com 2. Most of these instructions are in place to check for the initialization of i, and to perform a thread-safe initialization using a lock. 这些指令大多数是为了检查i的初始化,以及使用锁执行线程安全的初始化。 www.cnblogs.com 3. The lock-per-extension idea also allows an extension to tell the system it is thread safe already and to omit the lock. 同时,每个扩展配一把锁的方案还能让扩展把自己的线程安全状态告诉系统,并让扩展忽略锁。 www.infoq.com 4. This article attempts to outline some of the methods programmers can use to create thread-safe classes that are also efficient. 本文试图概述几种方法,程序员可用这几种方法来创建高效的线程安全类。 www-128.ibm.com 5. IEnumerator that can be used to access elements. Enumerating through a collection is intrinsically not a thread-safe procedure. 从头到尾对一个集合进行枚举在本质上不是一个线程安全的过程。 technet.microsoft.com 6. The AuthorizedCalls bean (shown in Listing 13) provides thread-safe methods for managing the set of authorized calls. AuthorizedCallsbean(见清单13)提供了一些线程安全的方法,用于管理这个经过授权的调用的集合。 www.ibm.com 7. A class whose members are protected from such interruptions is called thread-safe. 其成员不受这类中断影响的类叫做线程安全类。 msdn2.microsoft.com 8. To make a class fully thread-safe, first add the appropriate synchronization class to the shared classes as a data member. 若要使类完全线程安全,首先将适当的同步类作为数据成员添加到共享类中。 msdn2.microsoft.com 9. Controls in Windows Forms are bound to a specific thread and are not thread safe. Windows窗体中的控件被绑定到特定的线程,不具备线程安全性。 msdn2.microsoft.com 10. Furthermore, the configuration object generated by the Create method must be thread safe and immutable. 方法生成的配置对象必须是线程安全且不可变的。 msdn2.microsoft.com 1. threading single, multi Cause the produced binaries to be thread-safe. This requires proper support in the source code itself. 生成的二进制文件是线程安全的。这一要求应在源码本身上正确支持。 boost-doc-zh.googlecode.com 2. The singleton instance serves concurrent requests using multithreading, so it has to be thread-safe. singleton实例使用多线程服务并发请求,因此它必须是线程安全的(thread-safe)。 www.ibm.com 3. Creates a thread-safe (synchronized) wrapper around the specified Stream object. 在指定的Stream对象周围创建线程安全(同步)包装。 msdn2.microsoft.com 4. Result objects on multiple threads, these objects can be converted to thread-safe instances by calling their synchronized methods. 结果对象,则通过调用这些对象的同步方法,可以将它们转换成线程安全的实例。 msdn2.microsoft.com 5. Making a class thread safe requires additional care during the implementation and testing of the class. 使一个类线程安全需要在实现和测试该类时非常小心。 www.cnblogs.com 6. In order for your multithreaded components to be thread-safe, you must coordinate access to shared resources. 为了让您的多执行绪元件成为安全执行绪,您必须协调共用资源的存取。 technet.microsoft.com 7. Enumerating through a collection is intrinsically not a thread-safe procedure. 通过集合枚举在本质上不是一个线程安全的过程。 www.kuenglish.info 8. Even so, enumerating through a collection is intrinsically not a thread-safe procedure. 即便如此,从头到尾对一个集合进行枚举本质上并不是一个线程安全的过程。 msdn2.microsoft.com 9. Gets a value indicating whether the collection is guaranteed to be thread safe. 获取一个值,该值指示是否保证该集合为线程安全的。 msdn2.microsoft.com 10. From the programmer perspective, these two are separate concepts: a function can be reentrant, thread-safe, both, or neither. 在程序员看来,这是两个独立的概念:函数可以是可重入的,是线程安全的,或者二者皆是,或者二者皆非。 www-128.ibm.com 1. The first obstacle they faced in clustering RIFE was to make access to this HashMap thread safe. 群集RIFE的第一个障碍是线程安全地访问这个HashMap。 www.infoq.com 2. If you use multithreading in your Windows Forms applications, you must be careful to make calls to your controls in a thread-safe way. 如果您在Windows窗体应用程序中使用多线程,调用您的控件时一定注意要用一种线程安全的方式。 msdn2.microsoft.com 3. Many people are betting on functional programming, with its emphasis on immutable objects and their inherently thread-safe properties. 很多人现在都投身于函数式编程的世界,由于它们具有不可变的对象,以及与生俱来的线程安全属性。 www.infoq.com 4. Therefore, the object needs to be implemented in a thread-safe manner. 因此,对象需要在线程安全方式中实现。 msdn2.microsoft.com 5. Coordination Data Structures, CDS, are a new set of thread-safe objects, mostly collections, planned for . NET 4. 协调数据结构(CoordinationDataStructures,CDS)是在.NET4.0中包含的一套线程安全对象,其中大部分是集合类型。 www.infoq.com 6. of simple locks , a semaphore is a thread- safe counter initialized to the number of resources available for use . 信号量是在简单上锁的基础上实现的,相当于能令线程安全执行,并初始化为可用资源个数的计数器。 www.bing.com 7. The in-memory representation of a schema is defined as the Schema class, which is immutable and therefore thread-safe. 模式的内存中表示被定义为Schema类,该类是恒定的,因此也是线程安全的。 www.ibm.com 8. An effective technique for creating a fully thread-safe class is to merge the synchronization class into the resource class. 创建完全线程安全类的有效技术是将同步类合并到资源类中。 msdn2.microsoft.com 9. Below is a complete example of a thread-safe buffer implemented using these new keywords. 下面是使用这些关键字实现的完整示例,它定义了一个线程安全的缓冲区Buffer。 www.infoq.com 10. Concurrent Collections make concurrent programming easier by providing thread-safe, well-tuned data structures. 并发Collections提供了线程安全、经过良好调优的数据结构,简化了并发编程。 www.ibm.com 1. Because of the stateful way propagation tracks which (successively less specific) rules have been called, a dispatcher is not thread safe. 由于传播采用有状态方式跟踪调用了哪些(依次不太特定的)规则,所以分派器不是线程安全的。 www.ibm.com 2. Here, simple programming examples are used to illustrate the powerful and intuitive development of thread-safe and efficient classes. 本文使用简单的编程示例来说明开发高效的线程安全类是多么有效而直观。 www-128.ibm.com 3. For data integrity, by convention, unfenced SPs and UDFs should already be thread-safe, but this cannot be enforced. 按照惯例,为确保数据完整性,非隔离SP和UDF应该已经是线程安全的,但是,这不是强制性的。 www.ibm.com 4. Threading The JScript runtime is not designed to be thread-safe. JScript运行库未被设计为线程安全的。 msdn2.microsoft.com 5. The Caching Application Block is optimized for performance and is both thread safe and exception safe. 缓存应用程序块的性能已优化,并且是线程安全和异常安全的。 msdn2.microsoft.com 6. StringBuilder is nearly identical to the StringBuffer class, with one big exception: It isn't thread safe. StringBuilder与StringBuffer类几乎相同,只有一个大的区别:它不是线程安全的。 www.ibm.com 7. Swing components must be accessed in the EDT, unless you call methods documented as thread-safe. Swing组件必须在EDT中进行访问,除非您调用文档化为线程安全的方法。 www.ibm.com 8. However, the query parser is not thread safe , so each thread using the index should have its own query parser. 不过怎样,查询刨析器不是线程级安全的,所以每个使用索引的线程都需要有自己的查询刨析器。 www.bing.com 9. You receive assurance that the application block performs in a thread safe manner. 可以获得应用程序块以线程安全的方式执行的担保。 msdn2.microsoft.com 10. Moreover, it may be impossible to make a non-reentrant function thread-safe. 另外,或许不可能让某个不可重入的函数是线程安全的。 www.ibm.com 1. Notice that the lazy instantiation within this Address property is not thread-safe. 请注意,此Address属性中的延迟实例化不是线程安全的。 harvey8819.blog.163.com 2. These offer thread-safe collections, futures, and improved synchronization objects. 它们为未来提供了线程安全的集合以及改良过的同步对象。 www.infoq.com 3. This allows thread-safe access to every project, document, syntax, and symbol tree contained by the solution. 这让我们可以用线程安全的方式来访问所有包含在解决方案中的项目、文档、语法和符号树。 www.infoq.com 4. Property is also provided to determine whether the collection is thread safe. 属性以确定集合是否是线程安全的。 msdn2.microsoft.com 5. Therefore, an array can be made thread safe only through the locking mechanism. 因此,只有通过锁定机制才可令数组是线程安全的。 msdn2.microsoft.com 6. In its simplest mode it acts as a thread-safe queue in which consumers are blocked while the queue is empty. 它最简单的使用模式便是作为一个线程安全的队列,并且在队列为空时阻塞消费者。 www.infoq.com 7. Running a non-thread-safe SP or UDF in a multi-threaded process could cause unpredictable problems. 在一个多线程的进程中运行一个非线程安全的SP或UDF会导致不可预测的问题。 www.ibm.com 8. Makes a thread-safe increment to the user reference count of the application manager instance. 使线程安全增量成为应用程序管理器实例的用户参考计数。 msdn2.microsoft.com 9. They all output the same value illustrating that this is a thread-safe generic way to create singletons. 所有线程都返回相同的值,这说明这是一个线程安全的使用泛型来实现的单态模式。 www.cnblogs.com 10. Do not make instance data thread safe by default. 默认情况下不要使实例数据是线程安全的。 msdn2.microsoft.com 1. Gets a value indicating whether access to the DataGridColumnCollection collection is synchronized (thread safe). 获取一个值,该值指示对DataGridColumnCollection集合的访问是否为同步的(线程安全的)。 msdn2.microsoft.com 2. This class is thread safe; multiple threads can concurrently read from an instance of this type. 这个类是线程安全的;多个线程可以同时从此类型的一个实例读取数据。 msdn2.microsoft.com 3. Gets a value indicating whether the membership user collection is thread safe. 获取一个指示成员资格用户集合是否为线程安全的值。 msdn2.microsoft.com 4. Gets a value indicating whether access to the collection is synchronized and, therefore, thread safe. 获取一个值,该值指示对集合的访问是否经过同步因而是线程安全的。 msdn2.microsoft.com 5. Gets a value indicating whether access to the HtmlTableCellCollection collection is synchronized (thread safe). 获取一个值,该值指示对HtmlTableCellCollection集合的访问是否同步(线程安全)。 msdn2.microsoft.com 6. Gets a value indicating whether the DataKeyArray collection is synchronized (thread safe). 获取一个值,该值指示DataKeyArray集合是否是同步的(线程安全)。 msdn2.microsoft.com 7. The way to call a Windows Forms control that is not thread safe is to call directly from a worker thread. 对Windows窗体控件的非线程安全调用方式是从辅助线程直接调用。 msdn2.microsoft.com 8. To generate unique book IDs, you use an AtomicInteger that ensures that the incrementation operation is atomic, and thus thread-safe. 要生成惟一的图书IDs,您将使用一个AtomicInteger,它能确保增量操作是原子级的(atomic),从而确保线程安全。 www.ibm.com 9. For size and performance reasons, MFC objects are not thread-safe at the object level, only at the class level. 由于大小和效能因素,MFC物件在物件层级上不是安全执行绪,只有在类别层级上才是。 technet.microsoft.com 10. Gets a value indicating whether access to the NameObjectCollectionBase object is synchronized (thread safe). 获取一个值,该值指示对NameObjectCollectionBase对象的访问是否同步(线程安全)。 msdn2.microsoft.com 1. Gets a value indicating whether the profile info collection is thread safe. 获取一个指示配置文件信息集合是否为线程安全的值。 msdn2.microsoft.com 2. Library functions have dire warnings that they may not be "thread safe. " 调用库函数时经常会遇到一些“线程不安全”的可怕警告。 www.ibm.com 3. But since C extensions use C libraries and such which might not be thread-safe, we'll likely need to take more precautions. 不过,因为C扩展使用了不一定线程安全的C库之类的东西,我们很有可能需要对此做好预防工作。 www.infoq.com 4. All the OLE DB provider classes are thread-safe, and registry entries are set accordingly. 所有OLEDB提供程序类都是线程安全的,并且相应地设置注册表项。 technet.microsoft.com 5. Any instance members are not guaranteed to be thread safe. 但不保证所有实例成员都是线程安全的。 msdn2.microsoft.com 6. Note that the indexer will get and set property data in a thread-safe manner if. 索引器将会以线程安全方式获取并设置属性数据。 msdn2.microsoft.com 7. Instance members are not guaranteed to be thread-safe. 不能保证实例成员是线程安全的。 msdn2.microsoft.com 8. Other operations are not guaranteed to be thread-safe. 其他操作不保证是线程安全的。 msdn2.microsoft.com 9. For information about the techniques involved in working with multiple threads, see Thread-Safe Components. 有关使用多个线程所涉及的技术的信息,请参见线程安全组件。 msdn2.microsoft.com 10. All data placed in an HttpSession or ServletContext should be thread-safe or effectively immutable. 所有放置在HttpSession或ServletContext中的数据应该是线程安全的或有效不可修改的。 www.ibm.com 1. To help keep your provider thread-safe, you must verify that your code is blocked properly. 为使提供程序是线程安全的,必须确保代码被正确模块化。 technet.microsoft.com 2. Gets a value indicating whether access to the collection is synchronized (thread safe). 获取一个值,该值指示对集合的访问是否为同步的(线程安全)。 msdn2.microsoft.com 3. The number of elements contained in the thread-safe, read-only collection. 线程安全只读集合中所含元素的数目。 msdn2.microsoft.com 4. Always false because thread-safe membership user collections are not supported. 因为不支持线程安全成员资格用户集合,所以总是为false。 msdn2.microsoft.com 5. Objects that you put on the session should be thread-safe and serializable. 放到会话中的对象应该是线程安全的和可序列化的。 www.ibm.com 6. Also, thread-safe interfaces to locale. h have been implemented. 另外,还实现了locale.h的线程安全的接口。 www.ibm.com 7. Gets a value that indicates whether access to the collection is synchronized, or thread safe. 获取一个值,该值指示对集合的访问是否是同步的或线程安全的。 msdn2.microsoft.com 8. This topic explains the classes available and how to use them to create thread-safe classes in a typical multithreaded application. 本主题说明了可用的类以及如何在典型的多线程应用程序中使用它们创建线程安全类。 msdn2.microsoft.com 9. IBinder methods must, therefore, be implemented to be thread-safe. 因此IBinder方法必须实现为线程安全的。 www.cnblogs.com 10. You should ensure that your provider is thread-safe, and only allows one thread at a time to write to the configuration files. 您应确保您的提供程序是线程安全的,并且一次只允许一个线程写配置文件。 msdn2.microsoft.com 1. The method is not thread-safe when its object argument is a non-Message instance. 如果此方法的对象参数是非Message实例,则此方法不是线程安全的。 msdn2.microsoft.com 2. The first condition disqualifies volatile variables from being used as thread-safe counters. 第一个条件的限制使volatile变量不能用作线程安全计数器。 www.ibm.com 3. Create a thread-safe wrapper using the Synchronized method, and access the collection exclusively through that wrapper. 使用Synchronized方法创建线程安全包装,并通过该包装以独占方式访问集合。 msdn2.microsoft.com 4. Gets a value indicating whether the trace listener is thread safe. 获取一个值,该值指示跟踪侦听器是否是线程安全的。 msdn2.microsoft.com 5. By default, classes in System. Collections and related namespaces are not thread safe. 默认情况下,System.Collections和相关命名空间中的类不是线程安全的。 msdn2.microsoft.com 6. Gets a value indicating whether access to the object is synchronized (thread safe). 获取一个值,该值指示对此对象的访问是否同步(线程安全)。 msdn.microsoft.com 7. The DataMapRepository class presented previously and its base class LinkedHashMap are not thread-safe. 之前介绍过的DataMapRepository类及其基类LinkedHashMap都不是线程安全的。 www.ibm.com 8. Access to Windows Forms controls is not inherently thread safe. 访问Windows窗体控件本质上不是线程安全的。 msdn2.microsoft.com 9. Gets a value indicating whether access to the Array is synchronized (thread safe). 获取一个值,该值指示是否同步对Array的访问(线程安全)。 msdn2.microsoft.com 10. The indexer will get and set property data in a thread-safe manner if the. 索引器将会以线程安全方式获取和设置属性数据。 msdn2.microsoft.com 1. Gets a value indicating whether access to the TableRowCollection is synchronized (thread-safe). 获取一个值,该值指示是否同步TableRowCollection访问(线程安全)。 msdn2.microsoft.com 2. The effect is that operations on a thread-safe object will appear to all threads to occur in a fixed, globally consistent order. 其效果就是,在所有线程看来,对于线程安全对象的操作是以固定的、全局一致的顺序发生的。 www-128.ibm.com 3. Gets a value indicating whether the evidence set is thread-safe. 获取一个值,该值指示证据集是否线程安全。 msdn2.microsoft.com 4. Any access to the data repository is made through a thread-safe wrapper class named RepositoryWrapper. 对数据存储库的所有访问都是通过一个名为RepositoryWrapper的线程安全类实现的。 www.ibm.com 5. And the programmer does not have to do anything to keep the collection thread safe. 程序员不必做任何事就可以保证集合是线程安全的。 msdn2.microsoft.com 6. You should also remember that static classes that preserve state between method calls should be made thread safe by default. 您还应该记得,在方法调用之间保留状态的静态类在默认情况下应该是线程安全的。 blog.sina.com.cn 7. True if access to the Queue is synchronized (thread safe); otherwise, false. 如果对Queue的访问是同步的(线程安全),则为true;否则为false。 msdn2.microsoft.com 8. NameDeduplicator This utility class can rename names by appending numbers to avoid name duplication, it is multi-thread safe. 这个工具类可以通过给名称后面添加数字的方式来为避免重名而自动改名,它是多线程安全的。 jabb.sourceforge.net 9. Static fields that are neither constants nor read-only are not thread-safe. 不是常数也不是只读字段的静态字段不是线程安全的。 technet.microsoft.com 10. The index writer however, is thread safe , so you can update the index while people are searching it. 而索引写者是线程级安全的,所以你能在人们搜索它时更新索引。 www.bing.com 1. Gets a value indicating whether access to the collection is thread safe. 获取一个值,用于指示对集合的访问是否是线程安全的。 msdn2.microsoft.com 2. Any public static members of this type are thread safe. 此类型的任何公共static成员都是线程安全的。 msdn2.microsoft.com 3. One thread produces elements and stores them in a generic queue that is not thread-safe. 一个线程生成元素并将它们存储在非线程安全的泛型队列中。 msdn2.microsoft.com 4. Making each map in itself thread-safe is not sufficient. 保证每一个Map本身的线程安全是不够的。 www.ibm.com 5. This method is thread-safe when its object argument is a Message instance. 如果此方法的对象参数是Message实例,则此方法是线程安全的。 msdn2.microsoft.com 6. The XslCompiledTransform object is thread safe once it has been loaded. XslCompiledTransform对象一经加载就是线程安全的。 msdn2.microsoft.com 7. However, the drawback to a static class is that all static methods need to be thread safe. 但是,静态类的缺点是需要保证所有静态方法都是线程安全的。 msdn2.microsoft.com 8. It may be easier to manage the use of a non-thread-safe class than to try and make the class thread-safe. 管理非线程安全类的使用比试图使类成为线程安全的要更容易些。 www.ibm.com 9. This version of userHasAdminAccess is thread-safe, but holds the lock for much longer than necessary. 这个版本的userHasAdminAccess是线程安全的,但它占用锁的时间比必要占用时间长太多。 www.ibm.com 10. Any read-only tree operation is thread-safe as long as there isn't any thread modifying it. 所有只读的树操作都是线程安全的,只要没有线程修改它。 www.ibm.com 1. We also add the 'unsafe' keyword since direct memory access isn't thread safe. 我们也添加了“不安全”的关键词因为直接内存获取并不安全。 blog.163.com 2. It is important to ensure that access to your controls is done in a thread-safe way. 确保以线程安全方式访问控件非常重要。 msdn2.microsoft.com 3. Instances of this class are thread safe. 此类的实例是线程安全的。 msdn2.microsoft.com 4. It stores the minimum value; the compare-and-change procedure is synchronized so that multi-thread safe is ensured. 存放最小值,“比较然后交换”的过程是同步的,所以它是多线程安全的。 jabb.sourceforge.net 5. Which means the collection is not thread safe. 表示集合不是线程安全的。 msdn2.microsoft.com 6. Indexer operate in a thread-safe manner. 索引器以线程安全方式操作。 msdn2.microsoft.com 7. Under the new memory model, this "fix" to double-checked locking renders the idiom thread-safe. 在新的内存模型中,对双重检查锁定的这个“修复”使idiom线程安全。 www.ibm.com 8. Thread-safe classes encapsulate any needed synchronization so that clients need not provide their own. 线程安全的类在其内部封装了所有需要的同步机制所以客户端不需要自己来提供。 blog.163.com 9. Avoid stateful services and write thread-safe code. 避免有状态的服务,要写线程安全的代码。 www.infoq.com 10. In this example, I don't focus on other issues related to this pattern, such as synchronization to make it thread safe. 在此实例中,我并没有针对其他与此模式相关的问题,如保持同步以确保线程安全。 www.ibm.com 1. is an experimental thread safe RTP stack for use with Common C . RTP是一个实验的线程安全的RTP堆栈,可以和普通的C 使用。 www.showxiu.com 2. You certainly must make the functions reusable or even thread safe if they will run under grid middleware that requires it . 当然了,如果所使用的网格中间件要求函数实现可重用性甚至是线程安全性,您也必须满足这些要求。 www.bing.com 3. One common use is for storing a singleton of a type that is not thread-safe. 一种常见用法是用于存储非线程安全类型的单例。 www.cnblogs.com 4. Instance by default is not thread safe. 实例不是线程安全的。 msdn2.microsoft.com 5. All members of this type are thread safe. 此类型的所有成员都是线程安全的。 msdn2.microsoft.com 6. To provide thread-safe access to the map, you use a ConcurrentHashMap. 要提供对这个映射图的线程安全访问,您将使用一个ConcurrentHashMap。 www.ibm.com 7. This is simple (but difficult. makes buggy code easy) work to make them thread-safe (but many efforts are needed). 将其转换为线程安全是一件简单(其实很困难,编写充满bug的代码倒是很简单)的工作(但是需要更多的努力)。 www.infoq.com 8. To make your programs thread-safe, you must first identify what data will be shared across threads. 要使您的程序线程安全,首先必须确定哪些数据将在线程间共享。 www.ibm.com 9. The collections are not thread safe by default. 默认情况下集合不是线程安全的。 msdn2.microsoft.com 10. The allocator is not thread-safe. 分配程序不是线程安全的。 frenchen.blog.163.com 1. All writes to the returned wrapper will be thread safe. 对返回的包装的所有写入都将具有线程安全性。 msdn2.microsoft.com 2. This makes the changes to Swing state thread safe. 这样才能够安全修改Swing状态。 www-128.ibm.com 3. Very lightweight and non thread safe. 很轻量但是并不是线程安全的。 www.infoq.com 4. All reads from the returned wrapper will be thread safe. 从返回的包装进行的所有读取将是线程安全的。 msdn2.microsoft.com 5. Finds a client given a string ID. OBS! Not thread safe! 根据字符串ID寻找客户(非线程安全) www.cnblogs.com 6. While this is perfectly thread-safe, it increases the likelihood of contention for no real benefit. 虽然这样做是完全线程安全的,但却增加了毫无实际意义的争用可能性。 www.ibm.com 7. There is no straightforward way to make the code in Listing 1 thread-safe, making this idiom an accident waiting to happen. 没有直观的途径来使清单1中的代码是线程安全的,这使这种语言风格成为了一种等待时机发生的事故。 www.ibm.com 8. You should verify whether your particular driver is thread-safe. 应该验证您的特定驱动程序是否是线程安全的。 technet.microsoft.com 9. Shows how to implement a thread-safe standard query operator that can perform grouping operations on streaming data sources. 演示如何实现线程安全的标准查询运算符,该运算符可对流式数据源执行分组操作。 technet.microsoft.com 10. Because it is not thread-safe, all Swing code must be executed in the EDT. 因为它不是线程安全的,所以所有Swing代码必须在EDT中执行。 www.ibm.com 1. The API methods we use are also thread-safe. 我们使用的API方法也是线程安全的。 www.bing.com 2. Discusses what makes a component thread-safe and how to implement thread-safety in your components. 讨论如何使组件线程安全和如何在组件中实现线程安全性。 msdn.microsoft.com 3. If you have performance-critical unfenced, external stored procedures (SPs) or user-defined functions (UDFs), ensure they are thread-safe. 如果有性能关键型、非隔离的(unfenced)外部存储过程(SP)或用户定义函数(UDF),那么应确保它们是线程安全的。 www.ibm.com 4. It's thread-safe and has a smaller footprint. 它线程安全,而且更节省资源。 www.infoq.com 5. In this article, you'll learn how to build a thread-safe data repository for keeping auto-saved form data. 在本文中,您将学习如何构建线程安全的数据存储库来自动保存表单数据。 www.ibm.com 6. While the JLS gives us tools with which we can make our programs thread-safe, thread-safety does not come free. 虽然JLS给了我们可以使我们的程序线程安全的工具,但线程安全也不是天上掉下来的馅饼。 www.ibm.com 7. You will need to write your provider code to be thread safe. 因此需要编写线程安全的提供程序代码。 msdn2.microsoft.com 8. Batch application developers write code that is thread-safe and executes on a single thread. 批处理应用程序开发人员可以编写线程安全的、且在单个线程中执行的代码。 www.ibm.com 9. How do we tell a thread-safe class from an unsafe one? 我们如何区分一个类是线程安全的,还是不安全的。 blog.163.com 10. Listing 1 shows a non-thread-safe number range class. 清单1显示了一个非线程安全的数值范围类。 www.ibm.com 1. Counter in Listing 1 is thread-safe, but the need to use a lock irks some developers because of the performance cost involved. 清单1中的Counter是线程安全的,但是使用锁的需求带来的性能成本困扰了一些开发人员。 www.ibm.com 2. One advantage of immutable classes is that they are thread-safe. (不可变类的一个优点就是它们是线程安全的)。 www.ibm.com 3. A ConcurrentLinkedQueue is a thread-safe queue based on linked nodes. ConcurrentLinkedQueue是基于链接节点的、线程安全的队列。 www.ibm.com 4. RB: Waves is thread-safe, can you explain? Waves是线程安全的,你可以解释一下吗? www.infoq.com 5. Returns a Queue wrapper that is synchronized (thread safe). 返回同步的(线程安全)Queue包装。 msdn2.microsoft.com 6. Provides a SettingsBase class that is synchronized (thread safe). 提供同步(线程安全)的SettingsBase类。 msdn2.microsoft.com 7. Obviously, this doesn't mean it can't be used in a thread-safe manner. (很明显,这不意味着它不能以线程安全的方式使用)。 blog.sina.com.cn 8. Consider for example usage of the thread safe StringBuffer. 举例来说,考虑一下线程安全的StringBuffer的用法。 www.infoq.com 9. We use a handle system for C extensions to access GC objects, which we can make thread safe. C扩展要访问GC对象,是通过句柄系统来完成的,这部分要实现线程安全不难。 www.infoq.com 10. Any public static (Shared in Visual Basic) members of this type are thread safe. 此类型的任何公共static(在VisualBasic中为Shared)成员都是线程安全的。 msdn2.microsoft.com 1. Public static (Shared in Visual Basic) members of this type are thread safe. 此类型的公共静态(在VisualBasic中为Shared)成员是线程安全的。 msdn2.microsoft.com 2. The global lock is always used if the trace listener is not thread safe, regardless of the value of 如果跟踪侦听器不是线程安全的,则无论 msdn2.microsoft.com 3. Is this method thread safe? 该方法线程是否安全? blog.sina.com.cn 4. immutable objects are guaranteed to be thread - safe , and never require additional synchronization 不可变的对象一定是线程安全的,并且永远也不需要额外的同步。 www.ichacha.net 5. Property, there are four methods on a control that are thread safe to call 属性以外,控件上还有以下四个线程安全的方法可供调用 msdn2.microsoft.com 6. Implementation on request and response objects are guaranteed to be thread safe 仅参考:应该确定请求和响应对象的实现对线程是安全的 community.csdn.net 7. Classes can be made thread safe using any of the following methods 类成为线程安全的:使用 msdn2.microsoft.com 8. The notifier must fulfill three requirements: simple extensible thread-safe 一个事件通知类必须满足三个要素:线程安全 www.ycgczj.com.cn 9. Calls to a Windows Forms Control That Are Not Thread Safe 对Windows窗体控件的非线程安全调用 msdn2.microsoft.com 10. Property is not thread safe for multiple writes, and changing the 属性对于多次写入而言不是线程安全的,而且对于多用户应用程序来说,更改 msdn2.microsoft.com 1. Class to get a thread safe count of previous Instances 运行程序线程安全计数的类 www.vsfan.net 2. Using a thread-safe wrapper for the data repository 为数据存储库使用线程安全的包装器 www.ibm.com 3. True if the trace listener is thread safe; otherwise, 如果跟踪侦听器是线程安全的,则为, msdn2.microsoft.com 4. Fixed a major memory corruption Bug in the thread safe version 修正了在线程安全版本里的一个很大的内存中断错误 dict.ebigear.com 5. Property, there are four methods on a control that are thread safe 属性以外,控件上还有四个可以从任何线程上安全调用的方法,它们是 msdn2.microsoft.com 6. Example for a thread safe JSP 无错页面样例 chaoso.com 7. Writing Reentrant and Thread-Safe Code 编写可重入和线程安全的代码 blog.csdn.net 8. Consider the development of a thread-safe counter class, which exposes 假如开发线程安全的计数器类,那么这将暴露 www-128.ibm.com 9. Indexing and searching are not only thread safe, but process safe. What this means is that 建立索引和搜索不是线程级安全的,但是是进程级安全的。 www.bing.com 10. If a collection is thread safe, the 如果集合是线程安全的,则 msdn2.microsoft.com |
||||||||||||||
随便看 |
英汉双解词典包含2704715条英汉词条,基本涵盖了全部常用单词的翻译及用法,是英语学习的有利工具。