- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 289 for across (0.06 sec)
-
src/main/java/org/codelibs/fess/app/pager/StemmerOverridePager.java
return 1; } /** * 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 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt
} // Check that asterisk did not match across domain name labels. val suffixStartIndexInHostname = hostname.length - suffix.length if (suffixStartIndexInHostname > 0 && hostname.lastIndexOf('.', suffixStartIndexInHostname - 1) != -1 ) { return false // Asterisk is matching across domain name labels -- not permitted. } // Hostname matches pattern.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java
versionNo = null; } /** * Gets the total number of records across all pages. * * @return total record count */ public int getAllRecordCount() { return allRecordCount; } /** * Sets the total number of records across all pages. * * @param allRecordCount total record count */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java
return DEFAULT_CURRENT_PAGE_NUMBER; } /** * 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 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/AuthenticationManager.java
import org.codelibs.fess.auth.chain.AuthenticationChain; import org.codelibs.fess.opensearch.user.exentity.User; /** * Manages authentication operations across multiple authentication chains. * This class coordinates user operations across different authentication providers. */ public class AuthenticationManager { /** Array of authentication chains to process user operations. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java
return DEFAULT_CURRENT_PAGE_NUMBER; } /** * 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 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java
return DEFAULT_CURRENT_PAGE_NUMBER; } /** * 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 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java
return DEFAULT_CURRENT_PAGE_NUMBER; } /** * 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 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java
return DEFAULT_CURRENT_PAGE_NUMBER; } /** * 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 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/LongAdder.java
/** * One or more variables that together maintain an initially zero {@code long} sum. When updates * (method {@link #add}) are contended across threads, the set of variables may grow dynamically to * reduce contention. Method {@link #sum} (or, equivalently, {@link #longValue}) returns the current * total combined across the variables maintaining the sum. * * <p>This class is usually preferable to {@link AtomicLong} when multiple threads update a common
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.6K bytes - Viewed (0)