- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for addProcessingTime (0.09 sec)
-
src/main/java/org/codelibs/fess/util/DocList.java
public void addContentSize(final long contentSize) { this.contentSize += contentSize; } public long getProcessingTime() { return processingTime; } public void addProcessingTime(final long processingTime) { this.processingTime += processingTime; } @Override public String toString() {
Registered: 2024-10-31 13:40 - Last Modified: 2024-02-22 01:37 - 1.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/DocListTest.java
DocList docList = new DocList(); 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());
Registered: 2024-10-31 13:40 - Last Modified: 2024-02-22 01:37 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
docList.addContentSize(contentSize); final long processingTime = systemHelper.getCurrentTimeAsLong() - startTime; docList.addProcessingTime(processingTime); if (logger.isDebugEnabled()) { logger.debug("Added the document({}, {}ms). The number of a document cache is {}.",
Registered: 2024-10-31 13:40 - Last Modified: 2024-02-22 01:53 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
docList.addContentSize(contentSize); final long processingTime = systemHelper.getCurrentTimeAsLong() - startTime; docList.addProcessingTime(processingTime); if (logger.isDebugEnabled()) { logger.debug("Added the document({}, {}ms). The number of a document cache is {} (size: {}).",
Registered: 2024-10-31 13:40 - Last Modified: 2024-10-11 21:20 - 24.2K bytes - Viewed (0)