Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getIncludedPaths (0.07 sec)

  1. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

            assertEquals(1, labels.length);
            assertEquals("test", labels[0].getName());
            assertEquals("test", labels[0].getValue());
            assertNotNull(labels[0].getIncludedPaths());
            assertNotNull(labels[0].getExcludedPaths());
        }
    
        public void test_toString() {
            GsaConfigParser parser = new GsaConfigParser();
            String result = parser.toString();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  7. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.8K bytes
    - Viewed (0)
Back to top