Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getFailureCountThreshold (1.9 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            form.appendQueryParameter = fessConfig.isAppendQueryParameter() ? Constants.TRUE : Constants.FALSE;
            form.ignoreFailureType = fessConfig.getIgnoreFailureType();
            form.failureCountThreshold = fessConfig.getFailureCountThreshold();
            form.popularWord = fessConfig.isWebApiPopularWord() ? Constants.TRUE : Constants.FALSE;
            form.csvFileEncoding = fessConfig.getCsvFileEncoding();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

         */
        public List<String> getExcludedUrlList(final String configId) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final int failureCount = fessConfig.getFailureCountThreshold();
            final String ignoreFailureType = fessConfig.getIgnoreFailureType();
    
            if (failureCount < 0) {
                return Collections.emptyList();
            }
    
    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