Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Jdk8WithJettyBootPlatform (0.1 sec)

  1. okhttp/src/jvmMain/kotlin/okhttp3/internal/platform/PlatformRegistry.kt

        val jdk9 = Jdk9Platform.buildIfSupported()
    
        if (jdk9 != null) {
          return jdk9
        }
    
        // An Oracle JDK 8 like OpenJDK, pre 251.
        val jdkWithJettyBoot = Jdk8WithJettyBootPlatform.buildIfSupported()
    
        if (jdkWithJettyBoot != null) {
          return jdkWithJettyBoot
        }
    
        return Platform()
      }
    
      actual val isAndroid: Boolean
        get() = false
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu May 22 14:39:30 UTC 2025
    - 2.1K bytes
    - Viewed (0)
Back to top