- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 32 for errorName (0.06 sec)
-
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); } } /** * Deletes all failure URLs associated with a specific configuration ID. *
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.2K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl.jsp
<label for="errorName" class="col-sm-2 text-sm-right col-form-label"><la:message key="labels.failure_url_search_error_name"/></label> <div class="col-sm-10"> <la:text styleId="errorName" property="errorName"Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 13.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/SearchBody.java
/** Minimum error count filter */ public Integer errorCountMin; /** Maximum error count filter */ public Integer errorCountMax; /** Name or type of the error */ public String errorName;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/SearchForm.java
* The maximum error count field for filtering failure URLs. */ public String errorCountMax; /** * The error name field for searching failure URLs by error type. */ public String errorName;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
*/ @Required public String threadName; /** * The name or type of the error that occurred. * This field provides a categorization of the failure type. */ public String errorName; /** * The detailed error log or stack trace for the failure. * This field contains the full error information for debugging purposes. */ public String errorLog; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FailureUrlDbm.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java
//@IntRange(min = 0, max = 2147483647) public String errorCountMax; /** Error name filter for searching failure URLs. */ //@Maxbytelength(maxbytelength = 1000) public String errorName; /** Default number of records per page. */ public static final int DEFAULT_PAGE_SIZE = 20; /** Default current page number. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
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 // ------- /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl_details.jsp
<tr> <th><la:message key="labels.failure_url_error_name"/></th> <td>${f:h(errorName)}<la:hidden property="errorName"/></td> </tr> <tr> <th><la:message key="labels.failure_url_error_log"/></th>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 11K bytes - Viewed (0)