Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 15 of 15 for getGradle (0.05 seconds)

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

            DistributionDownloadPlugin distributionDownloadPlugin = project.getPlugins().apply(DistributionDownloadPlugin.class);
            Provider<DockerSupportService> dockerSupport = GradleUtils.getBuildService(
                project.getGradle().getSharedServices(),
                DockerSupportPlugin.DOCKER_SUPPORT_SERVICE_NAME
            );
            distributionDownloadPlugin.setDockerAvailability(
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Aug 20 19:11:05 GMT 2021
    - 8.8K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalBwcGitPlugin.java

                        }
                        throw new GradleException("tests.bwc.git_fetch_latest must be [true] or [false] but was [" + fetchProp + "]");
                    });
                fetchLatest.onlyIf(t -> project.getGradle().getStartParameter().isOffline() == false && gitFetchLatest.get());
                fetchLatest.dependsOn(addRemoteTaskProvider);
                fetchLatest.setWorkingDir(gitExtension.getCheckoutDir().get());
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 9.9K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ElasticsearchTestBasePlugin.java

                }
    
                // don't track these as inputs since they contain absolute paths and break cache relocatability
                File gradleUserHome = project.getGradle().getGradleUserHomeDir();
                nonInputProperties.systemProperty("gradle.user.home", gradleUserHome);
                // we use 'temp' relative to CWD since this is per JVM and tests are forbidden from writing to CWD
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 24 22:14:49 GMT 2021
    - 10.4K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/info/GlobalBuildInfoPlugin.java

            });
    
            // Enforce the minimum compiler version
            assertMinimumCompilerVersion(minimumCompilerVersion);
    
            // Print global build info header just before task execution
            project.getGradle().getTaskGraph().whenReady(graph -> logGlobalBuildInfo());
        }
    
        private String formatJavaVendorDetails(JvmInstallationMetadata runtimeJdkMetaData) {
            JvmVendor vendor = runtimeJdkMetaData.getVendor();
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 17 10:02:58 GMT 2021
    - 18.1K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/DistroTestPlugin.java

            project.getPluginManager().apply("elasticsearch.build");
    
            Provider<DockerSupportService> dockerSupport = GradleUtils.getBuildService(
                project.getGradle().getSharedServices(),
                DockerSupportPlugin.DOCKER_SUPPORT_SERVICE_NAME
            );
    
            // TODO: it would be useful to also have the SYSTEM_JAVA_HOME setup in the root project, so that running from GCP only needs
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 28 21:31:21 GMT 2021
    - 23.1K bytes
    - Click Count (0)
Back to Top