- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 1,372 for Curl (0.04 sec)
-
android-test/src/androidTest/java/okhttp/android/test/OkHttpTest.kt
} } private fun OkHttpClient.get(url: String) { val request = Request.Builder().url(url).build() val response = this.newCall(request).execute() response.use { assertEquals(200, response.code) } } fun buildCloudflareIp(bootstrapClient: OkHttpClient): DnsOverHttps { return DnsOverHttps.Builder().client(bootstrapClient) .url("https://1.1.1.1/dns-query".toHttpUrl())
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 27K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-directory-urls-parent.xml
<url>http://www.apache.org/path/to/parent/</url> <scm> <connection>scm:my-scm:http://domain.org/base</connection> <developerConnection>scm:my-scm:https://domain.org/base/</developerConnection> <url>https://domain.org/base</url> </scm> <distributionManagement> <site> <url>scp://scp.domain.org/base/</url> </site> </distributionManagement>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/ConnectionReuseTest.kt
server.enqueue(MockResponse(body = "b")) val request = Request(server.url("/")) assertConnectionReused(request, request) } @Test fun connectionsAreReusedForPosts() { server.enqueue(MockResponse(body = "a")) server.enqueue(MockResponse(body = "b")) val request = Request( url = server.url("/"), body = "request body".toRequestBody("text/plain".toMediaType()), )
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 12.3K bytes - Viewed (0) -
misc/chrome/gophertool/popup.html
<script src="gopher.js"></script> <script src="popup.js"></script> </head> <body style='margin: 0.5em; font-family: sans;'> <small><a href="#" url="https://golang.org/issue">issue</a>, <a href="#" url="https://golang.org/cl">codereview</a>, <a href="#" url="https://golang.org/change">commit</a>, or <a href="#" url="https://golang.org/pkg/">pkg</a> id/name:</small>
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Mar 05 02:35:21 UTC 2021 - 830 bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferResource.java
/** * The base URL of the repository, e.g. "http://repo1.maven.org/maven2/". Unless the URL is unknown, it will be * terminated by a trailing slash. * * @return The base URL of the repository or an empty string if unknown, never {@code null}. */ String getRepositoryUrl(); /** * The path of the artifact relative to the repository's base URL. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-artifactId-urls-expected.xml
<url>http://www.apache.org/path/to/parent/../child-artifact-id/</url> <scm> <connection>scm:my-scm:http://domain.org/base/../child-artifact-id</connection> <developerConnection>scm:my-scm:https://domain.org/base/../child-artifact-id/</developerConnection> <url>https://domain.org/base/../child-artifact-id</url> </scm> <distributionManagement> <site>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/inheritance/urls-expected.xml
<!-- 5 inherited urls with ${project.artifactId} added to parent --> <url>http://www.apache.org/path/to/parent/child-artifact-id/</url> <scm> <connection>scm:my-scm:http://domain.org/base/child-artifact-id</connection> <developerConnection>scm:my-scm:https://domain.org/base/child-artifact-id/</developerConnection> <url>https://domain.org/base/child-artifact-id</url> </scm> <distributionManagement> <site>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
docs/de/docs/tutorial/query-params.md
Query-Parameter (Deutsch: Abfrage-Parameter) sind die Schlüssel-Wert-Paare, die nach dem `?` in einer URL aufgelistet sind, getrennt durch `&`-Zeichen. Zum Beispiel sind in der URL: ``` http://127.0.0.1:8000/items/?skip=0&limit=10 ``` ... die Query-Parameter: * `skip`: mit dem Wert `0` * `limit`: mit dem Wert `10` Da sie Teil der URL sind, sind sie „naturgemäß“ Strings.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsFavoriteLogCQ.java
} public void setUrl_Equal(String url) { setUrl_Term(url, null); } public void setUrl_Equal(String url, ConditionOptionCall<TermQueryBuilder> opLambda) { setUrl_Term(url, opLambda); } public void setUrl_Term(String url) { setUrl_Term(url, null); } public void setUrl_Term(String url, ConditionOptionCall<TermQueryBuilder> opLambda) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 42.7K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/RequestTest.kt
assertThat(builtRequestWithoutCache.url).isEqualTo( "http://localhost/api/foo".toHttpUrl(), ) val requestWithCache = Request.Builder() .url("http://localhost/api") .build() // cache url object requestWithCache.url val builtRequestWithCache = requestWithCache.newBuilder() .url("http://localhost/api/foo")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 16.4K bytes - Viewed (0)