- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for calculateDocumentSize (0.31 sec)
-
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
public void sendDocuments(SearchEngineClient searchEngineClient, DocList docList) { sendDocumentsCalled++; docList.clear(); } @Override public long calculateDocumentSize(Map<String, Object> dataMap) { return documentSize; } } private static class TestCrawlingInfoHelper extends CrawlingInfoHelper { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
@Override public void sendDocuments(SearchEngineClient client, DocList docList) { docList.clear(); } @Override public long calculateDocumentSize(Map<String, Object> map) { return 100L; } } private static class TestIntervalControlHelper extends IntervalControlHelper { private boolean crawlerRunning = true;Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
updateDocument(map); docList.add(ingest(accessResult, map)); final long contentSize = indexingHelper.calculateDocumentSize(map); docList.addContentSize(contentSize); final long processingTime = systemHelper.getCurrentTimeAsLong() - startTime; docList.addProcessingTime(processingTime);Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0)