- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for getContentSize (0.06 seconds)
-
src/main/java/org/codelibs/fess/util/DocList.java
processingTime = 0; } /** * Gets the total content size of all documents in this list. * * @return the total content size in bytes */ public long getContentSize() { return contentSize; } /** * Adds to the total content size of this document list. * * @param contentSize the content size to add in bytes */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/DocListTest.java
assertEquals(0, docList.getContentSize()); assertEquals(0, docList.getProcessingTime()); docList.addContentSize(1000); docList.addProcessingTime(999); assertEquals(1000, docList.getContentSize()); assertEquals(999, docList.getProcessingTime()); docList.clear(); assertEquals(0, docList.getContentSize()); assertEquals(0, docList.getProcessingTime());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 6.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
MemoryUtil.byteCountToDisplaySize(contentSize), processingTime, docList.size()); } if (docList.getContentSize() >= maxDocumentRequestSize || docList.size() >= maxDocumentCacheSize) { indexingHelper.sendDocuments(searchEngineClient, docList); } executeTime += processingTime; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 10.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
final long processingTime = systemHelper.getCurrentTimeAsLong() - startTime; docList.addProcessingTime(processingTime); if (docList.getContentSize() >= maxDocumentRequestSize || docList.size() >= maxDocumentCacheSize) { indexingHelper.sendDocuments(searchEngineClient, docList); } executeTime += processingTime;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
} if (logger.isInfoEnabled()) { if (docList.getContentSize() > 0) { logger.info("Sent {} documents (process={}ms, send={}ms, size={}, {})", docList.size(), docList.getProcessingTime(), systemHelper.getCurrentTimeAsLong() - execTime, MemoryUtil.byteCountToDisplaySize(docList.getContentSize()), MemoryUtil.getMemoryUsageLog());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 26.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
MemoryUtil.byteCountToDisplaySize(contentSize), processingTime, docList.size(), docList.getContentSize()); } if (docList.getContentSize() >= maxDocumentRequestSize) { indexingHelper.sendDocuments(searchEngineClient, docList); } documentSize++;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 32.9K bytes - Click Count (0)