net/http.Request.FormValue (method)
16 uses
net/http (current package)
request.go#L1344: func (r *Request) FormValue(key string) string {
net/http/pprof
pprof.go#L122: sec, err := strconv.ParseInt(r.FormValue("seconds"), 10, 64)
pprof.go#L151: sec, err := strconv.ParseFloat(r.FormValue("seconds"), 64)
pprof.go#L238: if sec := r.FormValue("seconds"); sec != "" {
pprof.go#L242: gc, _ := strconv.Atoi(r.FormValue("gc"))
pprof.go#L246: debug, _ := strconv.Atoi(r.FormValue("debug"))
pprof.go#L271: debug, _ := strconv.Atoi(r.FormValue("debug"))
go.uber.org/zap
http_handler.go#L110: lvl := r.FormValue("level")
golang.org/x/net/trace
events.go#L92: if exp, err := strconv.ParseBool(req.FormValue("exp")); err == nil {
events.go#L105: fam, bStr := req.FormValue("fam"), req.FormValue("b")
trace.go#L209: if req.FormValue("show_sensitive") == "0" {
trace.go#L213: if exp, err := strconv.ParseBool(req.FormValue("exp")); err == nil {
trace.go#L216: if exp, err := strconv.ParseBool(req.FormValue("rtraced")); err == nil {
trace.go#L292: fam, bStr := req.FormValue("fam"), req.FormValue("b")