- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 431 for countIn (0.03 sec)
-
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
* Gets the total number of records that match the search criteria. * * @return The total record count */ public long getAllRecordCount() { return allRecordCount; } /** * Gets the relation type indicating how the record count should be interpreted. * * @return The record count relation (e.g., "eq" for exact, "gte" for greater than or equal) */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K 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-testlib/src/com/google/common/collect/testing/SpliteratorTester.java
} long size = spliterator.getExactSizeIfKnown(); long[] counter = {0}; spliterator.forEachRemaining( e -> { consumer.accept(e); counter[0]++; }); if (size >= 0) { assertEquals(size, counter[0]); } } }, ALTERNATE_ADVANCE_AND_SPLIT { @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:07:06 UTC 2025 - 12.5K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java
} long size = spliterator.getExactSizeIfKnown(); long[] counter = {0}; spliterator.forEachRemaining( e -> { consumer.accept(e); counter[0]++; }); if (size >= 0) { assertEquals(size, counter[0]); } } }, ALTERNATE_ADVANCE_AND_SPLIT { @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRenderData.java
* * @param allRecordCount The total record count */ public void setAllRecordCount(final long allRecordCount) { this.allRecordCount = allRecordCount; } /** * Sets the relation type for the record count (e.g., "eq", "gte"). * * @param allRecordCountRelation The record count relation */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/jcifs/util/AuthenticationRateLimiterTest.java
rateLimiter.recordFailure(username, ip); assertTrue(rateLimiter.checkAttempt(username, ip)); rateLimiter.recordFailure(username, ip); // Success should reset counter assertTrue(rateLimiter.checkAttempt(username, ip)); rateLimiter.recordSuccess(username, ip); // Should be able to fail 3 more times before lockout for (int i = 0; i < 3; i++) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2WriteResponse.java
private int count; private int remaining; /** * Creates a new SMB2 write response. * * @param config the CIFS configuration */ public Smb2WriteResponse(final Configuration config) { super(config); } /** * Returns the number of bytes written. * * @return the count */ public final int getCount() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0) -
guava/src/com/google/common/base/Enums.java
* constant does not exist, {@link Optional#absent} is returned. A common use case is for parsing * user input or falling back to a default enum constant. For example, {@code * Enums.getIfPresent(Country.class, countryInput).or(Country.DEFAULT);} * * @since 12.0 */ public static <T extends Enum<T>> Optional<T> getIfPresent(Class<T> enumClass, String value) { checkNotNull(enumClass); checkNotNull(value);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 01 13:41:58 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
public int count; /** Array of trust information for domains. */ public LsarTrustInformation[] domains; /** Maximum count of domains. */ public int max_count; @Override public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_long(count); _dst.enc_ndr_referent(domains, 1);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 42.5K bytes - Viewed (0) -
src/main/resources/fess_label_en.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: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0)