Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for requireIsolatedDaemons (0.32 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/launcher/daemon/ClassLoaderLeakAvoidanceSoakTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class ClassLoaderLeakAvoidanceSoakTest extends AbstractIntegrationSpec {
    
        def setup() {
            executer.requireDaemon().requireIsolatedDaemons()
        }
    
        def "convention mapping does not leak old classloaders"() {
            given:
            def myTask = file("buildSrc/src/main/groovy/MyTask.groovy") << """
                import org.gradle.api.*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/PluginBinaryCompatibilityCrossVersionSpec.groovy

    }
    
    apply plugin: SomePlugin
    """
    
            expect:
            version previous withTasks 'assemble' inDirectory(file("producer")) run()
            version current withTasks 'tasks' requireDaemon() requireIsolatedDaemons() run()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/TaskTransitiveSubclassingBinaryCompatibilityCrossVersionSpec.groovy

                    }
                }
            """
    
            expect:
            version previous withTasks 'publish' inDirectory(file("plugin")) run()
            version current requireDaemon() requireIsolatedDaemons() withTasks 'sofExec' run()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ContinuousBuildFileWatchingIntegrationTest.groovy

    class ContinuousBuildFileWatchingIntegrationTest extends AbstractContinuousIntegrationTest implements FileSystemWatchingFixture {
    
        def setup() {
            executer.requireIsolatedDaemons()
        }
    
        def "file system watching picks up changes causing a continuous build to rebuild"() {
            given:
            // Do not drop the VFS in the first build, since there is only one continuous build invocation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/AbstractWrapperIntegrationSpec.groovy

                executer.withArgument(it)
            }
            executer.run()
        }
    
        GradleExecuter getWrapperExecuter() {
            executer.requireOwnGradleUserHomeDir()
            executer.requireIsolatedDaemons()
            executer.beforeExecute {
                executer.usingExecutable("gradlew")
            }
            return executer
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/AntBuilderLoggingIntegrationTest.groovy

    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache.Skip.INVESTIGATE
    
    class AntBuilderLoggingIntegrationTest extends AbstractIntegrationSpec {
        def setup() {
            executer.requireIsolatedDaemons()
            buildFile """
                ant.saveStreams = false
                task antTest {
                    doLast {
                        ant.echo(message: "VERBOSE message", level: "verbose")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-main/src/crossVersionTest/groovy/org/gradle/integtests/wrapper/AbstractWrapperCrossVersionIntegrationTest.groovy

            // the installed distro is deleted at the end of this test
            executer.requireIsolatedDaemons()
            return executer
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/integtests/GroovyToJavaConversionIntegrationTest.groovy

    class GroovyToJavaConversionIntegrationTest extends AbstractIntegrationSpec {
    
        def "For every boolean is getter there is a get Getter"() {
            given:
            executer.requireDaemon().requireIsolatedDaemons() // We need to fork - if we do not fork Class-Decoration does not happen
    
            when:
            def convertedClasses = this.getClass().getResource( '/org/gradle/initialization/converted-types.txt' ).readLines()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractProjectRelocationIntegrationTest.groovy

            setupProjectIn(relocatedDir)
    
            //We'll delete the relocated Java home of this daemon, which will make it unusable for future builds
            executer.requireDaemon().requireIsolatedDaemons()
    
            when: "task is built in the original location"
            inDirectory(originalDir)
            executer.withJavaHome(originalJavaHome)
            withBuildCache().run taskName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-groovy/src/crossVersionTest/groovy/org/gradle/integtests/StaticGroovyTaskSubclassingBinaryCompatibilityCrossVersionSpec.groovy

                }
    
                task task(type: SubclassTask)
            """
    
            then:
            version previous withTasks 'assemble' inDirectory(file("producer")) run()
            version current requireDaemon() requireIsolatedDaemons() withTasks 'task' run()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:37:02 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top