Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getCrawlingConfig (0.08 sec)

  1. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

            return process(id, (configId, url) -> {
                final CrawlingConfigHelper crawlingConfigHelper = ComponentUtil.getCrawlingConfigHelper();
                final CrawlingConfig config = crawlingConfigHelper.getCrawlingConfig(configId);
                if (config == null) {
                    throw new ThumbnailGenerationException("No CrawlingConfig: " + configId);
                }
    
                if (logger.isInfoEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                        Node value = getXPathAPI().selectSingleNode(document, entry.getValue());
                        if (value != null && isPruned != null && isPruned.booleanValue()) {
                            value = pruneNode(value, getCrawlingConfig(responseData));
                        }
                        putResultDataBody(dataMap, entry.getKey(), value != null ? value.getTextContent() : null);
                        break;
                    }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            }
            if (configId.length() < 2) {
                throw new FessSystemException("Invalid configId: " + configId);
            }
            final CrawlingConfig config = crawlingConfigHelper.getCrawlingConfig(configId);
            if (config == null) {
                throw new FessSystemException("No crawlingConfig: " + configId);
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
Back to top