Home
last modified time | relevance | path

Searched refs:stop_event (Results 1 – 6 of 6) sorted by relevance

/external/autotest/site_utils/
Drpc_flight_recorder.py48 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/
Dclient.py124 stop_event = threading.Event()
140 exception_queue, stop_event)
154 stop_event.set()
Dtest_runner.py37 def __init__(self, stub, test_cases, hist, exception_queue, stop_event): argument
40 self._stop_event = stop_event
/external/tensorflow/tensorflow/core/platform/default/
Ddevice_tracer.cc80 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/
Dmanagers.py157 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/
Dlogging-cookbook.rst1466 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()