- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getMaxDepth (0.12 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java
} } } protected void storeChildUrls(final Set<RequestData> childUrlList, final String url, final int depth) { if (crawlerContext.getMaxDepth() >= 0 && depth > crawlerContext.getMaxDepth()) { return; } // add url and filter final Set<String> urlSet = new HashSet<>();
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 15.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java
return maxThreadCheckCount; } public void setMaxThreadCheckCount(final int maxThreadCheckCount) { this.maxThreadCheckCount = maxThreadCheckCount; } public int getMaxDepth() { return maxDepth; } public void setMaxDepth(final int maxDepth) { this.maxDepth = maxDepth; } public long getMaxAccessCount() { return maxAccessCount;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 4.5K bytes - Viewed (0)