func net/http.chunked
10 uses
net/http (current package)
response.go#L293: if r1.ContentLength == -1 && !r1.Close && r1.ProtoAtLeast(1, 1) && !chunked(r1.TransferEncoding) && !r1.Uncompressed {
response.go#L316: if r1.ContentLength == 0 && !chunked(r1.TransferEncoding) && !contentLengthAlreadySent && bodyAllowedForStatus(r.StatusCode) {
transfer.go#L127: if chunked(t.TransferEncoding) {
transfer.go#L134: if chunked(t.TransferEncoding) {
transfer.go#L142: if !chunked(t.TransferEncoding) {
transfer.go#L250: if chunked(t.TransferEncoding) {
transfer.go#L296: } else if chunked(t.TransferEncoding) {
transfer.go#L351: if chunked(t.TransferEncoding) {
transfer.go#L391: if chunked(t.TransferEncoding) {
transfer.go#L600: func chunked(te []string) bool { return len(te) > 0 && te[0] == "chunked" }
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |