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.py49 def update_shards(shards, shards_lock, period=600, stop_event=None): argument
57 while(not stop_event or not stop_event.is_set()):
88 stop_event=None): argument
99 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/profiler/internal/gpu/
Dcupti_tracer.cc636 CUevent stop_event; member
649 CUevent stop_event; member
741 LogIfError(CreateAndRecordEvent(&record.stop_event, record.stream)); in StopKernel()
763 LogIfError(CreateAndRecordEvent(&record.stop_event, record.stream)); in StopMemcpy()
904 if (!record.start_event || !record.stop_event) { in SaveRecord()
911 auto elapsed_us = GetElapsedTimeUs(record.start_event, record.stop_event); in SaveRecord()
934 if (!record.start_event || !record.stop_event) { in SaveRecord()
941 auto elapsed_us = GetElapsedTimeUs(record.start_event, record.stop_event); in SaveRecord()
/external/python/cpython3/Lib/multiprocessing/
Dmanagers.py166 self.stop_event = threading.Event()
173 while not self.stop_event.is_set():
174 self.stop_event.wait(1)
239 while not self.stop_event.is_set():
361 self.stop_event.set()
/external/python/cpython3/Doc/howto/
Dlogging-cookbook.rst1506 def listener_process(q, stop_event, config):
1527 stop_event.wait()
1667 stop_event = Event()
1669 args=(q, stop_event, config_listener))
1678 stop_event.set()