Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CloseAndWait (0.16 sec)

  1. src/cmd/go/internal/script/engine.go

    //
    // If the script runs to completion or ends by a 'stop' command,
    // Execute returns nil.
    //
    // Execute does not stop background commands started by the script
    // before returning. To stop those, use [State.CloseAndWait] or the
    // [Wait] command.
    func (e *Engine) Execute(s *State, file string, script *bufio.Reader, log io.Writer) (err error) {
    	defer func(prev *Engine) { s.engine = prev }(s.engine)
    	s.engine = e
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
Back to top