Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MkdirTemp (0.14 sec)

  1. cmd/utils.go

    	prof.ext = "pprof"
    	// Enable profiler and set the name of the file that pkg/pprof
    	// library creates to store profiling data.
    	switch madmin.ProfilerType(profilerType) {
    	case madmin.ProfilerCPU:
    		dirPath, err := os.MkdirTemp("", "profile")
    		if err != nil {
    			return nil, err
    		}
    		fn := filepath.Join(dirPath, "cpu.out")
    		f, err := Create(fn)
    		if err != nil {
    			return nil, err
    		}
    		err = pprof.StartCPUProfile(f)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 15:18:21 GMT 2024
    - 31.4K bytes
    - Viewed (0)
Back to top