Home
last modified time | relevance | path

Searched refs:thread_pool_size (Results 1 – 11 of 11) sorted by relevance

/external/grpc-grpc/src/python/grpcio/grpc/beta/
Dimplementations.py144 metadata_transformer, thread_pool, thread_pool_size): argument
150 self.thread_pool_size = thread_pool_size
161 thread_pool_size=None): argument
183 metadata_transformer, thread_pool, thread_pool_size)
243 response_serializers, thread_pool, thread_pool_size, argument
249 self.thread_pool_size = thread_pool_size
261 thread_pool_size=None, argument
289 response_serializers, thread_pool, thread_pool_size,
310 effective_options.thread_pool_size)
D_server_adaptations.py378 thread_pool_size): argument
384 if thread_pool_size is None
385 else thread_pool_size)
/external/v8/src/libplatform/
Ddefault-platform.cc35 int thread_pool_size, IdleTaskSupport idle_task_support, in NewDefaultPlatform() argument
43 platform->SetThreadPoolSize(thread_pool_size); in NewDefaultPlatform()
49 int thread_pool_size, IdleTaskSupport idle_task_support, in CreateDefaultPlatform() argument
53 thread_pool_size, idle_task_support, in_process_stack_dumping, in CreateDefaultPlatform()
102 void DefaultPlatform::SetThreadPoolSize(int thread_pool_size) { in SetThreadPoolSize() argument
104 DCHECK_GE(thread_pool_size, 0); in SetThreadPoolSize()
105 if (thread_pool_size < 1) { in SetThreadPoolSize()
106 thread_pool_size = base::SysInfo::NumberOfProcessors() - 1; in SetThreadPoolSize()
109 std::max(std::min(thread_pool_size, kMaxThreadPoolSize), 1); in SetThreadPoolSize()
Ddefault-worker-threads-task-runner.cc14 uint32_t thread_pool_size) { in DefaultWorkerThreadsTaskRunner() argument
15 for (uint32_t i = 0; i < thread_pool_size; ++i) { in DefaultWorkerThreadsTaskRunner()
Ddefault-worker-threads-task-runner.h20 DefaultWorkerThreadsTaskRunner(uint32_t thread_pool_size); in NON_EXPORTED_BASE()
Ddefault-platform.h40 void SetThreadPoolSize(int thread_pool_size); in NON_EXPORTED_BASE()
/external/v8/include/libplatform/
Dlibplatform.h38 int thread_pool_size = 0,
47 int thread_pool_size = 0,
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/beta/
D_beta_features_test.py162 thread_pool_size=test_constants.POOL_SIZE)
180 thread_pool_size=test_constants.POOL_SIZE)
293 thread_pool_size=test_constants.POOL_SIZE)
303 thread_pool_size=test_constants.POOL_SIZE)
/external/tensorflow/tensorflow/core/common_runtime/
Ddirect_session.cc282 const int thread_pool_size = in DirectSession() local
284 if (thread_pool_size > 0) { in DirectSession()
285 for (int i = 0; i < thread_pool_size; ++i) { in DirectSession()
/external/v8/src/
Dd8.h389 int thread_pool_size = 0; variable
Dd8.cc2900 options.thread_pool_size = atoi(argv[i] + 19); in SetOptions()
3341 options.thread_pool_size, v8::platform::IdleTaskSupport::kEnabled, in Main()