/external/autotest/server/cros/dynamic_suite/ |
D | frontend_wrappers.py | 17 def convert_timeout_to_retry(backoff, timeout_min, delay_sec): argument 31 total_sleep = timeout_min * 60 42 def __init__(self, timeout_min=30, delay_sec=10, **dargs): argument 48 self.timeout_min = timeout_min 60 max_retry = convert_timeout_to_retry(backoff, self.timeout_min, 81 @retry.retry(Exception, timeout_min=self.timeout_min, 92 with timeout_util.Timeout(self.timeout_min * 60): 104 def __init__(self, timeout_min=30, delay_sec=10, **dargs): argument 110 self.timeout_min = timeout_min 116 @retry.retry(Exception, timeout_min=self.timeout_min,
|
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 | 524 afe = frontend_wrappers.RetryingAFE(timeout_min=30, delay_sec=10, 526 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)
|
D | host_lock_manager.py | 62 timeout_min=30, delay_sec=10, debug=False,
|
/external/autotest/server/hosts/ |
D | moblab_host.py | 53 timeout_min = dargs.get('rpc_timeout_min', 1) 54 self.afe = frontend_wrappers.RetryingAFE(timeout_min=timeout_min, 57 self.tko = frontend_wrappers.RetryingTKO(timeout_min=timeout_min, 130 def wait_afe_up(self, timeout_min=5): argument 143 afe = frontend_wrappers.RetryingAFE(timeout_min=timeout_min,
|
D | rpc_server_tracker.py | 152 timeout_min=timeout_seconds / 60.0,
|
D | chameleon_host.py | 221 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
|
D | servo_host.py | 431 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10) 696 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
|
D | adb_host.py | 438 @retry.retry(error.TimeoutException, timeout_min=timeout/60.0, 474 @retry.retry(error.TimeoutException, timeout_min=timeout/60.0, 1007 @retry.retry(error.AutoservRunError, timeout_min=10)
|
/external/autotest/client/common_lib/cros/ |
D | retry_unittest.py | 85 @retry.retry(Exception, timeout_min=0.02, delay_sec=0.1) 97 @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 | 130 def remote_devserver_call(timeout_min=30): argument 140 @retry.retry(urllib2.URLError, timeout_min=timeout_min) 216 timeout_min=timeout_sec/60.0) 223 def get_devserver_load(devserver, timeout_min=0.1): argument 238 @remote_devserver_call(timeout_min=timeout_min) 242 call, timeout=timeout_min * 60).read() 256 ' Error: %s', call, timeout_min * 60, e) 278 def devserver_healthy(devserver, timeout_min=0.1): argument 291 load = DevServer.get_devserver_load(devserver, timeout_min=timeout_min) 970 @remote_devserver_call(timeout_min=0.5)
|
D | retry.py | 114 def retry(ExceptionToCheck, timeout_min=1.0, delay_sec=3, blacklist=None): argument 155 remaining_time = timeout_min * 60 182 remaining_time = int(timeout_min*60 -
|
/external/autotest/site_utils/ |
D | test_push.py | 50 AFE = frontend_wrappers.RetryingAFE(timeout_min=0.5, delay_sec=2) 282 end = time.time() + arguments.timeout_min * 60 291 arguments.timeout_min) 340 TKO = frontend_wrappers.RetryingTKO(timeout_min=0.1, delay_sec=10)
|
D | lxc.py | 257 @retry.retry(error.CmdError, timeout_min=5) 298 @retry.retry(error.CmdError, timeout_min=30) 342 @retry.retry(error.CmdError, timeout_min=20) 362 @retry.retry(error.CmdError, timeout_min=20)
|
D | lxc_cleanup.py | 36 AFE = frontend_wrappers.RetryingAFE(timeout_min=0.1, delay_sec=10)
|
/external/autotest/tko/ |
D | db_mysql.py | 7 @retry.retry(db._get_error_class("OperationalError"), timeout_min=2,
|
/external/autotest/server/ |
D | afe_utils.py | 16 AFE = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
|
D | sequence.py | 134 afe = frontend_wrappers.RetryingAFE(timeout_min=30, delay_sec=10,
|
/external/autotest/client/cros/multimedia/ |
D | facade_resource.py | 18 timeout_min=_FLAKY_CALL_RETRY_TIMEOUT_SEC / 60.0,
|
/external/autotest/site_utils/suite_scheduler/ |
D | deduping_scheduler.py | 49 self._afe = afe or frontend_wrappers.RetryingAFE(timeout_min=30,
|
/external/autotest/contrib/ |
D | manage_powerunit_info.py | 173 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10,
|
/external/autotest/server/cros/multimedia/ |
D | remote_facade_factory.py | 120 timeout_min=self.XMLRPC_RETRY_TIMEOUT / 60.0,
|
/external/autotest/cli/ |
D | site_host.py | 99 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
|