Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for getExcludedPaths (0.12 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsFileConfig.java

        }
    
        public void setExcludedDocPaths(String value) {
            registerModifiedProperty("excludedDocPaths");
            this.excludedDocPaths = value;
        }
    
        public String getExcludedPaths() {
            checkSpecifiedProperty("excludedPaths");
            return convertEmptyToNull(excludedPaths);
        }
    
        public void setExcludedPaths(String value) {
            registerModifiedProperty("excludedPaths");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 13.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

            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();
            String result = parser.toString();
    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/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 =
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 25K bytes
    - Click Count (0)
  4. 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));
    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