/third_party/glib/gio/ |
D | gsocketclient.c | 1436 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/ |
D | api.py | 83 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/ |
D | api.py | 83 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/ |
D | shrinker.cpp | 138 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/ |
D | shrinker.cpp | 138 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/ |
D | shrinker.cpp | 138 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/ |
D | require-parse.js | 44 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/ |
D | README.md | 17 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) 109 …attempt` 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/ |
D | test148 | 25 ftp://%HOSTIP:%FTPPORT/attempt/to/get/this/%TESTNUMBER --ftp-create-dirs 43 CWD attempt 44 MKD attempt 45 CWD attempt
|
/third_party/ffmpeg/libavformat/ |
D | network.c | 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); 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/ |
D | test-retry-operation.js | 18 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/ |
D | test-retry-operation.js | 48 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/ |
D | check-response.js | 29 const attempt = res.headers.get('x-fetch-attempts') 30 const attemptStr = attempt && attempt > 1 ? ` attempt #${attempt}` : ''
|
/third_party/mbedtls/library/ |
D | rsa_alt_helpers.c | 68 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/ |
D | retry.js | 48 exports.createTimeout = function(attempt, opts) { argument 53 var timeout = Math.round(random * opts.minTimeout * Math.pow(opts.factor, attempt)); 93 op.attempt(function() {
|
D | retry_operation.js | 78 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/ |
D | retry.js | 49 exports.createTimeout = function(attempt, opts) { argument 54 var timeout = Math.round(random * opts.minTimeout * Math.pow(opts.factor, attempt)); 94 op.attempt(function() {
|
D | retry_operation.js | 91 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/ |
D | 00_Descriptions.txt | 18 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/ |
D | errors.md | 381 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/ |
D | SSL_key_update.pod | 54 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/ |
D | random_shuffle.cpp | 98 for (int attempt = 0; !shuffled && (attempt < MAX_RETRIES); ++attempt) in test_random_shuffle_nogen_impl() local
|
/third_party/node/lib/internal/debugger/ |
D | inspect.js | 217 for (let attempt = 0; attempt < 5; attempt++) { 218 debuglog('connection attempt #%d', attempt);
|
/third_party/skia/infra/bots/recipe_modules/flavor/ |
D | ios.py | 39 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/ |
D | ConnectCondition.qbk | 26 algorithm should attempt a connection to the endpoint `ep`. Otherwise, 27 returns `false` to indicate that the algorithm should not attempt
|