Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for inuse_space (0.22 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/runtime/pprof/protomem.go

    	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 != "" {
    		b.pb.int64Opt(tagProfile_DefaultSampleType, b.stringIndex(defaultSampleType))
    	}
    
    	values := []int64{0, 0, 0, 0}
    	var locs []uint64
    	for _, r := range p {
    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. src/runtime/pprof/protomem_test.go

    	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},
    			Location: []*profile.Location{
    				{ID: 1, Mapping: map1, Address: addr1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    				if value != "java" {
    					return nil, errUnrecognized
    				}
    			case "heap/resolution":
    				p.SampleType = []*ValueType{
    					{Type: "inuse_objects", Unit: "count"},
    					{Type: "inuse_space", Unit: value},
    				}
    			case "contention/resolution":
    				p.SampleType = []*ValueType{
    					{Type: "contentions", Unit: "count"},
    					{Type: "delay", Unit: value},
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.23.md

    - Migrated pkg/proxy/winuserspace to structured logging ([#105035](https://github.com/kubernetes/kubernetes/pull/105035), [@shivanshu1333](https://github.com/shivanshu1333))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
Back to top