Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for excludedDocPaths (0.06 seconds)

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

  1. 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"
              },
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 2.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java

        public String includedDocPaths;
    
        /** The document paths to exclude from search results (pattern-based). */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedDocPaths;
    
        /** Additional configuration parameters for the file crawler. */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String configParameter;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsFileConfigCB.java

                doColumn("depth");
            }
    
            public void columnDescription() {
                doColumn("description");
            }
    
            public void columnExcludedDocPaths() {
                doColumn("excludedDocPaths");
            }
    
            public void columnExcludedPaths() {
                doColumn("excludedPaths");
            }
    
            public void columnIncludedDocPaths() {
                doColumn("includedDocPaths");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 8.3K bytes
    - Click Count (0)
Back to Top