Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for excludedDocPaths (0.29 sec)

  1. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFileConfigCQ.java

        public void setExcludedDocPaths_Equal(String excludedDocPaths) {
            setExcludedDocPaths_Term(excludedDocPaths, null);
        }
    
        public void setExcludedDocPaths_Equal(String excludedDocPaths, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setExcludedDocPaths_Term(excludedDocPaths, opLambda);
        }
    
        public void setExcludedDocPaths_Term(String excludedDocPaths) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 165.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileConfig.java

        }
    
        public String getExcludedDocPaths() {
            checkSpecifiedProperty("excludedDocPaths");
            return convertEmptyToNull(excludedDocPaths);
        }
    
        public void setExcludedDocPaths(String value) {
            registerModifiedProperty("excludedDocPaths");
            this.excludedDocPaths = value;
        }
    
        public String getExcludedPaths() {
            checkSpecifiedProperty("excludedPaths");
    Java
    - Registered: Mon Apr 29 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/bsentity/dbmeta/FileConfigDbm.java

                false, false, "text", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnExcludedDocPaths = cci("excludedDocPaths", "excludedDocPaths", null, null, String.class,
                "excludedDocPaths", null, false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig_edit.jsp

                                        <label for="excludedDocPaths" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.excluded_doc_paths"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="excludedDocPaths"/>
                                            <la:textarea styleId="excludedDocPaths" property="excludedDocPaths"
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 15.3K bytes
    - Viewed (0)
  5. src/main/config/es/fess_config_file_config.json

                "type" : "long"
              },
              "depth" : {
                "type" : "integer"
              },
              "description" : {
                "type" : "text"
              },
              "excludedDocPaths" : {
                "type" : "keyword"
              },
              "excludedPaths" : {
                "type" : "keyword"
              },
              "includedDocPaths" : {
                "type" : "keyword"
              },
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 2.3K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess_config.file_config/file_config.json

          },
          "includedPaths": {
            "type": "keyword"
          },
          "excludedPaths": {
            "type": "keyword"
          },
          "includedDocPaths": {
            "type": "keyword"
          },
          "excludedDocPaths": {
            "type": "keyword"
          },
          "configParameter": {
            "type": "keyword"
          },
          "depth": {
            "type": "integer"
          },
          "maxAccessCount": {
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 1.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java

        public String excludedPaths;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedDocPaths;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedDocPaths;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String configParameter;
    
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer depth;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java

            return "FileConfig [available=" + available + ", boost=" + boost + ", configParameter=" + configParameter + ", createdBy="
                    + createdBy + ", createdTime=" + createdTime + ", depth=" + depth + ", excludedDocPaths=" + excludedDocPaths
                    + ", excludedPaths=" + excludedPaths + ", includedDocPaths=" + includedDocPaths + ", includedPaths=" + includedPaths
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig_details.jsp

                                            <th><la:message key="labels.excluded_doc_paths"/></th>
                                            <td>${f:br(f:h(excludedDocPaths))}<la:hidden
                                                    property="excludedDocPaths"/></td>
                                        </tr>
                                        <tr>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 10.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsFileConfigCA.java

            setExcludedDocPaths_Terms("excludedDocPaths", opLambda, null);
        }
    
        public void setExcludedDocPaths_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsFileConfigCA> aggsLambda) {
            setExcludedDocPaths_Terms("excludedDocPaths", opLambda, aggsLambda);
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 144.6K bytes
    - Viewed (0)
Back to top