net/http.Server.WriteTimeout (field)

11 uses

	net/http (current package)
		h2_bundle.go#L4453: 	if sc.hs.WriteTimeout > 0 {
		h2_bundle.go#L6198: 	if sc.hs.WriteTimeout > 0 {
		h2_bundle.go#L6199: 		st.writeDeadline = time.AfterFunc(sc.hs.WriteTimeout, st.onWriteTimeout)
		server.go#L918: 		s.WriteTimeout,
		server.go#L993: 	if d := c.server.WriteTimeout; d > 0 {
		server.go#L3009: 	WriteTimeout time.Duration

	net/http/pprof
		pprof.go#L126: 	if ok && srv.WriteTimeout > 0 {
		pprof.go#L127: 		timeout := srv.WriteTimeout + time.Duration(seconds*float64(time.Second))

	golang.org/x/net/http2
		server.go#L307: 	if sc.hs.WriteTimeout > 0 {
		server.go#L2107: 	if sc.hs.WriteTimeout > 0 {
		server.go#L2108: 		st.writeDeadline = time.AfterFunc(sc.hs.WriteTimeout, st.onWriteTimeout)