Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for excludedDocPaths (0.07 sec)

  1. 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;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  2. 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"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. 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": {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  4. 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");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 8.3K bytes
    - Viewed (0)
Back to top