Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for translateCPUProfile (0.19 sec)

  1. src/runtime/pprof/proto_test.go

    	"runtime"
    	"strings"
    	"testing"
    	"unsafe"
    )
    
    // translateCPUProfile parses binary CPU profiling stack trace data
    // generated by runtime.CPUProfile() into a profile struct.
    // This is only used for testing. Real conversions stream the
    // data into the profileBuilder as it becomes available.
    //
    // count is the number of records in data.
    func translateCPUProfile(data []uint64, count int) (*profile.Profile, error) {
    	var buf bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    // involved in recursion but that may not be true in the future compilers. This
    // tests such cases by using fake call sequences and forcing the profile build
    // utilizing translateCPUProfile defined in proto_test.go
    func TestTryAdd(t *testing.T) {
    	if _, found := findInlinedCall(inlinedCallerDump, 4<<10); !found {
    		t.Skip("Can't determine whether anything was inlined into inlinedCallerDump.")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top