/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 | 454 afe = frontend_wrappers.RetryingAFE(timeout_min=30, delay_sec=10, 456 tko = frontend_wrappers.RetryingTKO(timeout_min=30, delay_sec=10, 514 afe = frontend_wrappers.RetryingAFE(timeout_min=30, delay_sec=10, 516 tko = frontend_wrappers.RetryingTKO(timeout_min=30, delay_sec=10,
|
/external/autotest/server/cros/ |
D | goofy_client.py | 35 def retry_goofy_rpc(exception_tuple, timeout_min=30): argument 65 @retry.retry(exception_tuple, timeout_min=timeout_min) 83 goofy_proxy._create_client_proxy(timeout_min=timeout_min) 134 self._create_client_proxy(timeout_min=self.BASE_RPC_TIMEOUT) 137 def _create_client_proxy(self, timeout_min=30): argument 148 self._host.ping_wait_up(timeout_min) 155 timeout_min=BASE_RPC_TIMEOUT) 173 timeout_min=BASE_RPC_TIMEOUT) 181 def _wait_for_goofy(self, timeout_min=BASE_RPC_TIMEOUT*2): argument 187 timeout_secs = timeout_min * 60 [all …]
|
/external/autotest/server/hosts/ |
D | moblab_host.py | 79 def _initialize_frontend_rpcs(self, timeout_min): argument 90 self.afe = frontend_wrappers.RetryingAFE(timeout_min=timeout_min, 94 self.tko = frontend_wrappers.RetryingTKO(timeout_min=self.timeout_min, 105 self.timeout_min = dargs.get('rpc_timeout_min', 1) 106 self._initialize_frontend_rpcs(self.timeout_min) 162 def wait_afe_up(self, timeout_min=5): argument 176 self._initialize_frontend_rpcs(timeout_min) 180 self.afe.set_timeout(self.timeout_min) 245 @retry.retry(error.AutoservError, timeout_min=timeout_m, delay_sec=10)
|
D | chameleon_host.py | 188 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10) 275 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
|
D | teststation_host.py | 138 @retry.retry(error.GenericHostRunError, timeout_min=10)
|
D | afe_store.py | 30 timeout_min=self._RETRYING_AFE_TIMEOUT_MIN,
|
/external/autotest/client/common_lib/cros/ |
D | retry.py | 142 def retry(ExceptionToCheck, timeout_min=1.0, delay_sec=3, raiselist=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 | 269 def remote_devserver_call(timeout_min=DEVSERVER_IS_STAGING_RETRY_MIN, argument 284 timeout_min=timeout_min, 423 load = cls.get_devserver_load(devserver, timeout_min=timeout_sec/60.0) 431 timeout_min=DEVSERVER_SSH_TIMEOUT_MINS): argument 442 @remote_devserver_call(timeout_min=timeout_min) 445 return cls.run_call(call, timeout=timeout_min*60) 451 ' Error: %s', call, timeout_min * 60, e) 501 timeout_min=DEVSERVER_SSH_TIMEOUT_MINS): argument 514 load = cls.get_devserver_load(devserver, timeout_min=timeout_min) 1495 @remote_devserver_call(timeout_min=DEVSERVER_SSH_TIMEOUT_MINS)
|
/external/autotest/server/cros/power/ |
D | servo_charger.py | 161 @retry.retry(error.TestError, timeout_min=_TIMEOUT_MIN, 172 @retry.retry(error.TestError, timeout_min=_TIMEOUT_MIN, 193 @retry.retry(error.TestError, timeout_min=_ETH_REENUMERATE_TIMEOUT_MIN,
|
/external/autotest/site_utils/lxc/ |
D | lxc.py | 83 timeout_min=3*2, 95 timeout_min=(constants.DEVSERVER_CALL_TIMEOUT * 157 @retry.retry(error.CmdError, timeout_min=30)
|
/external/autotest/site_utils/ |
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 | test_push.py | 60 AFE = frontend_wrappers.RetryingAFE(timeout_min=0.5, delay_sec=2) 61 TKO = frontend_wrappers.RetryingTKO(timeout_min=0.1, delay_sec=10) 106 @retry.retry(TestPushException, timeout_min=5, delay_sec=30) 291 end = time.time() + arguments.timeout_min * 60 300 arguments.timeout_min)
|
D | sync_cloudsql_access.py | 67 @retry.retry(error.CmdError, timeout_min=3)
|
D | lxc_cleanup.py | 33 AFE = frontend_wrappers.RetryingAFE(timeout_min=0.1, delay_sec=10)
|
/external/autotest/server/site_tests/power_Monitoring/ |
D | power_Monitoring.py | 185 @retry.retry(error.TestFail, timeout_min=GET_CHARGE_TIMEOUT_MIN, 191 @retry.retry(error.TestFail, timeout_min=GET_CHARGE_WITH_RESET_TIMEOUT_MIN, 247 @retry.retry(error.TestFail, timeout_min=VERIFY_DUT_PINGABLE_TIMEOUT_MIN,
|
/external/autotest/contrib/ |
D | abortjob | 13 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
|
D | manage_powerunit_info.py | 173 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10,
|
/external/autotest/client/cros/multimedia/ |
D | facade_resource.py | 24 timeout_min=_FLAKY_CALL_RETRY_TIMEOUT_SEC / 60.0, 40 timeout_min=_FLAKY_CHROME_START_RETRY_TIMEOUT_SEC / 60.0,
|
/external/autotest/client/site_tests/policy_VirtualMachinesAllowed/ |
D | policy_VirtualMachinesAllowed.py | 24 @retry.retry(TimeoutException, timeout_min=5, delay_sec=10)
|
/external/autotest/client/site_tests/policy_DeviceEphemeralUsersEnabled/ |
D | policy_DeviceEphemeralUsersEnabled.py | 30 @retry.retry(TimeoutException, timeout_min=5, delay_sec=10)
|
/external/autotest/site_utils/stats/ |
D | mysql_stats.py | 85 timeout_min=self.MAX_TIMEOUT_SECONDS,
|
/external/autotest/server/ |
D | sequence.py | 142 afe = frontend_wrappers.RetryingAFE(timeout_min=30, delay_sec=10,
|