Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cancelBuild (0.1 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

            }
    
            0 * _._
        }
    
        def "cancelBuild when running command completes in short time"() {
            def command = Mock(Runnable)
    
            expect:
            notStopped
    
            when:
            coordinator.runCommand(command, "command")
            start {
                thread.blockUntil.running
                coordinator.cancelBuild()
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStateCoordinator.java

                    requestForcefulStop("the build was canceled after a stop was requested");
                }
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public void cancelBuild() {
            requestCancel();
    
            lock.lock();
            try {
                while (true) {
                    try {
                        switch (state) {
                            case Idle:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. src/context/x_test.go

    }
    
    func (ccc *customCauseContext) cancel() {
    	ccc.mu.Lock()
    	ccc.err = Canceled
    	close(ccc.done)
    	cancelChild := ccc.cancelChild
    	ccc.mu.Unlock()
    
    	if cancelChild != nil {
    		cancelChild()
    	}
    }
    
    func (ccc *customCauseContext) setCancelChild(cancelChild CancelFunc) {
    	ccc.cancelChild = cancelChild
    }
    
    func TestCustomContextCause(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top