- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 80 for depth_2 (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
build-logic/documentation/src/test/groovy/gradlebuild/docs/XmlSpecification.groovy
} return builder.toString() } def format(Node node, Appendable target, int depth, boolean prettyPrint, boolean indentSelf) { if (node instanceof Element) { Element element = (Element) node if (indentSelf && depth > 0) { target.append('\n') depth.times { target.append(' ') } } target.append("<${element.tagName}")Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 4.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FileConfigDbm.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 18K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/wizard/admin_wizard_config.jsp
<label for="depth" class="col-sm-3 text-sm-right col-form-label"><la:message key="labels.depth"/></label> <div class="col-sm-9"> <la:errors property="depth"/> <la:text styleId="depth" property="depth" styleClass="form-control"/>Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 13 05:54:52 GMT 2025 - 6.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsWebConfigCQ.java
public void setDepth_Equal(Integer depth) { setDepth_Term(depth, null); } public void setDepth_Equal(Integer depth, ConditionOptionCall<TermQueryBuilder> opLambda) { setDepth_Term(depth, opLambda); } public void setDepth_Term(Integer depth) { setDepth_Term(depth, null); }Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 172.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/WebConfigDbm.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 18.4K bytes - Click Count (0) -
.github/workflows/pre-commit.yml
# merge commit ref: ${{ github.head_ref }} # And it needs the full history to be able to compute diffs fetch-depth: 0 # A token other than the default GITHUB_TOKEN is needed to be able to trigger CI token: ${{ secrets.PRE_COMMIT }} # pre-commit lite ci needs the default checkout configs to workCreated: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Tue Dec 23 11:17:16 GMT 2025 - 3K bytes - Click Count (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;
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 25K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java
@CustomSize(maxKey = "form.admin.max.input.size") public String configParameter; /** The maximum crawling depth (0 to 2147483647, 0 means unlimited). */ @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer depth; /** The maximum number of documents to access during crawling (0 means unlimited). */ @Min(value = 0) @Max(value = 9223372036854775807L)
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.6K bytes - Click Count (0) -
src/main/config/es/fess_config_file_config.json
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Dec 02 13:14:56 GMT 2021 - 2.3K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java
* @param childUrlList The set of child URLs to store. * @param url The parent URL. * @param depth The depth of the child URLs. */ protected void storeChildUrls(final Set<RequestData> childUrlList, final String url, final int depth) { if (crawlerContext.getMaxDepth() >= 0 && depth > crawlerContext.getMaxDepth()) { return; } // add url and filterCreated: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Aug 07 02:55:08 GMT 2025 - 20.4K bytes - Click Count (0)