Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getExcludedPaths (0.11 sec)

  1. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                final String includedPathsStr = fileConfig.getIncludedPaths() != null ? fileConfig.getIncludedPaths() : StringUtil.EMPTY;
                final String excludedPathsStr = fileConfig.getExcludedPaths() != null ? fileConfig.getExcludedPaths() : StringUtil.EMPTY;
    
                // num of threads
                final CrawlerContext crawlerContext = crawler.getCrawlerContext();
                final int numOfThread =
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

            for (final LabelType labelType : labelTypeList) {
                final String includedPaths = labelType.getIncludedPaths();
                final String excludedPaths = labelType.getExcludedPaths();
                if (StringUtil.isNotBlank(includedPaths) || StringUtil.isNotBlank(excludedPaths)) {
                    try {
                        list.add(new LabelTypePattern(labelType.getValue(), includedPaths, excludedPaths));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top