Home
last modified time | relevance | path

Searched refs:max_workers (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dthread_pool.cc215 void ThreadPool::SetMaxActiveWorkers(size_t max_workers) { in SetMaxActiveWorkers() argument
217 CHECK_LE(max_workers, GetThreadCount()); in SetMaxActiveWorkers()
218 max_active_workers_ = max_workers; in SetMaxActiveWorkers()
/art/test/testrunner/
Dtestrunner.py526 with concurrent.futures.ThreadPoolExecutor(max_workers=n_thread) as executor: