- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for removeSitemap (0.11 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerContextTest.java
// Should be null after removal assertNull(crawlerContext.removeSitemaps()); // Test with null crawlerContext.addSitemaps(null); assertNull(crawlerContext.removeSitemaps()); // Test with empty array crawlerContext.addSitemaps(new String[0]); String[] emptyArray = crawlerContext.removeSitemaps(); assertNotNull(emptyArray);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 25.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java
* @param urlQueue The URL queue to add sitemaps to. */ protected void addSitemapsFromRobotsTxt(final UrlQueue<?> urlQueue) { final String[] sitemaps = crawlerContext.removeSitemaps(); if (sitemaps != null) { for (final String childUrl : sitemaps) { try { storeChildUrl(childUrl, urlQueue.getUrl(), urlQueue.getWeight(),
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 20.4K bytes - Viewed (0)