HomeSort by relevance Sort by last modified time
    Searched refs:max_retries (Results 1 - 22 of 22) sorted by null

  /external/python/cpython2/Lib/bsddb/
dbutils.py 55 A 'max_retries' parameter may optionally be passed to prevent it
63 max_retries = _kwargs.get('max_retries', -1)
64 if 'max_retries' in _kwargs:
65 del _kwargs['max_retries']
78 max_retries -= 1
79 if max_retries == -1:
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/
dbutils.py 55 A 'max_retries' parameter may optionally be passed to prevent it
63 max_retries = _kwargs.get('max_retries', -1)
64 if 'max_retries' in _kwargs:
65 del _kwargs['max_retries']
78 max_retries -= 1
79 if max_retries == -1:
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/
dbutils.py 55 A 'max_retries' parameter may optionally be passed to prevent it
63 max_retries = _kwargs.get('max_retries', -1)
64 if 'max_retries' in _kwargs:
65 del _kwargs['max_retries']
78 max_retries -= 1
79 if max_retries == -1:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbutils.py 55 A 'max_retries' parameter may optionally be passed to prevent it
63 max_retries = _kwargs.get('max_retries', -1)
64 if 'max_retries' in _kwargs:
65 del _kwargs['max_retries']
78 max_retries -= 1
79 if max_retries == -1:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbutils.py 55 A 'max_retries' parameter may optionally be passed to prevent it
63 max_retries = _kwargs.get('max_retries', -1)
64 if 'max_retries' in _kwargs:
65 del _kwargs['max_retries']
78 max_retries -= 1
79 if max_retries == -1:
  /tools/acloud/internal/lib/
utils.py 114 def RetryOnException(retry_checker, max_retries, sleep_multiplier=0,
123 max_retries: Maximum number of retries allowed.
136 return Retry(retry_checker, max_retries, func, sleep_multiplier,
143 def Retry(retry_checker, max_retries, functor, sleep_multiplier=0,
152 max_retries: Maximum number of retries allowed.
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):
192 max_retries: Max number of retries allowed.
201 return Retry(lambda e: isinstance(e, exception_types), max_retries,
    [all...]
gstorage_client.py 162 max_retries=self.GET_OBJ_MAX_RETRY, functor=self.Get,
base_cloud_client.py 87 max_retries=cls.RETRY_COUNT,
215 _Handler, max_retries=max_retry, functor=self.ExecuteOnce,
  /external/autotest/server/cros/dynamic_suite/
dynamic_suite.py 235 max_retries=None,
284 @param max_retries: Maximum retry limit at suite level if not None.
287 happening in the suite can't exceed max_retries.
330 self.max_retries = max_retries
475 max_retries=spec.max_retries,
555 max_retries=spec.max_retries,
suite.py 95 max_retries=None):
103 @param max_retries: Integer, maxmium total retries allowed
108 self._max_retries = (max_retries
109 if max_retries is not None else sys.maxint)
    [all...]
suite_unittest.py 496 job_retry=True, max_retries=1)
    [all...]
  /tools/acloud/public/acloud_kernel/
kernel_swapper.py 152 max_retries=2,
  /frameworks/native/libs/vr/libdvr/
dvr_buffer_queue.cpp 80 size_t max_retries = 1 + producer_queue_->capacity(); local
83 for (; retry < max_retries; retry++) {
158 if (retry >= max_retries) {
  /external/python/cpython2/Lib/bsddb/test/
test_thread.py 139 max_retries=12)
266 max_retries=12)
287 rec = dbutils.DeadlockWrap(c.first, max_retries=10)
292 rec = dbutils.DeadlockWrap(c.next, max_retries=10)
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/test/
test_thread.py 139 max_retries=12)
266 max_retries=12)
287 rec = dbutils.DeadlockWrap(c.first, max_retries=10)
292 rec = dbutils.DeadlockWrap(c.next, max_retries=10)
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/test/
test_thread.py 139 max_retries=12)
266 max_retries=12)
287 rec = dbutils.DeadlockWrap(c.first, max_retries=10)
292 rec = dbutils.DeadlockWrap(c.next, max_retries=10)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_thread.py 139 max_retries=12)
266 max_retries=12)
287 rec = dbutils.DeadlockWrap(c.first, max_retries=10)
292 rec = dbutils.DeadlockWrap(c.next, max_retries=10)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_thread.py 139 max_retries=12)
266 max_retries=12)
287 rec = dbutils.DeadlockWrap(c.first, max_retries=10)
292 rec = dbutils.DeadlockWrap(c.next, max_retries=10)
  /kernel/tests/net/test/
multinetwork_base.py 550 max_retries = 1
565 if not packets and retries < max_retries:
  /external/autotest/site_utils/
run_suite.py 328 parser.add_argument('--max_retries', dest='max_retries', default=None,
433 if not options.retry and options.max_retries is not None:
434 print 'max_retries can only be used with --retry=True'
    [all...]
  /external/autotest/frontend/afe/
rpc_interface.py     [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
wlioctl.h 3992 uint16 max_retries; \/* -1 use default, max retries on failure *\/ member in struct:__anon47020
    [all...]

Completed in 2580 milliseconds