Home
last modified time | relevance | path

Searched refs:max_retries (Results 1 – 4 of 4) sorted by relevance

/tools/acloud/internal/lib/
Dutils.py114 def RetryOnException(retry_checker, max_retries, sleep_multiplier=0, argument
136 return Retry(retry_checker, max_retries, func, sleep_multiplier,
143 def Retry(retry_checker, max_retries, functor, sleep_multiplier=0, argument
170 while attempt_count <= max_retries:
176 if retry_checker(e) and attempt_count <= max_retries:
187 def RetryExceptionType(exception_types, max_retries, functor, *args, **kwargs): argument
201 return Retry(lambda e: isinstance(e, exception_types), max_retries,
461 _ShouldRetryHandler, max_retries=self._max_retry,
Dbase_cloud_client.py87 max_retries=cls.RETRY_COUNT,
215 _Handler, max_retries=max_retry, functor=self.ExecuteOnce,
Dgstorage_client.py162 max_retries=self.GET_OBJ_MAX_RETRY, functor=self.Get,
/tools/acloud/public/acloud_kernel/
Dkernel_swapper.py152 max_retries=2,