- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 73 for maksimum (0.04 sec)
-
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
/** The maximum size of the result document IDs cache */ protected int resultDocIdsCacheSize = 20; /** The name of the cookie used for user identification */ protected String cookieName = "fsid"; /** The domain for the user identification cookie */ protected String cookieDomain; /** The maximum age of the user identification cookie in seconds (default: 1 month) */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
/** Maximum number of lines to buffer. */ private final int maxLineBuffer; /** * Constructor for InputStreamThread. * @param is The input stream to read from. * @param charset The character encoding to use. * @param maxOutputLineBuffer The maximum number of lines to buffer. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/DiscreteDomain.java
} /** * Returns the maximum value of type {@code C}, if it has one. The maximum value is the unique * value for which {@link Comparable#compareTo(Object)} never returns a negative value for any * input of type {@code C}. * * <p>The default implementation throws {@code NoSuchElementException}. * * @return the maximum value of type {@code C}; never null
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
} /** * Sets the maximum size of the delete document cache. * * @param maxDeleteDocumentCacheSize the maximum cache size before batch deletion is triggered */ public void setMaxDeleteDocumentCacheSize(final int maxDeleteDocumentCacheSize) { this.maxDeleteDocumentCacheSize = maxDeleteDocumentCacheSize; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/Comparators.java
return (comparator.compare(a, b) <= 0) ? a : b; } /** * Returns the maximum of the two values. If the values compare as 0, the first is returned. * * <p>The recommended solution for finding the {@code maximum} of some values depends on the type * of your data and the number of elements you have. Read more in the Guava User Guide article on
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 10.9K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Service.java
*/ void awaitRunning(); /** * Waits for the {@link Service} to reach the {@linkplain State#RUNNING running state} for no more * than the given time. * * @param timeout the maximum time to wait * @throws TimeoutException if the service has not reached the given state within the deadline * @throws IllegalStateException if the service reaches a state from which it is not possible to
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
* @param name The generator name. */ public void setName(final String name) { this.name = name; } /** * Sets the maximum number of redirects to follow. * @param maxRedirectCount The maximum redirect count. */ public void setMaxRedirectCount(final int maxRedirectCount) { this.maxRedirectCount = maxRedirectCount; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/DiscreteDomain.java
} /** * Returns the maximum value of type {@code C}, if it has one. The maximum value is the unique * value for which {@link Comparable#compareTo(Object)} never returns a negative value for any * input of type {@code C}. * * <p>The default implementation throws {@code NoSuchElementException}. * * @return the maximum value of type {@code C}; never null
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
} /** * Sets the maximum number of session IDs to include in session ID lists. * This controls the size limit for aggregation results when retrieving session lists. * * @param maxSessionIdsInList the maximum number of session IDs to include in lists */ public void setMaxSessionIdsInList(final int maxSessionIdsInList) {
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/crawler/transformer/FessTransformer.java
} /** * Gets the maximum allowed length for site strings from configuration. * * @return the maximum site length as configured */ default int getMaxSiteLength() { return getFessConfig().getCrawlerDocumentMaxSiteLengthAsInteger(); } /** * Abbreviates a site string to the maximum allowed length if configured. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.8K bytes - Viewed (0)