- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 104 for depth (0.18 sec)
-
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
if (StringUtil.isNotBlank(childUrl)) { final DuplicateHostHelper duplicateHostHelper = ComponentUtil.getDuplicateHostHelper(); final String url = duplicateHostHelper.convert(childUrl); super.storeChildUrl(url, parentUrl, metaData, depth); } } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 14.6K 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; @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer depth; @Min(value = 0) @Max(value = 9223372036854775807L) @ValidateTypeFailure public Long maxAccessCount; @Required @Size(max = 200) public String userAgent; @Required
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileConfigBhv.java
result.setCreatedBy(DfTypeUtil.toString(source.get("createdBy"))); result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime"))); result.setDepth(DfTypeUtil.toInteger(source.get("depth"))); result.setDescription(DfTypeUtil.toString(source.get("description"))); result.setExcludedDocPaths(DfTypeUtil.toString(source.get("excludedDocPaths")));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.8K bytes - Viewed (0) -
cmd/os-reliable.go
// that the MkdirAll is retried once for the parent // of dirPath. // Because it is worth a retry to skip a different // baseDir which is slightly higher up the depth. nbaseDir := path.Dir(baseDir) if baseDir != "" && nbaseDir != "" && nbaseDir != SlashSeparator { baseDir = nbaseDir } continue } } break } return err }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Apr 22 17:49:30 UTC 2024 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsWebConfigBhv.java
result.setCreatedBy(DfTypeUtil.toString(source.get("createdBy"))); result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime"))); result.setDepth(DfTypeUtil.toInteger(source.get("depth"))); result.setDescription(DfTypeUtil.toString(source.get("description"))); result.setExcludedDocUrls(DfTypeUtil.toString(source.get("excludedDocUrls")));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.8K bytes - Viewed (0) -
README.md
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 30 22:38:34 UTC 2024 - 6.8K bytes - Viewed (0) -
guava/src/com/google/common/eventbus/Dispatcher.java
} /** * Returns a dispatcher that dispatches events to subscribers immediately as they're posted * without using an intermediate queue to change the dispatch order. This is effectively a * depth-first dispatch order, vs. breadth-first when using a queue. */ static Dispatcher immediate() { return ImmediateDispatcher.INSTANCE; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Dec 15 19:31:54 UTC 2023 - 7.3K bytes - Viewed (0) -
common/Makefile.common.mk
mirror-licenses: mod-download-go @rm -fr licenses @license-lint --mirror TMP := $(shell mktemp -d -u) UPDATE_BRANCH ?= "master" BUILD_TOOLS_ORG ?= "istio" update-common: @mkdir -p $(TMP) @git clone -q --depth 1 --single-branch --branch $(UPDATE_BRANCH) https://github.com/$(BUILD_TOOLS_ORG)/common-files $(TMP)/common-files @cd $(TMP)/common-files ; git rev-parse HEAD >files/common/.commonfiles.sha @rm -fr common
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jun 12 14:37:27 UTC 2024 - 5.9K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java
* * <ul> * <li>for an unnested {@code lock()} and {@code unlock()}, a cycle detecting lock takes 38ns as * opposed to the 24ns taken by a plain lock. * <li>for nested locking, the cost increases with the depth of the nesting: * <ul> * <li>2 levels: average of 64ns per lock()/unlock() * <li>3 levels: average of 77ns per lock()/unlock() * <li>4 levels: average of 99ns per lock()/unlock()
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Dec 15 19:31:54 UTC 2023 - 35.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java
requestBody.put("urls", urls); requestBody.put("included_urls", includedUrls); requestBody.put("user_agent", "Mozilla/5.0"); requestBody.put("depth", 1); requestBody.put("num_of_thread", 1); requestBody.put("interval_time", 1000); requestBody.put("boost", 100); requestBody.put("available", true);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.1K bytes - Viewed (0)