Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setMaxIndexerErrorCount (0.13 sec)

  1. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

        }
    
        /**
         * Sets the maximum number of indexer errors allowed.
         *
         * @param maxIndexerErrorCount the maximum error count to set
         */
        public void setMaxIndexerErrorCount(final int maxIndexerErrorCount) {
            this.maxIndexerErrorCount = maxIndexerErrorCount;
        }
    
        /**
         * Adds a document boost matcher rule for enhancing document relevance scores.
         *
    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

            // In test environment this may not work as expected
            // assertTrue(indexUpdater.finishCrawling);
    
            // Test maxIndexerErrorCount
            indexUpdater.setMaxIndexerErrorCount(5);
            assertEquals(5, indexUpdater.maxIndexerErrorCount);
    
            // Test crawlerList
            final List<Crawler> crawlerList = new ArrayList<>();
            indexUpdater.setCrawlerList(crawlerList);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
Back to top