- Sort Score
- Num 10 results
- Language All
Results 391 - 400 of 770 for Curl (0.04 seconds)
-
.teamcity/pluginData/Check/plugin-settings.xml
<?xml version="1.0" encoding="UTF-8"?> <settings> <webhooks enabled="true"> <webhook url="https://gradle-bot.grdev.net/teamcity_slacktemplate" enabled="true" template="slack.com"> <states> <state type="buildAddedToQueue" enabled="false" /> <state type="buildRemovedFromQueue" enabled="true" /> <state type="buildStarted" enabled="true" /> <state type="changesLoaded" enabled="true" />
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue May 18 02:15:16 GMT 2021 - 2.2K bytes - Click Count (0) -
samples/guide/src/main/java/okhttp3/recipes/PrintEventsNonConcurrent.java
} @Override public void callStart(Call call) { printEvent("callStart"); } @Override public void proxySelectStart(Call call, HttpUrl url) { printEvent("proxySelectStart"); } @Override public void proxySelectEnd(Call call, HttpUrl url, List<Proxy> proxies) { printEvent("proxySelectEnd"); } @Override public void dnsStart(Call call, String domainName) { printEvent("dnsStart");Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Feb 16 23:20:49 GMT 2020 - 5.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/go/GoActionTest.java
} // Test class to expose protected method for testing private static class TestableGoAction extends GoAction { @Override public boolean isFileSystemPath(final String url) { return super.isFileSystemPath(url); } } // ==================================================================================Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 8.3K bytes - Click Count (0) -
fuzzing/fuzzingserver-config.json
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Mar 26 02:01:32 GMT 2019 - 2.1K bytes - Click Count (0) -
src/main/resources/fess_indices/fess_log.favorite_log/favorite_log.json
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Feb 24 22:07:26 GMT 2019 - 335 bytes - Click Count (0) -
src/main/resources/fess_indices/fess_config.failure_url/failure_url.json
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 02 13:14:56 GMT 2021 - 417 bytes - Click Count (0) -
.teamcity/src/main/kotlin/common/PerformanceTestExtensions.kt
) + os.javaInstallationLocations(arch) + listOf( "-Porg.gradle.performance.branchName" to "%teamcity.build.branch%", "-Porg.gradle.performance.db.url" to "%performance.db.url%", "-Porg.gradle.performance.db.username" to "%performance.db.username%", ).map { (key, value) -> os.escapeKeyValuePair(key, value) } const val INDIVIDUAL_PERFORAMCE_TEST_ARTIFACT_RULES = """
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Dec 22 07:15:16 GMT 2025 - 4K bytes - Click Count (0) -
android-test/src/androidDeviceTest/java/okhttp/android/test/sni/SniOverrideTest.kt
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Mon Jan 26 07:38:51 GMT 2026 - 3.6K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/ResponseCommonTest.kt
} @Test fun defaultResponseBodyIsEmpty() { val response = Response .Builder() .request( Request .Builder() .url("https://example.com/") .build(), ).protocol(Protocol.HTTP_1_1) .code(200) .message("OK") .build() assertThat(response.body.contentType()).isNull()
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 3.6K bytes - Click Count (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/CancelCall.kt
class CancelCall { private val executor = Executors.newScheduledThreadPool(1) private val client = OkHttpClient() fun run() { val request = Request .Builder() .url("http://httpbin.org/delay/2") // This URL is served with a 2 second delay. .build() val startNanos = System.nanoTime() val call = client.newCall(request) // Schedule a job to cancel the call in 1 second.Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 2K bytes - Click Count (0)