- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for storeChildUrl (0.42 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerThreadTest.java
CrawlerThread.class.getDeclaredMethod("storeChildUrl", String.class, String.class, float.class, int.class); method.setAccessible(true); method.invoke(crawlerThread, "http://example.com/child", "http://example.com/", 1.0f, 2); verify(urlQueueService, times(1)).offerAll(anyString(), any()); } /** * Test storeChildUrl with depth exceeding maxDepth. */
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 18.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java
* <li>Processing the response using a {@link ResponseProcessor} associated with a {@link Rule}.</li> * <li>Extracting child URLs and adding them to the queue using {@link #storeChildUrls(Set, String, int)} * or {@link #storeChildUrl(String, String, float, int)}.</li> * <li>Handling exceptions that may occur during the crawling process.</li> * </ol> * * <p>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 20.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
*/ @Override protected void storeChildUrl(final String childUrl, final String parentUrl, final float weight, final int depth) { if (StringUtil.isNotBlank(childUrl)) { final DuplicateHostHelper duplicateHostHelper = ComponentUtil.getDuplicateHostHelper(); final String url = duplicateHostHelper.convert(childUrl); super.storeChildUrl(url, parentUrl, weight, depth); } }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 19.5K bytes - Viewed (0)