- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 34 for error_count (0.05 sec)
-
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
} }, CrawlingInfoService.class.getCanonicalName()); // Add some info to map crawlingInfoHelper.putToInfoMap("url_count", "100"); crawlingInfoHelper.putToInfoMap("error_count", "5"); // Store with create=true crawlingInfoHelper.store(sessionId, true); // Verify infoMap is cleared assertNull(crawlingInfoHelper.infoMap); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsFailureUrl.java
this.configId = value; } public Integer getErrorCount() { checkSpecifiedProperty("errorCount"); return errorCount; } public void setErrorCount(Integer value) { registerModifiedProperty("errorCount"); this.errorCount = value; } public String getErrorLog() { checkSpecifiedProperty("errorLog");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsFailureUrlCQ.java
} public void setErrorCount_Equal(Integer errorCount) { setErrorCount_Term(errorCount, null); } public void setErrorCount_Equal(Integer errorCount, ConditionOptionCall<TermQueryBuilder> opLambda) { setErrorCount_Term(errorCount, opLambda); } public void setErrorCount_Term(Integer errorCount) { setErrorCount_Term(errorCount, null); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 57.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsFailureUrlCA.java
} public void setErrorCount_Avg(ConditionOptionCall<AvgAggregationBuilder> opLambda) { setErrorCount_Avg("errorCount", opLambda); } public void setErrorCount_Avg(String name, ConditionOptionCall<AvgAggregationBuilder> opLambda) { AvgAggregationBuilder builder = regAvgA(name, "errorCount"); if (opLambda != null) { opLambda.callback(builder); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 46.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
assertEquals("name", fieldSortBuilderList.get(1).getFieldName()); } public void test_getExcludedUrlList() { final AtomicInteger errorCount = new AtomicInteger(0); final DynamicProperties systemProperties = ComponentUtil.getSystemProperties(); final FailureUrlCB cb = new FailureUrlCB(); ComponentUtil.register(new FailureUrlBhv() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 34.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FailureUrl.java
} public void setVersionNo(final Long version) { asDocMeta().version(version); } @Override public String toString() { return "FailureUrl [configId=" + configId + ", errorCount=" + errorCount + ", errorLog=" + errorLog + ", errorName=" + errorName + ", lastAccessTime=" + lastAccessTime + ", threadName=" + threadName + ", url=" + url + ", docMeta=" + docMeta + "]"; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FailureUrlDbm.java
false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false); protected final ColumnInfo _columnErrorCount = cci("errorCount", "errorCount", null, null, Integer.class, "errorCount", null, false, false, false, "Integer", 0, 0, null, null, false, null, null, null, null, null, false);
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/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java
errorCount.incrementAndGet(); } finally { latch.countDown(); } }).start(); } latch.await(); assertEquals("All threads should succeed", threadCount, successCount.get()); assertEquals("No threads should have errors", 0, errorCount.get()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 15.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/AbstractRuleTest.java
// Verify consistency if (!"concurrentRule".equals(ruleId)) { errorCount.incrementAndGet(); } if (proc != processor) { errorCount.incrementAndGet(); } // Occasionally update (half the threads)
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 21.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
/** * The number of times this URL has failed. * This is a required field that tracks repeated failures for the same URL. */ @Required @ValidateTypeFailure public String errorCount; /** * The timestamp of the last access attempt for this URL. * This is a required field indicating when the failure last occurred. */ @Required public String lastAccessTime;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0)