- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for maxProcs (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CsvExtractor.java
this.encoding = encoding; } /** * Sets the maximum number of rows to extract. * * @param maxRows the maximum rows */ public void setMaxRows(final int maxRows) { this.maxRows = maxRows; } /** * Sets the delimiter character. * * @param delimiter the delimiter */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 12.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/CsvExtractorTest.java
CloseableUtil.closeQuietly(in); final String rowCount = extractData.getValues("row_count")[0]; // Should extract 2 data rows (header doesn't count toward maxRows) assertEquals("2", rowCount); }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 03:46:53 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
.param("requests_per_second", requestsPerSecond) .param("scroll", scroll) .param("max_docs", maxDocs) .param("wait_for_completion", Boolean.toString(waitForCompletion)) .body(source) .execute()) { if (response.getHttpStatusCode() == 200) { return true; }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 122.4K bytes - Viewed (1) -
src/main/resources/fess_config.properties
index.reindex.refresh=false # Timeout for reindex operations. index.reindex.timeout=1m # Scroll timeout for reindex operations. index.reindex.scroll=5m # Maximum number of documents for reindex operations. index.reindex.max_docs= # query # Maximum length of search queries. query.max.length=1000 # Timeout (ms) for search queries. query.timeout=10000 # Whether to enable logging for query timeouts. query.timeout.logging=true
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** * Get the value for the key 'index.reindex.max_docs'. <br> * The value is, e.g. <br> * comment: Maximum number of documents for reindex operations. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getIndexReindexMaxDocs(); /** * Get the value for the key 'index.reindex.max_docs' as {@link Integer}. <br>Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2)