- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 46 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) -
android/guava/src/com/google/common/cache/CacheBuilder.java
checkState( this.maximumSize == UNSET_INT, "maximum size was already set to %s", this.maximumSize); checkState( this.maximumWeight == UNSET_INT, "maximum weight was already set to %s", this.maximumWeight); checkState(this.weigher == null, "maximum size can not be combined with weigher"); checkArgument(maximumSize >= 0, "maximum size must not be negative"); this.maximumSize = maximumSize;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 51.7K 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) -
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) -
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/helper/DocumentHelper.java
} /** * Gets the maximum size for alphanumeric terms from configuration. * * @return the maximum alphanumeric term size */ protected int getMaxAlphanumTermSize() { final FessConfig fessConfig = ComponentUtil.getFessConfig(); return fessConfig.getCrawlerDocumentMaxAlphanumTermSizeAsInteger(); } /** * Gets the maximum size for symbol terms from configuration.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
*/ public long calculateDocumentSize(final Map<String, Object> dataMap) { return MemoryUtil.sizeOf(dataMap); } /** * Sets the maximum number of retry attempts for failed operations. * * @param maxRetryCount the maximum retry count */ public void setMaxRetryCount(final int maxRetryCount) { this.maxRetryCount = maxRetryCount; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java
// Test with negative ID value dictionaryItem.id = -456L; assertEquals(-456L, dictionaryItem.getId()); } public void test_getId_maxValue() { // Test with maximum Long value dictionaryItem.id = Long.MAX_VALUE; assertEquals(Long.MAX_VALUE, dictionaryItem.getId()); } public void test_getId_minValue() { // Test with minimum Long value
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
*/ public void setLoggerName(final String loggerName) { this.loggerName = loggerName; } /** * Sets the maximum number of statistics objects to cache. * * @param maxCacheSize the maximum cache size */ public void setMaxCacheSize(final long maxCacheSize) { this.maxCacheSize = maxCacheSize; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
protected long executeTime; /** Total number of processed documents */ protected long documentSize; /** Maximum number of indexer errors allowed */ protected int maxIndexerErrorCount = 0; /** Maximum number of general errors allowed before termination */ protected int maxErrorCount = 2; /** List of finished crawler session IDs for cleanup */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0)