Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getIncludedPaths (0.15 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/BsLabelType.java

        }
    
        public void setExcludedPaths(String value) {
            registerModifiedProperty("excludedPaths");
            this.excludedPaths = value;
        }
    
        public String getIncludedPaths() {
            checkSpecifiedProperty("includedPaths");
            return convertEmptyToNull(includedPaths);
        }
    
        public void setIncludedPaths(String value) {
            registerModifiedProperty("includedPaths");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                ((FessIntervalController) crawler.getIntervalController()).setDelayMillisForWaitingNewUrl(intervalTime);
    
                final String includedPathsStr = fileConfig.getIncludedPaths() != null ? fileConfig.getIncludedPaths() : StringUtil.EMPTY;
                final String excludedPathsStr = fileConfig.getExcludedPaths() != null ? fileConfig.getExcludedPaths() : StringUtil.EMPTY;
    
                // num of threads
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/LabelTypeDbm.java

            setupEpg(_epgMap, et -> ((LabelType) et).getExcludedPaths(), (et, vl) -> ((LabelType) et).setExcludedPaths(DfTypeUtil.toString(vl)),
                    "excludedPaths");
            setupEpg(_epgMap, et -> ((LabelType) et).getIncludedPaths(), (et, vl) -> ((LabelType) et).setIncludedPaths(DfTypeUtil.toString(vl)),
                    "includedPaths");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileConfig.java

        }
    
        public void setIncludedDocPaths(String value) {
            registerModifiedProperty("includedDocPaths");
            this.includedDocPaths = value;
        }
    
        public String getIncludedPaths() {
            checkSpecifiedProperty("includedPaths");
            return convertEmptyToNull(includedPaths);
        }
    
        public void setIncludedPaths(String value) {
            registerModifiedProperty("includedPaths");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

            final List<LabelTypePattern> list = new ArrayList<>();
            for (final LabelType labelType : labelTypeList) {
                final String includedPaths = labelType.getIncludedPaths();
                final String excludedPaths = labelType.getExcludedPaths();
                if (StringUtil.isNotBlank(includedPaths) || StringUtil.isNotBlank(excludedPaths)) {
                    try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FileConfigDbm.java

                    (et, vl) -> ((FileConfig) et).setIncludedDocPaths(DfTypeUtil.toString(vl)), "includedDocPaths");
            setupEpg(_epgMap, et -> ((FileConfig) et).getIncludedPaths(),
                    (et, vl) -> ((FileConfig) et).setIncludedPaths(DfTypeUtil.toString(vl)), "includedPaths");
            setupEpg(_epgMap, et -> ((FileConfig) et).getIntervalTime(),
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top