Home
last modified time | relevance | path

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

12345678910>>...48

/third_party/glib/gio/
Dgsocketclient.c1436 static void connection_attempt_unref (gpointer attempt);
1468 ConnectionAttempt *attempt = g_new0 (ConnectionAttempt, 1); in connection_attempt_new() local
1469 g_ref_count_init (&attempt->ref); in connection_attempt_new()
1470 return attempt; in connection_attempt_new()
1474 connection_attempt_ref (ConnectionAttempt *attempt) in connection_attempt_ref() argument
1476 g_ref_count_inc (&attempt->ref); in connection_attempt_ref()
1477 return attempt; in connection_attempt_ref()
1483 ConnectionAttempt *attempt = pointer; in connection_attempt_unref() local
1484 if (g_ref_count_dec (&attempt->ref)) in connection_attempt_unref()
1486 g_clear_object (&attempt->address); in connection_attempt_unref()
[all …]
/third_party/flutter/skia/infra/bots/recipe_modules/run/
Dapi.py83 for attempt in xrange(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/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/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/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/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/node/deps/npm/node_modules/promise-retry/node_modules/retry/
DREADME.md17 means the last attempt is made after `17 minutes and 3 seconds`.
26 operation.attempt(function(currentAttempt) {
81 Math.min(random * minTimeout * Math.pow(factor, attempt), maxTimeout)
86 If you want to tune your `factor` / `times` settings to attempt the last retry
105 ### retry.createTimeout(attempt, opts)
109attempt` is an integer representing for which retry the timeout should be calculated. If your retr…
159 #### retryOperation.attempt(fn, timeoutOps)
170 This is an alias for `retryOperation.attempt(fn)`. This is deprecated. Please use `retryOperation.a…
174 This is an alias for `retryOperation.attempt(fn)`. This is deprecated. Please use `retryOperation.a…
182 the current attempt number.
[all …]
/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/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); 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/node/deps/npm/node_modules/promise-retry/node_modules/retry/test/integration/
Dtest-retry-operation.js48 operation.attempt(fn, timeoutOpts);
65 operation.attempt(function(currentAttempt) {
91 operation.attempt(function(currentAttempt) {
125 operation.attempt(function(currentAttempt) {
156 operation.attempt(function(currentAttempt) {
/third_party/node/deps/npm/node_modules/npm-registry-fetch/
Dcheck-response.js29 const attempt = res.headers.get('x-fetch-attempts')
30 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
125 attempt = 0; in mbedtls_rsa_deduce_primes()
127 attempt = 1; in mbedtls_rsa_deduce_primes()
129 for( ; attempt < num_primes; ++attempt ) in mbedtls_rsa_deduce_primes()
131 mbedtls_mpi_lset( &K, primes[attempt] ); in mbedtls_rsa_deduce_primes()
/third_party/node/deps/npm/node_modules/promise-retry/node_modules/retry/lib/
Dretry.js48 exports.createTimeout = function(attempt, opts) { argument
53 var timeout = Math.round(random * opts.minTimeout * Math.pow(opts.factor, attempt));
93 op.attempt(function() {
Dretry_operation.js78 RetryOperation.prototype.attempt = function(fn, timeoutOps) { method in RetryOperation
102 this.attempt(fn);
107 this.attempt(fn);
/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/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/doc/api/
Derrors.md381 Indicates that an attempt is being made to access a variable that is not
504 * `EACCES` (Permission denied): An attempt was made to access a file in a way
507 * `EADDRINUSE` (Address already in use): An attempt to bind a server
547 * `EPERM` (Operation not permitted): An attempt was made to perform an
653 An attempt was made to register something that is not a function as an
675 An attempt was made to create a Node.js `Buffer` instance from addon or embedder
693 An attempt has been made to create a `Buffer` larger than the maximum allowed
730 There was an attempt to use a `MessagePort` instance in a closed
793 The [`--force-fips`][] command-line argument was used but there was an attempt
799 An attempt was made to enable or disable FIPS mode, but FIPS mode was not
[all …]
/third_party/openssl/doc/man3/
DSSL_key_update.pod54 attempt to resume any session associated with the connection in the new
58 same was as SSL_renegotiate() except that OpenSSL will attempt to resume the
66 handshake and it may or may not attempt to resume an existing session. If
72 a TLS connection the client will attempt to resume the current session in the
73 new handshake. For historical reasons, DTLS clients will not attempt to resume
/third_party/boost/libs/range/test/algorithm_test/
Drandom_shuffle.cpp98 for (int attempt = 0; !shuffled && (attempt < MAX_RETRIES); ++attempt) in test_random_shuffle_nogen_impl() local
/third_party/node/lib/internal/debugger/
Dinspect.js217 for (let attempt = 0; attempt < 5; attempt++) {
218 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/boost/libs/asio/doc/requirements/
DConnectCondition.qbk26 algorithm should attempt a connection to the endpoint `ep`. Otherwise,
27 returns `false` to indicate that the algorithm should not attempt

12345678910>>...48