Searched refs:multiprocessing (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dmanager_worker_broker.py56 # Handle Python < 2.6 where multiprocessing isn't available.
58 import multiprocessing namespace
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)
H A Dmanager_worker_broker_unittest.py35 import multiprocessing namespace
37 multiprocessing = None variable
130 if multiprocessing:
237 if multiprocessing and sys.platform not in ('cygwin', 'win32'):
245 return multiprocessing.Queue()
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dgjslint.py51 # Attempt import of multiprocessing (should be available in Python 2.6 and up).
54 import multiprocessing namespace
56 multiprocessing = None variable
72 'multiprocessing module. Disabled by default.')
84 shard out linting over all CPUs with multiprocessing to parallelize.
93 pool = multiprocessing.Pool()
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dport_testcase.py34 # Handle Python < 2.6 where multiprocessing isn't available.
36 import multiprocessing namespace
38 multiprocessing = None variable
69 if multiprocessing:
H A Dbase.py43 # Handle Python < 2.6 where multiprocessing isn't available.
45 import multiprocessing namespace
47 multiprocessing = None variable
140 self._multiprocessing_is_available = (multiprocessing is not None)
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dexecutive.py32 import multiprocessing namespace
34 multiprocessing = None variable
167 if multiprocessing:
168 return multiprocessing.cpu_count()
169 # Darn. We don't have the multiprocessing package.
/external/v8/tools/
H A Dpresubmit.py45 import multiprocessing namespace
243 count = multiprocessing.cpu_count()
244 pool = multiprocessing.Pool(count)
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
H A Drun_webkit_tests_unittest.py47 import multiprocessing namespace
49 multiprocessing = None variable
543 # with the multiprocessing module (bug 54520).
544 if multiprocessing and sys.platform not in ('cygwin', 'win32'):
548 if multiprocessing and sys.platform not in ('cygwin', 'win32'):
/external/webkit/Tools/Scripts/
H A Drun-qtwebkit-tests190 from multiprocessing import Pool
192 self.warn("Import Error: the multiprocessing module couldn't be loaded (may be lack of python-multiprocessing package?). The Qt autotests will be executed one by one.")
197 """ A hack, created to avoid problems with multiprocessing module, this class is single thread replacement for the multiprocessing.Pool class. """

Completed in 1253 milliseconds