- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for addContentSize (0.07 seconds)
-
src/main/java/org/codelibs/fess/util/DocList.java
return contentSize; } /** * Adds to the total content size of this document list. * * @param contentSize the content size to add in bytes */ public void addContentSize(final long contentSize) { this.contentSize += contentSize; } /** * Gets the total processing time for all documents in this list. *Created: 2025-12-20 09:19 - Last Modified: 2025-07-17 08:28 - 3.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
synchronized (docList) { docList.add(ingest(paramMap, dataMap)); final long contentSize = indexingHelper.calculateDocumentSize(dataMap); docList.addContentSize(contentSize); final long processingTime = systemHelper.getCurrentTimeAsLong() - startTime; docList.addProcessingTime(processingTime); if (logger.isDebugEnabled()) {Created: 2025-12-20 09:19 - Last Modified: 2025-11-28 16:29 - 10.5K bytes - Click Count (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); if (logger.isDebugEnabled()) {
Created: 2025-12-20 09:19 - Last Modified: 2025-11-28 16:29 - 32.9K bytes - Click Count (0)