- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 527 for cached (0.27 sec)
-
docs/recipes.md
it with their cache, and use that same instance everywhere. Otherwise the two cache instances will stomp on each other, corrupt the response cache, and possibly crash your program. Response caching uses HTTP headers for all configuration. You can add request headers like `Cache-Control: max-stale=3600` and OkHttp's cache will honor them. Your webserver configures how long responses are cached with its own response headers, like `Cache-Control: max-age=9600`. There are cache headers to force...
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 47.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
} public void test_init_cacheConfiguration() { // Test that init properly configures the cache CrawlingConfigHelper newHelper = new CrawlingConfigHelper(); newHelper.init(); assertNotNull(newHelper); // Cache should be initialized and functional assertNull(newHelper.getCrawlingConfig("invalid")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 34.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/crypto/CachedCipher.java
import org.codelibs.core.exception.UnsupportedEncodingRuntimeException; import org.codelibs.core.misc.Base64Util; /** * A utility class for encrypting and decrypting data using a cached {@link Cipher} instance. */ public class CachedCipher { /** * Creates a new {@link CachedCipher} instance. */ public CachedCipher() { }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
protected int count = 1; /** * Cache for storing crawling configurations to improve performance. */ protected Cache<String, CrawlingConfig> crawlingConfigCache; /** * Initializes the CrawlingConfigHelper by setting up the crawling configuration cache. * This method is called automatically after the bean construction is complete.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
synchronized (this) { // Force disconnection this.connectionState.set(0); this.tid = -1; // Clear any cached resources // Note: Most fields in SmbTreeImpl are final or managed differently // Clear session reference if mutable // Note: session field may be final, cannot be nulled
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
/** Configuration key for crawler clients used in parameter maps */ protected static final String CRAWLER_CLIENTS = "crawlerClients"; /** * Cache for client rules mapping client names to their corresponding URL patterns. * This cache improves performance by avoiding repeated parsing of client configuration rules. * The key is the rule string, and the value is a pair containing the client name and compiled pattern.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/CacheLoadingTest.java
* the License. */ package com.google.common.cache; import static com.google.common.cache.TestingCacheLoaders.bulkLoader; import static com.google.common.cache.TestingCacheLoaders.constantLoader; import static com.google.common.cache.TestingCacheLoaders.errorLoader; import static com.google.common.cache.TestingCacheLoaders.exceptionLoader; import static com.google.common.cache.TestingCacheLoaders.identityLoader;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 85.7K bytes - Viewed (0) -
docs/changelogs/changelog_3x.md
* Fix: Don't permanently cache responses with `Cache-Control: immutable`. We misunderstood the original `immutable` proposal! * Fix: Change `Authenticator`'s `Route` parameter to be nullable. This was marked as non-null but could be called with null in some cases. * Fix: Don't create malformed URLs when `MockWebServer` is reached via an IPv6 address.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0) -
src/test/java/jcifs/netbios/LmhostsTest.java
// First call should read the file NbtAddress result1 = lmhosts.getByName("TESTHOST", mockContext); assertNotNull(result1); // Second call should use cached data (file not modified) NbtAddress result2 = lmhosts.getByName("TESTHOST", mockContext); assertNotNull(result2); assertEquals(result1, result2); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbResourceLocatorImplTest.java
String unc2 = l.handleDFSReferral(dr, null); assertTrue(unc2.contains("dfs/path") || unc2.contains("dfs\\path")); } @Test @DisplayName("toString includes URL and cached fields") void testToString() { SmbResourceLocatorImpl l = locator("smb://server/share"); String s = l.toString(); assertTrue(s.startsWith("smb://server/share"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0)