Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for addProcessingTime (0.26 sec)

  1. src/test/java/org/codelibs/fess/util/DocListTest.java

        public void test_addProcessingTime_multiple() {
            DocList docList = new DocList();
    
            docList.addProcessingTime(10);
            assertEquals(10, docList.getProcessingTime());
    
            docList.addProcessingTime(20);
            assertEquals(30, docList.getProcessingTime());
    
            docList.addProcessingTime(5);
            assertEquals(35, docList.getProcessingTime());
        }
    
        public void test_addContentSize_negative() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  2. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  3. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

                    docList.addContentSize(contentSize);
                    final long processingTime = systemHelper.getCurrentTimeAsLong() - startTime;
                    docList.addProcessingTime(processingTime);
    
                    if (docList.getContentSize() >= maxDocumentRequestSize || docList.size() >= maxDocumentCacheSize) {
                        indexingHelper.sendDocuments(searchEngineClient, docList);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  5. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top