Examples of using Multiple threads in English and their translations into Japanese
{-}
-
Colloquial
-
Ecclesiastic
-
Computer
-
Programming
Using multiple threads¶.
Within each forum, users can create multiple threads.
Multiple threads might need to access a shared resource.
Within each forum, students can create multiple threads.
Shared means that multiple threads can access the data.
ResourceInteractiveLoader can be used from multiple threads.
In MySQL and InnoDB, multiple threads of execution access shared data structures.
The percentage of the application that is executed in parallel by multiple threads.
It is not possible to use multiple threads to control them.
All of the classes in this module may safely be accessed from multiple threads.
This method may be called from multiple threads, make this as thread-safe.
The software enables to download or upload the files in multiple threads.
This DVD copy software supports multiple threads, so it can clone DVDs faster.
The Atomic part means Arc<T>can safely be accessed from multiple threads.
When using from multiple threads, exclusive control should be performed on the application side.
In either case,the program to be debugged can be executed by multiple threads simultaneously.
When memory is shared, multiple threads can read and write the same data in memory.
In their advanced form, they act like a kind of counter,and can allow multiple threads to have the lock at any one time.
You can select multiple threads or select the check box in the header to select all threads. .
See Section Debugging programs with multiple threads in The GNU debugger.
Bill continues with notes about how a new IEnumerator would have to work in order toproperly support multiple threads.
The volatile keyword now ensures that multiple threads handle the singleton instance correctly.
The bigger it is, query latency becomes smaller because data is divided into several parts andprocessed by multiple threads in parallel.
Posting the same question repeatedly and starting multiple threads on the same subject can be confusing.
If your application requires multiple threads accessing the UltraLite database, each thread requires a separate connection.
It also specifies aloop that can be executed in parallel by multiple threads that are members of multiple teams.
Vulkan also enables better parallelization by allowing multiple threads to perform work such as command buffer construction at once.
The volatile keywordindicates that a field might be modified by multiple threads that are executing at the same time.
Many modern applications are designed for parallel processing,using multiple threads or processes to improve performance.
A binary heap isn't MT-safe structure;you must put it in atom or use mutexes if multiple threads can access to it see Synchronization primitives.