Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for stopDaemons (0.2 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonLifecycleSpec.groovy

            then:
            idle()
    
            when:
            stopDaemons()
    
            then:
            stopped()
        }
    
        def "stopping daemon that is building shows message"() {
            when:
            startBuild()
    
            then:
            waitForBuildToWait()
    
            when:
            stopDaemons()
    
            then:
            waitForLifecycleLogToContain(HandleStop.EXPIRATION_REASON)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/AbstractScriptCachingIntegrationTest.kt

        @Before
        fun isolatedDaemons() {
            executer.apply {
                requireDaemon()
                requireIsolatedDaemons()
            }
        }
    
        @After
        fun stopDaemons() {
            build("--stop")
        }
    
        protected
        fun buildForCacheInspection(vararg arguments: String): ExecutionResult =
            executerForCacheInspection(*arguments).run()
    
        protected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/AbstractDaemonLifecycleSpec.groovy

            run {
                poll(BUILD_EXECUTION_TIMEOUT) { assert builds[buildNum].standardOutput.contains(expected) }
            }
        }
    
        void stopDaemons() {
            run { stopDaemonsNow() }
        }
    
        void stopDaemonsNow() {
            executer.withArguments("--stop", "--info")
            if (javaHome) {
                executer.withJavaHome(javaHome)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top