Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 234 for Jdk (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-tools-internal/src/main/resources/forbidden/jdk-signatures.txt

    Rene Groeschke <******@****.***> 1622539170 +0200
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 4.8K bytes
    - Click Count (0)
  2. .teamcity/jdks.yaml

        os: "linux"
        arch: "amd64"
        vendor: "temurin"
        version: "jdk-11.0.30+7"
        sha256: "1911fa4010d59985d4cba9f4295c704ae64d08dfc3c2d5747bbc18655b1e911a"
      - params:
          - "env.JAVA_HOME"
          - "linux.java17.openjdk.64bit"
        os: "linux"
        arch: "amd64"
        vendor: "temurin"
        version: "jdk-17.0.18+8"
        sha256: "0c94cbb54325c40dcf026143eb621562017db5525727f2d9131a11250f72c450"
      - params:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Feb 05 09:52:57 GMT 2026
    - 6.6K bytes
    - Click Count (1)
  3. .github/workflows/build.yml

        steps:
          - name: Checkout
            uses: actions/checkout@v6
    
          - name: Install Old JDK 8
            uses: actions/setup-java@v5
            with:
              distribution: 'zulu'
              java-version: 8.0.242
    
          - name: Configure JDK
            uses: actions/setup-java@v5
            with:
              distribution: 'temurin'
              java-version: 21
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 16:19:02 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionAddTester.java

       * {@link java.util.Collections#checkedCollection(java.util.Collection, Class)} can suppress it
       * with {@code FeatureSpecificTestSuiteBuilder.suppressing()} until <a
       * href="https://bugs.openjdk.org/browse/JDK-6409434">JDK-6409434</a> is fixed. It's unclear
       * whether nulls were to be permitted or forbidden, but presumably the eventual fix will be to
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 6K bytes
    - Click Count (0)
  5. guava-testlib/src/com/google/common/collect/testing/testers/CollectionAddTester.java

       * {@link java.util.Collections#checkedCollection(java.util.Collection, Class)} can suppress it
       * with {@code FeatureSpecificTestSuiteBuilder.suppressing()} until <a
       * href="https://bugs.openjdk.org/browse/JDK-6409434">JDK-6409434</a> is fixed. It's unclear
       * whether nulls were to be permitted or forbidden, but presumably the eventual fix will be to
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 6K bytes
    - Click Count (0)
  6. compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/JdkPrefixProfileActivator.java

                            "Invalid JDK version in profile '" + profile.getId() + "': " + e.getMessage());
                }
            }
    
            boolean reverse = false;
    
            if (jdk.startsWith("!")) {
                reverse = true;
                jdk = jdk.substring(1);
            }
    
            if (getJdkVersion().startsWith(jdk)) {
                return !reverse;
            } else {
                return reverse;
            }
        }
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 3K bytes
    - Click Count (0)
  7. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/JdkDownloadPluginFuncTest.groovy

        @Unroll
        def "jdk #jdkVendor for #platform#suffix are downloaded and extracted"() {
            given:
            def mockRepoUrl = urlPath(jdkVendor, jdkVersion, platform, arch);
            def mockedContent = filebytes(jdkVendor, platform)
            buildFile.text = """
                plugins {
                 id 'elasticsearch.jdk-download'
                }
    
                jdks {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 19:29:10 GMT 2021
    - 10.5K bytes
    - Click Count (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/platform/Jdk9Platform.kt

        // Not supported due to access checks on JDK 9+:
        // java.lang.reflect.InaccessibleObjectException: Unable to make member of class
        // sun.security.ssl.SSLSocketFactoryImpl accessible:  module java.base does not export
        // sun.security.ssl to unnamed module @xxx
        throw UnsupportedOperationException(
          "clientBuilder.sslSocketFactory(SSLSocketFactory) not supported on JDK 8 (>= 252) or JDK 9+",
        )
      }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/ClientAuthTest.kt

        }.also { expected ->
          when (expected) {
            is SSLHandshakeException -> {
              // JDK 11+
            }
    
            is SSLException -> {
              // javax.net.ssl.SSLException: readRecord
            }
    
            is SocketException -> {
              // Conscrypt, JDK 8 (>= 292), JDK 9
            }
    
            else -> {
              assertThat(expected.message).isEqualTo("exhausted all routes")
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 13K bytes
    - Click Count (0)
  10. guava-testlib/src/com/google/common/collect/testing/testers/CollectionAddAllTester.java

       * Returns the {@link Method} instance for {@link #testAddAll_nullUnsupported()} so that tests can
       * suppress it with {@code FeatureSpecificTestSuiteBuilder.suppressing()} until <a
       * href="https://bugs.openjdk.org/browse/JDK-5045147">JDK-5045147</a> is fixed.
       */
      @J2ktIncompatible
      @GwtIncompatible // reflection
      public static Method getAddAllNullUnsupportedMethod() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 7.9K bytes
    - Click Count (0)
Back to Top