- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for concurrentRule (0.08 seconds)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/AbstractRuleTest.java
final CountDownLatch endLatch = new CountDownLatch(threadCount); final AtomicInteger errorCount = new AtomicInteger(0); // Set initial values testRule.setRuleId("concurrentRule"); TestResponseProcessor processor = new TestResponseProcessor(); testRule.setResponseProcessor(processor); for (int i = 0; i < threadCount; i++) { final int threadId = i;
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Wed Sep 03 14:42:53 GMT 2025 - 21.9K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleTest.java
/** * Test concurrent rule matching */ public void test_concurrentRuleMatching() throws Exception { final ConfigurableRule rule = new ConfigurableRule(); rule.setRuleId("concurrentRule"); rule.setResponseProcessor(new TestResponseProcessor("concurrentProcessor")); rule.addCondition("url", "https://.*\\.example\\.com/.*"); final int threadCount = 10;Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Wed Sep 03 14:42:53 GMT 2025 - 22.7K bytes - Click Count (0)