Home
last modified time | relevance | path

Searched refs:_noCache (Results 1 – 3 of 3) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Http/src/System/Net/Http/Headers/
H A DCacheControlHeaderValue.cs31 private bool _noCache; field in System.Net.Http.Headers.CacheControlHeaderValue
50 get { return _noCache; }
51 set { _noCache = value; }
170 _noCache = source._noCache; in CacheControlHeaderValue()
220 if (_noCache) in ToString()
287 … if ((_noCache != other._noCache) || (_noStore != other._noStore) || (_maxAge != other._maxAge) || in Equals()
322 …int result = _noCache.GetHashCode() ^ (_noStore.GetHashCode() << 1) ^ (_maxStale.GetHashCode() << … in GetHashCode()
448 … success = TrySetOptionalTokenList(nameValue, ref cc._noCache, ref cc._noCacheHeaders); in TrySetCacheControlValues()
/dports/sysutils/fusefs-encfs/encfs-1.9.5/encfs/
H A DBlockFileIO.h64 bool _noCache; variable
H A DBlockFileIO.cpp47 _noCache = cfg->opts->noCache; in BlockFileIO()
70 if ((!_noCache) && (req.offset == _cache.offset) && (_cache.dataLen != 0)) { in cacheReadOneBlock()