Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for inuse_space (0.13 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    	si = sampleIndex(flagMeanDelay, si, "delay", "-mean_delay", o.UI)
    	si = sampleIndex(flagContentions, si, "contentions", "-contentions", o.UI)
    	si = sampleIndex(flagInUseSpace, si, "inuse_space", "-inuse_space", o.UI)
    	si = sampleIndex(flagInUseObjects, si, "inuse_objects", "-inuse_objects", o.UI)
    	si = sampleIndex(flagAllocSpace, si, "alloc_space", "-alloc_space", o.UI)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    	}
    
    	if hasAlloc {
    		// Put alloc before inuse so that default pprof selection
    		// will prefer inuse_space.
    		p.SampleType = []*ValueType{
    			{Type: "alloc_objects", Unit: "count"},
    			{Type: "alloc_space", Unit: "bytes"},
    			{Type: "inuse_objects", Unit: "count"},
    			{Type: "inuse_space", Unit: "bytes"},
    		}
    	} else {
    		p.SampleType = []*ValueType{
    			{Type: "objects", Unit: "count"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  3. src/internal/profile/profile.go

    	dropFramesX        int64
    	keepFramesX        int64
    	stringTable        []string
    	defaultSampleTypeX int64
    }
    
    // ValueType corresponds to Profile.ValueType
    type ValueType struct {
    	Type string // cpu, wall, inuse_space, etc
    	Unit string // seconds, nanoseconds, bytes, etc
    
    	typeX int64
    	unitX int64
    }
    
    // Sample corresponds to Profile.Sample
    type Sample struct {
    	Location []*Location
    	Value    []int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof.go

    //
    // The heap profile tracks both the allocation sites for all live objects in
    // the application memory and for all objects allocated since the program start.
    // Pprof's -inuse_space, -inuse_objects, -alloc_space, and -alloc_objects
    // flags select which to display, defaulting to -inuse_space (live objects,
    // scaled by size).
    //
    // # Allocs profile
    //
    // The allocs profile is the same as the heap profile but changes the default
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    	dropFramesX        int64
    	keepFramesX        int64
    	stringTable        []string
    	defaultSampleTypeX int64
    }
    
    // ValueType corresponds to Profile.ValueType
    type ValueType struct {
    	Type string // cpu, wall, inuse_space, etc
    	Unit string // seconds, nanoseconds, bytes, etc
    
    	typeX int64
    	unitX int64
    }
    
    // Sample corresponds to Profile.Sample
    type Sample struct {
    	Location []*Location
    	Value    []int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    	// Run with:
    	// go test ./plugin/pkg/auth/authorizer/node -benchmem -bench . -run None -v -o node.test -timeout 300m
    
    	// Evaluate retained memory with:
    	// go tool pprof --inuse_space node.test plugin/pkg/auth/authorizer/node/BenchmarkPopulationRetention.profile
    	// list populate
    
    	opts := &sampleDataOpts{
    		nodes:                  500,
    		namespaces:             200,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
Back to top