Home
last modified time | relevance | path

Searched full:stale (Results 1 – 25 of 665) sorted by relevance

12345678910>>...27

/third_party/node/deps/npm/node_modules/lockfile/test/
Dbasic.js16 try { lockFile.unlockSync('stale-lock') } catch (er) {}
20 try { lockFile.unlockSync('stale-wait-lock') } catch (er) {}
21 try { lockFile.unlockSync('stale-windows-lock') } catch (er) {}
132 lockFile.lock('stale-lock', function (er) {
136 touch.sync('stale-lock', { time: new Date(Date.now() - 2000) })
138 var opts = { stale: 1 } property
139 lockFile.check('stale-lock', opts, function (er, locked) {
142 lockFile.lock('stale-lock', opts, function (er) {
144 lockFile.unlock('stale-lock', function (er) {
154 var opts = { stale: 1 } property
[all …]
Dstale-contention.js5 var lock = path.resolve(__dirname, 'stale.lock')
35 lockFile.lock(lock, { stale: 100000 }, function (er) { property
45 test('create stale file', function (t) {
82 test('remove stale file', function (t) {
/third_party/libuv/.github/
Dstale.yml1 # Number of days of inactivity before an issue becomes stale
3 # Number of days of inactivity before a stale issue is closed
5 # manually, but will remain marked as stale.
7 # Issues with these labels will never be considered stale
15 - not-stale
16 # Label to use when marking an issue as stale
17 staleLabel: stale
18 # Comment to post when marking an issue as stale. Set to `false` to disable
20 This issue has been automatically marked as stale because it has not had
22 # Comment to post when closing a stale issue. Set to `false` to disable
/third_party/node/deps/npm/node_modules/lockfile/
Dlockfile.js84 if (!opts.stale) {
97 return cb(er, age <= opts.stale)
117 if (!opts.stale) {
122 // file exists. however, might be stale
123 if (opts.stale) {
130 return (age <= opts.stale)
186 if (!opts.stale) return notStale(er, path, opts, cb)
196 // 2. stat $lock, find that it is stale
197 // 3. acquire $lock.STALE
198 // 4. stat $lock, assert that it is still stale
[all …]
DREADME.md52 Check if the lockfile is locked and not stale.
58 Check if the lockfile is locked and not stale.
76 ### opts.stale
DCHANGELOG.md44 * Implement race-resistant stale lock detection
49 * stale option fix for windows file tunneling
/third_party/curl/.github/
Dstale.yml1 # Number of days of inactivity before an issue becomes stale
3 # Number of days of inactivity before a stale issue is closed
5 # Issues with these labels will never be considered stale
9 # Label to use when marking an issue as stale
10 staleLabel: stale
11 # Comment to post when marking an issue as stale. Set to `false` to disable
13 This issue has been automatically marked as stale because it has not had
16 # Comment to post when closing a stale issue. Set to `false` to disable
/third_party/json/.github/
Dstale.yml1 # Number of days of inactivity before an issue becomes stale
3 # Number of days of inactivity before a stale issue is closed
5 # Issues with these labels will never be considered stale
9 # Label to use when marking an issue as stale
10 staleLabel: "state: stale"
11 # Comment to post when marking an issue as stale. Set to `false` to disable
13 This issue has been automatically marked as stale because it has not had
16 # Comment to post when closing a stale issue. Set to `false` to disable
/third_party/flatbuffers/.github/workflows/
Dstale.yml1 name: Mark stale issues and pull requests
8 stale:
13 - uses: actions/stale@v3
16stale-pr-message: 'This pull request is stale because it has been open 6 months with no activity. …
17stale-issue-message: 'This issue is stale because it has been open 6 months with no activity. Plea…
18 days-before-stale: 182 # 6 months
/third_party/flutter/flutter/packages/flutter/test/semantics/
Dsemantics_test.dart150 …' Previous child: SemanticsNode#6(STALE, owner: null, merged up ⬆️, Rect.fromLTRB(0.0, 0.0, 20.0…
151 …' New child: SemanticsNode#4(STALE, owner: null, merged up ⬆️, Rect.fromLTRB(5.0, 5.0, 10.0, 10.…
154 …' Previous child: SemanticsNode#7(STALE, owner: null, merged up ⬆️, Rect.fromLTRB(40.0, 14.0, 20…
155 …' New child: SemanticsNode#5(STALE, owner: null, merged up ⬆️, Rect.fromLTRB(10.0, 10.0, 20.0, 2…
229 ' │ STALE\n'
234 ' │ STALE\n'
239 ' STALE\n'
303 ' │ STALE\n'
308 ' │ STALE\n'
313 ' STALE\n'
[all …]
/third_party/node/deps/npm/node_modules/cross-spawn/node_modules/lru-cache/
DREADME.md69 * `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
Dindex.js73 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
/third_party/skia/third_party/externals/dawn/generator/
Dremove_files.py38 description="Removes stale autogenerated files from gen/ directories.")
49 '--stale-dirs-file',
52 'The file containing a list of directories to check for stale files')
61 # Load the list of allowed and stale directories
75 # Remove all files in stale dirs that aren't in the allowed dirs.
Ddawn_generator.gni20 # 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
DBUILD.gn18 # The list of directories in which to check for stale autogenerated files.
48 "--stale-dirs-file",
/third_party/node/deps/npm/node_modules/lru-cache/
DREADME.md72 * `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/ffmpeg/libavformat/
Dhttpauth.c60 } else if (!strncmp(key, "stale=", key_len)) { in handle_digest_params()
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()
250 /* Clear the stale flag, we assume the auth is ok now. It is reset in ff_http_auth_create_response()
252 state->stale = 0; in ff_http_auth_create_response()
Dhttpauth.h44 char stale[10]; /**< The server indicated that the auth was ok, member
45 * but needs to be redone with a new, non-stale
71 int stale; member
/third_party/curl/tests/data/
Dtest15347 # 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/nghttp2/src/
DHttpServer.h94 bool stale = false)
104 stale(stale) {} in path()
114 bool stale; member
/third_party/node/deps/npm/node_modules/http-cache-semantics/
DREADME.md71 …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/grpc/third_party/upb/cmake/
Dstaleness_test_lib.py72 """Generates lists of missing and stale files.
80 stale_files: a list of _FilePair objects representing stale files.
81 These target files exist but have stale contents.
/third_party/grpc/third_party/upb/tools/
Dstaleness_test_lib.py70 """Generates lists of missing and stale files.
78 stale_files: a list of _FilePair objects representing stale files.
79 These target files exist but have stale contents.
/third_party/node/deps/npm/node_modules/npm-registry-fetch/
Dcheck-response.js71 …opts.log.warn('registry', `Using stale data from ${registry} because the host is inaccessible -- a…
77 // 111 Revalidation failed -- we're using stale data
80 `Using stale data from ${registry} due to a request error during revalidation.`
/third_party/node/deps/npm/node_modules/http-cache-semantics/node4/
Dindex.js23 …id. Caches are encouraged to consider responses that have invalid freshness information to be stale
178 // fresh, or allowed to be served stale
179 if (this.stale()) {
180 …wsStale = requestCC['max-stale'] && !this._rescc['must-revalidate'] && (true === requestCC['max-st…
389 CachePolicy.prototype.stale = function stale() { method in CachePolicy
436 * Headers for sending to the origin server to revalidate stale response.

12345678910>>...27