Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/platform/cloud/
Dretrying_utils.cc27 constexpr int kMaxRetries = 10; variable
61 if (retries >= kMaxRetries) { in CallWithRetries()
67 "All ", kMaxRetries, in CallWithRetries()
79 << (retries + 1) << " out of " << kMaxRetries in CallWithRetries()
/external/libchrome/base/allocator/
Dallocator_shim.cc110 size_t kMaxRetries = 7; in InsertAllocatorDispatch() local
111 for (size_t i = 0; i < kMaxRetries; ++i) { in InsertAllocatorDispatch()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_win.cc139 const int kMaxRetries = 10; in MmapAlignedOrDie() local
140 for (; retries < kMaxRetries && in MmapAlignedOrDie()
165 if (retries == kMaxRetries && mapped_addr == 0) in MmapAlignedOrDie()
/external/libvpx/libvpx/
Dy4minput.c23 const int kMaxRetries = 5; in file_read() local
41 } while (!feof(file) && len < size && ++retry_count < kMaxRetries); in file_read()