Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for runtimeProfile (6.08 sec)

  1. src/runtime/pprof/pprof.go

    	}
    
    	return printCountProfile(w, debug, name, &runtimeProfile{p, labels})
    }
    
    type runtimeProfile struct {
    	stk    []profilerecord.StackRecord
    	labels []unsafe.Pointer
    }
    
    func (p *runtimeProfile) Len() int              { return len(p.stk) }
    func (p *runtimeProfile) Stack(i int) []uintptr { return p.stk[i].Stack }
    func (p *runtimeProfile) Label(i int) *labelMap { return (*labelMap)(p.labels[i]) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
Back to top