Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 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/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)
  3. 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