Home
last modified time | relevance | path

Searched refs:MAX_AGE (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/npm/node_modules/lru-cache/
Dindex.js10 const MAX_AGE = Symbol('maxAge') constant
45 this[MAX_AGE] = options.maxAge || 0
75 this[MAX_AGE] = mA
79 return this[MAX_AGE]
154 maxAge = maxAge || this[MAX_AGE]
279 if (!hit || (!hit.maxAge && !self[MAX_AGE]))
284 : self[MAX_AGE] && (diff > self[MAX_AGE])
/third_party/node/deps/npm/node_modules/cross-spawn/node_modules/lru-cache/
Dindex.js30 var MAX_AGE = makeSymbol('maxAge') variable
74 this[MAX_AGE] = options.maxAge || 0
110 this[MAX_AGE] = mA
114 return this[MAX_AGE]
244 var maxAge = this[MAX_AGE]
298 maxAge = maxAge || this[MAX_AGE]
422 if (!hit || (!hit.maxAge && !self[MAX_AGE])) {
430 stale = self[MAX_AGE] && (diff > self[MAX_AGE])
/third_party/node/deps/npm/node_modules/cacache/lib/
Dmemoization.js6 const MAX_AGE = 3 * 60 * 1000 constant
10 maxAge: MAX_AGE,
/third_party/node/tools/
Dlint-md.mjs17457 const MAX_AGE = Symbol('maxAge'); constant
17492 this[MAX_AGE] = options.maxAge || 0;
17522 this[MAX_AGE] = mA;
17526 return this[MAX_AGE]
17601 maxAge = maxAge || this[MAX_AGE];
17726 if (!hit || (!hit.maxAge && !self[MAX_AGE]))
17731 : self[MAX_AGE] && (diff > self[MAX_AGE])