- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getMaxDepth (0.07 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java
if (crawlerContext.getMaxDepth() < 0 || depth <= crawlerContext.getMaxDepth()) { // add and filter urls storeChildUrls(crawlerContext, resultData.getChildUrlSet(), urlQueue.getUrl(), depth, resultData.getEncoding()); } } else if (crawlerContext.getMaxDepth() < 0 || urlQueue.getDepth() <= crawlerContext.getMaxDepth()) { if (logger.isDebugEnabled()) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 9K 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)