Home
last modified time | relevance | path

Searched refs:CachePolicy (Results 1 – 5 of 5) sorted by relevance

/third_party/node/deps/npm/node_modules/http-cache-semantics/node4/
Dindex.js62 function CachePolicy(req, res) { class
70 _classCallCheck(this, CachePolicy);
117 CachePolicy.prototype.now = function now() { class
121 CachePolicy.prototype.storable = function storable() {
147 CachePolicy.prototype._hasExplicitExpiration = function _hasExplicitExpiration() {
152 CachePolicy.prototype._assertRequestHasHeaders = function _assertRequestHasHeaders(req) {
158CachePolicy.prototype.satisfiesWithoutRevalidation = function satisfiesWithoutRevalidation(req) {
189 CachePolicy.prototype._requestMatches = function _requestMatches(req, allowHeadMethod) {
198 CachePolicy.prototype._allowsStoringAuthenticated = function _allowsStoringAuthenticated() {
203 CachePolicy.prototype._varyMatches = function _varyMatches(req) {
[all …]
/third_party/node/deps/npm/node_modules/http-cache-semantics/
DREADME.md3 `CachePolicy` tells when responses can be reused from a cache, taking into account [HTTP RFC 7234](…
10 const policy = new CachePolicy(request, response, options);
103 …e the `CachePolicy` object along with the cached response. `obj = policy.toObject()` gives a plain…
125 …policy` — A new `CachePolicy` with HTTP headers updated from `revalidationResponse`. You can alway…
/third_party/node/deps/npm/node_modules/make-fetch-happen/
Dindex.js5 const CachePolicy = require('http-cache-semantics') constant
198 return new CachePolicy(_req, _res, { shared: false })
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPURegisterBankInfo.cpp1345 static unsigned extractGLC(unsigned CachePolicy) { in extractGLC() argument
1346 return CachePolicy & 1; in extractGLC()
1349 static unsigned extractSLC(unsigned CachePolicy) { in extractSLC() argument
1350 return (CachePolicy >> 1) & 1; in extractSLC()
1353 static unsigned extractDLC(unsigned CachePolicy) { in extractDLC() argument
1354 return (CachePolicy >> 2) & 1; in extractDLC()
1382 unsigned CachePolicy = MI.getOperand(5).getImm(); in selectStoreIntrinsic() local
1421 .addImm(extractGLC(CachePolicy)) in selectStoreIntrinsic()
1422 .addImm(extractSLC(CachePolicy)) in selectStoreIntrinsic()
1424 .addImm(extractDLC(CachePolicy)) in selectStoreIntrinsic()
DSIISelLowering.cpp5211 static bool parseCachePolicy(SDValue CachePolicy, SelectionDAG &DAG, in parseCachePolicy() argument
5213 auto CachePolicyConst = cast<ConstantSDNode>(CachePolicy.getNode()); in parseCachePolicy()
5216 SDLoc DL(CachePolicy); in parseCachePolicy()
5712 unsigned CachePolicy = cast<ConstantSDNode>(GLC)->getZExtValue(); in lowerSBuffer() local
5720 DAG.getTargetConstant(CachePolicy, DL, MVT::i32), // cachepolicy in lowerSBuffer()