- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 37 for hitCount (0.04 sec)
-
src/main/java/org/codelibs/fess/opensearch/log/cbean/ca/bs/BsSearchLogCA.java
} public void setHitCount_Avg(ConditionOptionCall<AvgAggregationBuilder> opLambda) { setHitCount_Avg("hitCount", opLambda); } public void setHitCount_Avg(String name, ConditionOptionCall<AvgAggregationBuilder> opLambda) { AvgAggregationBuilder builder = regAvgA(name, "hitCount"); if (opLambda != null) { opLambda.callback(builder); } }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 115.3K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/AbstractCache.java
} /** Increments all counters by the values in {@code other}. */ public void incrementBy(StatsCounter other) { CacheStats otherStats = other.snapshot(); hitCount.add(otherStats.hitCount()); missCount.add(otherStats.missCount()); loadSuccessCount.add(otherStats.loadSuccessCount()); loadExceptionCount.add(otherStats.loadExceptionCount());Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 9.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt
assertThat(cache.networkCount()).isEqualTo(1) assertThat(cache.hitCount()).isEqualTo(0) assertThat(get(server.url("/")).body.string()).isEqualTo("B") assertThat(get(server.url("/")).body.string()).isEqualTo("C") assertThat(cache.requestCount()).isEqualTo(3) assertThat(cache.networkCount()).isEqualTo(3) assertThat(cache.hitCount()).isEqualTo(0) } @Test
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Oct 03 17:41:45 UTC 2025 - 116.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/SearchLogDbm.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/config/es/fess_log_search_log.json
"search_log" : { "properties" : { "accessType" : { "type" : "keyword" }, "clientIp" : { "type" : "keyword" }, "hitCount" : { "type" : "long" }, "hitCountRelation" : { "type" : "keyword" }, "languages" : { "type" : "keyword" },
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Apr 12 15:00:27 UTC 2019 - 2K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt
// If this is a conditional request, we'll increment hitCount if/when it hits. networkCount++ } else if (cacheStrategy.cacheResponse != null) { // This response uses the cache and not the network. That's a cache hit. hitCount++ } } @Synchronized internal fun trackConditionalCacheHit() { hitCount++ } @Synchronized fun networkCount(): Int = networkCount
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Oct 03 17:41:45 UTC 2025 - 26.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/exentity/SearchLog.java
return "SearchLog [searchFieldLogList=" + searchFieldLogList + ", headerList=" + headerList + ", userInfo=" + userInfo + ", fields=" + fields + ", accessType=" + accessType + ", clientIp=" + clientIp + ", hitCount=" + hitCount + ", languages=" + languages + ", queryId=" + queryId + ", queryOffset=" + queryOffset + ", queryPageSize=" + queryPageSize + ", queryTime=" + queryTime
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_log.search_log/search_log.json
"type": "date", "format": "date_optional_time" }, "responseTime": { "type": "long" }, "queryTime": { "type": "long" }, "hitCount": { "type": "long" }, "hitCountRelation": { "type": "keyword" }, "queryOffset": { "type": "integer" }, "queryPageSize": {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Feb 25 13:38:21 UTC 2022 - 1.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/AbstractCacheTest.java
} public void testEmptySimpleStats() { StatsCounter counter = new SimpleStatsCounter(); CacheStats stats = counter.snapshot(); assertThat(stats.requestCount()).isEqualTo(0); assertThat(stats.hitCount()).isEqualTo(0); assertThat(stats.hitRate()).isEqualTo(1.0); assertThat(stats.missCount()).isEqualTo(0); assertThat(stats.missRate()).isEqualTo(0.0); assertThat(stats.loadSuccessCount()).isEqualTo(0);
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Sep 30 22:03:28 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
} else { emptyListCount = 0; // reset } long hitCount = ((OpenSearchResultList<OpenSearchAccessResult>) arList).getTotalHits(); while (hitCount > 0) { if (arList.isEmpty()) { ThreadUtil.sleep(fessConfig.getIndexerWebfsCommitMarginTimeAsInteger().longValue());Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 32.9K bytes - Viewed (0)