Home
last modified time | relevance | path

Searched refs:next_time (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_zipfile64.py54 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
Dtest_bsddb3.py49 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
Dtest_compiler.py25 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/
Dtest_zipfile64.py46 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/
Dsampler.py266 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),
Dhelper.py304 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/
Dpower_test.py98 next_time = self._start_time + (loop + 1) * sleep_secs
99 time.sleep(next_time - time.time())
/external/wpa_supplicant_8/src/ap/
Dsta_info.c415 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/
Drnn.py1168 next_time = time + 1
1171 next_time, next_output, cell_state, loop_state)
1202 return (next_time, elements_finished, next_input,