Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for allocObjects (0.15 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"LockOSThread", Func, 0},
    		{"MemProfile", Func, 0},
    		{"MemProfileRate", Var, 0},
    		{"MemProfileRecord", Type, 0},
    		{"MemProfileRecord.AllocBytes", Field, 0},
    		{"MemProfileRecord.AllocObjects", Field, 0},
    		{"MemProfileRecord.FreeBytes", Field, 0},
    		{"MemProfileRecord.FreeObjects", Field, 0},
    		{"MemProfileRecord.Stack0", Field, 0},
    		{"MemStats", Type, 0},
    		{"MemStats.Alloc", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  3. 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)
  4. api/go1.txt

    pkg runtime, type Func struct
    pkg runtime, type MemProfileRecord struct
    pkg runtime, type MemProfileRecord struct, AllocBytes int64
    pkg runtime, type MemProfileRecord struct, AllocObjects int64
    pkg runtime, type MemProfileRecord struct, FreeBytes int64
    pkg runtime, type MemProfileRecord struct, FreeObjects int64
    pkg runtime, type MemProfileRecord struct, Stack0 [32]uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //
    // 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