Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getExcludedUrlList (0.12 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.2K 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

                cb.query().addOrderBy_Name_Asc();
                cb.fetchFirst(ComponentUtil.getFessConfig().getPageDataConfigMaxFetchSizeAsInteger());
            });
        }
    
        public List<String> getExcludedUrlList(final String configId) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final int failureCount = fessConfig.getFailureCountThreshold();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top