Home
last modified time | relevance | path

Searched refs:disableCache (Results 1 – 25 of 216) sorted by relevance

123456789

/dports/www/chromium-legacy/chromium-88.0.4324.182/android_webview/javatests/src/org/chromium/android_webview/test/util/
H A DCommonResources.java19 public static List<Pair<String, String>> getTextHtmlHeaders(boolean disableCache) { in getTextHtmlHeaders() argument
20 return getContentTypeAndCacheHeaders("text/html", disableCache); in getTextHtmlHeaders()
24 public static List<Pair<String, String>> getTextJavascriptHeaders(boolean disableCache) { in getTextJavascriptHeaders() argument
25 return getContentTypeAndCacheHeaders("text/javascript", disableCache); in getTextJavascriptHeaders()
29 public static List<Pair<String, String>> getImagePngHeaders(boolean disableCache) { in getImagePngHeaders() argument
30 return getContentTypeAndCacheHeaders("image/png", disableCache); in getImagePngHeaders()
34 String contentType, boolean disableCache) { in getContentTypeAndCacheHeaders() argument
37 if (disableCache) headers.add(Pair.create("Cache-Control", "no-store")); in getContentTypeAndCacheHeaders()
H A DVideoTestWebServer.java46 private static List<Pair<String, String>> getWebmHeaders(boolean disableCache) { in getWebmHeaders() argument
47 return CommonResources.getContentTypeAndCacheHeaders("video/webm", disableCache); in getWebmHeaders()
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/frontend/Classes/Middleware/
H A DPageArgumentValidator.php57 protected $disableCache = false; variable in TYPO3\\CMS\\Frontend\\Middleware\\PageArgumentValidator
76 $this->disableCache = (bool)$request->getAttribute('noCache', false);
94 if (($cachingDisabledByRequest || $this->disableCache) && !$pageNotFoundOnValidationError) {
130 $request = $request->withAttribute('noCache', $this->disableCache);
167 $this->disableCache = true;
191 $this->disableCache = true;
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/frontend/Classes/Middleware/
H A DPageArgumentValidator.php58 protected $disableCache = false; variable in TYPO3\\CMS\\Frontend\\Middleware\\PageArgumentValidator
77 $this->disableCache = (bool)$request->getAttribute('noCache', false);
95 if (($cachingDisabledByRequest || $this->disableCache) && !$pageNotFoundOnValidationError) {
131 $request = $request->withAttribute('noCache', $this->disableCache);
168 $this->disableCache = true;
192 $this->disableCache = true;
/dports/finance/prestashop/prestashop/src/Adapter/
H A DDatabase.php98 public function disableCache() function in PrestaShop\\PrestaShop\\Adapter\\Database
100 Db::getInstance()->disableCache();
/dports/finance/prestashop/prestashop/tools/profiling/
H A DDb.php33 public $disableCache = true; variable in Db
84 if ($this->disableCache && !stripos($sql, 'SQL_NO_CACHE')) {
/dports/www/thirtybees/thirtybees-1.1.0/tools/profiling/
H A DDb.php39 public $disableCache = true; variable in Db
90 if ($this->disableCache && !stripos($sql, 'SQL_NO_CACHE')) {
/dports/emulators/mesen/Mesen-0.9.8-4-g4c701ad6/Core/
H A DHdNesPack.cpp201 bool disableCache = false; in GetCachedMatchingTile() local
206 hdPackTileInfo = GetMatchingTile(x, y, tile, &disableCache); in GetCachedMatchingTile()
208 if(!disableCache && _cacheEnabled) { in GetCachedMatchingTile()
218 …leInfo* HdNesPack::GetMatchingTile(uint32_t x, uint32_t y, HdPpuTileInfo* tile, bool* disableCache) in GetMatchingTile() argument
227 if(disableCache != nullptr && hdPackTile->ForceDisableCache) { in GetMatchingTile()
228 *disableCache = true; in GetMatchingTile()
/dports/finance/prestashop/prestashop/classes/
H A DImageManager.php55 …* @param bool $disableCache When turned on a timestamp will be added to the image URI to disable t…
60 …public static function thumbnail($image, $cacheImage, $size, $imageType = 'jpg', $disableCache = t… argument
97 …return '<img src="' . self::getThumbnailPath($cacheImage, $disableCache) . '" alt="" class="imgm i…
106 public static function getThumbnailPath($cacheImage, $disableCache) argument
108 $cacheParam = $disableCache ? '?time=' . time() : '';
/dports/math/openturns/openturns-1.18/lib/src/Base/Func/
H A DMemoizeEvaluation.cxx218 void MemoizeEvaluation::disableCache() const in disableCache() function in MemoizeEvaluation
251 disableCache(); in getCacheInput()
264 disableCache(); in getCacheOutput()
372 disableCache(); in load()
H A DMemoizeFunction.cxx111 void MemoizeFunction::disableCache() const in disableCache() function in MemoizeFunction
114 p_evaluation->disableCache(); in disableCache()
/dports/net/v2ray/v2ray-core-4.36.2/app/dns/
H A Ddns.go28 disableCache bool member
119 disableCache: config.DisableCache,
177 ips, err := client.QueryIP(ctx, domain, option, s.disableCache)
H A Dnameserver.go25 …QueryIP(ctx context.Context, domain string, clientIP net.IP, option dns.IPOption, disableCache boo…
185 func (c *Client) QueryIP(ctx context.Context, domain string, option dns.IPOption, disableCache bool…
187 ips, err := c.server.QueryIP(ctx, domain, c.clientIP, option, disableCache)
/dports/security/xray-core/Xray-core-1.5.0/app/dns/
H A Dnameserver.go23 …QueryIP(ctx context.Context, domain string, clientIP net.IP, option dns.IPOption, disableCache boo…
190 func (c *Client) QueryIP(ctx context.Context, domain string, option dns.IPOption, disableCache bool…
192 ips, err := c.server.QueryIP(ctx, domain, c.clientIP, option, disableCache)
H A Ddns.go26 disableCache bool member
143 disableCache: config.DisableCache,
210 ips, err := client.QueryIP(ctx, domain, option, s.disableCache)
/dports/finance/prestashop/prestashop/
H A Dimages.inc.php30 function cacheImage($image, $cacheImage, $size, $imageType = 'jpg', $disableCache = false) argument
34 return ImageManager::thumbnail($image, $cacheImage, $size, $imageType, $disableCache);
/dports/www/thirtybees/thirtybees-1.1.0/
H A Dimages.inc.php35 function cacheImage($image, $cacheImage, $size, $imageType = 'jpg', $disableCache = false) argument
38 return ImageManager::thumbnail($image, $cacheImage, $size, $imageType, $disableCache);
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/viewfs/
H A DViewFileSystemTestSetup.java104 public static Configuration createConfig(boolean disableCache) { in createConfig() argument
107 if (disableCache) { in createConfig()
/dports/net/concourse-fly/concourse-6.7.1/vendor/github.com/maxbrunsfeld/counterfeiter/v6/
H A Dmain.go56 if disableCache() {
90 func disableCache() bool { func
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/maxbrunsfeld/counterfeiter/v6/
H A Dmain.go56 if disableCache() {
90 func disableCache() bool { func
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DVMState.java58 private void disableCache() { in disableCache() method in VMState
135 disableCache(); in thaw()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DVMState.java58 private void disableCache() { in disableCache() method in VMState
135 disableCache(); in thaw()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/com/sun/tools/jdi/
H A DVMState.java56 private void disableCache() { in disableCache() method in VMState
133 disableCache(); in thaw()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DVMState.java58 private void disableCache() { in disableCache() method in VMState
135 disableCache(); in thaw()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DVMState.java58 private void disableCache() { in disableCache() method in VMState
135 disableCache(); in thaw()

123456789