Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for maxRetryCount (0.07 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/FaultTolerantClient.java

         * @return The maximum retry count.
         */
        public int getMaxRetryCount() {
            return maxRetryCount;
        }
    
        /**
         * Sets the maximum retry count.
         * @param maxRetryCount The maximum retry count.
         */
        public void setMaxRetryCount(final int maxRetryCount) {
            this.maxRetryCount = maxRetryCount;
        }
    
        /**
         * Returns the retry interval.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  2. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java

            this.retryInterval = retryInterval;
        }
    
        /**
         * Sets the maximum retry count.
         *
         * @param maxRetryCount The maximum retry count.
         */
        public void setMaxRetryCount(final int maxRetryCount) {
            this.maxRetryCount = maxRetryCount;
        }
    
        /**
         * Sets the connection timeout in milliseconds.
         *
         * @param connTimeout The connection timeout.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Aug 31 05:32:52 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  3. fess-crawler-lasta/src/main/resources/crawler/client.xml

    	</component>
    	<component name="httpClient"
    		class="org.codelibs.fess.crawler.client.FaultTolerantClient" instance="prototype">
    		<property name="crawlerClient">internalHttpClient</property>
    		<property name="maxRetryCount">5</property>
    		<property name="retryInterval">500</property>
    	</component>
    
    	<component name="fsClient"
    		class="org.codelibs.fess.crawler.client.fs.FileSystemClient" instance="prototype">
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Tue Aug 08 12:54:47 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. 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.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java

        /** Supported fields. */
        protected final String[] supportedFields;
    
        /** Scroll size. */
        protected int scrollSize = 1;
        /** Maximum retry count. */
        protected int maxRetryCount = 5;
        /** Limit of document size. */
        protected long limitOfDocumentSize = 50000;
        /** Query builder. */
        protected QueryBuilder queryBuilder = QueryBuilders.matchAllQuery();
        /** Limit percentage. */
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 11K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

        }
    
        public void test_setMaxRetryCount() {
            indexingHelper.setMaxRetryCount(10);
            assertEquals(10, indexingHelper.maxRetryCount);
    
            indexingHelper.setMaxRetryCount(0);
            assertEquals(0, indexingHelper.maxRetryCount);
        }
    
        public void test_setDefaultRowSize() {
            indexingHelper.setDefaultRowSize(50);
            assertEquals(50, indexingHelper.defaultRowSize);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 29.3K bytes
    - Viewed (0)
Back to top