/external/autotest/server/cros/dynamic_suite/ |
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,
|
frontend_wrappers.py | 17 def convert_timeout_to_retry(backoff, timeout_min, delay_sec): 21 @param timeout_min: The maximum amount of time (in minutes) to sleep. 31 total_sleep = timeout_min * 60 42 def __init__(self, timeout_min=30, delay_sec=10, **dargs): 45 @param timeout_min: timeout in minutes until giving up. 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, [all...] |
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/ |
goofy_client.py | 34 def retry_goofy_rpc(exception_tuple, timeout_min=30): 45 timeout_min=<timeout>) 46 2. @retry_goofy_rpc(socket.error, timeout_min=<timeout>) 52 in retries for the duration of timeout_min. 53 @param timeout_min: The timeout, in minutes, for which we should 64 @retry.retry(exception_tuple, timeout_min=timeout_min) 70 socket.error, retry for timeout_min through retry.retry. 72 retry for timeout_min through retry.retry. 82 goofy_proxy._create_client_proxy(timeout_min=timeout_min [all...] |
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)
|
host_lock_manager.py | 62 timeout_min=30, delay_sec=10, debug=False,
|
/external/autotest/tko/ |
db_mysql.py | 7 @retry.retry(db._get_error_class("OperationalError"), timeout_min=2,
|
/external/autotest/server/hosts/ |
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): 136 @param timeout_min: Minutes to wait for the AFE to respond. Default is 143 afe = frontend_wrappers.RetryingAFE(timeout_min=timeout_min,
|
chameleon_host.py | 221 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
|
rpc_server_tracker.py | 152 timeout_min=timeout_seconds / 60.0,
|
/external/autotest/client/common_lib/cros/ |
retry.py | 114 def retry(ExceptionToCheck, timeout_min=1.0, delay_sec=3, blacklist=None): 130 @param timeout_min: timeout in minutes until giving up. 155 remaining_time = timeout_min * 60 182 remaining_time = int(timeout_min*60 -
|
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)
|
dev_server.py | 130 def remote_devserver_call(timeout_min=30): 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): 227 @param timeout_min: How long to wait in minutes before deciding the 238 @remote_devserver_call(timeout_min=timeout_min) 242 call, timeout=timeout_min * 60).read() 256 ' Error: %s', call, timeout_min * 60, e [all...] |
/external/autotest/site_utils/ |
test_push.py | 50 AFE = frontend_wrappers.RetryingAFE(timeout_min=0.5, delay_sec=2) 186 parser.add_argument('-t', '--timeout_min', dest='timeout_min', type=int, 282 end = time.time() + arguments.timeout_min * 60 291 arguments.timeout_min) 340 TKO = frontend_wrappers.RetryingTKO(timeout_min=0.1, delay_sec=10)
|
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) [all...] |
lxc_cleanup.py | 36 AFE = frontend_wrappers.RetryingAFE(timeout_min=0.1, delay_sec=10)
|
/external/autotest/server/ |
afe_utils.py | 16 AFE = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
|
sequence.py | 134 afe = frontend_wrappers.RetryingAFE(timeout_min=30, delay_sec=10,
|
/external/autotest/client/cros/multimedia/ |
facade_resource.py | 18 timeout_min=_FLAKY_CALL_RETRY_TIMEOUT_SEC / 60.0, variable
|
/external/autotest/contrib/ |
manage_powerunit_info.py | 173 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10,
|
generate_rpm_mapping.py | 464 AFE = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10,
|
/external/autotest/site_utils/suite_scheduler/ |
deduping_scheduler.py | 49 self._afe = afe or frontend_wrappers.RetryingAFE(timeout_min=30,
|
/external/autotest/cli/ |
site_host.py | 99 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
|
/external/autotest/server/cros/ap_configurators/ |
ap_configurator_factory.py | 376 timeout_min=10,
|
/external/autotest/server/cros/multimedia/ |
remote_facade_factory.py | 120 timeout_min=self.XMLRPC_RETRY_TIMEOUT / 60.0,
|