- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for minimum (0.03 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java
} /** * Gets the minimum port number for active mode FTP. * * @return The minimum port number */ public int getActiveMinPort() { return activeMinPort; } /** * Sets the minimum port number for active mode FTP. * * @param activeMinPort The minimum port number */Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 39.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java
// Second session urlFilter.init("session-002"); urlFilter.addInclude("https://second.com/.*"); // Behavior depends on implementation // At minimum, should not throw exceptions assertNotNull(urlFilter); } /** * Test special characters in URL patterns */ public void test_specialCharactersInPatterns() {Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerContextTest.java
crawlerContext.setMaxAccessCount(Long.MAX_VALUE); assertEquals(Long.MAX_VALUE, crawlerContext.getMaxAccessCount()); // Test with minimum values crawlerContext.setActiveThreadCount(Integer.MIN_VALUE); assertEquals(Integer.MIN_VALUE, crawlerContext.getActiveThreadCount().intValue()); crawlerContext.setNumOfThread(Integer.MIN_VALUE);Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 25.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
* <li>Optionally removing duplicate terms based on a flag.</li> * <li>Limiting the maximum size of alphanumeric and symbol terms.</li> * </ul> * * <p>The {@link TextNormalizeContext} class provides a fluent API to configure the text * normalization process, including setting initial buffer capacity, maximum term sizes, * duplicate term removal, and custom space characters. * * <p>Example usage: * <pre>{@code
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
assertTrue(keywords.size() > 0); } @Test public void testCreateBulkLineWithMinimalItem() { // Test with minimal SuggestItem SuggestItem item = new SuggestItem(new String[] { "minimal" }, new String[0][0], new String[0], 0, // queryFreq 0, // docFreq 1.0f, // userBoost
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 18.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/FileTransformer.java
} /** * Gets the maximum number of duplicated paths to attempt. * * @return the maximum duplicated path count */ public int getMaxDuplicatedPath() { return maxDuplicatedPath; } /** * Sets the maximum number of duplicated paths to attempt. * * @param maxDuplicatedPath the maximum duplicated path count to set */Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 11.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorBuilder.java
this.extractorName = extractorName; return this; } /** * Sets the maximum content length allowed for extraction. * * @param maxContentLength the maximum content length to set * @return this builder instance for method chaining */ public ExtractorBuilder maxContentLength(final long maxContentLength) {Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
} /** * Sets the maximum thread check count. * @param maxThreadCheckCount The maximum thread check count. */ public void setMaxThreadCheckCount(final int maxThreadCheckCount) { crawlerContext.maxThreadCheckCount = maxThreadCheckCount; } /** * Sets the maximum depth. * @param maxDepth The maximum depth. */Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
public void setCommandOutputEncoding(final String commandOutputEncoding) { this.commandOutputEncoding = commandOutputEncoding; } /** * Sets the maximum number of output lines to process. * @param maxOutputLine The maximum output lines to set. */ public void setMaxOutputLine(final int maxOutputLine) { this.maxOutputLine = maxOutputLine; } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java
*/ private SuggestUtil() { } /** * Creates a unique identifier for the given text by encoding it to a Base64 string. * If the encoded string exceeds the maximum allowed length, it truncates the string * to the specified maximum length. * * @param text the input text to be encoded * @return the encoded string, truncated if necessary */Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 17.4K bytes - Viewed (1)