- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 142 for uri (0.02 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/Transport.java
return getString(relativeSource, StandardCharsets.UTF_8); } /** * PUTs the source file (must exist as file) to target URI. The target MUST BE relative from the * {@link RemoteRepository#getUrl()} root. * * @throws RuntimeException If PUT fails for any reason. */ void put(@Nonnull Path source, @Nonnull URI relativeTarget); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Mar 23 05:29:39 UTC 2023 - 4.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java
} } } } protected String preprocessUri(final String uri) { if (StringUtil.isEmpty(uri)) { throw new CrawlerSystemException("The uri is empty."); } return uri; } protected String geCharSet(final SmbFile file) { return charset; } /* * (non-Javadoc)
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu May 23 01:54:36 UTC 2024 - 17.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/ArtifactMetadata.java
} public void setResolved(boolean resolved) { this.resolved = resolved; } public String getUri() { return uri; } public void setUri(String uri) { this.uri = uri; } public String getScope() { return getArtifactScope().getScope(); } public ArtifactScopeEnum getScopeAsEnum() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.6K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/SocksProxyTest.kt
server.enqueue(MockResponse.Builder().body("abc").build()) val proxySelector: ProxySelector = object : ProxySelector() { override fun select(uri: URI) = listOf(socksProxy.proxy()) override fun connectFailed( uri: URI, socketAddress: SocketAddress, e: IOException, ) = error("unexpected call") } val client = clientTestRule.newClientBuilder()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.5K bytes - Viewed (0) -
src/test/java/jcifs/tests/DfsTest.java
assertNotNull(ref2); } /** * @return * @throws URISyntaxException */ private boolean isStandalone () throws URISyntaxException { URI uri = new URI(getTestShareURL()); return uri.getHost().equals(getTestServer()); } @Test public void resolveShare () throws CIFSException, URISyntaxException { String dfsTestSharePath = getDFSTestSharePath();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 01 09:46:04 UTC 2020 - 13.5K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CookiesTest.kt
server.enqueue(MockResponse()) val serverUrl = urlWithIpAddress(server, "/") val androidCookieHandler: CookieHandler = object : CookieHandler() { override fun get( uri: URI, map: Map<String, List<String>>, ) = mapOf( "Cookie" to listOf( "\$Version=\"1\"; " +
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 13K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthentication.java
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 2.4K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/Javadocs.java
import org.gradle.api.provider.Property; import java.net.URI; /** * Configuration for generating Javadocs */ public abstract class Javadocs { /** * Link to Java API to use when generating Javadoc */ public abstract Property<URI> getJavaApi(); /** * Link to Groovy API to use when generating Javadoc */ public abstract Property<URI> getGroovyApi(); /**
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Mar 17 08:08:46 UTC 2023 - 1.4K bytes - Viewed (0) -
container-tests/src/test/java/okhttp3/containers/BasicProxyTest.kt
*/ package okhttp3.containers import assertk.assertThat import assertk.assertions.contains import assertk.assertions.isEqualTo import java.net.HttpURLConnection import java.net.Proxy import java.net.URI import javax.net.ssl.HttpsURLConnection import okhttp3.HttpUrl.Companion.toHttpUrl import okhttp3.OkHttpClient import okhttp3.Protocol import okhttp3.Request
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Fri Apr 05 03:30:42 UTC 2024 - 5.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java
} return null; } protected String preprocessUri(final String uri) { if (StringUtil.isEmpty(uri)) { throw new CrawlerSystemException("The uri is empty."); } String filePath = uri; if (!filePath.startsWith("storage:")) { filePath = "storage://" + filePath; } return filePath;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 13.9K bytes - Viewed (0)