Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 111 for unavailable (0.73 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/ScheduledJobDbm.java

        //                                                                         ===========
        protected final ColumnInfo _columnAvailable = cci("available", "available", null, null, Boolean.class, "available", null, false, false,
                false, "Boolean", 0, 0, null, null, false, null, null, null, null, null, false);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/main/config/es/fess_config_web_config.json

    {
      "fess_config.web_config" : {
        "aliases" : { },
        "mappings" : {
          "web_config" : {
            "properties" : {
              "available" : {
                "type" : "boolean"
              },
              "boost" : {
                "type" : "float"
              },
              "configParameter" : {
                "type" : "keyword"
              },
              "createdBy" : {
                "type" : "keyword"
              },
              "createdTime" : {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java

        public String scriptType;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String scriptData;
    
        public String crawler;
    
        public String jobLogging;
    
        public String available;
    
        @Required
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer sortOrder;
    
        @Size(max = 1000)
        public String createdBy;
    
        @ValidateTypeFailure
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/it/admin/FileConfigTests.java

            requestBody.put("paths", paths);
            requestBody.put("num_of_thread", 5);
            requestBody.put("interval_time", 1000);
            requestBody.put("boost", id);
            requestBody.put("available", true);
            requestBody.put("sort_order", id);
            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java

                        .append('.');
            } else if (status == 0) {
                resultBuf.append(ping.getClusterName()).append(" is alive.");
            } else {
                resultBuf.append(ping.getClusterName()).append(" is not available.");
            }
    
            return resultBuf.toString();
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                .on('change.daterangepicker', 'select.monthselect',...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java

        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer intervalTime;
    
        @Required
        @ValidateTypeFailure
        public Float boost;
    
        @Required
        @Size(max = 5)
        public String available;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String permissions;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String virtualHosts;
    
        @Required
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsDataConfigCB.java

                columnList.add(name);
            }
    
            public void columnId() {
                doColumn("_id");
            }
    
            public void columnAvailable() {
                doColumn("available");
            }
    
            public void columnBoost() {
                doColumn("boost");
            }
    
            public void columnCreatedBy() {
                doColumn("createdBy");
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileConfigBhv.java

            try {
                final RESULT result = entityType.newInstance();
                result.setAvailable(DfTypeUtil.toBoolean(source.get("available")));
                result.setBoost(DfTypeUtil.toFloat(source.get("boost")));
                result.setConfigParameter(DfTypeUtil.toString(source.get("configParameter")));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. README.md

    There are 2 ways to try Fess. The first is to download and install yourself. The second is to use [Docker](https://www.docker.com/products/docker-engine).
    
    ### Download and Install/Run
    
    Fess 14.12 is now available and can be downloaded on the [Releases page](https://github.com/codelibs/fess/releases "download"). Downloads come in 3 flavors: deb, rpm, zip.
    
    The following commands show how to use the zip download:
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Feb 25 00:40:07 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top