Home
last modified time | relevance | path

Searched refs:ThreadPoolExecutor (Results 1 – 25 of 73) sorted by relevance

123

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DParallel.cpp40 class ThreadPoolExecutor : public Executor { class
42 explicit ThreadPoolExecutor(unsigned ThreadCount = hardware_concurrency()) { in ThreadPoolExecutor() function in llvm::parallel::detail::__anonbc7e59330111::ThreadPoolExecutor
70 ~ThreadPoolExecutor() override { in ~ThreadPoolExecutor()
81 static void call(void *Ptr) { ((ThreadPoolExecutor *)Ptr)->stop(); } in call()
132 static ManagedStatic<ThreadPoolExecutor, object_creator<ThreadPoolExecutor>, in getDefaultExecutor()
133 ThreadPoolExecutor::Deleter> in getDefaultExecutor()
135 static std::unique_ptr<ThreadPoolExecutor> Exec(&(*ManagedExec)); in getDefaultExecutor()
/third_party/python/Lib/concurrent/futures/
D__init__.py41 global ProcessPoolExecutor, ThreadPoolExecutor
49 from .thread import ThreadPoolExecutor as te
50 ThreadPoolExecutor = te
/third_party/grpc/src/python/grpcio_tests/tests/unit/
D_server_wait_for_termination_test.py40 server = grpc.server(futures.ThreadPoolExecutor())
57 server = grpc.server(futures.ThreadPoolExecutor())
75 server = grpc.server(futures.ThreadPoolExecutor())
Dthread_pool.py19 class RecordingThreadPool(futures.ThreadPoolExecutor):
23 self._tp_executor = futures.ThreadPoolExecutor(max_workers=max_workers)
D_server_test.py34 grpc.server(futures.ThreadPoolExecutor(max_workers=5),
43 server = grpc.server(futures.ThreadPoolExecutor(max_workers=5))
D_local_credentials_test.py18 from concurrent.futures import ThreadPoolExecutor
32 server = grpc.server(ThreadPoolExecutor())
D_xds_credentials_test.py37 server = grpc.server(futures.ThreadPoolExecutor())
90 server = grpc.server(futures.ThreadPoolExecutor(), xds=True)
D_channel_args_test.py52 grpc.server(futures.ThreadPoolExecutor(max_workers=1),
/third_party/python/Lib/test/test_importlib/partial/
Dcfimport.py13 from concurrent.futures import ThreadPoolExecutor
20 from concurrent.futures.thread import ThreadPoolExecutor
/third_party/ejdb/src/bindings/ejdb2_react_native/binding/android/src/main/java/com/softmotions/ejdb2/
DEJDB2Package.java9 import java.util.concurrent.ThreadPoolExecutor;
20 private static final Executor executor = new ThreadPoolExecutor(0, 5, 60L, TimeUnit.SECONDS,
/third_party/grpc/src/python/grpcio_tests/tests_py3_only/unit/
D_leak_test.py26 from concurrent.futures import ThreadPoolExecutor
61 server = grpc.server(ThreadPoolExecutor(max_workers=1),
/third_party/python/Doc/library/
Dconcurrent.futures.rst18 :class:`ThreadPoolExecutor`, or separate processes, using
37 with ThreadPoolExecutor(max_workers=1) as executor:
65 :class:`ThreadPoolExecutor`, *chunksize* has no effect.
100 with ThreadPoolExecutor(max_workers=4) as e:
110 ThreadPoolExecutor chapter
113 :class:`ThreadPoolExecutor` is an :class:`Executor` subclass that uses a pool of
131 executor = ThreadPoolExecutor(max_workers=2)
143 executor = ThreadPoolExecutor(max_workers=1)
147 .. class:: ThreadPoolExecutor(max_workers=None, thread_name_prefix='', initializer=None, initargs=(…
161 multiplied by ``5``, assuming that :class:`ThreadPoolExecutor` is often
[all …]
/third_party/grpc/examples/python/xds/
Dserver.py48 futures.ThreadPoolExecutor(max_workers=multiprocessing.cpu_count()))
57 experimental_thread_pool=futures.ThreadPoolExecutor(max_workers=1))
/third_party/grpc/src/python/grpcio_tests/tests/qps/
Dbenchmark_client.py105 self._pool = futures.ThreadPoolExecutor(
182 self._pool = futures.ThreadPoolExecutor(
215 self._pool = futures.ThreadPoolExecutor(
/third_party/grpc/examples/python/data_transmission/
Dalts_server.py29 svr = grpc.server(futures.ThreadPoolExecutor())
Dserver.py97 server = grpc.server(futures.ThreadPoolExecutor())
/third_party/grpc/examples/python/helloworld/
Dgreeter_server.py32 server = grpc.server(futures.ThreadPoolExecutor(max_workers=10))
Dgreeter_server_with_reflection.py33 server = grpc.server(futures.ThreadPoolExecutor(max_workers=10))
/third_party/grpc/examples/python/interceptors/headers/
Dgreeter_server.py36 server = grpc.server(futures.ThreadPoolExecutor(max_workers=10),
/third_party/grpc/examples/python/metadata/
Dmetadata_server.py40 server = grpc.server(futures.ThreadPoolExecutor(max_workers=10))
/third_party/grpc/src/python/grpcio/grpc/framework/foundation/
Dlogging_pool.py72 return _LoggingPool(futures.ThreadPoolExecutor(max_workers))
/third_party/grpc/examples/python/errors/
Dserver.py64 server = grpc.server(futures.ThreadPoolExecutor())
/third_party/grpc/bazel/test/python_test_repo/
Dhelloworld_moved.py48 server = grpc.server(futures.ThreadPoolExecutor())
Dhelloworld.py48 server = grpc.server(futures.ThreadPoolExecutor())
/third_party/grpc/examples/python/debug/
Ddebug_server.py50 server = grpc.server(futures.ThreadPoolExecutor())

123