- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 72 for depth_2 (0.52 sec)
-
.github/workflows/update-jdks.yml
pull-requests: write runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v5 with: persist-credentials: false fetch-depth: 0 - name: Update jdks.yaml uses: gradle/update-jdks-action@main - name: Add verification comment # https://github.com/gradle/gradle-private/issues/4518 run: |
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Tue Aug 12 07:00:55 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
wConfig.setBoost(1.0f); wConfig.setCreatedBy(username); wConfig.setCreatedTime(now); if (form.depth != null) { wConfig.setDepth(form.depth); } wConfig.setExcludedDocUrls(getDefaultString("default.config.web.excludedDocUrls", StringUtil.EMPTY));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
* @param parentUrl the parent URL that referenced this child URL * @param weight the weight/priority of the child URL * @param depth the crawling depth of the child URL */ @Override protected void storeChildUrl(final String childUrl, final String parentUrl, final float weight, final int depth) { if (StringUtil.isNotBlank(childUrl)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0) -
.github/workflows/codeql-analysis.yml
- name: Checkout repository uses: actions/checkout@v2 with: # We must fetch at least the immediate parents so that if this is # a pull request then we can checkout the head. fetch-depth: 2 # If this run was triggered by a pull request event, then checkout # the head of the pull request instead of the merge commit. - run: git checkout HEAD^2 if: ${{ github.event_name == 'pull_request' }}
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Fri Oct 02 13:24:14 UTC 2020 - 2.5K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.file_config/file_config.json
}, "includedDocPaths": { "type": "keyword" }, "excludedDocPaths": { "type": "keyword" }, "configParameter": { "type": "keyword" }, "depth": { "type": "integer" }, "maxAccessCount": { "type": "long" }, "numOfThread": { "type": "integer" }, "intervalTime": { "type": "integer"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java
*/ @CustomSize(maxKey = "form.admin.max.input.size") public String configParameter; /** * The maximum crawling depth from the starting URLs. */ @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer depth; /** * The maximum number of URLs to access during crawling. */ @Min(value = 0) @Max(value = 9223372036854775807L)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.web_config/web_config.json
}, "includedDocUrls": { "type": "keyword" }, "excludedDocUrls": { "type": "keyword" }, "configParameter": { "type": "keyword" }, "depth": { "type": "integer" }, "maxAccessCount": { "type": "long" }, "userAgent": { "type": "keyword" }, "numOfThread": { "type": "integer"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 1.3K bytes - Viewed (0) -
.github/workflows/upgrade-to-latest-wrapper.yml
steps: - name: Checkout repository uses: actions/checkout@v5 with: ref: devprod/upgrade-to-latest-wrapper token: ${{ secrets.GITHUB_TOKEN }} fetch-depth: 0 - name: Setup java uses: actions/setup-java@v5 with: distribution: temurin java-version: 17
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Aug 21 23:08:02 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsFileConfigCB.java
doColumn("createdBy"); } public void columnCreatedTime() { doColumn("createdTime"); } public void columnDepth() { doColumn("depth"); } public void columnDescription() { doColumn("description"); } public void columnExcludedDocPaths() { doColumn("excludedDocPaths");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 8.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TreeTraverser.java
} } /** * Returns an unmodifiable iterable over the nodes in a tree structure, using breadth-first * traversal. That is, all the nodes of depth 0 are returned, then depth 1, then 2, and so on. * * <p>No guarantees are made about the behavior of the traversal when nodes change while iteration * is in progress or when the iterators generated by {@link #children} are advanced.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 8.3K bytes - Viewed (0)