Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for alloc_space (0.46 sec)

  1. src/runtime/pprof/protomem_test.go

    	}
    
    	periodType := &profile.ValueType{Type: "space", Unit: "bytes"}
    	sampleType := []*profile.ValueType{
    		{Type: "alloc_objects", Unit: "count"},
    		{Type: "alloc_space", Unit: "bytes"},
    		{Type: "inuse_objects", Unit: "count"},
    		{Type: "inuse_space", Unit: "bytes"},
    	}
    	samples := []*profile.Sample{
    		{
    			Value: []int64{2050, 2099200, 1537, 1574400},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/runtime/pprof/protomem.go

    	b := newProfileBuilder(w)
    	b.pbValueType(tagProfile_PeriodType, "space", "bytes")
    	b.pb.int64Opt(tagProfile_Period, rate)
    	b.pbValueType(tagProfile_SampleType, "alloc_objects", "count")
    	b.pbValueType(tagProfile_SampleType, "alloc_space", "bytes")
    	b.pbValueType(tagProfile_SampleType, "inuse_objects", "count")
    	b.pbValueType(tagProfile_SampleType, "inuse_space", "bytes")
    	if defaultSampleType != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. hack/grab-profiles.sh

          mem_pprof_flags="inuse_objects ${mem_pprof_flags}"
          ;;
        --alloc-space)
          shift
          requested_profiles="mem ${requested_profiles}"
          mem_pprof_flags="alloc_space ${mem_pprof_flags}"
          ;;
        --alloc-objects)
          shift
          requested_profiles="mem ${requested_profiles}"
          mem_pprof_flags="alloc_objects ${mem_pprof_flags}"
          ;;
        --cpu)
          shift
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 17 06:47:05 UTC 2021
    - 8.4K bytes
    - Viewed (0)
Back to top