Home
last modified time | relevance | path

Searched refs:multiprocessing (Results 1 – 13 of 13) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
Dmanager_worker_broker.py58 import multiprocessing
60 multiprocessing = None variable
109 elif worker_model == 'processes' and multiprocessing:
110 queue_class = multiprocessing.Queue
306 if multiprocessing:
308 class _Process(multiprocessing.Process):
310 multiprocessing.Process.__init__(self)
Dmanager_worker_broker_unittest.py35 import multiprocessing
37 multiprocessing = None variable
130 if multiprocessing:
237 if multiprocessing and sys.platform not in ('cygwin', 'win32'):
245 return multiprocessing.Queue()
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
Dport_testcase.py36 import multiprocessing
38 multiprocessing = None variable
69 if multiprocessing:
Dbase.py45 import multiprocessing
47 multiprocessing = None variable
140 self._multiprocessing_is_available = (multiprocessing is not None)
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
Dgjslint.py54 import multiprocessing
56 multiprocessing = None variable
93 pool = multiprocessing.Pool()
/external/webkit/Tools/Scripts/webkitpy/common/system/
Dexecutive.py32 import multiprocessing
34 multiprocessing = None variable
167 if multiprocessing:
168 return multiprocessing.cpu_count()
/external/v8/tools/
Dpresubmit.py45 import multiprocessing
243 count = multiprocessing.cpu_count()
244 pool = multiprocessing.Pool(count)
/external/llvm/utils/lit/
DTODO5 - Optionally use multiprocessing.
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
Drun_webkit_tests_unittest.py47 import multiprocessing
49 multiprocessing = None variable
544 if multiprocessing and sys.platform not in ('cygwin', 'win32'):
548 if multiprocessing and sys.platform not in ('cygwin', 'win32'):
/external/webkit/Tools/Scripts/
Drun-qtwebkit-tests190 from multiprocessing import Pool
/external/webkit/Tools/
DChangeLog-2011-02-16131 multiprocessing model. This requires us to be running a Python
294 nrwt multiprocessing: add code to handle interrupts and wedged
311 update the NRWT multiprocessing code to spawn multiple workers
740 nrwt multiprocessing: minor cleanup prior to implementing the new worker
866 so that we can reuse it in the new multiprocessing worker class
898 will be able to reuse it in the new multiprocessing worker class as well.
2362 multiprocessing changes.
6341 nrwt multiprocessing - start over, prepare to fork the code
8629 nrwt multiprocessing - move logic back into run_webkit_tests
8733 new-run-webkit-tests: minor cleanup for multiprocessing work
[all …]
DChangeLog6626 Skip another multiprocessing test on Windows
7601 … nrwt: turn on multiprocessing on chromium_linux, clean up unit tests for worker model defaults
8186 test-webkitpy doesn't work with the multiprocessing module on win32
DChangeLog-2010-05-247220 something in the multiprocessing package. The lame bit is that package
11228 - Moved the import of the multiprocessing module to the top