- Sort Score
- Num 10 results
- Language All
Results 561 - 570 of 776 for val3 (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
okhttp-zstd/src/main/kotlin/okhttp3/zstd/Zstd.kt
import okio.BufferedSource import okio.Source /** * Support for Zstandard encoding. Use via the [CompressionInterceptor]. */ object Zstd : CompressionInterceptor.DecompressionAlgorithm { override val encoding: String get() = "zstd" override fun decompress(compressedSource: BufferedSource): Source = compressedSource.zstdDecompress()
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Thu Jul 31 18:34:32 GMT 2025 - 1K bytes - Click Count (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild/pluginpublish/extension/PluginPublishExtension.kt
* limitations under the License. */ package gradlebuild.pluginpublish.extension import org.gradle.plugin.devel.GradlePluginDevelopmentExtension abstract class PluginPublishExtension( private val gradlePlugin: GradlePluginDevelopmentExtension ) { fun bundledGradlePlugin(name: String, shortDescription: String, pluginId: String, pluginClass: String) { gradlePlugin.plugins { register(name) {
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Aug 08 14:54:27 GMT 2024 - 1.2K bytes - Click Count (0) -
native-image-tests/src/test/kotlin/okhttp3/nativeimage/PublicSuffixDatabaseTest.kt
import assertk.assertThat import assertk.assertions.isEqualTo import okhttp3.HttpUrl.Companion.toHttpUrl import org.junit.jupiter.api.Test class PublicSuffixDatabaseTest { @Test fun testResourcesLoaded() { val url = "https://api.twitter.com".toHttpUrl() assertThat(url.topPrivateDomain()).isEqualTo("twitter.com") }Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Fri Jul 04 08:15:11 GMT 2025 - 964 bytes - Click Count (0) -
okhttp-brotli/src/main/kotlin/okhttp3/brotli/Brotli.kt
import okhttp3.CompressionInterceptor import okio.BufferedSource import okio.Source import okio.source import org.brotli.dec.BrotliInputStream object Brotli : CompressionInterceptor.DecompressionAlgorithm { override val encoding: String get() = "br" override fun decompress(compressedSource: BufferedSource): Source = BrotliInputStream(compressedSource.inputStream()).source()Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Tue Oct 07 15:15:28 GMT 2025 - 1010 bytes - Click Count (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/SmokeTest.kt
import org.gradle.api.tasks.CacheableTask /** * A test that verifies Gradle can be used with popular third party plugins. */ @CacheableTask abstract class SmokeTest : DistributionTest() { override val prefix = "smoke"
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 889 bytes - Click Count (0) -
samples/tlssurvey/src/main/kotlin/okhttp3/survey/ssllabs/SslLabsApi.kt
*/ package okhttp3.survey.ssllabs import retrofit2.http.GET interface SslLabsApi { @GET("getClients") suspend fun clients(): List<UserAgentCapabilities> companion object { const val BASE_URL = "https://api.ssllabs.com/api/v3/" }Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Tue Apr 02 01:44:15 GMT 2024 - 844 bytes - Click Count (0) -
.teamcity/src/main/kotlin/common/JvmVersion.kt
* See the License for the specific language governing permissions and * limitations under the License. */ package common enum class JvmVersion( val major: Int, ) { JAVA_8(8), JAVA_11(11), JAVA_17(17), JAVA_21(21), JAVA_25(25), ; fun toCapitalized(): String = name.replace("_", "").lowercase().toCapitalized()
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Aug 05 16:58:51 GMT 2025 - 856 bytes - Click Count (0) -
internal/bucket/lifecycle/lifecycle.go
} if !rule.Expiration.IsDateNull() && rule.Expiration.Date.Before(time.Now().UTC()) { return true } if !rule.Expiration.IsDaysNull() { return true } if rule.Expiration.DeleteMarker.val { return true } if !rule.Transition.IsDateNull() && rule.Transition.Date.Before(time.Now().UTC()) { return true } if !rule.Transition.IsNull() { // this allows for Transition.Days to be zero.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Thu Apr 03 06:45:06 GMT 2025 - 18.2K bytes - Click Count (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/ForwardingResponseBody.kt
* limitations under the License. */ package okhttp3 import okio.BufferedSource open class ForwardingResponseBody( delegate: ResponseBody?, ) : ResponseBody() { private val delegate: ResponseBody fun delegate(): ResponseBody = delegate override fun contentType(): MediaType? = delegate.contentType() override fun contentLength(): Long = delegate.contentLength()
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 1.2K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/StreamResetException.kt
*/ package okhttp3.internal.http2 import java.io.IOException /** Thrown when an HTTP/2 stream is canceled without damage to the socket that carries it. */ class StreamResetException( @JvmField val errorCode: ErrorCode,
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Fri Dec 27 13:39:56 GMT 2024 - 869 bytes - Click Count (0)