Home
last modified time | relevance | path

Searched refs:attempt (Results 1 - 25 of 63) sorted by relevance

123

/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
H A Dshrinker.cpp138 uint32_t attempt = 0; // Keeps track of the number of shrink attempts that local
151 while (attempt < step_limit_ &&
181 attempt < step_limit_ && chunk_index >= 0; chunk_index--) {
216 if (interestingness_function_(transformed_binary, attempt)) {
225 // Either way, this was a shrink attempt, so increment our count of shrink
227 attempt++;
247 attempt < step_limit_ &&
264 validator_options_, step_limit_, attempt)
283 // as a shrinker attempt.
284 attempt
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
H A Dshrinker.cpp138 uint32_t attempt = 0; // Keeps track of the number of shrink attempts that local
151 while (attempt < step_limit_ &&
181 attempt < step_limit_ && chunk_index >= 0; chunk_index--) {
216 if (interestingness_function_(transformed_binary, attempt)) {
225 // Either way, this was a shrink attempt, so increment our count of shrink
227 attempt++;
247 attempt < step_limit_ &&
264 validator_options_, step_limit_, attempt)
283 // as a shrinker attempt.
284 attempt
[all...]
/third_party/spirv-tools/source/fuzz/
H A Dshrinker.cpp138 uint32_t attempt = 0; // Keeps track of the number of shrink attempts that local
151 while (attempt < step_limit_ &&
181 attempt < step_limit_ && chunk_index >= 0; chunk_index--) {
216 if (interestingness_function_(transformed_binary, attempt)) {
225 // Either way, this was a shrink attempt, so increment our count of shrink
227 attempt++;
247 attempt < step_limit_ &&
264 validator_options_, step_limit_, attempt)
283 // as a shrinker attempt.
284 attempt
[all...]
/third_party/node/deps/npm/node_modules/exponential-backoff/dist/delay/
H A Ddelay.base.js7 this.attempt = 0;
13 Delay.prototype.setAttemptNumber = function (attempt) {
14 this.attempt = attempt;
37 return this.attempt;
H A Ddelay.factory.js5 function DelayFactory(options, attempt) {
7 delay.setAttemptNumber(attempt);
/third_party/skia/infra/bots/recipe_modules/run/
H A Dapi.py83 for attempt in range(attempts):
85 if attempt > 0:
86 step_name += ' (attempt %d)' % (attempt + 1)
90 if attempt > 0 and fail_build_on_failure:
91 del self._failed[-attempt:]
94 if attempt == attempts - 1:
98 between_attempts_fn(attempt+1)
/third_party/weex-loader/deps/weex-scripter/lib/
H A Drequire-parse.js44 function attempt(aPath) {
56 attempt(absModulePath + '.js')
59 attempt(path.resolve(absModulePath, pkg.main + '.js'))
60 attempt(path.resolve(absModulePath, pkg.main))
62 attempt(absModulePath + '/index.js')
/third_party/node/deps/npm/node_modules/retry/test/integration/
H A Dtest-retry-operation.js18 operation.attempt(function(currentAttempt) {
87 operation.attempt(fn, timeoutOpts);
103 operation.attempt(function(currentAttempt) {
129 operation.attempt(function(currentAttempt) {
163 operation.attempt(function(currentAttempt) {
194 operation.attempt(function(currentAttempt) {
234 operation.attempt(function(currentAttempt) {
H A Dtest-forever.js13 operation.attempt(function(numAttempt) {
/third_party/ffmpeg/libavformat/
H A Dnetwork.c354 // Returns < 0 on error, 0 on successfully started connection attempt,
356 static int start_connect_attempt(struct ConnectionAttempt *attempt, in start_connect_attempt() argument
366 attempt->fd = ff_socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol, h); in start_connect_attempt()
367 if (attempt->fd < 0) in start_connect_attempt()
369 attempt->deadline_us = av_gettime_relative() + timeout_ms * 1000; in start_connect_attempt()
370 attempt->addr = ai; in start_connect_attempt()
372 ff_socket_nonblock(attempt->fd, 1); in start_connect_attempt()
375 customize_fd(customize_ctx, attempt->fd); in start_connect_attempt()
377 while ((ret = connect(attempt->fd, ai->ai_addr, ai->ai_addrlen))) { in start_connect_attempt()
382 closesocket(attempt in start_connect_attempt()
[all...]
/third_party/node/deps/npm/node_modules/npm-registry-fetch/lib/
H A Dcheck-response.js45 const attempt = res.headers.get('x-fetch-attempts')
46 const attemptStr = attempt && attempt > 1 ? ` attempt #${attempt}` : ''
/third_party/mbedtls/library/
H A Drsa_alt_helpers.c47 * of (a) and (b) above to attempt to factor N.
56 uint16_t attempt; /* Number of current attempt */ in mbedtls_rsa_deduce_primes() local
57 uint16_t iter; /* Number of squares computed in the current attempt */ in mbedtls_rsa_deduce_primes()
111 attempt = 0; in mbedtls_rsa_deduce_primes()
113 attempt = 1; in mbedtls_rsa_deduce_primes()
116 for (; attempt < num_primes; ++attempt) { in mbedtls_rsa_deduce_primes()
117 MBEDTLS_MPI_CHK(mbedtls_mpi_lset(&K, primes[attempt])); in mbedtls_rsa_deduce_primes()
159 * we reached 1, or K holds primes[attempt] in mbedtls_rsa_deduce_primes()
[all...]
/third_party/node/deps/npm/node_modules/retry/lib/
H A Dretry_operation.js91 RetryOperation.prototype.attempt = function(fn, timeoutOps) {
117 this.attempt(fn);
122 this.attempt(fn);
H A Dretry.js49 exports.createTimeout = function(attempt, opts) {
54 var timeout = Math.round(random * opts.minTimeout * Math.pow(opts.factor, attempt));
94 op.attempt(function() {
/third_party/rust/crates/unicode-width/scripts/
H A Dunicode.py196 def try_extend(self, attempt: "Bucket") -> bool:
197 """If either `self` or `attempt`'s width list starts with the other bucket's width list,
198 set `self`'s width list to the longer of the two, add all of `attempt`'s codepoints
200 (less, more) = (self.widths, attempt.widths)
201 if len(self.widths) > len(attempt.widths):
202 (less, more) = (attempt.widths, self.widths)
205 self.entry_set |= attempt.entry_set
/third_party/skia/infra/bots/recipe_modules/run/examples/
H A Dfull.py46 def between_attempts_fn(attempt):
47 api.run(api.step, 'between_attempts #%d' % attempt,
79 api.step_data('retry fail (attempt 2)', retcode=1) +
80 api.step_data('retry fail (attempt 3)', retcode=1) +
81 api.step_data('retry fail (attempt 4)', retcode=1) +
82 api.step_data('retry fail (attempt 5)', retcode=1) +
84 api.step_data('retry success (attempt 2)', retcode=1)
/third_party/node/lib/internal/debugger/
H A Dinspect.js219 for (let attempt = 0; attempt < 5; attempt++) {
220 debuglog('connection attempt #%d', attempt);
/third_party/skia/infra/bots/recipe_modules/flavor/
H A Dios.py39 def sleep(attempt):
40 self.m.python.inline('sleep before attempt %d' % attempt, """
101 def uninstall_app(attempt):
/third_party/node/test/parallel/
H A Dtest-inspector-bindings.js106 let attempt = 1;
109 if (attempt++ > 3)
/third_party/node/deps/npm/node_modules/exponential-backoff/dist/delay/skip-first/
H A Dskip-first.delay.js67 return this.attempt === 0;
74 return this.attempt - 1;
/third_party/node/deps/v8/src/utils/
H A Dallocation.cc78 // We will attempt allocation this many times. After each failure, we call
396 for (int attempt = 0; attempt < kMaxAttempts; ++attempt) { in InitReservation()
415 // For the last attempt use the overreserved region to avoid an OOM crash. in InitReservation()
418 bool overreserve = (attempt == kMaxAttempts - 1); in InitReservation()
/third_party/python/PCbuild/
H A Dbuild.bat24 echo. depend on external libraries will not attempt to build if this flag
41 echo. --no-ctypes Do not attempt to build _ctypes
42 echo. --no-ssl Do not attempt to build _ssl
43 echo. --no-tkinter Do not attempt to build Tkinter
/third_party/backends/backend/pixma/
H A Dpixma_bjnp.c670 int try, attempt; in udp_command() local
692 attempt = 0; in udp_command()
706 && (errno == EINTR) && (attempt++ < BJNP_MAX_SELECT_ATTEMPTS) in udp_command()
1404 int attempt; in bjnp_recv_header() local
1411 attempt = 0; in bjnp_recv_header()
1422 (errno == EINTR) && (attempt++ < BJNP_MAX_SELECT_ATTEMPTS)); in bjnp_recv_header()
1567 int attempt; in bjnp_recv_data() local
1591 attempt = 0; in bjnp_recv_data()
1601 (errno == EINTR) && (attempt++ < BJNP_MAX_SELECT_ATTEMPTS)); in bjnp_recv_data()
2025 int attempt; in sanei_bjnp_find_devices() local
[all...]
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/util/
H A DGlobalizationPreferences.java1090 String[] attempt = TimeZone.getAvailableIDs(getTerritory()); in guessTimeZone()
1091 if (attempt.length == 0) { in guessTimeZone()
1096 for (i = 0; i < attempt.length; ++i) { in guessTimeZone()
1097 if (attempt[i].indexOf("/") >= 0) break; in guessTimeZone()
1099 if (i > attempt.length) i = 0; in guessTimeZone()
1100 timezoneString = attempt[i]; in guessTimeZone()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DGlobalizationPreferences.java1092 String[] attempt = TimeZone.getAvailableIDs(getTerritory()); in guessTimeZone()
1093 if (attempt.length == 0) { in guessTimeZone()
1098 for (i = 0; i < attempt.length; ++i) { in guessTimeZone()
1099 if (attempt[i].indexOf("/") >= 0) break; in guessTimeZone()
1101 if (i > attempt.length) i = 0; in guessTimeZone()
1102 timezoneString = attempt[i]; in guessTimeZone()

Completed in 18 milliseconds

123