Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 668 for installations (0.47 sec)

  1. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/internal/services/ProviderBackedToolchainConfiguration.java

        }
    
        @Override
        public void setJavaInstallationsFromEnvironment(Collection<String> installations) {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public Collection<String> getInstallationsFromPaths() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

            val linuxPaths =
                "-Porg.gradle.java.installations.paths=%linux.java7.oracle.64bit%,%linux.java8.oracle.64bit%,%linux.java11.openjdk.64bit%,%linux.java17.openjdk.64bit%,%linux.java21.openjdk.64bit%,%linux.java22.openjdk.64bit%"
            val windowsPaths =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. .teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt

                "-PtestJavaVendor=openjdk",
                "-PautoDownloadAndroidStudio=true",
                "-PrunAndroidStudioInHeadlessMode=true",
                "-Porg.gradle.java.installations.auto-download=false",
                "\"-Porg.gradle.java.installations.paths=%linux.java7.oracle.64bit%,%linux.java8.oracle.64bit%,%linux.java11.openjdk.64bit%,%linux.java17.openjdk.64bit%,%linux.java21.openjdk.64bit%,%linux.java22.openjdk.64bit%\"",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. testing/soak/src/integTest/groovy/org/gradle/buildinit/JavaApplicationInitSoakTest.groovy

            }
    
            when:
            succeeds('init', '--type', 'java-application', '--dsl', 'groovy')
    
            and:
            executer.withArgument("-Porg.gradle.java.installations.auto-detect=false")
            executer.withArgument("-Porg.gradle.java.installations.auto-download=true")
            succeeds('run')
    
            then:
            outputContains("Hello World!")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AvailableJavaHomes.java

    /**
     * Allows the tests to get hold of an alternative Java installation when needed.
     */
    public abstract class AvailableJavaHomes {
    
        private static final Supplier<List<JvmInstallationMetadata>> INSTALLATIONS = Suppliers.memoize(AvailableJavaHomes::discoverLocalInstallations);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/InvalidJvmInstallationReportingIntegrationTest.groovy

                    .run()
            }
    
            then: "invalid JVM installation warning should be printed in every build"
            results.size() == 2
            results.every { result ->
                def expectedErrorMessages = [invalidJdkHome1, invalidJdkHome2].collect {
                    "Invalid Java installation found at '${it.canonicalPath}' (Gradle property 'org.gradle.java.installations.paths'). " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/BuildDistributions.kt

            model,
            this,
            "packageBuild",
            extraParameters = buildScanTag("BuildDistributions") +
                " -PtestJavaVersion=${LINUX.buildJavaVersion.major}" +
                " -Porg.gradle.java.installations.auto-download=false"
        )
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        artifactRules = """$artifactRules
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:52:00 UTC 2023
    - 970 bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryServiceTest.groovy

            return new DaemonJavaToolchainQueryService(createInstallationRegistry(installations, detector), currentJavaHomePath)
        }
    
        private def createInstallationRegistry(Collection<String> locations, JvmMetadataDetector detector) {
            def installations = locations.collect {
                def location = locationFor(it)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. releasenotes/notes/47269.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    
    issue:
      - 47269
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 11:41:38 UTC 2023
    - 246 bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/LocationListInstallationSupplier.java

            return property.stream()
                .filter(path -> !path.trim().isEmpty())
                .map(this::asInstallations).collect(Collectors.toSet());
        }
    
        private InstallationLocation asInstallations(String candidate) {
            return InstallationLocation.userDefined(fileResolver.resolve(candidate), getSourceName());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top