Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for maxCachedContentSize (0.13 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

            }
        }
    
        /**
         * Sets the maximum cached content size.
         * @param maxCachedContentSize The maximum cached content size in bytes.
         */
        public void setMaxCachedContentSize(final long maxCachedContentSize) {
            this.maxCachedContentSize = maxCachedContentSize;
        }
    
        /**
         * Sets the access timeout.
         * @param accessTimeout The access timeout in seconds.
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Sat Sep 06 04:15:37 GMT 2025
    - 9.7K bytes
    - Click Count (10)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java

                            }
                        }
    
                        if (includeContent) {
                            if (file.length() < maxCachedContentSize) {
                                try (InputStream contentStream = new BufferedInputStream(new FileInputStream(file))) {
                                    responseData.setResponseBody(InputStreamUtil.getBytes(contentStream));
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Sun Nov 23 12:19:14 GMT 2025
    - 15.1K bytes
    - Click Count (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/gcs/GcsClient.java

                    if (blobMetadata != null) {
                        blobMetadata.forEach(responseData::addMetaData);
                    }
                    if (blob.getSize() < maxCachedContentSize) {
                        try (InputStream contentStream = new BufferedInputStream(Channels.newInputStream(blob.reader()))) {
                            responseData.setResponseBody(InputStreamUtil.getBytes(contentStream));
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Dec 11 08:38:29 GMT 2025
    - 17.5K bytes
    - Click Count (0)
Back to Top