- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for setDataService (0.13 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/CrawlingParameterUtilTest.java
} }; CrawlingParameterUtil.setDataService(service); assertNotNull(CrawlingParameterUtil.getDataService()); // Set to null CrawlingParameterUtil.setDataService(null); // Should be null now assertNull(CrawlingParameterUtil.getDataService()); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 14.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/CrawlingParameterUtil.java
* CrawlingParameterUtil.setUrlQueueService(newUrlQueueService); * * DataService<AccessResult<?>> dataService = CrawlingParameterUtil.getDataService(); * CrawlingParameterUtil.setDataService(newDataService); * } * </pre> * * <p>Note: If a parameter is set to {@code null}, the corresponding ThreadLocal variable is removed.</p> */ public final class CrawlingParameterUtil {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 6.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java
// set urlQueue to thread CrawlingParameterUtil.setCrawlerContext(crawlerContext); CrawlingParameterUtil.setUrlQueueService(urlQueueService); CrawlingParameterUtil.setDataService(dataService); try { while (crawlerContext.getStatus() != CrawlerStatus.DONE && isContinue(threadCheckCount)) { final UrlQueue<?> urlQueue = urlQueueService.poll(crawlerContext.sessionId);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 20.4K bytes - Viewed (0)