/external/autotest/server/cros/dynamic_suite/ |
D | frontend_wrappers.py | 31 def convert_timeout_to_retry(backoff, timeout_min, delay_sec): argument 45 total_sleep = timeout_min * 60 56 def __init__(self, timeout_min=30, delay_sec=10, **dargs): argument 62 self.timeout_min = timeout_min 67 def set_timeout(self, timeout_min): argument 72 self.timeout_min = timeout_min 90 max_retry = convert_timeout_to_retry(backoff, self.timeout_min, 111 @retry.retry(Exception, timeout_min=self.timeout_min, 129 with timeout_util.Timeout(self.timeout_min * 60): 150 def __init__(self, timeout_min=30, delay_sec=10, **dargs): argument [all …]
|
D | frontend_wrappers_unittest.py | 23 timeout_min = 10 27 timeout_min, 61 timeout_min = 0.01 65 timeout_min, 76 timeout_min = 30 80 timeout_min,
|
D | dynamic_suite.py | 441 afe = frontend_wrappers.RetryingAFE(timeout_min=30, delay_sec=10, 443 tko = frontend_wrappers.RetryingTKO(timeout_min=30, delay_sec=10, 501 afe = frontend_wrappers.RetryingAFE(timeout_min=30, delay_sec=10, 503 tko = frontend_wrappers.RetryingTKO(timeout_min=30, delay_sec=10,
|
/external/autotest/server/cros/ |
D | goofy_client.py | 34 def retry_goofy_rpc(exception_tuple, timeout_min=30): argument 64 @retry.retry(exception_tuple, timeout_min=timeout_min) 82 goofy_proxy._create_client_proxy(timeout_min=timeout_min) 133 self._create_client_proxy(timeout_min=self.BASE_RPC_TIMEOUT) 136 def _create_client_proxy(self, timeout_min=30): argument 147 self._host.ping_wait_up(timeout_min) 154 timeout_min=BASE_RPC_TIMEOUT) 172 timeout_min=BASE_RPC_TIMEOUT) 180 def _wait_for_goofy(self, timeout_min=BASE_RPC_TIMEOUT*2): argument 186 timeout_secs = timeout_min * 60 [all …]
|
D | sonic_client_utils.py | 88 @retry.retry(RPC_EXCEPTIONS, timeout_min=BASE_REQUEST_TIMEOUT) 110 @retry.retry(RPC_EXCEPTIONS, timeout_min=BASE_REQUEST_TIMEOUT) 123 @retry.retry(RPC_EXCEPTIONS, timeout_min=BASE_REQUEST_TIMEOUT) 138 @retry.retry(RPC_EXCEPTIONS + (error.TestError,), timeout_min=30)
|
/external/autotest/server/hosts/ |
D | moblab_host.py | 73 def _initialize_frontend_rpcs(self, timeout_min): argument 84 self.afe = frontend_wrappers.RetryingAFE(timeout_min=timeout_min, 88 self.tko = frontend_wrappers.RetryingTKO(timeout_min=self.timeout_min, 99 self.timeout_min = dargs.get('rpc_timeout_min', 1) 100 self._initialize_frontend_rpcs(self.timeout_min) 157 def wait_afe_up(self, timeout_min=5): argument 171 self._initialize_frontend_rpcs(timeout_min) 175 self.afe.set_timeout(self.timeout_min) 227 @retry.retry(error.AutoservError, timeout_min=timeout_m, delay_sec=10)
|
D | adb_host.py | 209 @retry.retry(error.GenericHostRunError, timeout_min=20/60.0, 510 @retry.retry(error.TimeoutException, timeout_min=timeout/60.0, 554 @retry.retry(error.TimeoutException, timeout_min=timeout/60.0, 1129 @retry.retry(error.GenericHostRunError, timeout_min=10) 1189 timeout_min=DISABLE_PACKAGE_VERIFICATION_TIMEOUT_MIN) 1203 @retry.retry(error.GenericHostRunError, timeout_min=APK_INSTALL_TIMEOUT_MIN) 1245 @retry.retry(error.GenericHostRunError, timeout_min=0.2)
|
D | cros_repair.py | 323 @retry.retry(error.AutoservError, timeout_min=2, delay_sec=10) 355 @retry.retry(error.AutoservError, timeout_min=2, delay_sec=10) 383 @retry.retry(error.AutoservError, timeout_min=1, delay_sec=10)
|
D | teststation_host.py | 138 @retry.retry(error.GenericHostRunError, timeout_min=10)
|
D | chameleon_host.py | 188 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
|
/external/autotest/client/common_lib/cros/ |
D | retry.py | 142 def retry(ExceptionToCheck, timeout_min=1.0, delay_sec=3, blacklist=None, argument 199 remaining_time = timeout_min * 60 211 (details, timeout_min * 60)) 238 remaining_time = int(timeout_min * 60 - 243 remaining_time = int(timeout_min * 60 -
|
D | retry_unittest.py | 90 @retry.retry(Exception, timeout_min=0.02, delay_sec=0.1) 99 @retry.retry(Exception, timeout_min=0.02, delay_sec=0.1) 113 @retry.retry(Exception, timeout_min=0.05, delay_sec=0.1) 138 @retry.retry(Exception, timeout_min=0.06, delay_sec=0.1)
|
D | dev_server.py | 349 def remote_devserver_call(timeout_min=DEVSERVER_IS_STAGING_RETRY_MIN, argument 364 timeout_min=timeout_min, 503 load = cls.get_devserver_load(devserver, timeout_min=timeout_sec/60.0) 511 timeout_min=DEVSERVER_SSH_TIMEOUT_MINS): argument 522 @remote_devserver_call(timeout_min=timeout_min) 525 return cls.run_call(call, timeout=timeout_min*60) 531 ' Error: %s', call, timeout_min * 60, e) 581 timeout_min=DEVSERVER_SSH_TIMEOUT_MINS): argument 594 load = cls.get_devserver_load(devserver, timeout_min=timeout_min) 1581 @remote_devserver_call(timeout_min=DEVSERVER_SSH_TIMEOUT_MINS)
|
/external/autotest/site_utils/lxc/ |
D | lxc.py | 83 timeout_min=3*2, 95 timeout_min=(constants.DEVSERVER_CALL_TIMEOUT * 137 @retry.retry(error.CmdError, timeout_min=30) 200 @retry.retry(error.CmdError, timeout_min=20) 219 @retry.retry(error.CmdError, timeout_min=20)
|
D | shared_host_dir.py | 105 @retry.retry(error.CmdError, timeout_min=timeout/60.0, 124 @retry.retry(error.CmdError, timeout_min=timeout/60.0,
|
/external/autotest/site_utils/ |
D | test_push.py | 56 AFE = frontend_wrappers.RetryingAFE(timeout_min=0.5, delay_sec=2) 57 TKO = frontend_wrappers.RetryingTKO(timeout_min=0.1, delay_sec=10) 102 @retry.retry(TestPushException, timeout_min=5, delay_sec=30) 287 end = time.time() + arguments.timeout_min * 60 296 arguments.timeout_min)
|
D | dump_suite_report.py | 48 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10, 50 tko = frontend_wrappers.RetryingTKO(timeout_min=5, delay_sec=10)
|
D | sync_cloudsql_access.py | 63 @retry.retry(error.CmdError, timeout_min=3)
|
/external/autotest/server/cros/power/ |
D | servo_v4_charge_utils.py | 78 @retry.retry(error.TestError, timeout_min=_TIMEOUT_MIN, 88 @retry.retry(error.TestError, timeout_min=_TIMEOUT_MIN,
|
/external/autotest/contrib/ |
D | abortjob | 13 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
|
/external/autotest/client/cros/multimedia/ |
D | facade_resource.py | 23 timeout_min=_FLAKY_CALL_RETRY_TIMEOUT_SEC / 60.0, 39 timeout_min=_FLAKY_CHROME_START_RETRY_TIMEOUT_SEC / 60.0,
|
/external/autotest/server/site_tests/brillo_PingTest/ |
D | brillo_PingTest.py | 50 @retry.retry(error.GenericHostRunError, timeout_min=1.5, delay_sec=3)
|
/external/autotest/server/ |
D | afe_utils.py | 19 AFE = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
|
/external/autotest/venv/skylab_suite/ |
D | README.md | 37 --suite_name provision --pool suites --priority 50 --timeout_min 30 --test_retry
|
/external/autotest/site_utils/chromeos_proxy/ |
D | swarming_bot_manager.py | 90 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10,
|