Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for getIncludedPaths (0.09 seconds)

  1. 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");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 12.3K bytes
    - Click Count (0)
  2. 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());
        }
    
        @Test
        public void test_toString() {
            GsaConfigParser parser = new GsaConfigParser();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.7K bytes
    - Click Count (0)
  3. 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(),
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 18K bytes
    - Click Count (0)
  4. 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
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 25K bytes
    - Click Count (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 {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.8K bytes
    - Click Count (0)
Back to Top