Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for becomesCanceled (0.19 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonFixture.java

         */
        void assertCanceled();
    
        /**
         * Asserts that this daemon becomes canceled within a short timeout. Blocks until this has happened.
         */
        DaemonFixture becomesCanceled();
    
        /**
         * Asserts that this daemon has stopped and is no longer visible to any clients.
         */
        void assertStopped();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/AbstractDaemonFixture.groovy

        void assertStopped() {
            assertHasState(Stopped)
        }
    
        @Override
        void assertCanceled() {
            assertHasState(Canceled)
        }
    
        @Override
        DaemonFixture becomesCanceled() {
            waitForState(Canceled)
            this
        }
    
        protected abstract void waitForState(State state)
    
        protected abstract void assertHasState(State state)
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top