- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 441 for Resolve (1.62 sec)
-
src/main/java/jcifs/internal/RequestWithPath.java
/** * Sets whether to resolve this request path in DFS. * * @param resolve true to enable DFS resolution */ void setResolveInDfs(boolean resolve); /** * Checks if this request should be resolved in DFS. * * @return whether to resolve the request path in DFS */ boolean isResolveInDfs();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
value = null; assertNull(ResourceUtil.resolve(value)); value = ""; assertEquals("", ResourceUtil.resolve(value)); value = "a"; assertEquals(value, ResourceUtil.resolve(value)); value = "${a}"; assertEquals(value, ResourceUtil.resolve(value)); value = "$a"; assertEquals(value, ResourceUtil.resolve(value)); value = "${a";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt
assertThat(url.resolve("")).isEqualTo(parse("http://a/b/c/d;p?q")) assertThat(url.resolve(".")).isEqualTo(parse("http://a/b/c/")) assertThat(url.resolve("./")).isEqualTo(parse("http://a/b/c/")) assertThat(url.resolve("..")).isEqualTo(parse("http://a/b/")) assertThat(url.resolve("../")).isEqualTo(parse("http://a/b/"))
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Aug 04 07:38:48 UTC 2025 - 69.9K bytes - Viewed (0) -
src/main/java/jcifs/NameServiceClient.java
* * @param hostname the hostname to resolve * @param possibleNTDomainOrWorkgroup if true, perform additional master browser lookup * * @return the first resolved address * @throws UnknownHostException if the hostname cannot be resolved */ Address getByName(String hostname, boolean possibleNTDomainOrWorkgroup) throws UnknownHostException;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolver.java
default VersionRangeResolverResult resolve( @Nonnull Session session, @Nonnull ArtifactCoordinates artifactCoordinates) throws VersionResolverException { return resolve(VersionRangeResolverRequest.build(session, artifactCoordinates)); } /** * Expands a version range to a list of matching versions, in ascending order. * For example, resolves "[3.8,4.0)" to "3.8", "3.8.1", "3.8.2".
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Sep 12 06:19:14 UTC 2024 - 3.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionResolver.java
* @param artifactCoordinates The artifact coordinates for which the version needs to be resolved, must not be {@code null} * @return The version result, never {@code null}. * @throws VersionResolverException If the metaversion could not be resolved. */ @Nonnull default VersionResolverResult resolve(@Nonnull Session session, @Nonnull ArtifactCoordinates artifactCoordinates)
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 2.5K bytes - Viewed (0) -
kotlin-js-store/yarn.lock
dependencies: resolve-from "^5.0.0" resolve-from@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== resolve@^1.20.0: version "1.22.2"
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 22 12:28:51 UTC 2023 - 87.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java
*/ @Nonnull String getLocation(); /** * Resolves a new source relative to this one. * <p> * The resolution strategy depends on the source type: * <ul> * <li>File sources resolve against their parent directory</li> * <li>URL sources resolve against their base URL</li> * <li>Other sources may not support resolution and return null</li> * </ul>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 09:46:53 UTC 2025 - 4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java
Files.createFile(tempDir.resolve("parent").resolve("parent.txt")); assertTrue(Files.exists(nestedDir)); themeHelper.closeQuietly(tempDir.resolve("parent")); assertFalse(Files.exists(tempDir.resolve("parent"))); } public void test_install_withValidZip() throws IOException { // Create a mock zip file with theme content Path jarPath = tempDir.resolve("test-theme.jar");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.5K bytes - Viewed (0) -
src/test/java/jcifs/DfsResolverTest.java
assertNull(dfsResolver.getDc(mockContext, "anyDomain")); } // Test for resolve method @Test void testResolve_DfsDisabled() throws CIFSException { when(mockConfig.isDfsDisabled()).thenReturn(true); assertNull(dfsResolver.resolve(mockContext, "anyDomain", "anyRoot", "anyPath")); } @Test void testResolve_NullRoot() throws CIFSException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.5K bytes - Viewed (0)