- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 328 for okcurl (0.09 sec)
-
okcurl/okcurl
#!/bin/sh -e ../gradlew -q --console plain nativeImage
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Mar 30 05:41:17 UTC 2022 - 83 bytes - Viewed (0) -
okcurl/src/main/resources-templates/okcurl-version.properties
Jesse Wilson <******@****.***> 1703114827 -0500
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 26 bytes - Viewed (0) -
okcurl/README.md
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jul 09 21:19:04 UTC 2016 - 178 bytes - Viewed (0) -
okcurl/build.gradle.kts
isIgnoreFailures = true } tasks.jar { manifest { attributes("Automatic-Module-Name" to "okhttp3.curl") attributes("Main-Class" to "okhttp3.curl.MainCommandLineKt") } } tasks.shadowJar { mergeServiceFiles() } graal { mainClass("okhttp3.curl.MainCommandLineKt") outputName("okcurl") graalVersion(libs.versions.graalvm.get()) javaVersion("11") option("--no-fallback")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 1.8K bytes - Viewed (0) -
okcurl/src/main/resources/META-INF/native-image/okhttp3/okcurl/resource-config.json
{ "resources": [ {"pattern": "okcurl-version.properties"} ]
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 70 bytes - Viewed (0) -
README.md
This is not currently in a final released version, so `5.0.0-alpha.2` should be used. Please report any bugs or workarounds you find. See the okcurl module for an example build. ```shell $ ./gradlew okcurl:nativeImage $ ./okcurl/build/graal/okcurl https://httpbin.org/get ``` License ------- ``` Copyright 2019 Square, Inc.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 6.2K bytes - Viewed (0) -
settings.gradle.kts
val loomBuild: String by settings if (androidBuild.toBoolean()) { include(":regression-test") } if (graalBuild.toBoolean()) { include(":native-image-tests") } include(":okcurl") include(":okhttp") include(":okhttp-bom") include(":okhttp-brotli") include(":okhttp-coroutines") include(":okhttp-dnsoverhttps") include(":okhttp-hpacktests") include(":okhttp-idna-mapping-table")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Apr 14 14:24:05 UTC 2024 - 2.6K bytes - Viewed (0) -
okcurl/src/main/kotlin/okhttp3/curl/Main.kt
import okhttp3.OkHttpClient import okhttp3.Request import okhttp3.curl.internal.commonCreateRequest import okhttp3.curl.internal.commonRun import okhttp3.curl.logging.LoggingUtil import okhttp3.internal.platform.Platform import okhttp3.logging.HttpLoggingInterceptor import okhttp3.logging.LoggingEventListener class Main : CliktCommand(name = NAME, help = "A curl for the next-generation web.") {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 5.7K bytes - Viewed (0) -
CHANGELOG.md
GraalVM is an exciting new platform and we're eager to adopt it. The startup time improvements over the JVM are particularly impressive. Try it with okcurl: ``` $ ./gradlew okcurl:nativeImage $ ./okcurl/build/graal/okcurl https://cash.app/robots.txt ``` This is our first release that supports GraalVM. Our code on this platform is less mature than JVM
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Apr 18 01:31:39 UTC 2024 - 21.4K bytes - Viewed (0) -
okcurl/src/test/kotlin/okhttp3/curl/MainTest.kt
assertThat(request.body).isNull() } @Test fun defaultUserAgent() { val request = fromArgs("http://example.com").createRequest() assertThat(request.header("User-Agent")!!).startsWith("okcurl/") } @Test fun headerSplitWithDate() { val request = fromArgs( "-H", "If-Modified-Since: Mon, 18 Aug 2014 15:16:06 GMT", "http://example.com",
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 4.3K bytes - Viewed (0)