/external/python/cpython2/Doc/includes/ |
D | mp_pool.py | 247 assert worker.is_alive() 256 assert not worker.is_alive() 274 assert not worker.is_alive() 295 assert not worker.is_alive()
|
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/ |
D | multiprocessing_shim.py | 48 def is_alive(self): member in ProcessShim 49 return self._proc.is_alive()
|
/external/tensorflow/tensorflow/python/training/ |
D | coordinator.py | 363 while any(t.is_alive() for t in threads) and not self.wait_for_stop(1.0): 372 while any(t.is_alive() for t in threads) and stop_grace_period_secs >= 0.0: 382 stragglers = [t.name for t in threads if t.is_alive()]
|
D | coordinator_test.py | 109 self.assertFalse(t.is_alive()) 123 self.assertFalse(t.is_alive()) 138 self.assertFalse(t.is_alive())
|
/external/autotest/client/cros/cellular/mbim_compliance/ |
D | mbim_channel.py | 120 if self._endpoint_process.is_alive(): 123 if self._endpoint_process.is_alive(): 378 if not self._endpoint_process.is_alive():
|
D | mbim_channel_unittest.py | 71 mock_process.is_alive().MultipleTimes().AndReturn(True) 73 mock_process.is_alive().AndReturn(True)
|
/external/python/cpython3/Lib/ |
D | threading.py | 803 def _reset_internal_locks(self, is_alive): argument 807 if is_alive: 820 self.is_alive() # easy way to get ._is_stopped set when appropriate 1080 def is_alive(self): member in Thread 1102 return self.is_alive() 1204 def is_alive(self): member in _DummyThread 1286 if not t.daemon and t.is_alive():
|
/external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/testGenerator/ |
D | SubprocessLogger.py | 173 if stdOutLogger.is_alive(): 175 if stdErrLogger.is_alive():
|
/external/python/cpython3/Lib/multiprocessing/dummy/ |
D | __init__.py | 55 if self._start_called and not self.is_alive(): 71 if not p.is_alive():
|
/external/python/cpython2/Lib/multiprocessing/dummy/ |
D | __init__.py | 79 if self._start_called and not self.is_alive(): 102 if not p.is_alive():
|
/external/python/cpython3/Lib/test/ |
D | test_threading.py | 111 self.assertFalse(t.is_alive()) 175 self.assertTrue(threading._active[tid].is_alive()) 480 os._exit(11 if t.is_alive() else 10) 595 self.assertTrue(t.is_alive()) 607 self.assertTrue(t.is_alive()) 610 self.assertFalse(t.is_alive())
|
D | threaded_import_hangers.py | 42 if t.is_alive():
|
D | test_poll.py | 220 self.assertTrue(poll_thread.is_alive()) 225 self.assertFalse(poll_thread.is_alive())
|
/external/python/cpython2/Lib/test/ |
D | threaded_import_hangers.py | 41 if t.is_alive():
|
D | test_poll.py | 221 self.assertTrue(poll_thread.is_alive()) 226 self.assertFalse(poll_thread.is_alive())
|
D | test_queue.py | 58 if self.t.is_alive(): 78 if self.t.is_alive():
|
/external/autotest/client/cros/enterprise/ |
D | enterprise_fake_dmserver.py | 63 if self.process.is_alive():
|
/external/scapy/test/tls/ |
D | travis_test_client.py | 50 if th_.is_alive():
|
/external/autotest/client/site_tests/power_IdleSuspend/ |
D | power_IdleSuspend.py | 94 if thread.is_alive():
|
/external/autotest/client/site_tests/power_AudioDetector/ |
D | power_AudioDetector.py | 84 if thread.is_alive():
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.train.-looper-thread.pbtxt | 34 name: "is_alive"
|
/external/autotest/site_utils/ |
D | test_push.py | 429 while push_to_prod_suite.is_alive() or asynchronous_suite.is_alive():
|
/external/autotest/client/cros/ |
D | device_jail_utils.py | 55 if self._thread.is_alive() and not exc_val:
|
/external/python/cpython2/Lib/multiprocessing/ |
D | pool.py | 486 while task_handler.is_alive() and inqueue._reader.poll(): 502 assert result_handler.is_alive() or len(cache) == 0 531 if p.is_alive():
|
/external/python/cpython3/Lib/concurrent/futures/ |
D | process.py | 318 n_children_alive = sum(p.is_alive() for p in processes.values()) 330 n_children_alive = sum(p.is_alive() for p in processes.values())
|