Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 874 for installations (0.31 sec)

  1. .teamcity/src/main/kotlin/common/performance-test-extensions.kt

        "-PtestJavaVersion=$testJavaVersion",
        "-PtestJavaVendor=$testJavaVendor",
        "-PautoDownloadAndroidStudio=true",
        "-PrunAndroidStudioInHeadlessMode=true",
        "-Porg.gradle.java.installations.auto-download=false",
        os.javaInstallationLocations(arch)
    ) + listOf(
        "-Porg.gradle.performance.branchName" to "%teamcity.build.branch%",
        "-Porg.gradle.performance.db.url" to "%performance.db.url%",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. samples/multicluster/gen-eastwest-gateway.sh

          shift 2
        ;;
        --revision)
          REVISION=$2
          shift 2
        ;;
        -*)
          echo "Error: Unsupported flag $1" >&2
          exit 1
          ;;
      esac
    done
    
    
    # single-cluster installations may need this gateway to allow VMs to get discovery
    # for non-single cluster, we add additional topology information
    SINGLE_CLUSTER="${SINGLE_CLUSTER:-0}"
    if [[ "${SINGLE_CLUSTER}" -eq 0 ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 04 02:52:25 UTC 2021
    - 3K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainUpToDateIntegrationTest.groovy

                    }
                }
            """
        }
    
        def runWithToolchainConfigured(Jvm jvm) {
            result = executer
                .withArgument("-Porg.gradle.java.installations.paths=" + jvm.javaHome.absolutePath)
                .withTasks("check", "javadoc")
                .run()
        }
    
        private static String testClass(String className) {
            return """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinDslJvmTargetIntegrationTest.kt

            gradleExecuterFor(arrayOf("check", "publish"), rootDir = file("plugin"))
                .withJavaHome(currentJvm.javaHome)
                .withArgument("-Porg.gradle.java.installations.paths=$installationPaths")
                .run()
    
            withSettingsIn("consumer", """
                pluginManagement {
                    repositories {
                        maven(url = "${mavenRepo.uri}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 08:31:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/DaemonJavaCompilerIntegrationTest.groovy

                assert configurations.runtimeClasspath.attributes.getAttribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE) == ${javaVersion}
            """
    
            expect:
            executer.withArgument("-Porg.gradle.java.installations.paths=" + jdk.javaHome.absolutePath)
            succeeds("compileJava")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/maven/conf/toolchains.xml

     |                 installation). It's normally provided in
     |                 ${maven.conf}/toolchains.xml.
     |
     |                 NOTE: This location can be overridden with the CLI option:
     |
     |                 -gt /path/to/global/toolchains.xml
     |
     | The sections in this sample file are intended to give you a running start at
     | getting the most out of your Maven installation.
     |-->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonToolchainCoexistWithCurrentOptionsIntegrationTest.groovy

            given:
            def otherJvm = AvailableJavaHomes.differentVersion
            writeJvmCriteria(otherJvm)
            captureJavaHome()
            executer.withArgument("-Porg.gradle.java.installations.auto-detect=false")
    
            expect:
            withInstallations(otherJvm).succeeds("help")
            assertDaemonUsedJvm(otherJvm)
        }
    
        @Requires(IntegTestPreconditions.JavaHomeWithDifferentVersionAvailable)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiClientJdkCompatibilityTest.groovy

            when:
            succeeds("runTask",
                "-PclientJdk=" + clientJdkVersion.majorVersion,
                "-PtargetJdk=" + gradleDaemonJdk.javaHome.absolutePath,
                "-Porg.gradle.java.installations.paths=${AvailableJavaHomes.getAvailableJvms().collect { it.javaHome.absolutePath }.join(",")}",
                "-PgradleVersion=" + gradleVersion)
    
            then:
            output.contains("BUILD SUCCESSFUL")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractGradleceptionSmokeTest.groovy

        public static final String TEST_BUILD_TIMESTAMP = "-PbuildTimestamp=" + newTimestamp()
        public static final String TEST_JAVA_INSTALLATIONS = "-Porg.gradle.java.installations.paths=${AvailableJavaHomes.getAvailableJvms().collect { it.javaHome.absolutePath }.join(",")}"
        private static final List<String> GRADLE_BUILD_TEST_ARGS = [TEST_BUILD_TIMESTAMP, TEST_JAVA_INSTALLATIONS]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/common/Os.kt

                        DefaultJvm(JvmVersion.java22, JvmVendor.openjdk),
                    )
            }.joinToString(",") { javaHome(it, this, arch) }
            return """"-Porg.gradle.java.installations.paths=$paths""""
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top