Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for excluded_paths (0.23 sec)

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

            this.createdTime = value;
        }
    
        public String getExcludedPaths() {
            checkSpecifiedProperty("excludedPaths");
            return convertEmptyToNull(excludedPaths);
        }
    
        public void setExcludedPaths(String value) {
            registerModifiedProperty("excludedPaths");
            this.excludedPaths = value;
        }
    
        public String getIncludedPaths() {
            checkSpecifiedProperty("includedPaths");
    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)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileConfig.java

        }
    
        public String getExcludedPaths() {
            checkSpecifiedProperty("excludedPaths");
            return convertEmptyToNull(excludedPaths);
        }
    
        public void setExcludedPaths(String value) {
            registerModifiedProperty("excludedPaths");
            this.excludedPaths = value;
        }
    
        public String getIncludedDocPaths() {
            checkSpecifiedProperty("includedDocPaths");
    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)
  3. src/main/java/org/codelibs/fess/es/config/exentity/LabelType.java

            }
            return locale;
        }
    
        @Override
        public String toString() {
            return "LabelType [createdBy=" + createdBy + ", createdTime=" + createdTime + ", excludedPaths=" + excludedPaths
                    + ", includedPaths=" + includedPaths + ", name=" + name + ", sortOrder=" + sortOrder + ", updatedBy=" + updatedBy
    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)
  4. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/LabelTypeDbm.java

                false, false, "Long", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnExcludedPaths = cci("excludedPaths", "excludedPaths", null, null, String.class, "excludedPaths", 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)
  5. src/main/resources/fess_indices/fess_config.label_type/label_type.json

    {
        "properties": {
          "name": {
            "type": "keyword"
          },
          "value": {
            "type": "keyword"
          },
          "includedPaths": {
            "type": "keyword"
          },
          "excludedPaths": {
            "type": "keyword"
          },
          "permissions": {
            "type": "keyword"
          },
          "virtualHost": {
            "type": "keyword"
          },
          "sortOrder": {
            "type": "integer"
          },
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 646 bytes
    - Viewed (0)
  6. src/main/config/es/fess_config_label_type.json

          "label_type" : {
            "properties" : {
              "createdBy" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "excludedPaths" : {
                "type" : "keyword"
              },
              "includedPaths" : {
                "type" : "keyword"
              },
              "name" : {
                "type" : "keyword"
              },
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 1.4K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess_config.file_config/file_config.json

    {
        "properties": {
          "name": {
            "type": "keyword"
          },
          "paths": {
            "type": "keyword"
          },
          "includedPaths": {
            "type": "keyword"
          },
          "excludedPaths": {
            "type": "keyword"
          },
          "includedDocPaths": {
            "type": "keyword"
          },
          "excludedDocPaths": {
            "type": "keyword"
          },
          "configParameter": {
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 1.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java

        public String value;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedPaths;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedPaths;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String permissions;
    
        @Size(max = 1000)
        public String virtualHost;
    
        @Min(value = 0)
        @Max(value = 2147483647)
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsbhv/BsLabelTypeBhv.java

                result.setCreatedBy(DfTypeUtil.toString(source.get("createdBy")));
                result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime")));
                result.setExcludedPaths(DfTypeUtil.toString(source.get("excludedPaths")));
                result.setIncludedPaths(DfTypeUtil.toString(source.get("includedPaths")));
                result.setName(DfTypeUtil.toString(source.get("name")));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileConfigBhv.java

                result.setExcludedDocPaths(DfTypeUtil.toString(source.get("excludedDocPaths")));
                result.setExcludedPaths(DfTypeUtil.toString(source.get("excludedPaths")));
                result.setIncludedDocPaths(DfTypeUtil.toString(source.get("includedDocPaths")));
                result.setIncludedPaths(DfTypeUtil.toString(source.get("includedPaths")));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.8K bytes
    - Viewed (0)
Back to top