Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for alloc_space (0.11 sec)

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

    	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)
    	si = sampleIndex(flagAllocObjects, si, "alloc_objects", "-alloc_objects", o.UI)
    	cfg.SampleIndex = si
    
    	if *flagMeanDelay {
    		cfg.Mean = true
    	}
    
    	source := &source{
    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_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)
  3. 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)
  4. 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)
  5. 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)
  6. src/runtime/pprof/pprof.go

    // 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
    // pprof display to -alloc_space, the total number of bytes allocated since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  7. src/runtime/crash_test.go

    	}
    	fn := strings.TrimSpace(string(got))
    	defer os.Remove(fn)
    
    	for try := 0; try < 2; try++ {
    		cmd := testenv.CleanCmdEnv(exec.Command(testenv.GoToolPath(t), "tool", "pprof", "-alloc_space", "-top"))
    		// Check that pprof works both with and without explicit executable on command line.
    		if try == 0 {
    			cmd.Args = append(cmd.Args, exe, fn)
    		} else {
    			cmd.Args = append(cmd.Args, fn)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    and flags that apply to the resulting test binary.
    
    Several of the flags control profiling and write an execution profile
    suitable for "go tool pprof"; run "go tool pprof -h" for more
    information. The --alloc_space, --alloc_objects, and --show_bytes
    options of pprof control how the information is presented.
    
    The following flags are recognized by the 'go test' command and
    control the execution of any test:
    
    	-bench regexp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // and flags that apply to the resulting test binary.
    //
    // Several of the flags control profiling and write an execution profile
    // suitable for "go tool pprof"; run "go tool pprof -h" for more
    // information. The --alloc_space, --alloc_objects, and --show_bytes
    // options of pprof control how the information is presented.
    //
    // The following flags are recognized by the 'go test' command and
    // control the execution of any test:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top