- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 413 for _count (0.11 sec)
-
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
} /** * Retrieves a list of session IDs with their document counts from the search engine. * Uses aggregation to get session segments and their corresponding document counts. * * @param searchEngineClient the search engine client to perform the query * @return a list of maps containing session IDs and their document counts */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
final String sessionCountId = sessionId + "-" + count; crawlingConfigMap.put(sessionCountId, crawlingConfig); count++; return sessionCountId; } /** * Removes a stored crawling configuration from the session-based storage. * * @param sessionCountId the session count ID of the configuration to remove */
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/org/codelibs/fess/app/pager/CrawlingInfoPager.java
/** * Gets the total number of records across all pages. * * @return the total record count */ public int getAllRecordCount() { return allRecordCount; } /** * Sets the total number of records across all pages. * * @param allRecordCount the total record count to set */ public void setAllRecordCount(final int allRecordCount) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ConcurrentHashMultisetBasherTest.java
keys, new Function<String, Integer>() { @Override public Integer apply(String key) { return multiset.count(key); } }); assertEquals("Counts not as expected", Ints.asList(deltas), actualCounts); } finally { pool.shutdownNow(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 6K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.searchlog_log_type_search_keyword=Keyword Count labels.searchlog_log_type_search_zerohit=Zero Hit Count labels.searchlog_log_type_search_zeroclick=Zero Click Count labels.searchlog_log_type_search_count_hour=Search Count/Hour labels.searchlog_log_type_search_count_day=Search Count/Day labels.searchlog_log_type_search_user_hour=User Count/Hour labels.searchlog_log_type_search_user_day=User Count/Day
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 28 08:40:50 UTC 2025 - 40.7K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Strings.java
* * @param string any non-null string * @param count the number of times to repeat it; a nonnegative integer * @return a string containing {@code string} repeated {@code count} times (the empty string if * {@code count} is zero) * @throws IllegalArgumentException if {@code count} is negative */ public static String repeat(String string, int count) { checkNotNull(string); // eager for GWT.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 27 17:53:41 UTC 2025 - 12.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.9.md
* --alpha-endpoint-reconciler-type=(master-count, lease, none) (default * "master-count"). The original reconciler is 'master-count'. The 'lease' * reconciler uses the storageapi and a TTL to keep alive an endpoint within the * `kube-apiserver-endpoint` storage namespace. The 'none' reconciler is a noop
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Nov 16 10:46:27 UTC 2021 - 313.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java
if (aa.compareAndSet(i, v, v - 1.0)) { ++counts; } } } if (done) { break; } } } } /** * Multiple threads using same array of counters successfully update a number of times equal to * total count */ public void testCountingInMultipleThreads() throws InterruptedException {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 14.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
* The number of deleted items. */ protected long count = 1; /** * Sets the count of deleted items. * @param count The number of deleted items. * @return The ApiDeleteResponse instance. */ public ApiDeleteResponse count(final long count) { this.count = count; return this; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealConnectionPool.kt
return state.policy.backoffDelayMillis.jitterBy(state.policy.backoffJitterMillis) * 1_000_000 } } private fun Long.jitterBy(amount: Int): Long = this + ThreadLocalRandom.current().nextInt(amount * -1, amount) class AddressState( val address: Address, val queue: TaskQueue, var policy: AddressPolicy, ) { /**
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jun 03 17:10:08 UTC 2025 - 16.1K bytes - Viewed (0)