HomeSort by relevance Sort by last modified time
    Searched refs:timeout_min (Results 1 - 25 of 50) sorted by null

1 2

  /external/autotest/server/cros/dynamic_suite/
frontend_wrappers.py 31 def convert_timeout_to_retry(backoff, timeout_min, delay_sec):
35 @param timeout_min: The maximum amount of time (in minutes) to sleep.
45 total_sleep = timeout_min * 60
56 def __init__(self, timeout_min=30, delay_sec=10, **dargs):
59 @param timeout_min: timeout in minutes until giving up.
62 self.timeout_min = timeout_min
67 def set_timeout(self, timeout_min):
70 @param timeout_min: The timeout minutes for AFE server.
72 self.timeout_min = timeout_mi
    [all...]
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,
dynamic_suite.py 437 afe = frontend_wrappers.RetryingAFE(timeout_min=30, delay_sec=10,
439 tko = frontend_wrappers.RetryingTKO(timeout_min=30, delay_sec=10,
495 afe = frontend_wrappers.RetryingAFE(timeout_min=30, delay_sec=10,
497 tko = frontend_wrappers.RetryingTKO(timeout_min=30, delay_sec=10,
  /external/autotest/contrib/
abortjob 13 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
manage_powerunit_info.py 173 afe = frontend_wrappers.RetryingAFE(timeout_min=5, 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/server/hosts/
moblab_host.py 53 def _initialize_frontend_rpcs(self, timeout_min):
59 @param timeout_min: The timeout minuties for AFE services.
64 # Pass timeout_min to self.afe
65 self.afe = frontend_wrappers.RetryingAFE(timeout_min=timeout_min,
68 # Use default timeout_min of MoblabHost for self.tko
69 self.tko = frontend_wrappers.RetryingTKO(timeout_min=self.timeout_min,
88 self.timeout_min = dargs.get('rpc_timeout_min', 1)
89 self._initialize_frontend_rpcs(self.timeout_min)
    [all...]
afe_store.py 30 timeout_min=self._RETRYING_AFE_TIMEOUT_MIN,
base_label.py 258 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
chameleon_host.py 188 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
  /external/autotest/tko/
db_mysql.py 7 @retry.retry(db._get_error_class("OperationalError"), timeout_min=10,
  /external/autotest/client/common_lib/cros/
retry.py 142 def retry(ExceptionToCheck, timeout_min=1.0, delay_sec=3, blacklist=None,
159 @param timeout_min: timeout in minutes until giving up.
195 remaining_time = timeout_min * 60
206 (details, timeout_min * 60))
232 remaining_time = int(timeout_min * 60 -
237 remaining_time = int(timeout_min * 60 -
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)
dev_server.py 263 def remote_devserver_call(timeout_min=DEVSERVER_IS_STAGING_RETRY_MIN,
278 timeout_min=timeout_min,
406 load = cls.get_devserver_load(devserver, timeout_min=timeout_sec/60.0)
414 timeout_min=DEVSERVER_SSH_TIMEOUT_MINS):
418 @param timeout_min: How long to wait in minutes before deciding the
425 @remote_devserver_call(timeout_min=timeout_min)
428 return cls.run_call(call, timeout=timeout_min*60)
434 ' Error: %s', call, timeout_min * 60, e
    [all...]
  /external/autotest/site_utils/
dump_suite_report.py 42 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10,
44 tko = frontend_wrappers.RetryingTKO(timeout_min=5, delay_sec=10)
test_push.py 62 AFE = frontend_wrappers.RetryingAFE(timeout_min=0.5, delay_sec=2)
63 TKO = frontend_wrappers.RetryingTKO(timeout_min=0.1, delay_sec=10)
138 @retry.retry(TestPushException, timeout_min=5, delay_sec=30)
248 parser.add_argument('-t', '--timeout_min', dest='timeout_min', type=int,
354 end = time.time() + arguments.timeout_min * 60
363 arguments.timeout_min)
  /external/autotest/server/site_tests/brillo_PingTest/
brillo_PingTest.py 50 @retry.retry(error.GenericHostRunError, timeout_min=1.5, delay_sec=3)
  /external/autotest/server/site_tests/servohost_Reboot/
servohost_Reboot.py 44 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)
  /external/autotest/site_utils/lxc/
lxc.py 115 timeout_min=(constants.DEVSERVER_CALL_TIMEOUT * variable
181 @retry.retry(error.CmdError, timeout_min=30)
243 @retry.retry(error.CmdError, timeout_min=20)
262 @retry.retry(error.CmdError, timeout_min=20)
  /test/vts/runners/target/vts_hal_hidl_target/
VtsHalHidlTargetCallbackBase.h 388 auto timeout_min = system_clock::duration::max(); local
391 if (timeout < timeout_min) {
392 timeout_min = timeout;
396 return start_time + timeout_min;
  /external/autotest/site_utils/chromeos_proxy/
swarming_bot_manager.py 87 afe = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10,
  /external/autotest/client/cros/multimedia/
facade_resource.py 23 timeout_min=_FLAKY_CALL_RETRY_TIMEOUT_SEC / 60.0, variable
39 timeout_min=_FLAKY_CHROME_START_RETRY_TIMEOUT_SEC / 60.0, variable in class:FacadeResoureError
  /external/autotest/server/
afe_utils.py 18 AFE = frontend_wrappers.RetryingAFE(timeout_min=5, delay_sec=10)

Completed in 879 milliseconds

1 2