Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for maxContentLength (0.23 sec)

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

            this.accessTimeout = accessTimeout;
        }
    
        /**
         * Sets the maximum content length.
         * @param maxContentLength The maximum content length in bytes.
         */
        public void setMaxContentLength(final Long maxContentLength) {
            this.maxContentLength = maxContentLength;
        }
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorBuilder.java

        /**
         * Sets the maximum content length allowed for extraction.
         *
         * @param maxContentLength the maximum content length to set
         * @return this builder instance for method chaining
         */
        public ExtractorBuilder maxContentLength(final long maxContentLength) {
            this.maxContentLength = maxContentLength;
            return this;
        }
    
        /**
         * Sets the cache file size threshold in bytes.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 10.1K bytes
    - Viewed (0)
Back to top