- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 47 for depth (0.29 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueueImpl.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.1K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchUrlQueue.java
public static final String URL = "url"; /** * Field name for parent URL. */ public static final String PARENT_URL = "parentUrl"; /** * Field name for depth. */ public static final String DEPTH = "depth"; /** * Field name for last modified timestamp. */ public static final String LAST_MODIFIED = "lastModified"; /** * Field name for creation time.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java
this.maxThreadCheckCount = maxThreadCheckCount; } /** * Returns the maximum depth. * @return The maximum depth. */ public int getMaxDepth() { return maxDepth; } /** * Sets the maximum depth. * @param maxDepth The maximum depth. */ public void setMaxDepth(final int maxDepth) { this.maxDepth = maxDepth; }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 8.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java
} final int depth = urlQueue.getDepth() == null ? 1 : urlQueue.getDepth() + 1; if (crawlerContext.getMaxDepth() < 0 || depth <= crawlerContext.getMaxDepth()) { // add and filter urls storeChildUrls(crawlerContext, resultData.getChildUrlSet(), urlQueue.getUrl(), depth, resultData.getEncoding()); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 12.5K bytes - Viewed (0) -
.github/workflows/check-commits.yml
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Sep 04 22:13:34 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
crawlerContext.setNumOfThread(numOfThread); // depth final int depth = webConfig.getDepth() != null ? webConfig.getDepth() : -1; crawlerContext.setMaxDepth(depth); // max count final long maxCount = webConfig.getMaxAccessCount() != null ? webConfig.getMaxAccessCount() : maxAccessCount;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
* @param url the URL to crawl * @param depth the depth of this URL in the crawling hierarchy */ CrawlRequest(final String url, final int depth) { this.url = url; this.depth = depth; } /** * Gets the URL of this crawl request. * * @return the URL to be crawled */ public String getUrl() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FileConfigDbm.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java
processTreeNodes(null, tree, 0, 0); } // ------------------------------------------------------------------------ private void processTreeNodes(MetadataGraphVertex parentVertex, MetadataTreeNode node, int depth, int pomOrder) throws MetadataResolutionException { if (node == null) { return; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 13K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/WebConfigDbm.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.5K bytes - Viewed (0)