Home
last modified time | relevance | path

Searched refs:map_async (Results 1 - 6 of 6) sorted by relevance

/third_party/vixl/tools/
H A Dthread_pool.py53 pool.map_async(function, list_of_args).get(9999999)
H A Dlint.py105 # 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 Dv8_presubmit.py340 results = pool.map_async(worker, commands).get(timeout=240)
/third_party/skia/third_party/externals/angle2/scripts/
H A Dprocess_angle_perf_results.py580 async_result = pool.map_async(_upload_individual_benchmark, invocations)
/third_party/python/Lib/test/
H A D_test_multiprocessing.py2453 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 Dpool.py463 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