Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isSupportedDocumentCacheMimetypes (0.13 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            }
            return stream(mimetypes).get(stream -> stream.anyMatch(s -> s.equalsIgnoreCase(mimetype)));
        }
    
        String getCrawlerDocumentCacheSupportedMimetypes();
    
        default boolean isSupportedDocumentCacheMimetypes(final String mimetype) {
            final String[] mimetypes = getCrawlerDocumentCacheSupportedMimetypes().split(",");
            if (mimetypes.length == 1 && StringUtil.isBlank(mimetypes[0])) {
                return true;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                    .map(org.codelibs.fess.crawler.util.FieldConfigs.Config::isCache)
                    .orElse(false) || fessConfig.isCrawlerDocumentCacheEnabled()) && fessConfig.isSupportedDocumentCacheMimetypes(mimeType)) {
                if (responseData.getContentLength() > 0
                        && responseData.getContentLength() <= fessConfig.getCrawlerDocumentCacheMaxSizeAsInteger().longValue()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
Back to top