Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for goroutineErr (0.28 sec)

  1. src/os/exec/exec.go

    			prefix: "exec: killing Cmd",
    			err:    killErr,
    		}
    	}
    
    	if c.goroutineErr != nil {
    		select {
    		case goroutineErr := <-c.goroutineErr:
    			// Forward goroutineErr only if we don't have reason to believe it was
    			// caused by a call to Cancel or Kill above.
    			if err == nil && !killed {
    				err = goroutineErr
    			}
    		default:
    			// Close the child process's I/O pipes, in case it abandoned some
    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. docs/debugging/pprofgoparser/main.go

    package main
    
    import (
    	"bufio"
    	"bytes"
    	"flag"
    	"fmt"
    	"log"
    	"math"
    	"os"
    	"path"
    	"regexp"
    	"strconv"
    	"strings"
    	"time"
    )
    
    var (
    	goroutinesRE, searchRE *regexp.Regexp
    
    	// User input flags
    	searchText           string
    	goTime, less, margin time.Duration
    )
    
    func init() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 06 11:43:16 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top