Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 61 for requireIsolatedDaemons (0.49 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInjection.groovy

                    return "using client JVM args"
                }
    
                @Override
                void setup(AbstractConfigurationCacheIntegrationTest test) {
                    test.executer.requireDaemon().requireIsolatedDaemons()
                    test.executer.withCommandLineGradleOpts("-D${prop}=${value}")
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/initialization/InternalGradleFailuresIntegrationTest.groovy

    import org.gradle.integtests.fixtures.executer.ExecutionFailure
    
    class InternalGradleFailuresIntegrationTest extends AbstractIntegrationSpec {
    
        def setup() {
            executer.requireIsolatedDaemons()
            executer.requireOwnGradleUserHomeDir()
            executer.requireDaemon()
    
            buildScript """
                task hello() {
                    doLast {
                        println "Hello Gradle!"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:54 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top