Home
last modified time | relevance | path

Searched refs:attempt (Results 1 – 25 of 894) sorted by relevance

12345678910>>...36

/third_party/glib/patch/
Dbackport-gsocketclient-Fix-still-reachable-references-to-cancellables.patch80 g_clear_object (&attempt->address);
81 g_clear_object (&attempt->socket);
82 g_clear_object (&attempt->connection);
83 + g_cancellable_disconnect (g_task_get_cancellable (attempt->data->task), attempt->cancelled_i…
84 + attempt->cancelled_id = 0;
85 g_clear_object (&attempt->cancellable);
86 g_clear_object (&attempt->proxy_addr);
87 if (attempt->timeout_source)
89 data->connection_attempts = g_slist_append (data->connection_attempts, attempt);
93 - g_object_ref (attempt->cancellable), g_object_unref);
[all …]
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
Dshrinker.cpp138 uint32_t attempt = 0; // Keeps track of the number of shrink attempts that in Run() local
151 while (attempt < step_limit_ && in Run()
181 attempt < step_limit_ && chunk_index >= 0; chunk_index--) { in Run()
216 if (interestingness_function_(transformed_binary, attempt)) { in Run()
227 attempt++; in Run()
247 attempt < step_limit_ && in Run()
264 validator_options_, step_limit_, attempt) in Run()
284 attempt += added_function_reducer_result.num_reduction_attempts; in Run()
292 assert(attempt <= step_limit_); in Run()
293 if (attempt == step_limit_) { in Run()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dshrinker.cpp138 uint32_t attempt = 0; // Keeps track of the number of shrink attempts that in Run() local
151 while (attempt < step_limit_ && in Run()
181 attempt < step_limit_ && chunk_index >= 0; chunk_index--) { in Run()
216 if (interestingness_function_(transformed_binary, attempt)) { in Run()
227 attempt++; in Run()
247 attempt < step_limit_ && in Run()
264 validator_options_, step_limit_, attempt) in Run()
284 attempt += added_function_reducer_result.num_reduction_attempts; in Run()
292 assert(attempt <= step_limit_); in Run()
293 if (attempt == step_limit_) { in Run()
/third_party/spirv-tools/source/fuzz/
Dshrinker.cpp138 uint32_t attempt = 0; // Keeps track of the number of shrink attempts that in Run() local
151 while (attempt < step_limit_ && in Run()
181 attempt < step_limit_ && chunk_index >= 0; chunk_index--) { in Run()
216 if (interestingness_function_(transformed_binary, attempt)) { in Run()
227 attempt++; in Run()
247 attempt < step_limit_ && in Run()
264 validator_options_, step_limit_, attempt) in Run()
284 attempt += added_function_reducer_result.num_reduction_attempts; in Run()
292 assert(attempt <= step_limit_); in Run()
293 if (attempt == step_limit_) { in Run()
/third_party/skia/infra/bots/recipe_modules/run/
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/node/deps/npm/node_modules/exponential-backoff/dist/delay/
Ddelay.base.js7 this.attempt = 0;
13 Delay.prototype.setAttemptNumber = function (attempt) { argument
14 this.attempt = attempt;
37 return this.attempt;
Ddelay.factory.js5 function DelayFactory(options, attempt) { argument
7 delay.setAttemptNumber(attempt);
/third_party/weex-loader/deps/weex-scripter/lib/
Drequire-parse.js44 function attempt(aPath) { function
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/ffmpeg/libavformat/
Dnetwork.c356 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->fd); in start_connect_attempt()
383 attempt->fd = -1; in start_connect_attempt()
[all …]
/third_party/node/deps/npm/node_modules/retry/test/integration/
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) {
/third_party/curl/tests/data/
Dtest14825 ftp://%HOSTIP:%FTPPORT/attempt/to/get/this/%TESTNUMBER --ftp-create-dirs
43 CWD attempt
44 MKD attempt
45 CWD attempt
/third_party/node/deps/npm/node_modules/npm-registry-fetch/lib/
Dcheck-response.js45 const attempt = res.headers.get('x-fetch-attempts')
46 const attemptStr = attempt && attempt > 1 ? ` attempt #${attempt}` : ''
/third_party/mbedtls/library/
Drsa_alt_helpers.c68 uint16_t attempt; /* Number of current attempt */ in mbedtls_rsa_deduce_primes() local
123 attempt = 0; in mbedtls_rsa_deduce_primes()
125 attempt = 1; in mbedtls_rsa_deduce_primes()
128 for (; attempt < num_primes; ++attempt) { in mbedtls_rsa_deduce_primes()
129 mbedtls_mpi_lset(&K, primes[attempt]); in mbedtls_rsa_deduce_primes()
/third_party/node/deps/npm/node_modules/retry/lib/
Dretry.js49 exports.createTimeout = function(attempt, opts) { argument
54 var timeout = Math.round(random * opts.minTimeout * Math.pow(opts.factor, attempt));
94 op.attempt(function() {
Dretry_operation.js91 RetryOperation.prototype.attempt = function(fn, timeoutOps) { method in RetryOperation
117 this.attempt(fn);
122 this.attempt(fn);
/third_party/rust/crates/unicode-width/scripts/
Dunicode.py196 def try_extend(self, attempt: "Bucket") -> bool:
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/node/doc/api/
Derrors.md411 Indicates that an attempt is being made to access a variable that is not
534 * `EACCES` (Permission denied): An attempt was made to access a file in a way
537 * `EADDRINUSE` (Address already in use): An attempt to bind a server
577 * `EPERM` (Operation not permitted): An attempt was made to perform an
699 An attempt was made to register something that is not a function as an
725 An attempt was made to create a Node.js `Buffer` instance from addon or embedder
745 An attempt has been made to create a `Buffer` larger than the maximum allowed
792 There was an attempt to use a `MessagePort` instance in a closed
861 The [`--force-fips`][] command-line argument was used but there was an attempt
868 An attempt was made to enable or disable FIPS mode, but FIPS mode was not
[all …]
/third_party/openssl/doc/man3/
DSSL_key_update.pod55 attempt to resume any session associated with the connection in the new
59 same was as SSL_renegotiate() except that OpenSSL will attempt to resume the
67 handshake and it may or may not attempt to resume an existing session. If
73 a TLS connection the client will attempt to resume the current session in the
74 new handshake. For historical reasons, DTLS clients will not attempt to resume
/third_party/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_import/
D00_Descriptions.txt18 tpmtoken_import attempt to import a certificate from a key file
20 tpmtoken_import attempt to import a key from a certificate file
/third_party/node/lib/internal/debugger/
Dinspect.js219 for (let attempt = 0; attempt < 5; attempt++) {
220 debuglog('connection attempt #%d', attempt);
/third_party/skia/infra/bots/recipe_modules/flavor/
Dios.py39 def sleep(attempt): argument
40 self.m.python.inline('sleep before attempt %d' % attempt, """
101 def uninstall_app(attempt): argument
/third_party/skia/infra/bots/recipe_modules/run/examples/
Dfull.py46 def between_attempts_fn(attempt): argument
47 api.run(api.step, 'between_attempts #%d' % attempt,
/third_party/node/test/parallel/
Dtest-inspector-bindings.js106 let attempt = 1;
109 if (attempt++ > 3)
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/
Dmutex_test.cc1426 for (int attempt = 1;; ++attempt) { local
1427 ABSL_RAW_LOG(INFO, "Attempt %d", attempt);
1460 for (int attempt = 1;; ++attempt) { local
1461 ABSL_RAW_LOG(INFO, "Attempt %d", attempt);
1495 for (int attempt = 0;; ++attempt) { local
1496 ABSL_RAW_LOG(INFO, "Attempt %d", attempt);
1531 for (int attempt = 0;; ++attempt) { local
1532 ABSL_RAW_LOG(INFO, "Attempt %d", attempt);
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
DGlobalizationPreferences.java1092 String[] attempt = TimeZone.getAvailableIDs(getTerritory()); in guessTimeZone() local
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()

12345678910>>...36