Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for included_paths (0.34 sec)

  1. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

        private static String createLabel() {
            Map<String, Object> labelBody = new HashMap<>();
            labelBody.put("name", TEST_LABEL);
            labelBody.put("value", TEST_LABEL);
            labelBody.put("included_paths", ".*tools.*");
            Response response = checkMethodBase(labelBody).put("/api/admin/labeltype/setting");
            JsonPath jsonPath = JsonPath.from(response.asString());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.6K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_file_crawling_title_details = "{labels.file_crawling_title_details}";
    
        /** The key of the message: Included Paths For Crawling */
        public static final String LABELS_included_paths = "{labels.included_paths}";
    
        /** The key of the message: Excluded Paths For Crawling */
        public static final String LABELS_excluded_paths = "{labels.excluded_paths}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FileConfigDbm.java

                "includedDocPaths", null, false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnIncludedPaths = cci("includedPaths", "includedPaths", null, null, String.class, "includedPaths", null,
                false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsLabelTypeCB.java

            }
    
            public void columnExcludedPaths() {
                doColumn("excludedPaths");
            }
    
            public void columnIncludedPaths() {
                doColumn("includedPaths");
            }
    
            public void columnName() {
                doColumn("name");
            }
    
            public void columnPermissions() {
                doColumn("permissions");
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

                    fConfig.setIncludedDocPaths(getDefaultString("default.config.file.includedDocPaths", StringUtil.EMPTY));
                    fConfig.setIncludedPaths(getDefaultString("default.config.file.includedPaths", StringUtil.EMPTY));
                    fConfig.setIntervalTime(getDefaultInteger("default.config.file.intervalTime", Constants.DEFAULT_INTERVAL_TIME_FOR_FS));
                    if (form.maxAccessCount != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsLabelTypeCA.java

            setIncludedPaths_Terms("includedPaths", opLambda, null);
        }
    
        public void setIncludedPaths_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsLabelTypeCA> aggsLambda) {
            setIncludedPaths_Terms("includedPaths", opLambda, aggsLambda);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 69.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/BsLabelType.java

            this.excludedPaths = value;
        }
    
        public String getIncludedPaths() {
            checkSpecifiedProperty("includedPaths");
            return convertEmptyToNull(includedPaths);
        }
    
        public void setIncludedPaths(String value) {
            registerModifiedProperty("includedPaths");
            this.includedPaths = value;
        }
    
        public String getName() {
            checkSpecifiedProperty("name");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileConfig.java

        }
    
        public String getIncludedPaths() {
            checkSpecifiedProperty("includedPaths");
            return convertEmptyToNull(includedPaths);
        }
    
        public void setIncludedPaths(String value) {
            registerModifiedProperty("includedPaths");
            this.includedPaths = value;
        }
    
        public Integer getIntervalTime() {
            checkSpecifiedProperty("intervalTime");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 13.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/exentity/LabelType.java

        }
    
        @Override
        public String toString() {
            return "LabelType [createdBy=" + createdBy + ", createdTime=" + createdTime + ", excludedPaths=" + excludedPaths
                    + ", includedPaths=" + includedPaths + ", name=" + name + ", sortOrder=" + sortOrder + ", updatedBy=" + updatedBy
                    + ", updatedTime=" + updatedTime + ", value=" + value + ", docMeta=" + docMeta + "]";
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/LabelTypeDbm.java

                false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnIncludedPaths = cci("includedPaths", "includedPaths", null, null, String.class, "includedPaths", null,
                false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.2K bytes
    - Viewed (0)
Back to top