Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for errorLog (0.2 sec)

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

            this.errorCount = value;
        }
    
        public String getErrorLog() {
            checkSpecifiedProperty("errorLog");
            return convertEmptyToNull(errorLog);
        }
    
        public void setErrorLog(String value) {
            registerModifiedProperty("errorLog");
            this.errorLog = value;
        }
    
        public String getErrorName() {
            checkSpecifiedProperty("errorName");
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFailureUrlCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setErrorLog_SpanTerm(String errorLog) {
            setErrorLog_SpanTerm("errorLog", null);
        }
    
        public void setErrorLog_SpanTerm(String errorLog, ConditionOptionCall<SpanTermQueryBuilder> opLambda) {
            SpanTermQueryBuilder builder = regSpanTermQ("errorLog", errorLog);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 57.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

        @Required
        @Size(max = 1000)
        public String id;
    
        @Required
        public String url;
    
        @Required
        public String threadName;
    
        public String errorName;
    
        public String errorLog;
    
        @Required
        @ValidateTypeFailure
        public String errorCount;
    
        @Required
        public String lastAccessTime;
    
        @Size(max = 1000)
        public String configId;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsFailureUrlCA.java

        public void setErrorLog_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setErrorLog_Terms("errorLog", opLambda, null);
        }
    
        public void setErrorLog_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsFailureUrlCA> aggsLambda) {
            setErrorLog_Terms("errorLog", opLambda, aggsLambda);
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 46.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FailureUrlDbm.java

                false, false, "Integer", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnErrorLog = cci("errorLog", "errorLog", null, null, String.class, "errorLog", null, false, false,
                false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess_config.failure_url/failure_url.json

    {
        "properties": {
          "url": {
            "type": "keyword"
          },
          "threadName": {
            "type": "keyword"
          },
          "errorName": {
            "type": "keyword"
          },
          "errorLog": {
            "type": "keyword"
          },
          "errorCount": {
            "type": "integer"
          },
          "lastAccessTime": {
            "type": "long"
          },
          "configId": {
            "type": "keyword"
          }
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 417 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/exentity/FailureUrl.java

            asDocMeta().version(version);
        }
    
        @Override
        public String toString() {
            return "FailureUrl [configId=" + configId + ", errorCount=" + errorCount + ", errorLog=" + errorLog + ", errorName=" + errorName
                    + ", lastAccessTime=" + lastAccessTime + ", threadName=" + threadName + ", url=" + url + ", docMeta=" + docMeta + "]";
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/main/config/es/fess_config_failure_url.json

          "failure_url" : {
            "properties" : {
              "configId" : {
                "type" : "keyword"
              },
              "errorCount" : {
                "type" : "integer"
              },
              "errorLog" : {
                "type" : "keyword"
              },
              "errorName" : {
                "type" : "keyword"
              },
              "lastAccessTime" : {
                "type" : "long"
              },
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 963 bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl_details.jsp

                                                <th><la:message key="labels.failure_url_error_log"/></th>
                                                <td>${f:br(f:nbsp(f:h(errorLog)))}
                                                    <la:hidden
                                                            property="errorLog"/>
                                                </td>
                                            </tr>
                                            <tr>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 10.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsFailureUrlCB.java

                doColumn("configId");
            }
    
            public void columnErrorCount() {
                doColumn("errorCount");
            }
    
            public void columnErrorLog() {
                doColumn("errorLog");
            }
    
            public void columnErrorName() {
                doColumn("errorName");
            }
    
            public void columnLastAccessTime() {
                doColumn("lastAccessTime");
            }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.9K bytes
    - Viewed (0)
Back to top