Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getExcludedUrlList (0.07 sec)

  1. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

            assertEquals(0, crawlingConfigHelper.getExcludedUrlList("123").size());
            systemProperties.setProperty(Constants.FAILURE_COUNT_THRESHOLD_PROPERTY, "0");
            assertEquals(0, crawlingConfigHelper.getExcludedUrlList("123").size());
            errorCount.set(5);
            assertEquals(5, crawlingConfigHelper.getExcludedUrlList("123").size());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 34.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                        urlEncodeDisabled.set(true);
                    }
                }));
    
                // failure url
                final List<String> excludedUrlList = ComponentUtil.getCrawlingConfigHelper().getExcludedUrlList(webConfig.getConfigId());
                if (excludedUrlList != null) {
                    excludedUrlList.stream().filter(StringUtil::isNotBlank).map(String::trim).distinct().forEach(u -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

         *
         * @param configId the configuration ID to get excluded URLs for
         * @return a list of URLs that should be excluded from crawling, or an empty list if none
         */
        public List<String> getExcludedUrlList(final String configId) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final int failureCount = fessConfig.getFailureCountThreshold();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.5K bytes
    - Viewed (0)
Back to top