Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for finishCrawling (0.04 sec)

  1. 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)
  2. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            indexUpdater.finishCrawling = false;
    
            indexUpdater.destroy();
    
            assertTrue(crawler.stopCalled);
        }
    
        // Test destroy when crawling is finished
        public void test_destroy_finished() {
            indexUpdater.finishCrawling = true;
            indexUpdater.destroy();
            // finishCrawling should be set when max empty list count is exceeded
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java

                crawlerContext.activeThreadCount++;
            }
        }
    
        /**
         * Decrements the active thread count.
         */
        protected void finishCrawling() {
            synchronized (crawlerContext.activeThreadCountLock) {
                crawlerContext.activeThreadCount--;
            }
        }
    
        /**
         * Checks if the crawling process should continue.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 20.4K bytes
    - Viewed (0)
Back to top