Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for allocObjects (3 sec)

  1. src/runtime/pprof/pprof.go

    	b := bufio.NewWriter(w)
    	tw := tabwriter.NewWriter(b, 1, 8, 1, '\t', 0)
    	w = tw
    
    	var total runtime.MemProfileRecord
    	for i := range p {
    		r := &p[i]
    		total.AllocBytes += r.AllocBytes
    		total.AllocObjects += r.AllocObjects
    		total.FreeBytes += r.FreeBytes
    		total.FreeObjects += r.FreeObjects
    	}
    
    	// Technically the rate is MemProfileRate not 2*MemProfileRate,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    	si = sampleIndex(flagInUseObjects, si, "inuse_objects", "-inuse_objects", o.UI)
    	si = sampleIndex(flagAllocSpace, si, "alloc_space", "-alloc_space", o.UI)
    	si = sampleIndex(flagAllocObjects, si, "alloc_objects", "-alloc_objects", o.UI)
    	cfg.SampleIndex = si
    
    	if *flagMeanDelay {
    		cfg.Mean = true
    	}
    
    	source := &source{
    		Sources:            args,
    		ExecName:           execName,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    	}
    }
    
    var heapzSampleTypes = [][]string{
    	{"allocations", "size"}, // early Go pprof profiles
    	{"objects", "space"},
    	{"inuse_objects", "inuse_space"},
    	{"alloc_objects", "alloc_space"},
    	{"alloc_objects", "alloc_space", "inuse_objects", "inuse_space"}, // Go pprof legacy profiles
    }
    var contentionzSampleTypes = [][]string{
    	{"contentions", "delay"},
    }
    
    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