Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setCrawlerList (0.08 sec)

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

        public void test_destroy_notFinished() {
            final List<Crawler> crawlerList = new ArrayList<>();
            final TestCrawler crawler = new TestCrawler();
            crawlerList.add(crawler);
            indexUpdater.setCrawlerList(crawlerList);
            indexUpdater.finishCrawling = false;
    
            indexUpdater.destroy();
    
            assertTrue(crawler.stopCalled);
        }
    
        // Test destroy when crawling is finished
    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

            indexUpdater.setName("IndexUpdater");
            indexUpdater.setPriority(indexUpdaterPriority);
            indexUpdater.setSessionIdList(sessionIdList);
            indexUpdater.setDaemon(true);
            indexUpdater.setCrawlerList(crawlerList);
            getAvailableBoostDocumentRuleList().forEach(rule -> {
                indexUpdater.addDocBoostMatcher(new org.codelibs.fess.indexer.DocBoostMatcher(rule));
            });
            indexUpdater.start();
    
    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 list of crawler instances that this updater will manage.
         *
         * @param crawlerList the list of crawlers to set
         */
        public void setCrawlerList(final List<Crawler> crawlerList) {
            this.crawlerList = crawlerList;
        }
    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