/third_party/node/deps/npm/node_modules/lockfile/ |
D | lockfile.js | 84 if (!opts.stale) { 97 return cb(er, age <= opts.stale) 117 if (!opts.stale) { 123 if (opts.stale) { 130 return (age <= opts.stale) 186 if (!opts.stale) return notStale(er, path, opts, cb) 208 opts.stale = false 217 if (age <= opts.stale) return notStale(originalEr, path, opts, cb) 285 if (opts.stale) { 288 if (!(ct % 1000) && (opts.stale % 1000)) { [all …]
|
D | README.md | 52 Check if the lockfile is locked and not stale. 58 Check if the lockfile is locked and not stale. 76 ### opts.stale
|
D | CHANGELOG.md | 44 * Implement race-resistant stale lock detection 49 * stale option fix for windows file tunneling
|
/third_party/ffmpeg/libavformat/ |
D | httpauth.c | 61 *dest = digest->stale; in handle_digest_params() 62 *dest_len = sizeof(digest->stale); in handle_digest_params() 99 state->stale = 0; in ff_http_auth_handle_header() 107 state->stale = 0; in ff_http_auth_handle_header() 112 if (!av_strcasecmp(state->digest_params.stale, "true")) in ff_http_auth_handle_header() 113 state->stale = 1; in ff_http_auth_handle_header() 252 state->stale = 0; in ff_http_auth_create_response()
|
D | httpauth.h | 44 char stale[10]; /**< The server indicated that the auth was ok, member 71 int stale; member
|
/third_party/node/deps/npm/node_modules/cross-spawn/node_modules/lru-cache/ |
D | index.js | 73 this[ALLOW_STALE] = options.stale || false 282 val.stale = true 425 var stale = false 428 stale = diff > hit.maxAge 430 stale = self[MAX_AGE] && (diff > self[MAX_AGE]) 432 return stale
|
D | README.md | 69 * `stale` By default, if you set a `maxAge`, it'll only actually pull 70 stale items out of the cache when you `get(key)`. (That is, it's 72 `stale:true`, it'll return the stale value before deleting it. If 74 get a stale entry, as if it had already been deleted. 113 or deleting it for being stale. 143 `stale` (see options) items are returned as part of this item
|
/third_party/nghttp2/src/ |
D | HttpServer.h | 94 bool stale = false) 104 stale(stale) {} in path() 114 bool stale; member
|
/third_party/node/deps/npm/node_modules/lru-cache/ |
D | README.md | 72 * `stale` By default, if you set a `maxAge`, it'll only actually pull 73 stale items out of the cache when you `get(key)`. (That is, it's 75 `stale:true`, it'll return the stale value before deleting it. If 77 get a stale entry, as if it had already been deleted. 121 or deleting it for being stale. 151 `stale` (see options) items are returned as part of this item
|
/third_party/curl/tests/data/ |
D | test153 | 47 # the request contained stale data. We want an update. Set swsbounce to 52 WWW-Authenticate: Digest realm="testrealm", algorithm=MD5, nonce="999999", stale=true, qop="auth" 81 HTTP with Digest authorization with stale=true 144 WWW-Authenticate: Digest realm="testrealm", algorithm=MD5, nonce="999999", stale=true, qop="auth"
|
/third_party/node/deps/npm/node_modules/lockfile/test/ |
D | basic.js | 138 var opts = { stale: 1 } property 154 var opts = { stale: 1 } property 245 var opt = { stale: 1000, wait: 2000, pollInterval: 1000 } property 261 var opts = { stale: 1000 } property
|
D | stale-contention.js | 35 lockFile.lock(lock, { stale: 100000 }, function (er) { property
|
/third_party/skia/third_party/externals/dawn/generator/ |
D | BUILD.gn | 18 # The list of directories in which to check for stale autogenerated files. 48 "--stale-dirs-file",
|
D | dawn_generator.gni | 20 # stale include files stayed in the build directory and were picked up. 35 # which breaks 3) slightly. To avoid stale headers in for example 89 # Make sure that we delete stale autogenerated file in directories that are
|
/third_party/libsoup/libsoup/ |
D | soup-auth-digest.c | 141 const char *stale, *qop; in soup_auth_digest_update() local 169 stale = g_hash_table_lookup (auth_params, "stale"); in soup_auth_digest_update() 170 if (stale && !g_ascii_strcasecmp (stale, "TRUE") && *priv->hex_urp) in soup_auth_digest_update()
|
/third_party/node/deps/npm/node_modules/http-cache-semantics/ |
D | README.md | 71 …r RFC](http://httpwg.org/http-extensions/immutable.html) these can become stale, so `max-age` stil… 97 Returns approximate time in *milliseconds* until the response becomes stale (i.e. not fresh). 99 …dation. However, there are exceptions, e.g. a client can explicitly allow stale responses, so alwa… 105 ### Refreshing stale cache (revalidation) 170 * Requests for stale data.
|
/third_party/gstreamer/gstplugins_bad/ext/opencv/ |
D | gstsegmentation.cpp | 523 if (c->cb[s]->stale < negRun) in update_codebook() 524 c->cb[s]->stale = negRun; in update_codebook() 545 c->cb[c->numEntries]->stale = 0; in update_codebook() 583 if (c->cb[i]->stale > staleThresh) in clear_stale_entries()
|
D | gstsegmentation.h | 77 int stale; /* max negative run (longest period of inactivity) */ member
|
/third_party/giflib/ |
D | Makefile | 166 shipper --no-stale version=$(VERSION) | sh -e -x 172 shipper --no-stale -w version=$(VERSION) | sh -e -x
|
/third_party/curl/lib/vauth/ |
D | digest_sspi.c | 326 bool stale = false; in Curl_auth_decode_digest_http_message() local 342 stale = true; in Curl_auth_decode_digest_http_message() 353 if(stale) in Curl_auth_decode_digest_http_message()
|
D | digest.c | 534 digest->stale = TRUE; in Curl_auth_decode_digest_http_message() 630 if(before && !digest->stale) in Curl_auth_decode_digest_http_message() 970 digest->stale = FALSE; /* default means normal, not stale */ in Curl_auth_digest_cleanup()
|
/third_party/node/deps/npm/node_modules/http-cache-semantics/node4/ |
D | index.js | 179 if (this.stale()) { 389 CachePolicy.prototype.stale = function stale() { method in CachePolicy
|
/third_party/eudev/rules/ |
D | 60-cdrom_id.rules | 24 # stale mounts after ejecting
|
/third_party/node/deps/npm/lib/utils/ |
D | locker.js | 27 stale: npm.config.get('cache-lock-stale'), property
|
/third_party/libphonenumber/migrator/ |
D | README.md | 3 …given “recipe” is an internal record which holds data needed to migrate a stale number into one th… 232 …n “recipe” is a row within the table which holds data needed to migrate a stale number into one th… 234 …e a case where two recipes can be used to renumber one stale number so as a result, a given stale … 236 ```Prefix (key)``` - the prefix of the possible stale numbers that can be represented by the row. F… 264 … perform migrations on a given number(s) input. This means that even if a stale E.164 phone number…
|