Searched refs:map_async (Results 1 - 6 of 6) sorted by relevance
/third_party/vixl/tools/ |
H A D | thread_pool.py | 53 pool.map_async(function, list_of_args).get(9999999)
|
H A D | lint.py | 105 # The multiprocessing map_async function does not allow passing multiple 166 results = pool.map_async(LintWrapper, tasks).get(9999999)
|
/third_party/node/deps/v8/tools/ |
H A D | v8_presubmit.py | 340 results = pool.map_async(worker, commands).get(timeout=240)
|
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | process_angle_perf_results.py | 580 async_result = pool.map_async(_upload_individual_benchmark, invocations)
|
/third_party/python/Lib/test/ |
H A D | _test_multiprocessing.py | 2453 self.assertEqual(self.pool.map_async(sqr, list(range(10))).get(), 2458 self.pool.map_async(int, ['1'], 2463 self.pool.map_async(int, ['a'], 2481 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1) 2483 self.fail("pool.map_async with chunksize stalled on null list") 2622 result = self.pool.map_async( 2638 self.assertEqual(p.map_async(sqr, []).get(), []) 2648 r = p.map_async(sqr, L) 2651 self.assertRaises(ValueError, p.map_async, sqr, L)
|
/third_party/python/Lib/multiprocessing/ |
H A D | pool.py | 463 def map_async(self, func, iterable, chunksize=None, callback=None, member in Pool 791 # Class whose instances are returned by `Pool.map_async()`
|
Completed in 13 milliseconds