Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for config_parameter (0.05 sec)

  1. src/main/java/org/codelibs/fess/util/ParameterUtil.java

            }
        }
    
        /**
         * Creates a configuration parameter map.
         *
         * @param configParameters the configuration parameters
         * @return the configuration parameter map
         */
        public static Map<ConfigName, Map<String, String>> createConfigParameterMap(final String configParameters) {
            final Map<ConfigName, Map<String, String>> map = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  2. src/main/config/es/fess_config_file_config.json

          "file_config" : {
            "properties" : {
              "available" : {
                "type" : "boolean"
              },
              "boost" : {
                "type" : "float"
              },
              "configParameter" : {
                "type" : "keyword"
              },
              "createdBy" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
    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/config/es/fess_config_web_config.json

          "web_config" : {
            "properties" : {
              "available" : {
                "type" : "boolean"
              },
              "boost" : {
                "type" : "float"
              },
              "configParameter" : {
                "type" : "keyword"
              },
              "createdBy" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess_config.file_config/file_config.json

          },
          "excludedPaths": {
            "type": "keyword"
          },
          "includedDocPaths": {
            "type": "keyword"
          },
          "excludedDocPaths": {
            "type": "keyword"
          },
          "configParameter": {
            "type": "keyword"
          },
          "depth": {
            "type": "integer"
          },
          "maxAccessCount": {
            "type": "long"
          },
          "numOfThread": {
            "type": "integer"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess_config.web_config/web_config.json

          },
          "excludedUrls": {
            "type": "keyword"
          },
          "includedDocUrls": {
            "type": "keyword"
          },
          "excludedDocUrls": {
            "type": "keyword"
          },
          "configParameter": {
            "type": "keyword"
          },
          "depth": {
            "type": "integer"
          },
          "maxAccessCount": {
            "type": "long"
          },
          "userAgent": {
            "type": "keyword"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java

        public String excludedDocPaths;
    
        /** Additional configuration parameters for the file crawler. */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String configParameter;
    
        /** The maximum crawling depth (0 to 2147483647, 0 means unlimited). */
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer depth;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsFileConfigCB.java

                doColumn("available");
            }
    
            public void columnBoost() {
                doColumn("boost");
            }
    
            public void columnConfigParameter() {
                doColumn("configParameter");
            }
    
            public void columnCreatedBy() {
                doColumn("createdBy");
            }
    
            public void columnCreatedTime() {
                doColumn("createdTime");
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsWebConfigCB.java

                doColumn("available");
            }
    
            public void columnBoost() {
                doColumn("boost");
            }
    
            public void columnConfigParameter() {
                doColumn("configParameter");
            }
    
            public void columnCreatedBy() {
                doColumn("createdBy");
            }
    
            public void columnCreatedTime() {
                doColumn("createdTime");
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java

        public String excludedDocUrls;
    
        /**
         * Additional configuration parameters for the crawler.
         */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String configParameter;
    
        /**
         * The maximum crawling depth from the starting URLs.
         */
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer depth;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
Back to top