- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for errorName (0.05 sec)
-
src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java
} String errorName; final Throwable cause = t.getCause(); if (cause != null) { errorName = cause.getClass().getCanonicalName(); } else { errorName = t.getClass().getCanonicalName(); } final FailureUrl failureUrl = storeFailureUrl(crawlerContext, urlQueue, errorName, t); if (failureUrl != null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 7.3K bytes - Viewed (0) -
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 -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 24 01:20:42 UTC 2024 - 6.3K bytes - Viewed (0)