Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for cancelling (0.14 sec)

  1. src/os/exec/exec.go

    			// (Perhaps c.Wait hadn't been called, or perhaps it happened to race with
    			// c.ctx being canceled.) Don't inject a needless error.
    		} else {
    			err = wrappedError{
    				prefix: "exec: canceling Cmd",
    				err:    interruptErr,
    			}
    		}
    	}
    	if c.WaitDelay == 0 {
    		resultc <- ctxResult{err: err}
    		return
    	}
    
    	timer := time.NewTimer(c.WaitDelay)
    	select {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. src/os/exec/exec_test.go

    			// Panic instead of calling t.Fatal so that we get a goroutine dump.
    			// We want to know exactly what the os/exec goroutines got stuck on.
    			debug.SetTraceback("system")
    			panic("canceling context did not stop program")
    		}
    
    		// Back off exponentially (up to 1-second sleeps) to give the OS time to
    		// terminate the process.
    		delay *= 2
    		if delay > 1*time.Second {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
Back to top