Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for JDK11 (0.04 sec)

  1. .teamcity/src/main/kotlin/promotion/PromotionProject.kt

                param("env.JAVA_HOME", javaHome(BuildToolBuildJvm, Os.LINUX))
                // https://github.com/gradle/gradle-private/issues/4504
                param("env.JDK8", javaHome(OpenJdk8, Os.LINUX))
                param("env.JDK11", javaHome(OpenJdk11, Os.LINUX))
                param("env.JDK17", javaHome(OpenJdk17, Os.LINUX))
                param("env.ORG_GRADLE_PROJECT_artifactoryUserName", "%gradle.internal.repository.build-tool.publish.username%")
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Mar 20 06:13:56 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/TestTls13Request.kt

        CipherSuite.TLS_AES_128_CCM_8_SHA256,
      )
    
    /**
     * A TLS 1.3 only Connection Spec. This will be eventually be exposed
     * as part of MODERN_TLS or folded into the default OkHttp client once published and
     * available in JDK11 or Conscrypt.
     */
    private val TLS_13 =
      ConnectionSpec
        .Builder(true)
        .cipherSuites(*TLS13_CIPHER_SUITES.toTypedArray())
        .tlsVersions(TlsVersion.TLS_1_3)
        .build()
    
    private val TLS_12 =
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu May 22 14:39:30 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java

            // Thread.interrupt can throw arbitrary exceptions due to the nio InterruptibleChannel API
            // This will make sure that tasks don't get stuck busy waiting.
            // Some of this is fixed in jdk11 (see https://bugs.openjdk.org/browse/JDK-8198692) but
            // not all.  See the test cases for examples on how this can happen.
            try {
              ((Thread) currentRunner).interrupt();
            } finally {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 10K bytes
    - Viewed (0)
Back to top