Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for addProcessingTime (0.18 sec)

  1. src/main/java/org/codelibs/fess/util/DocList.java

        }
    
        /**
         * Adds to the total processing time of this document list.
         *
         * @param processingTime the processing time to add in milliseconds
         */
        public void addProcessingTime(final long processingTime) {
            this.processingTime += processingTime;
        }
    
        /**
         * Returns a string representation of this DocList including metrics and content.
         *
    Registered: 2025-12-20 09:19
    - Last Modified: 2025-07-17 08:28
    - 3.2K bytes
    - Viewed (0)
  2. 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 document (size={}, time={}ms). Document cache count: {}",
    Registered: 2025-12-20 09:19
    - Last Modified: 2025-11-28 16:29
    - 10.5K bytes
    - Viewed (0)
  3. 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: 2025-12-20 09:19
    - Last Modified: 2025-11-28 16:29
    - 32.9K bytes
    - Viewed (0)
Back to top