Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getIgnoreFailureType (0.06 sec)

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

            form.virtualHostValue = fessConfig.getVirtualHostValue();
            form.appendQueryParameter = fessConfig.isAppendQueryParameter() ? Constants.TRUE : Constants.FALSE;
            form.ignoreFailureType = fessConfig.getIgnoreFailureType();
            form.failureCountThreshold = fessConfig.getFailureCountThreshold();
            form.popularWord = fessConfig.isWebApiPopularWord() ? Constants.TRUE : Constants.FALSE;
    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

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final int failureCount = fessConfig.getFailureCountThreshold();
            final String ignoreFailureType = fessConfig.getIgnoreFailureType();
    
            if (failureCount < 0) {
                return Collections.emptyList();
            }
    
            final int count = failureCount;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setIgnoreFailureType(final String value) {
            setSystemProperty(Constants.IGNORE_FAILURE_TYPE_PROPERTY, value);
        }
    
        default String getIgnoreFailureType() {
            return getSystemProperty(Constants.IGNORE_FAILURE_TYPE_PROPERTY, Constants.DEFAULT_IGNORE_FAILURE_TYPE);
        }
    
        default void setFailureCountThreshold(final int value) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
Back to top