Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            indexUpdater.indexingHelper = indexingHelper;
        }
    
        @Override
        public void tearDown() throws Exception {
            if (indexUpdater != null && indexUpdater.isAlive()) {
                indexUpdater.setFinishCrawling(true);
                indexUpdater.interrupt();
                indexUpdater.join(1000);
            }
            super.tearDown();
        }
    
        // Test initialization
        public void test_init() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

            if (logger.isInfoEnabled()) {
                logger.info("[EXEC TIME] crawling time: {}ms", execTime);
            }
    
            indexUpdater.setFinishCrawling(true);
            try {
                indexUpdater.join();
            } catch (final InterruptedException e) {
                logger.warn("Interrupted index update.", e);
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

        }
    
        /**
         * Sets the flag indicating whether crawling should be finished.
         *
         * @param finishCrawling true if crawling should be finished, false otherwise
         */
        public void setFinishCrawling(final boolean finishCrawling) {
            this.finishCrawling = finishCrawling;
        }
    
        /**
         * Gets the total number of documents processed.
         *
         * @return the total document count
         */
    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