- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for setConfigId_Equal (0.07 sec)
-
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
* * @param configId the configuration ID to delete failure URLs for */ public void deleteByConfigId(final String configId) { failureUrlBhv.queryDelete(cb -> { cb.query().setConfigId_Equal(configId); }); } /** * Stores a new failure URL or updates an existing one with error information. * Creates a new failure URL entry or increments the error count for an existing URL.
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/CrawlingConfigHelper.java
} final int count = failureCount; final ListResultBean<FailureUrl> list = ComponentUtil.getComponent(FailureUrlBhv.class).selectList(cb -> { cb.query().setConfigId_Equal(configId); cb.query().setErrorCount_GreaterEqual(count); cb.fetchFirst(fessConfig.getPageFailureUrlMaxFetchSizeAsInteger()); }); if (list.isEmpty()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0)