Searched refs:stop_event (Results 1 – 6 of 6) sorted by relevance
/external/autotest/site_utils/ |
D | rpc_flight_recorder.py | 48 def update_shards(shards, shards_lock, period=600, stop_event=None): argument 56 while(not stop_event or not stop_event.is_set()): 87 stop_event=None): argument 98 while(not stop_event or not stop_event.is_set()):
|
/external/grpc-grpc/src/python/grpcio_tests/tests/stress/ |
D | client.py | 124 stop_event = threading.Event() 140 exception_queue, stop_event) 154 stop_event.set()
|
D | test_runner.py | 37 def __init__(self, stub, test_cases, hist, exception_queue, stop_event): argument 40 self._stop_event = stop_event
|
/external/tensorflow/tensorflow/core/platform/default/ |
D | device_tracer.cc | 80 CUevent stop_event; member 91 CUevent stop_event; member 125 LogIfError(CreateAndRecordEvent(&record.stop_event, record.stream)); in StopKernel() 144 LogIfError(CreateAndRecordEvent(&record.stop_event, record.stream)); in StopMemcpy() 601 if (!record.start_event || !record.stop_event) { in SaveRecord() 608 auto elapsed_us = GetElasedTimeUs(record.start_event, record.stop_event); in SaveRecord() 626 if (!record.start_event || !record.stop_event) { in SaveRecord() 633 auto elapsed_us = GetElasedTimeUs(record.start_event, record.stop_event); in SaveRecord()
|
/external/python/cpython3/Lib/multiprocessing/ |
D | managers.py | 157 self.stop_event = threading.Event() 164 while not self.stop_event.is_set(): 165 self.stop_event.wait(1) 230 while not self.stop_event.is_set(): 352 self.stop_event.set()
|
/external/python/cpython3/Doc/howto/ |
D | logging-cookbook.rst | 1466 def listener_process(q, stop_event, config): 1487 stop_event.wait() 1633 stop_event = Event() 1635 args=(q, stop_event, config_listener)) 1644 stop_event.set()
|