Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for errorName (0.16 sec)

  1. src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java

                    }
                }
    
                String errorName;
                final Throwable cause = e.getCause();
                if (cause != null) {
                    errorName = cause.getClass().getCanonicalName();
                } else {
                    errorName = e.getClass().getCanonicalName();
                }
                storeFailureUrl(crawlerContext, urlQueue, errorName, e);
            } catch (final ContainerNotAvailableException e) {
    Java
    - Registered: Mon May 06 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/app/service/FailureUrlService.java

                cb.query().setErrorCount_GreaterEqual(Integer.parseInt(failureUrlPager.errorCountMin));
            }
    
            if (StringUtil.isNotBlank(failureUrlPager.errorName)) {
                cb.query().setErrorName_Wildcard(failureUrlPager.errorName);
            }
    
        }
    
        public void deleteByConfigId(final String configId) {
            failureUrlBhv.queryDelete(cb -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/BsFailureUrl.java

            this.errorLog = value;
        }
    
        public String getErrorName() {
            checkSpecifiedProperty("errorName");
            return convertEmptyToNull(errorName);
        }
    
        public void setErrorName(String value) {
            registerModifiedProperty("errorName");
            this.errorName = value;
        }
    
        public Long getLastAccessTime() {
            checkSpecifiedProperty("lastAccessTime");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/failureurl/SearchForm.java

    /**
     * @author codelibs
     * @author Keiichi Watanabe
     */
    public class SearchForm {
    
        public String url;
    
        public String errorCountMin;
    
        public String errorCountMax;
    
        public String errorName;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 880 bytes
    - Viewed (0)
  5. 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 May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

        public Integer crudMode;
    
        @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)
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java

        //@IntRange(min = 0, max = 2147483647)
        public String errorCountMin;
    
        //@IntRange(min = 0, max = 2147483647)
        public String errorCountMax;
    
        //@Maxbytelength(maxbytelength = 1000)
        public String errorName;
    
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        private int allRecordCount;
    
        private int allPageCount;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  8. 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 May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 417 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/failureurl/AdminFailureurlAction.java

            // restore from pager
            copyBeanToBean(failureUrlPager, form, op -> op.include("url", "errorCountMin", "errorCountMax", "errorName"));
        }
    
        // -----------------------------------------------------
        //                                               Details
        //                                               -------
        @Execute
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  10. src/main/config/es/fess_config_failure_url.json

                "type" : "keyword"
              },
              "errorCount" : {
                "type" : "integer"
              },
              "errorLog" : {
                "type" : "keyword"
              },
              "errorName" : {
                "type" : "keyword"
              },
              "lastAccessTime" : {
                "type" : "long"
              },
              "threadName" : {
                "type" : "keyword"
              },
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 963 bytes
    - Viewed (0)
Back to top