- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 137 for uint (0.03 sec)
-
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
protected Map<String, QueueHolder> sessionCache = new ConcurrentHashMap<>(); /** * The number of URLs to fetch when polling. */ protected int pollingFetchSize = 1000; /** * The maximum size of the crawling queue. */ protected int maxCrawlingQueueSize = 100; /** * Creates a new instance of OpenSearchUrlQueueService. * @param crawlerConfig The crawler configuration. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 17K bytes - Viewed (1) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/util/OpenSearchCrawlerConfig.java
/** * Number of shards for the queue index. */ protected int queueShards = Runtime.getRuntime().availableProcessors() * 2; /** * Number of shards for the data index. */ protected int dataShards = Runtime.getRuntime().availableProcessors() * 2; /** * Number of shards for the filter index. */ protected int filterShards = Runtime.getRuntime().availableProcessors() * 2; /**Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Constants.java
*/ public static final int OK_STATUS = 0; /** * The status code for Not Modified. */ public static final int NOT_MODIFIED_STATUS = 304; /** * The HTTP status code for OK. */ public static final int OK_STATUS_CODE = 200; /** * The HTTP status code for Not Modified. */ public static final int NOT_MODIFIED_STATUS_CODE = 304; /**Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
private final Reader reader; private int initialCapacity = 10000; private int maxAlphanumTermSize = -1; private int maxSymbolTermSize = -1; private boolean duplicateTermRemoved = false; /** * Array of space characters. Default includes common space characters. */ private int[] spaceChars = { '\u0020', '\u00a0', '\u3000', '\ufffd' };Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 12K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
/** * Size for delete operations. */ protected int sizeForDelete = 10; /** * Retry interval in milliseconds. */ protected long retryInterval = 3 * 1000L; /** * Maximum retry count. */ protected int maxRetryCount = 5; /** * Connection timeout in milliseconds. */Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 25.3K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java
*/ protected int scrollTimeout = 60000; /** * Scroll size for search requests. */ protected int scrollSize = 100; /** * Buffer size for bulk operations. */ protected int bulkBufferSize = 10; /** * Number of shards for the index. */ protected int numberOfShards = 5; /**Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 34.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStream.java
* @return the total number of bytes read into the buffer, or -1 if there is no more data * @throws IOException if an I/O error occurs */ @Override public int read(final byte[] b, final int off, final int len) throws IOException { return inputStream.read(b, off, len); } /** * Reads some number of bytes from the input stream and stores them into the buffer array b. *Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/AbstractTransformerTest.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 20.8K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java
private final CharsRef scratchChars = new CharsRef(); private int longestMatchEndOffset; private int ch; private final char[] readBuffer; private int readBufferIndex; private int readBufferLen; StringBuilder block; int blkStart; int nextBlkStart; private int finalOffset; private final PriorityQueue<MyToken> queue;Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 17K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/util/CrawlerWebServer.java
private final File docRoot; private final Server server; private boolean tempDocRoot = false; public CrawlerWebServer(final int port) { this(port, createDocRoot(3)); tempDocRoot = true; } public CrawlerWebServer(final int port, final File docRoot) { this.docRoot = docRoot; server = new Server(port);Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 5K bytes - Viewed (0)