Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for inuse_space (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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