Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for intraline (0.14 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/counter/stackcounter.go

    		if fr.Func != nil {
    			// Use function-relative line numbering.
    			// f:+2 means two lines into function f.
    			// f:-1 should never happen, but be conservative.
    			_, entryLine := fr.Func.FileLine(fr.Entry)
    			loc = fmt.Sprintf("%s.%s:%+d", path, fname, fr.Line-entryLine)
    		} else {
    			// The function is non-Go code or is fully inlined:
    			// use absolute line number within enclosing file.
    			loc = fmt.Sprintf("%s.%s:=%d", path, fname, fr.Line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug_test.go

    	}
    	return s.readSimpleExpecting(expectRE)
    }
    
    func (s *ioState) readExpecting(millis, interlineTimeout int, expectedRE string) tstring {
    	timeout := time.Millisecond * time.Duration(millis)
    	interline := time.Millisecond * time.Duration(interlineTimeout)
    	s.last = tstring{}
    	var re *regexp.Regexp
    	if expectedRE != "" {
    		re = regexp.MustCompile(expectedRE)
    	}
    loop:
    	for {
    		var timer <-chan time.Time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top