Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for included_doc_urls (0.53 sec)

  1. src/main/config/es/fess_config_web_config.json

                "type" : "text"
              },
              "excludedDocUrls" : {
                "type" : "keyword"
              },
              "excludedUrls" : {
                "type" : "keyword"
              },
              "includedDocUrls" : {
                "type" : "keyword"
              },
              "includedUrls" : {
                "type" : "keyword"
              },
              "intervalTime" : {
                "type" : "integer"
              },
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java

        public String includedUrls;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedUrls;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedDocUrls;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedDocUrls;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String configParameter;
    
        @Min(value = 0)
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess_config.web_config/web_config.json

          },
          "urls": {
            "type": "keyword"
          },
          "includedUrls": {
            "type": "keyword"
          },
          "excludedUrls": {
            "type": "keyword"
          },
          "includedDocUrls": {
            "type": "keyword"
          },
          "excludedDocUrls": {
            "type": "keyword"
          },
          "configParameter": {
            "type": "keyword"
          },
          "depth": {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsWebConfigCB.java

            }
    
            public void columnExcludedUrls() {
                doColumn("excludedUrls");
            }
    
            public void columnIncludedDocUrls() {
                doColumn("includedDocUrls");
            }
    
            public void columnIncludedUrls() {
                doColumn("includedUrls");
            }
    
            public void columnIntervalTime() {
                doColumn("intervalTime");
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top