Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for becomesIdle (0.14 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

            then:
            daemons.daemon.becomesIdle()
            !output.contains("The Daemon will expire")
        }
    
        def "does not expire daemon when leak does not consume metaspace threshold"() {
            given:
            configureGarbageCollectionNonHeapEventsFor(256, 512, 5, 0)
    
            when:
            run "injectEvents"
    
            then:
            daemons.daemon.becomesIdle()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/NativeServicesIntegrationTest.groovy

            executer.requireIsolatedDaemons()
    
            when:
            executer.withArguments("-D$NATIVE_SERVICES_OPTION=$firstRunNativeServicesOption")
            succeeds()
    
            then:
            daemons.daemon.becomesIdle()
    
            when:
            executer.withArguments("-D$NATIVE_SERVICES_OPTION=$secondRunNativeServicesOption")
            succeeds()
    
            then:
            daemons.daemons.size() == expectedDaemonCount
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/ProcessCrashHandlingIntegrationTest.groovy

            daemons.daemon.assertBusy()
            client.kill()
    
            then:
            daemons.daemon.becomesCanceled()
    
            when:
            block.releaseAll()
    
            then:
            daemons.daemon.becomesIdle()
    
            and:
            daemons.daemon.log.contains(DaemonMessages.CANCELED_BUILD)
        }
    
        /**
         * When the daemon is started on *nix, we need to detach it from the terminal session of the parent process,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top