What is the translation of " MULTIPLE THREADS " in Korean?

['mʌltipl θredz]
['mʌltipl θredz]
multiple threads
여러 스레드가

Examples of using Multiple threads in English and their translations into Korean

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Ecclesiastic category close
  • Programming category close
  • Computer category close
These functions automatically execute on multiple threads.
이 함수들은 여러 스레드에서 자동으로 실행됩니다.
By providing multiple threads, more stability can be achieved.
다중 스레드를 제공함으로써, 더 많은 안정성이 실현될 수 있다.
The problem is that this does not work when using multiple threads.
문제는 여러 스레드를 사용할 때 이 문제가 작동하지 않는다는 것입니다.
Thus, multiple threads can call HALCON operators simultaneously.
따라서 여러 스레드가 HALCON 연산자들을 동시에 호출할 수 있습니다.
Let's now try to share a value between multiple threads using Mutex.
이제 Mutex를 사용하여 여러 스레드들 사이에서 값을 공유하는 시도를 해봅시다.
Zero, one, or multiple threads might be executing in any given application domain.
지정된 애플리케이션 도메인에서 0개, 한 개 또는 여러 개의 스레드가 실행 중일 수 있습니다.
All of the classes in this module may safely be accessed from multiple threads.
이 모듈의 모든 클래스는 다중 스레드에서 안전하게 액세스할 수 있습니다.
To learn more about multiple threads, see the topic Processes and Threads..
다중 스레드에 관한 자세한 정보는 프로세스 및 스레드 를 참조하세요.
NET Framework are thread-safe and can be called from multiple threads concurrently.
NET Framework에서 대부분의 정적 메서드는 스레드로부터 안전하고 여러 스레드에서 동시에 호출될 수 있습니다.
Thread-safety(multiple threads can reference the same object without interfering with one other).
스레드 안전성(여러 스레드가 서로 간섭하지 않고 동일한 객체 참조 가능).
Posting the same question repeatedly and starting multiple threads on the same subject can be confusing.
같은 질문을 반복해서 게시하고 같은 주제에 대해 여러 개의 스레드가 시작되면 혼란이 가중될 수 있습니다.
Listing 16-15: Using an Arc to wrap the Mutex to be able to share ownership across multiple threads.
Listing 16-15: Arc를 사용하여 Mutex를 감싸서 여러 스레드 사이에서 소유권을 공유할 수 있도록 하기.
When using multiple threads, even though you have concurrency, we currently have to use the GIL with CPython and PyPy.
여러 스레드를 사용하는 경우 동시성을 가지고 있더라도 현재 CPython 및 PyPy와 함께 GIL을 사용해야 합니다.
When the CMS collector is used, this flag activates the parallel execution of young generation GCs using multiple threads.
CMS 컬렉터를 사용할때, 이 플래그는 다중 쓰레드를 사용해 young generation GC의 parallel 실행을 활성화한다.
Multiple threads can interfere with each other when sharing hardware resources such as caches or translation lookaside buffers(TLBs).
다중 스레드는 캐시 나 변환 색인 버퍼 (TLB)와 같은 하드웨어 리소스를 공유할 때 서로를 간섭할 수 있다.
Race conditions can also occur when you synchronize the activities of multiple threads.
경합 상태는 다중 스레드의 작업을 동기화할 때에도 발생할 수 있습니다. Race conditions can also occur when you synchronize the activities of multiple threads.
Synchronization for access from multiple threads(System. Collections classes only).
여러 스레드로부터의 액세스를 위한 동기화(System. Collections 클래스에만 해당됨). Synchronization for access from multiple threads (System. Collections classes only).
Don't use Thread.Suspend and Thread. Resume to synchronize the activities of multiple threads.
여러 스레드의 활동을 동기화하는 데 Thread. Suspend 및 Thread. Resume을 사용하지 마세요. Don't use Thread. Suspend and Thread.Resume to synchronize the activities of multiple threads.
CCI An application is abormally terminated when multiple threads run borrow-> execute-> release at the same time by using DATASOURCE of CCI(CUBRIDSUS-12264).
CCI DATASOURCE를 사용할 때 여러 스레드가 borrow->execute->release를 동시에 수행하면 프로그램이 비정상 종료하는 현상(CUBRIDSUS-12264).
Many personal computers and workstations have multiple CPU cores that enable multiple threads to be executed simultaneously.
여러 개인용 컴퓨터 및 워크스테이션에는 여러 CPU 코어가 있기 때문에 다중 스레드가 동시에 실행될 수 있습니다. Many personal computers and workstations have several CPU cores that enable multiple threads to be executed simultaneously.
When multiple threads race to load the same class with the same class loader, the first thread to complete the operation wins, and the result is used for the other threads..
여러 스레드가 동일한 클래스 로더를 가지고 동일한 클래스를 로드하려고 경쟁할 경우, 연산을 완료하는 최초 스레드가 승자가 되며 그 결과가 다른 스레드에도 사용됩니다.
ReaderWriterLockSlim class grants exclusive access to a shared resource for writing and allows multiple threads to access the resource simultaneously for reading.
ReaderWriterLockSlim 클래스는 쓰기 위해 공유 리소스에 대한 배타적 액세스 권한을 부여하고, 읽기 위해 여러 스레드가 동시에 리소스에 액세스하도록 허용합니다. The System.
Splitting the computation in your program up into multiple threads can improve performance, since the program will be doing multiple things at the same time, but it also adds complexity.
여러분의 프로그램 내에 계산 부분을 여러 개의 스레드로 쪼개는 것은 프로그램이 동시에 여러 개의 일을 할 수 있기 때문에 성능을 향상시킬 수 있지만, 프로그램을 복잡하게 만들기도 합니다.
This topic addresses more difficult situations, such as coordinating the work of multiple threads, or handling threads that block.
이 항목에서는 다중 스레드의 작업 조정 또는 차단되는 스레드 처리 등의 더욱 어려운 상황을 다룹니다. This topic addresses more difficult situations, such as coordinating the work of multiple threads, or handling threads that block.
Do use multiple threads for tasks that require different resources, and avoid assigning multiple threads to a single resource.
다른 리소스를 필요로 하는 작업에 대해 다중 스레드를 사용하고 단일 리소스에 다중 스레드를 할당하지 마세요. Do use multiple threads for tasks that require different resources, and avoid assigning multiple threads to a single resource.
In common server scenarios,static state is shared across requests, which means multiple threads can execute that code at the same time.
일반적인 서버 시나리오에서 정적 상태는 요청 간 공유되며 여러 스레드가 동시에 해당 코드를 실행할 수 있음을 의미합니다. In common server scenarios, static state is shared across requests,which means multiple threads can execute that code at the same time.
Starting with the. NET Framework 4, the collections in the System.Collections. Concurrent namespace provide efficient thread-safe operations for accessing collection items from multiple threads.
NET Framework 4부터 System. Collections. Concurrent 네임스페이스의 컬렉션은 여러 스레드에서 컬렉션 항목에 액세스하기 위한 효율적이고 스레드로부터 안전한 작업을 제공합니다. Starting with the. NET Framework 4, the collections in the System. Collections.Concurrent namespace provide efficient thread-safe operations for accessing collection items from multiple threads.
To allow the collection to be accessed by multiple threads for reading and writing, you must implement your own synchronization.
여러 스레드에서 컬렉션에 액세스하여 읽고 쓸 수 있도록 허용하려면 사용자 지정 동기화를 구현해야 합니다. To allow the collection to be accessed by multiple threads for reading and writing, you must implement your own synchronization.
Use the System. Collections. Concurrent. ConcurrentStack<T> and System. Collections.Concurrent. ConcurrentQueue<T> types when you need to access the collection from multiple threads concurrently.
사용 하 여 ConcurrentQueue<T> 또는 ConcurrentStack<T> 동시에 여러 스레드에서 컬렉션에 액세스 해야 할 경우. Use ConcurrentQueue<T> or ConcurrentStack<T>if you need to access the collection from multiple threads concurrently.
Represents a lock that is used to manageaccess to a resource, allowing multiple threads for reading or exclusive access for writing.
여러 스레드에서 읽을 수 있도록 허용하거나 쓰기를 위한 단독 액세스를 허용하여 리소스에 대한 액세스를 관리하는 데 사용되는 잠금을 나타냅니다. Represents a lock that is used to manage access to a resource,allowing multiple threads for reading or exclusive access for writing.
Results: 36, Time: 0.0389

How to use "multiple threads" in an English sentence

Artists may post multiple threads in #music.
Create multiple threads won't solve your issue.
think multiple threads are overwritting the data.
EDIT: Just noticed the multiple threads here.
Using multiple threads over a single connection.
We now have multiple threads doing replies.
Multiple threads can exist within a process.
Debugging multiple threads is not yet supported.
We don't need multiple threads confusing everyone.
making multiple threads all over the place?
Show more

How to use "여러 스레드가" in a Korean sentence

X나 foo를 여러 스레드가 동시에 호출해도 항상 동일한 결과가 나올 수 있게 만들어야 한다.
뮤텍스 와 세마포어 등의 프리미티브는 여러 스레드가 자원에 액세스 하기 위한 동기화 기능을 제공한다.
생성 시 또 다른 인수를 지정해서, 여러 스레드가 초기화를 두고 경쟁(race)하게 만들 수도 있다.
동기화는 여러 스레드가 같은 자료에 접근할 때 특히나 중요하다.
"만 지정하면 됨), 이건 여러 스레드가 동시에 수행되지 않게 해야 한다.
이를 통해 여러 스레드가 스레드 안전성 문제없이 통신할 수 있는 방법을 이해한다.
goo는 여러 스레드가 동시에 호출해도 항상 동일한 결과가 나올 수 있게 만들어야 한다.
Java는 여러 스레드가 병렬로 실행되어 완료되는 다중 스레드 언어입니다.
여러 스레드가 한 소켓으로 처리하도록 하는 로직을 만들 수 있습니다.
다중 스레드 프로그램에서는 한 프로세스 안에서 여러 스레드가 실행된다.

Word-for-word translation

Top dictionary queries

English - Korean