Searched refs:shutdown_timeout (Results 1 – 17 of 17) sorted by relevance
/external/rust/crates/tokio/tests/ |
D | rt_handle_block_on.rs | 145 rt.shutdown_timeout(Duration::from_secs(1000)); 176 rt.shutdown_timeout(Duration::from_secs(1000)); 198 rt.shutdown_timeout(Duration::from_secs(1000)); 224 rt.shutdown_timeout(Duration::from_secs(1000)); 246 rt.shutdown_timeout(Duration::from_secs(1000)); 274 rt.shutdown_timeout(Duration::from_secs(1000)); 296 rt.shutdown_timeout(Duration::from_secs(1000)); 318 rt.shutdown_timeout(Duration::from_secs(1000)); 342 rt.shutdown_timeout(Duration::from_secs(1000)); 366 rt.shutdown_timeout(Duration::from_secs(1000)); [all …]
|
D | rt_common.rs | 844 fn shutdown_timeout() { 857 Arc::try_unwrap(runtime).unwrap().shutdown_timeout(Duration::from_millis(100)); 871 Arc::try_unwrap(runtime).unwrap().shutdown_timeout(Duration::from_nanos(0)); 883 Arc::try_unwrap(runtime).unwrap().shutdown_timeout(Duration::from_secs(10_000));
|
D | task_blocking.rs | 149 rt.shutdown_timeout(Duration::from_nanos(0)); in can_shutdown_with_zero_timeout_in_runtime()
|
/external/tensorflow/tensorflow/python/tpu/ |
D | session_support.py | 200 shutdown_timeout=2 * 3600): argument 213 self.shutdown_timeout = shutdown_timeout 244 timeout_ms = self.shutdown_timeout * 1000 255 'and %d second ping interval.', self.shutdown_timeout, 290 shutdown_timeout=3600): argument 295 ping_interval = min(shutdown_timeout / 10., ping_interval) 297 shutdown_timeout)
|
/external/autotest/server/site_tests/firmware_FwScreenPressPower/ |
D | firmware_FwScreenPressPower.py | 115 shutdown_timeout=self.SHORT_SHUTDOWN_CONFIRMATION_PERIOD 130 shutdown_timeout=self.SHORT_SHUTDOWN_CONFIRMATION_PERIOD) 146 shutdown_timeout=self.SHORT_SHUTDOWN_CONFIRMATION_PERIOD) 167 shutdown_timeout=self.SHORT_SHUTDOWN_CONFIRMATION_PERIOD)
|
/external/autotest/server/site_tests/firmware_FwScreenCloseLid/ |
D | firmware_FwScreenCloseLid.py | 123 shutdown_timeout=self.SHORT_SHUTDOWN_CONFIRMATION_PERIOD) 139 shutdown_timeout=self.SHORT_SHUTDOWN_CONFIRMATION_PERIOD) 156 shutdown_timeout=self.SHORT_SHUTDOWN_CONFIRMATION_PERIOD) 179 shutdown_timeout=self.SHORT_SHUTDOWN_CONFIRMATION_PERIOD)
|
/external/rust/crates/tokio/src/runtime/ |
D | mod.rs | 527 pub fn shutdown_timeout(mut self, duration: Duration) { 560 self.shutdown_timeout(Duration::from_nanos(0))
|
/external/toybox/lib/ |
D | net.c | 99 int pollinate(int in1, int in2, int out1, int out2, int timeout, int shutdown_timeout) in pollinate() argument 129 timeout = shutdown_timeout; in pollinate()
|
D | lib.h | 366 int pollinate(int in1, int in2, int out1, int out2, int timeout, int shutdown_timeout);
|
/external/tensorflow/tensorflow/compiler/xla/pjrt/distributed/ |
D | client.h | 52 absl::Duration shutdown_timeout = absl::Seconds(60); member
|
D | service.cc | 185 options_.shutdown_timeout)) { in Shutdown() 188 "Timed out after ", absl::FormatDuration(options_.shutdown_timeout), in Shutdown()
|
D | service.h | 55 absl::Duration shutdown_timeout = absl::Seconds(60); member
|
D | client.cc | 174 ctx.set_deadline(absl::ToChronoTime(absl::Now() + options_.shutdown_timeout)); in Shutdown()
|
/external/autotest/server/site_tests/display_HotPlugAtBoot/ |
D | display_HotPlugAtBoot.py | 76 shutdown_timeout=self.REBOOT_TIMEOUT)
|
/external/autotest/server/hosts/ |
D | cros_host.py | 2084 def test_wait_for_shutdown(self, shutdown_timeout=None): argument 2106 if shutdown_timeout is None: 2107 shutdown_timeout = self.SHUTDOWN_TIMEOUT 2110 success = self.wait_down(timeout=shutdown_timeout) 2112 success = self.ping_wait_down(timeout=shutdown_timeout) 2117 shutdown_timeout)
|
/external/autotest/server/cros/faft/ |
D | firmware_test.py | 1676 shutdown_timeout=None): argument 1690 if shutdown_timeout is None: 1691 shutdown_timeout = self.faft_config.shutdown_timeout 1692 self.switcher.wait_for_client(timeout=shutdown_timeout)
|
/external/rust/crates/tokio/ |
D | CHANGELOG.md | 334 - rt: fix `shutdown_timeout(0)` ([#3196]). 816 - rt: `Runtime::shutdown_timeout` waits for runtime to shutdown for specified
|