Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for jobStatus (0.13 sec)

  1. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsJobLogCQ.java

            TermQueryBuilder builder = regTermQ("jobStatus", jobStatus);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setJobStatus_NotEqual(String jobStatus) {
            setJobStatus_NotTerm(jobStatus, null);
        }
    
        public void setJobStatus_NotTerm(String jobStatus) {
            setJobStatus_NotTerm(jobStatus, null);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 71.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsJobLogCA.java

        public void setJobStatus_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setJobStatus_Terms("jobStatus", opLambda, null);
        }
    
        public void setJobStatus_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsJobLogCA> aggsLambda) {
            setJobStatus_Terms("jobStatus", opLambda, aggsLambda);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/JobLogDbm.java

                "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnJobStatus = cci("jobStatus", "jobStatus", null, null, String.class, "jobStatus", null, false, false,
                false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsentity/BsJobLog.java

            this.jobName = value;
        }
    
        public String getJobStatus() {
            checkSpecifiedProperty("jobStatus");
            return convertEmptyToNull(jobStatus);
        }
    
        public void setJobStatus(String value) {
            registerModifiedProperty("jobStatus");
            this.jobStatus = value;
        }
    
        public Long getLastUpdated() {
            checkSpecifiedProperty("lastUpdated");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/JobLogPager.java

        private List<Integer> pageNumberList;
    
        private int pageSize;
    
        private int currentPageNumber;
    
        public String id;
    
        public String jobName;
    
        public String jobStatus;
    
        public String target;
    
        public String scriptType;
    
        public String startTime;
    
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess_config.job_log/job_log.json

    {
        "properties": {
          "jobName": {
            "type": "keyword"
          },
          "jobStatus": {
            "type": "keyword"
          },
          "target": {
            "type": "keyword"
          },
          "scriptType": {
            "type": "keyword"
          },
          "scriptData": {
            "type": "keyword"
          },
          "scriptResult": {
            "type": "keyword"
          },
          "lastUpdated": {
            "type": "long"
          },
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 524 bytes
    - Viewed (0)
  7. src/main/config/es/fess_config_job_log.json

        "mappings" : {
          "job_log" : {
            "properties" : {
              "endTime" : {
                "type" : "long"
              },
              "jobName" : {
                "type" : "keyword"
              },
              "jobStatus" : {
                "type" : "keyword"
              },
              "lastUpdated" : {
                "type" : "long"
              },
              "scriptData" : {
                "type" : "keyword"
              },
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog.jsp

    																		<span class="badge bg-primary"><la:message
                                                                                    key="labels.joblog_status_ok"/></span>
                                                            </c:when>
                                                            <c:when test="${data.jobStatus == 'fail'}">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 11.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

        @ValidateTypeFailure
        public int crudMode;
    
        @Required
        @ValidateTypeFailure
        public String id;
    
        @Required
        public String jobName;
    
        @Required
        public String jobStatus;
    
        @Required
        public String target;
    
        @Required
        public String scriptType;
    
        public String scriptData;
    
        public String scriptResult;
    
        @Required
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/exentity/JobLog.java

            asDocMeta().version(version);
        }
    
        @Override
        public String toString() {
            return "JobLog [scheduledJob=" + scheduledJob + ", endTime=" + endTime + ", jobName=" + jobName + ", jobStatus=" + jobStatus
                    + ", scriptData=" + scriptData + ", scriptResult=" + scriptResult + ", scriptType=" + scriptType + ", startTime="
                    + startTime + ", target=" + target + ", docMeta=" + docMeta + "]";
        }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top