Searched refs:next_time (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_zipfile64.py | 54 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL 58 if next_time <= time.time(): 59 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL 71 if next_time <= time.time(): 72 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL
|
D | test_bsddb3.py | 49 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL variable in TimingCheck 54 if self.next_time <= now: 55 TimingCheck.next_time = now + self._PRINT_WORKING_MSG_INTERVAL
|
D | test_compiler.py | 25 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL 34 if next_time <= time.time(): 35 next_time = time.time() + _PRINT_WORKING_MSG_INTERVAL
|
/external/python/cpython3/Lib/test/ |
D | test_zipfile64.py | 46 next_time = time.monotonic() + _PRINT_WORKING_MSG_INTERVAL 50 if next_time <= time.monotonic(): 51 next_time = time.monotonic() + _PRINT_WORKING_MSG_INTERVAL 63 if next_time <= time.monotonic(): 64 next_time = time.monotonic() + _PRINT_WORKING_MSG_INTERVAL
|
/external/tensorflow/tensorflow/contrib/seq2seq/python/ops/ |
D | sampler.py | 266 next_time = time + 1 267 finished = (next_time >= self.sequence_length) 271 return inp.read(next_time) 455 next_time = time + 1 456 auxiliary_inputs = nest.map_structure(lambda ta: ta.read(next_time),
|
D | helper.py | 304 next_time = time + 1 305 finished = (next_time >= self._sequence_length) 308 return inp.read(next_time) 514 next_time = time + 1 516 lambda ta: ta.read(next_time), self._auxiliary_input_tas)
|
/external/autotest/client/cros/power/ |
D | power_test.py | 98 next_time = self._start_time + (loop + 1) * sleep_secs 99 time.sleep(next_time - time.time())
|
/external/wpa_supplicant_8/src/ap/ |
D | sta_info.c | 415 unsigned long next_time = 0; in ap_handle_timer() local 450 next_time = hapd->conf->ap_max_inactivity + fuzz; in ap_handle_timer() 465 next_time = hapd->conf->ap_max_inactivity + fuzz - in ap_handle_timer() 488 next_time = hapd->conf->ap_max_inactivity; in ap_handle_timer() 492 if (next_time) { in ap_handle_timer() 495 __func__, MAC2STR(sta->addr), next_time); in ap_handle_timer() 496 eloop_register_timeout(next_time, 0, ap_handle_timer, hapd, in ap_handle_timer()
|
/external/tensorflow/tensorflow/python/ops/ |
D | rnn.py | 1168 next_time = time + 1 1171 next_time, next_output, cell_state, loop_state) 1202 return (next_time, elements_finished, next_input,
|