Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for finalizeValues (0.12 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/Jdk.java

                throw new IllegalArgumentException("architecture not specified for jdk [" + name + "]");
            }
            version.finalizeValue();
            platform.finalizeValue();
            vendor.finalizeValue();
            architecture.finalizeValue();
        }
    
        @Override
        public Iterator<File> iterator() {
            return configuration.iterator();
        }
    
    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)
  2. build-tools-internal/src/test/java/org/elasticsearch/gradle/DistributionDownloadPluginTests.java

            Platform platform,
            Boolean bundledJdk
        ) {
            ElasticsearchDistribution distribution = createDistro(project, name, version, type, platform, bundledJdk);
            distribution.finalizeValues();
            return distribution;
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 6.4K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/JdkDownloadPlugin.java

                configuration.getAttributes().attribute(jdkAttribute, true);
                Jdk jdk = new Jdk(name, configuration, project.getObjects());
                configuration.defaultDependencies(dependencies -> {
                    jdk.finalizeValues();
                    setupRepository(project, jdk);
                    dependencies.add(project.getDependencies().create(dependencyNotation(jdk)));
                });
                return 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)
Back to Top