- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 554 for cache2 (0.04 sec)
-
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) -
docs/changelogs/changelog_3x.md
a bug where a shared connection pool did not guarantee shared connections in some cases. * Fix: Prefer the server's response body on all conditional cache misses. Previously we would return the cached response's body if it had a newer `Last-Modified` date. * Fix: Update the stored timestamp on conditional cache hits. * New: Optimized HTTP/2 request header encoding. More headers are HPACK-encoded and string literals are now Huffman-encoded.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0) -
cmd/data-usage_test.go
t.Fatalf("deserialize LastUpdate mismatch\nwant: %+v\ngot: %+v", want, got) } if len(want.Cache) != len(got.Cache) { t.Errorf("deserialize mismatch length\nwant: %+v\ngot: %+v", len(want.Cache), len(got.Cache)) } for wkey, wval := range want.Cache { gotv := got.Cache[wkey] if !equalAsJSON(gotv, wval) { t.Errorf("deserialize mismatch, key %v\nwant: %#v\ngot: %#v", wkey, wval, gotv) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 14.6K bytes - Viewed (0) -
cmd/bucket-quota.go
if len(dui.BucketsUsage) > 0 { internalLogOnceIf(GlobalContext, fmt.Errorf("unable to retrieve usage information for bucket: %s, relying on older value cached in-memory: err(%v)", bucket, err), "bucket-usage-cache-"+bucket) } else {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Aug 06 23:48:58 UTC 2025 - 4.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/cache/DiskLruCacheTest.kt
taskFaker.runNextTask() // The rebuild is retried on cache hits and on cache edits. val snapshot = cache["b"]!! snapshot.close() assertThat(cache.edit("d")).isNull() assertThat(taskFaker.isIdle()).isFalse() // On cache misses, no retry job is queued. assertThat(cache["c"]).isNull() assertThat(taskFaker.isIdle()).isFalse()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 75.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
// Clean up system property System.clearProperty(Constants.FESS_CONFIG_PREFIX + testKey); } } // Test cache behavior with system property changes public void test_get_cacheAfterSystemPropertyChange() { String testKey = "cache.test"; String initialValue = "initial"; System.setProperty(Constants.FESS_CONFIG_PREFIX + testKey, initialValue); try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
} catch (final Exception e) { return url; } } /** * Gets the character encoding for a parent URL from cache or data service. * Caches encoding information to improve performance on subsequent requests. * * @param parentUrl the parent URL to get encoding for * @param sessionId the session ID for the crawling session
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
} public void test_store_triggersIndexing_whenCacheSizeExceeded() { // Set small cache size indexUpdateCallback.maxDocumentCacheSize = 1; DataStoreParams paramMap = new DataStoreParams(); // Add first document - should trigger indexing because cache size is 1 Map<String, Object> dataMap1 = new HashMap<>(); dataMap1.put("url", "http://example.com/test1");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
protected CrawlerClientFactory crawlerClientFactory; /** List of URLs to be deleted, cached for batch processing. */ protected List<String> deleteUrlList = new ArrayList<>(100); /** Maximum size of the delete URL cache before batch deletion is triggered. */ protected int maxDeleteDocumentCacheSize; /** Maximum number of redirects to follow when processing URLs. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/FuturesGetChecked.java
* It's very unlikely that any loaded Futures class will see getChecked called with more * than a handful of exceptions. But it seems prudent to set a cap on how many we'll cache. * This avoids out-of-control memory consumption, and it keeps the cache from growing so * large that doing the lookup is noticeably slower than redoing the work would be. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 10.2K bytes - Viewed (0)