- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 29 for tota (0.21 sec)
-
src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java
} /** * Calculates the limit document number based on total, percentage, and number. * @param total The total number of documents. * @param limitPercentage The limit percentage. * @param limitNumber The limit number. * @return The calculated limit document number. */ protected static long getLimitDocNum(final long total, final long limitPercentage, final long limitNumber) {Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
/** The underlying list containing the actual data. */ private final List<E> parent; /** The total number of pages available. */ protected int allPageCount; /** The total number of records across all pages. */ protected int allRecordCount; /** The number of records per page. */ protected int pageSize;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 11.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
} } /** * Returns the total number of documents processed. * * @return the number of documents processed */ @Override public long getDocumentSize() { return documentSize.get(); } /** * Returns the total execution time for all operations. * * @return the total execution time in milliseconds */ @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStream.java
* * @param b the buffer into which the data is read * @param off the start offset in array b at which the data is written * @param len the maximum number of bytes to read * @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 */ @OverrideRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
protected IndexingHelper indexingHelper; /** Flag indicating if crawling should be finished */ protected boolean finishCrawling = false; /** Total execution time in milliseconds */ protected long executeTime; /** Total number of processed documents */ protected long documentSize; /** Maximum number of indexer errors allowed */ protected int maxIndexerErrorCount = 0;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 32.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
SuggestUtil.deleteByQuery(ComponentUtil.getSearchEngineClient(), suggester.settings(), suggester.getIndex(), boolQueryBuilder); } /** * Gets the total number of words in the suggest index. * * @return The total number of words. */ public long getAllWordsNum() { return suggester.getAllWordsNum(); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
/** * Returns the index name. * @return The index name. */ public String getIndex() { return index; } /** * Returns the total number of words in the suggestion index. * @return The total number of words. */ public long getAllWordsNum() { return getNum(QueryBuilders.matchAllQuery()); } /**Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 21.6K bytes - Viewed (3) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EXTRACTOR_TESTS_README.md
- ✅ Error messages include encoding information - ✅ Large content handling - ✅ Unicode and special characters - ✅ Empty and whitespace-only content --- ## Test Coverage Summary ### Total Tests: 53 tests ### Coverage by Component: 1. **Resource Management**: 8 tests 2. **Input Validation**: 11 tests 3. **Error Handling**: 12 tests 4. **Edge Cases**: 10 tests 5. **Encoding Support**: 12 tests
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Nov 19 08:55:01 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
final List<Map<String, Object>> docList = results[searcherIndex].getDocumentList(); if (logger.isDebugEnabled()) { logger.debug("Searcher[{}]: retrieved {} documents / {} total documents", searcherIndex, docList.size(), results[searcherIndex].getAllRecordCount()); } for (int docRank = 0; docRank < docList.size(); docRank++) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 27.5K bytes - Viewed (0)