Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setMaxRetryCount (0.05 seconds)

  1. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

        }
    
        /**
         * Sets the maximum number of retry attempts for failed operations.
         *
         * @param maxRetryCount the maximum retry count
         */
        public void setMaxRetryCount(final int maxRetryCount) {
            this.maxRetryCount = maxRetryCount;
        }
    
        /**
         * Sets the default number of rows to process in a single batch.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 26.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

        }
    
        @Test
        public void test_setMaxRetryCount() {
            indexingHelper.setMaxRetryCount(10);
            assertEquals(10, indexingHelper.maxRetryCount);
    
            indexingHelper.setMaxRetryCount(0);
            assertEquals(0, indexingHelper.maxRetryCount);
        }
    
        @Test
        public void test_setDefaultRowSize() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 29.7K bytes
    - Click Count (0)
Back to Top