- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 156 for jdk_ (0.02 seconds)
-
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/JdkDownloadPlugin.java
? (jdk.getVendor().equals(VENDOR_ADOPTIUM) ? "mac" : "osx") : jdk.getPlatform(); String extension = jdk.getPlatform().equals("windows") ? "zip" : "tar.gz"; return groupName(jdk) + ":" + platformDep + ":" + jdk.getBaseVersion() + ":" + jdk.getArchitecture() + "@" + extension; } private static String groupName(Jdk jdk) {
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Sep 27 19:29:10 GMT 2021 - 7.6K bytes - Click Count (0) -
.teamcity/jdks.yaml
os: "macos" arch: "amd64" vendor: "temurin" version: "jdk-21.0.10+7" sha256: "7484d5d4cdb02fc17a842ab86ddac2524a0365066659c46b2e258c64152379cd" - params: - "macos.java8.zulu.aarch64" os: "macos" arch: "aarch64" vendor: "zulu" version: "zulu8.78.0.19-ca-jdk8.0.412" - params: - "macos.java11.openjdk.aarch64" os: "macos" arch: "aarch64"
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) -
.github/workflows/update-jdks.yml
sed -n '/^version:/,$p' .teamcity/jdks.yaml >> .teamcity/jdks.yaml.tmp mv .teamcity/jdks.yaml.tmp .teamcity/jdks.yaml - name: Create Pull Request id: create-pull-request uses: peter-evans/create-pull-request@v8 with: signoff: true sign-commits: true commit-message: "Update jdks.yaml" add-paths: .teamcity/jdks.yaml title: "Update jdks.yaml"
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Dec 09 22:14:16 GMT 2025 - 2.1K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/Jdk.java
} // internal, make this jdks configuration unmodifiable void finalizeValues() { if (version.isPresent() == false) { throw new IllegalArgumentException("version not specified for jdk [" + name + "]"); } if (platform.isPresent() == false) { throw new IllegalArgumentException("platform not specified for jdk [" + name + "]"); }Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Sep 27 19:29:10 GMT 2021 - 6.8K bytes - Click Count (0) -
build-tools-internal/src/main/groovy/elasticsearch.runtime-jdk-provision.gradle
if (BuildParams.getIsRuntimeJavaHomeSet()) { test.executable = "${BuildParams.runtimeJavaHome}/bin/java" } else { test.dependsOn(rootProject.jdks.provisioned_runtime) test.executable = rootProject.jdks.provisioned_runtime.getBinJavaPath() } }
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Sep 27 19:29:10 GMT 2021 - 1.4K bytes - Click Count (0) -
compat/maven-toolchain-builder/src/test/resources/org/apache/maven/toolchain/merge/toolchains-jdks.xml
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.3K bytes - Click Count (0) -
compat/maven-toolchain-builder/src/test/resources/org/apache/maven/toolchain/merge/toolchains-jdks-extra.xml
under the License. --> <toolchains> <toolchain> <type>jdk</type> <provides> <version>1.4</version> <vendor>sun</vendor> <!-- no id, so it's considered 'default' --> </provides> <configuration> <jdkHome>${env.JAVA_HOME}</jdkHome> </configuration> </toolchain> <toolchain> <type>jdk</type> <provides> <version>1.7</version>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.3K bytes - Click Count (0) -
compat/maven-toolchain-builder/src/test/resources/org/apache/maven/toolchain/merge/toolchains-jdks-extend.xml
under the License. --> <toolchains> <toolchain> <type>jdk</type> <provides> <version>1.5</version> <vendor>sun</vendor> </provides> <configuration> <jdkHome>${env.JAVA_HOME}</jdkHome> <toolsJar>lib/tools.jar</toolsJar> </configuration> </toolchain> <toolchain> <type>jdk</type> <provides> <version>1.6</version>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.4K bytes - Click Count (0) -
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) -
okhttp/src/jvmMain/kotlin/okhttp3/internal/platform/PlatformRegistry.kt
if (openJSSE != null) { return openJSSE } } // An Oracle JDK 9 like OpenJDK, or JDK 8 251+. val jdk9 = Jdk9Platform.buildIfSupported() if (jdk9 != null) { return jdk9 } // An Oracle JDK 8 like OpenJDK, pre 251. val jdkWithJettyBoot = Jdk8WithJettyBootPlatform.buildIfSupported() if (jdkWithJettyBoot != null) {Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu May 22 14:39:30 GMT 2025 - 2.1K bytes - Click Count (0)