- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for errorCountMax (0.05 sec)
-
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
cb.query().setUrl_Wildcard(failureUrlPager.url); } if (StringUtil.isNotBlank(failureUrlPager.errorCountMax)) { cb.query().setErrorCount_LessEqual(Integer.parseInt(failureUrlPager.errorCountMax)); } if (StringUtil.isNotBlank(failureUrlPager.errorCountMin)) {
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/app/web/admin/failureurl/SearchForm.java
* The minimum error count field for filtering failure URLs. */ public String errorCountMin; /** * 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/app/pager/FailureUrlPager.java
//@IntRange(min = 0, max = 2147483647) public String errorCountMin; /** Maximum error count filter for searching failure URLs. */ //@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. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/SearchBody.java
/** The URL that failed during crawling */ public String url; /** 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)