Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for parseHeapSample (0.22 sec)

  1. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    		return "", 1, hasAlloc, nil
    	case "heap":
    		return "v2", period / 2, hasAlloc, nil
    	default:
    		return "", 0, false, errUnrecognized
    	}
    }
    
    // parseHeapSample parses a single row from a heap profile into a new Sample.
    func parseHeapSample(line string, rate int64, sampling string, includeAlloc bool) (value []int64, blocksize int64, addrs []uint64, err error) {
    	sampleData := heapSampleRE.FindStringSubmatch(line)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
Back to top