Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for maxRetryCount (0.27 seconds)

  1. 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">
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Thu Dec 11 08:38:29 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  2. 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: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 26.1K bytes
    - Click Count (0)
  3. 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. */
    Created: Sat Dec 20 13:04:59 GMT 2025
    - Last Modified: Mon Nov 24 03:40:05 GMT 2025
    - 11.1K bytes
    - Click Count (0)
Back to Top