- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getErrorCount (0.08 sec)
-
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
if (crawlingConfig != null) { cb.query().setConfigId_Equal(crawlingConfig.getConfigId()); } }).map(entity -> { entity.setErrorCount(entity.getErrorCount() + 1); return entity; }).orElseGet(() -> { final FailureUrl entity = new FailureUrl(); entity.setErrorCount(1); entity.setUrl(url);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 24 01:20:42 UTC 2024 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsFailureUrl.java
return convertEmptyToNull(configId); } public void setConfigId(String value) { registerModifiedProperty("configId"); this.configId = value; } public Integer getErrorCount() { checkSpecifiedProperty("errorCount"); return errorCount; } public void setErrorCount(Integer value) { registerModifiedProperty("errorCount");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FailureUrlDbm.java
{ setupEpg(_epgMap, et -> ((FailureUrl) et).getConfigId(), (et, vl) -> ((FailureUrl) et).setConfigId(DfTypeUtil.toString(vl)), "configId"); setupEpg(_epgMap, et -> ((FailureUrl) et).getErrorCount(), (et, vl) -> ((FailureUrl) et).setErrorCount(DfTypeUtil.toInteger(vl)), "errorCount");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.2K bytes - Viewed (0)