Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ExperimentalOkHttpApi (0.13 sec)

  1. build.gradle.kts

        targetCompatibility = JavaVersion.VERSION_1_8.toString()
      }
    }
    
    // Opt-in to @ExperimentalOkHttpApi everywhere.
    subprojects {
      plugins.withId("org.jetbrains.kotlin.jvm") {
        kotlinExtension.sourceSets.configureEach {
          languageSettings.optIn("okhttp3.ExperimentalOkHttpApi")
        }
      }
      plugins.withId("org.jetbrains.kotlin.android") {
        kotlinExtension.sourceSets.configureEach {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Jun 23 17:02:02 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Response.kt

        open fun cacheResponse(cacheResponse: Response?) = commonCacheResponse(cacheResponse)
    
        open fun priorResponse(priorResponse: Response?) = commonPriorResponse(priorResponse)
    
        @ExperimentalOkHttpApi
        open fun trailers(trailersFn: (() -> Headers)): Builder = commonTrailers(trailersFn)
    
        open fun sentRequestAtMillis(sentRequestAtMillis: Long) =
          apply {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Jul 06 09:38:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top