Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 5,566 for Executer (0.12 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/buildinit/JavaApplicationInitSoakTest.groovy

            given:
            useTestDirectoryThatIsNotEmbeddedInAnotherBuild()
            executer.beforeExecute {
                requireOwnGradleUserHomeDir()
            }
    
            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")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

                plugins {
                    id("java")
                    id("idea")
                }
            """
    
            //given
            executer.withTasks('idea').run()
            def projectContent = getFile([:], 'master.ipr').text
            def moduleContent = getFile([:], 'master.iml').text
    
            executer.withTasks('idea').run()
            def projectContentAfterMerge = getFile([:], 'master.ipr').text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/WatchedDirectoriesFileSystemWatchingIntegrationTest.groovy

    import com.google.common.collect.ImmutableSet
    import com.gradle.develocity.testing.annotations.LocalOnly
    import org.apache.commons.io.FileUtils
    import org.gradle.cache.GlobalCacheLocations
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.internal.service.scopes.VirtualFileSystemServices
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesApplicationIntegrationTest.groovy

        @Rule Sample sample = new Sample(temporaryFolder, 'java/application')
    
        def setup() {
            executer.withRepositoryMirrors()
        }
    
        def "can run the application using run task with #dsl dsl"() {
            when:
            executer.inDirectory(sample.dir.file(dsl))
            succeeds('run')
    
            then:
            outputContains('Greetings from the sample application.')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/integTest/groovy/org/gradle/testing/TestExecutionBuildOperationsIntegrationTest.groovy

        @Rule
        final TestResources resources = new TestResources(testDirectoryProvider)
    
        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        def "emitsBuildOperationsForJUnitTests"() {
            given:
            executer.withRepositoryMirrors()
    
            when:
            run "test"
    
            then: "test build operations are emitted in expected hierarchy"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/console/AbstractExecOutputIntegrationTest.groovy

                            classpath = sourceSets.main.runtimeClasspath
                            mainClass = 'Main'
                        }
                    }
                }
            """
    
            when:
            executer.withConsole(consoleType)
            succeeds("run")
    
            then:
            def output = result.groupedOutput.task(':run').output
            output.contains(EXPECTED_OUTPUT)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/artifactreuse/ResolutionOverrideIntegrationTest.groovy

            module.pom.sha1.expectGet()
            module.pom.expectGet()
            module.artifact.expectHead()
            module.artifact.sha1.expectGet()
            module.artifact.expectGet()
    
            and:
            executer.withArguments(arg)
            succeeds 'retrieve'
    
            then:
            file('libs/projectA-1.2.jar').assertIsCopyOf(module.artifactFile).assertHasChangedSince(snapshot)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/outputorigin/BuildCacheOutputOriginIntegrationTest.groovy

        @Rule
        public final ScopeIdsFixture scopeIds = new ScopeIdsFixture(executer, temporaryFolder)
    
        @Rule
        public final OriginFixture outputOrigin = new OriginFixture(executer, temporaryFolder)
    
        @Delegate
        @Rule
        public final BuildCacheKeyFixture buildCacheKeyFixture = new BuildCacheKeyFixture(executer, temporaryFolder)
    
        String getBuildInvocationId() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 14:10:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesDuringTheBuildFileSystemWatchingIntegrationTest.groovy

        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
    
        VerboseVfsLogAccessor vfsLogs
    
        def setup() {
            executer.requireDaemon()
            executer.beforeExecute {
                vfsLogs = enableVerboseVfsLogs()
            }
            server.start()
            settingsFile  << """
                import org.gradle.internal.file.FileType
                import org.gradle.internal.snapshot.*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/SocksProxyResolveIntegrationTest.groovy

            proxyServer.configureProxy(executer)
            fails('listJars') // Don't have to succeed here, just record the attempt in the fake proxy and verify it
            then:
            result.assertTaskExecuted(":listJars")
            recordingServer.madeAnyConnection()
    
            when:
            proxyServer.stop()
            proxyServer.configureProxy(executer)
            fails('listJars', '--refresh-dependencies')
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top