Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

        protected Integer accessTimeout = null; // sec
    
        protected Long maxContentLength = null;
    
        public void init() {
            // max content length
            final Long maxContentLengthParam = getInitParameter(MAX_CONTENT_LENGTH, maxContentLength, Long.class);
            if (maxContentLengthParam != null) {
                maxContentLength = maxContentLengthParam;
            }
    
            // access timeout
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:47:32 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorBuilder.java

        public ExtractorBuilder extractorName(final String extractorName) {
            this.extractorName = extractorName;
            return this;
        }
    
        public ExtractorBuilder maxContentLength(final long maxContentLength) {
            this.maxContentLength = maxContentLength;
            return this;
        }
    
        public ExtractorBuilder cacheFileSize(final int cacheFileSize) {
            this.cacheFileSize = cacheFileSize;
            return this;
        }
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Oct 12 01:40:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top