Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for intraline (0.38 sec)

  1. src/internal/coverage/defs.go

    // units are either "simple" or "intraline"; a "simple" coverable unit
    // corresponds to a basic block (region of straight-line code with no
    // jumps or control transfers). An "intraline" unit corresponds to a
    // logical clause nested within some other simple unit. A simple unit
    // will have a zero Parent value; for an intraline unit NxStmts will
    // be zero and Parent will be set to 1 plus the index of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. 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)
  3. 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