Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 945 for homes (0.05 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/InitScriptExecutionIntegrationTest.groovy

        def "executes init.gradle from user home dir"() {
            given:
            executer.requireOwnGradleUserHomeDir()
    
            and:
            executer.gradleUserHomeDir.file('init.gradle') << 'println "greetings from user home"'
    
            when:
            run()
    
            then:
            output.contains("greetings from user home")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    Please use the <<gradle_wrapper.adoc#sec:upgrading_wrapper,Gradle Wrapper>> to upgrade Gradle.
    
    Android Studio comes with a working installation of Gradle, so you *don't need to install Gradle separately when only working within that IDE*.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts

                    configurations["${prefix}TestDistributionRuntimeClasspath"]
                }
            }
            // Set the base user home dir to be share by integration tests.
            // The actual user home dir will be a subfolder using the name of the distribution.
            gradleUserHomeDir = intTestHomeDir
            // The user home dir is not wiped out by clean. Move the daemon working space underneath the build dir so they don't pile up on CI.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 14:05:00 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. release/downloadIstioCtl.sh

    fi
    
    printf "%s download complete!\n" "${filename}"
    
    # setup istioctl
    mkdir -p "$HOME/.istioctl/bin"
    mv "${tmp}/istioctl" "$HOME/.istioctl/bin/istioctl"
    chmod +x "$HOME/.istioctl/bin/istioctl"
    rm -r "${tmp}"
    
    # Print message
    printf "\n"
    printf "Add the istioctl to your path with:"
    printf "\n"
    printf "  export PATH=\$HOME/.istioctl/bin:\$PATH \n"
    printf "\n"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r10rc1/PassingCommandLineArgumentsCrossVersionSpec.groovy

        }
    
        def "can overwrite gradle user home via system property build argument"() {
            given:
            file('.myGradle').createDir()
            file('build.gradle') << "assert gradle.gradleUserHomeDir.name.endsWith('.myGradle')"
            toolingApi.requireIsolatedDaemons()
    
            when:
            withConnection {
                it.newBuild().withArguments('-Dgradle.user.home=.myGradle').run()
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestGradleDistribution.groovy

    import org.gradle.test.fixtures.file.TestDirectoryProvider
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.util.internal.GFileUtils
    
    /**
     * Gradle's performance slightly depends on the length of the Gradle home path. This
     * class ensures fairness between the version under development and the baseline versions,
     * which live at different depth inside the Gradle repository.
     */
    @CompileStatic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/LayoutToPropertiesConverterTest.groovy

            gradleHome.file("gradle.properties") << "foo=bar"
    
            then:
            converter.convert(properties, layout).properties.foo == null
        }
    
        def "configures from installation home dir"() {
            when:
            def properties = properties()
            def layout = layout(properties)
            rootDir.file("settings.gradle") << ''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/fixtures/groovy/src/test/java/com/acme/FamilyTest.java

    import static org.junit.Assert.*;
    import static com.acme.Simpsons.*;
    
    public class FamilyTest {
        @Test
        public void testFamily() {
            Family family = new Family(
                homer(),
                marge(),
                bart(),
                named("elisabeth marie"),
                of(ImmutablePair.of("Margaret Eve", "Simpson"))
            );
            System.out.println("family = " + family);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 683 bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/lifecycle/MavenExecutionPlanTest.java

            assertNull(beerPhase);
        }
    
        @Test
        void testFindLastInPhaseMisc() throws Exception {
            MavenExecutionPlan plan = LifecycleExecutionPlanCalculatorStub.getProjectAExecutionPlan();
    
            assertNull(plan.findLastInPhase("pacXkage"));
            // Beer comes straight after package in stub, much like real life.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiAuthenticationIntegrationTest.groovy

                        "({languageVersion=99, vendor=matching('exotic'), implementation=vendor-specific}) from '$archiveUri', " +
                        "due to: Unpacked JDK archive does not contain a Java home: " + temporaryFolder.testDirectory.file("user-home", ".tmp", "jdks", "toolchain"))
        }
    
        def "can download with basic authentication"() {
            settingsFile <<
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:25 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top