Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for setErrorName (0.04 sec)

  1. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                        if (i == 0) {
                            failureUrl.setErrorName("java.net.ConnectException");
                        } else if (i == 1) {
                            failureUrl.setErrorName("java.net.SocketTimeoutException");
                        } else {
                            failureUrl.setErrorName("java.io.IOException");
                        }
                        list.add(failureUrl);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 34.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/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");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FailureUrlDbm.java

                    "errorLog");
            setupEpg(_epgMap, et -> ((FailureUrl) et).getErrorName(), (et, vl) -> ((FailureUrl) et).setErrorName(DfTypeUtil.toString(vl)),
                    "errorName");
            setupEpg(_epgMap, et -> ((FailureUrl) et).getLastAccessTime(),
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFailureUrlBhv.java

                result.setErrorCount(DfTypeUtil.toInteger(source.get("errorCount")));
                result.setErrorLog(DfTypeUtil.toString(source.get("errorLog")));
                result.setErrorName(DfTypeUtil.toString(source.get("errorName")));
                result.setLastAccessTime(DfTypeUtil.toLong(source.get("lastAccessTime")));
                result.setThreadName(DfTypeUtil.toString(source.get("threadName")));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

                if (crawlingConfig != null) {
                    entity.setConfigId(crawlingConfig.getConfigId());
                }
                return entity;
            });
    
            failureUrl.setErrorName(errorName);
            failureUrl.setErrorLog(getStackTrace(e));
            failureUrl.setLastAccessTime(ComponentUtil.getSystemHelper().getCurrentTimeAsLong());
            failureUrl.setThreadName(Thread.currentThread().getName());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.2K bytes
    - Viewed (0)
Back to top