Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 228 for Jdk (0.01 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. build-tools-internal/src/main/groovy/elasticsearch.runtime-jdk-provision.gradle

    import org.elasticsearch.gradle.internal.info.BuildParams
    
    // gradle has an open issue of failing applying plugins in
    // precompiled script plugins (see https://github.com/gradle/gradle/issues/17004)
    // apply plugin: 'elasticsearch.jdk-download'
    
    jdks {
        provisioned_runtime {
            vendor = VersionProperties.bundledJdkVendor
            version = VersionProperties.bundledJdkVersion
            platform = OS.current().name().toLowerCase()
    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)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/Jdk.java

                throw new IllegalArgumentException("version not specified for jdk [" + name + "]");
            }
            if (platform.isPresent() == false) {
                throw new IllegalArgumentException("platform not specified for jdk [" + name + "]");
            }
            if (vendor.isPresent() == false) {
                throw new IllegalArgumentException("vendor 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)
  4. .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)
  5. 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)
  6. .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)
  7. compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/JdkVersionProfileActivator.java

                        .setLocation(activation.getLocation("jdk")));
                return false;
            }
    
            if (jdk.startsWith("!")) {
                return !version.startsWith(jdk.substring(1));
            } else if (isRange(jdk)) {
                try {
                    return isInRange(version, getRange(jdk));
                } catch (NumberFormatException e) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 6.6K bytes
    - Click Count (0)
  8. Jenkinsfile

     *
     * mavenBuild("<jdk>", "<profiles> <goals> <plugins> <properties>"
     *
     * @param jdk the jdk tool name (in jenkins) to use for this build
     * @param extraArgs extra command line args
     */
    def mavenBuild(jdk, extraArgs) {
      script {
        try {
          withEnv(["JAVA_HOME=${tool "$jdk"}",
                   "PATH+MAVEN=${tool "$jdk"}/bin:${tool "maven_3_latest"}/bin",
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Mon Jan 26 16:20:31 GMT 2026
    - 2K bytes
    - Click Count (0)
  9. apache-maven/src/assembly/maven/conf/toolchains.xml

        </provides>
        <configuration/>
      </toolchain>
    
       | JDK examples
    
      <toolchain>
        <type>jdk</type>
        <provides>
          <version>1.5</version>
          <vendor>sun</vendor>
        </provides>
        <configuration>
          <jdkHome>/path/to/jdk/1.5</jdkHome>
        </configuration>
      </toolchain>
      <toolchain>
        <type>jdk</type>
        <provides>
          <version>1.6</version>
          <vendor>sun</vendor>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Aug 22 14:47:43 GMT 2024
    - 3.6K bytes
    - Click Count (0)
  10. 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)
Back to Top