- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getDocumentSize (0.17 sec)
-
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 */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
logger.debug("Deleted {} documents from URL list", deleteUrlList.size()); } deleteUrlList.clear(); } @Override public long getDocumentSize() { return indexUpdateCallback.getDocumentSize(); } @Override public long getExecuteTime() { return indexUpdateCallback.getExecuteTime(); } /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 29.7K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
crawlingInfoHelper.putToInfoMap(Constants.DATA_INDEX_EXEC_TIME, Long.toString(indexUpdateCallback.getExecuteTime())); crawlingInfoHelper.putToInfoMap(Constants.DATA_INDEX_SIZE, Long.toString(indexUpdateCallback.getDocumentSize())); for (final String sid : sessionIdList) { // remove config ComponentUtil.getCrawlingConfigHelper().remove(sid); } } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 19K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
crawlingInfoHelper.putToInfoMap(Constants.WEB_FS_INDEX_EXEC_TIME, Long.toString(indexUpdater.getExecuteTime())); crawlingInfoHelper.putToInfoMap(Constants.WEB_FS_INDEX_SIZE, Long.toString(indexUpdater.getDocumentSize())); if (systemHelper.isForceStop()) { return; } for (final String sid : sessionIdList) { // remove configRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 25K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
this.finishCrawling = finishCrawling; } /** * Gets the total number of documents processed. * * @return the total document count */ public long getDocumentSize() { return documentSize; } /** * Sets the uncaught exception handler for this IndexUpdater thread. * * @param eh the uncaught exception handler to set */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 32.9K bytes - Viewed (0)