Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for serveDeltaProfile (0.11 sec)

  1. src/net/http/pprof/pprof.go

    	p := pprof.Lookup(string(name))
    	if p == nil {
    		serveError(w, http.StatusNotFound, "Unknown profile")
    		return
    	}
    	if sec := r.FormValue("seconds"); sec != "" {
    		name.serveDeltaProfile(w, r, p, sec)
    		return
    	}
    	gc, _ := strconv.Atoi(r.FormValue("gc"))
    	if name == "heap" && gc > 0 {
    		runtime.GC()
    	}
    	debug, _ := strconv.Atoi(r.FormValue("debug"))
    	if debug != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top