- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 23 for errorName (0.08 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: Thu Sep 04 12:52:25 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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FailureUrlDbm.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.3K 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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K 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: Thu Sep 04 12:52:25 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/AdminFailureurlAction.java
// restore from pager copyBeanToBean(failureUrlPager, form, op -> op.include("url", "errorCountMin", "errorCountMax", "errorName")); } // ----------------------------------------------------- // Details // ------- /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10K 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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java
@Override public void stop() { /* No-op */ } } private static class FastMockFailureUrlService extends FailureUrlService { public void store(DataConfig dataConfig, String errorName, String url, Throwable e) { /* No-op */ } } private static class FastMockSearchEngineClient extends SearchEngineClient { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.csvFileEncoding=CSV Encoding labels.defaultLabelValue=Default Label labels.designFileName=File Name labels.incrementalCrawling=Check Last Modified labels.errorCount=Error Count labels.errorLog=Error Log labels.errorName=Error Name labels.expiredTime=Expired Time labels.expires=Expires labels.failureCountThreshold=Failure Count labels.fileConfigName=File Crawl Config Name labels.fileName=File Name labels.handlerName=Handler Name
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0)