HomeSort by relevance Sort by last modified time
    Searched refs:map_async (Results 1 - 22 of 22) sorted by null

  /external/python/cpython3/Lib/test/
test_multiprocessing_main_handling.py 60 p.map_async(f, [1, 2, 3], callback=results.extend)
88 p.map_async(int, [1, 4, 9], callback=results.extend)
_test_multiprocessing.py     [all...]
  /external/vixl/tools/
threaded_tests.py 148 work = pool.map_async(RunTest, tests).get(9999999)
clang_format.py 118 # The multiprocessing map_async function does not allow passing multiple
147 results = pool.map_async(ClangFormatWrapper, tasks).get(9999999)
lint.py 102 # The multiprocessing map_async function does not allow passing multiple
163 results = pool.map_async(LintWrapper, tasks).get(9999999)
  /external/autotest/site_utils/
deploy_server.py 129 results = pool.map_async(do_server, servers)
  /external/python/cpython2/Doc/includes/
mp_pool.py 226 r = pool.map_async(pow3, range(10), callback=A.extend)
  /external/llvm/utils/
extract_symbols.py 422 result = pool.map_async(extract_symbols, vals)
  /external/python/cpython2/Lib/multiprocessing/
pool.py 251 return self.map_async(func, iterable, chunksize).get()
298 def map_async(self, func, iterable, chunksize=None, callback=None): member in class:Pool
584 # Class whose instances are returned by `Pool.map_async()`
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
pool.py 250 return self.map_async(func, iterable, chunksize).get()
297 def map_async(self, func, iterable, chunksize=None, callback=None): member in class:Pool
571 # Class whose instances are returned by `Pool.map_async()`
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
pool.py 250 return self.map_async(func, iterable, chunksize).get()
297 def map_async(self, func, iterable, chunksize=None, callback=None): member in class:Pool
571 # Class whose instances are returned by `Pool.map_async()`
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
pool.py 250 return self.map_async(func, iterable, chunksize).get()
297 def map_async(self, func, iterable, chunksize=None, callback=None): member in class:Pool
571 # Class whose instances are returned by `Pool.map_async()`
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
pool.py 250 return self.map_async(func, iterable, chunksize).get()
297 def map_async(self, func, iterable, chunksize=None, callback=None): member in class:Pool
571 # Class whose instances are returned by `Pool.map_async()`
  /external/pdfium/testing/tools/
safetynet_compare.py 446 worker_results = (pool.map_async(worker_func, self.test_cases)
  /external/v8/tools/
presubmit.py 265 results = pool.map_async(CppLintWorker, commands).get(999999)
  /external/python/cpython3/Lib/multiprocessing/
pool.py 327 def map_async(self, func, iterable, chunksize=None, callback=None, member in class:Pool
622 # Class whose instances are returned by `Pool.map_async()`
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_multiprocessing.py 1050 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1)
1052 self.fail("pool.map_async with chunksize stalled on null list")
    [all...]
  /external/python/cpython2/Lib/test/
test_multiprocessing.py     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_multiprocessing.py 1122 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1)
1124 self.fail("pool.map_async with chunksize stalled on null list")
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_multiprocessing.py 1122 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1)
1124 self.fail("pool.map_async with chunksize stalled on null list")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py 1122 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1)
1124 self.fail("pool.map_async with chunksize stalled on null list")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py 1122 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1)
1124 self.fail("pool.map_async with chunksize stalled on null list")
    [all...]

Completed in 767 milliseconds