Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MemProfileRate (0.22 sec)

  1. src/cmd/go/alldocs.go

    //	    Writes test binary as -c would.
    //
    //	-memprofilerate n
    //	    Enable more precise (and expensive) memory allocation profiles by
    //	    setting runtime.MemProfileRate. See 'go doc runtime.MemProfileRate'.
    //	    To profile all memory allocations, use -test.memprofilerate=1.
    //
    //	-mutexprofile mutex.out
    //	    Write a mutex contention profile to the specified file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    	// if disableMemoryProfiling is set, update MemProfileRate to 0 to turn off memprofile.
    	// Note: parsedebugvars may update MemProfileRate, but when disableMemoryProfiling is
    	// set to true by the linker, it means that nothing is consuming the profile, it is
    	// safe to set MemProfileRate to 0.
    	if disableMemoryProfiling {
    		MemProfileRate = 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top