Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 167 for wroteHeader (0.14 sec)

  1. src/net/http/request.go

    		if err != nil {
    			return err
    		}
    	}
    
    	_, err = io.WriteString(w, "\r\n")
    	if err != nil {
    		return err
    	}
    
    	if trace != nil && trace.WroteHeaders != nil {
    		trace.WroteHeaders()
    	}
    
    	// Flush and wait for 100-continue if expected.
    	if waitForContinue != nil {
    		if bw, ok := w.(*bufio.Writer); ok {
    			err = bw.Flush()
    			if err != nil {
    				return err
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. cmd/s3-zip-handlers.go

    	}
    
    	// s3zip does not allow ranges.
    	w.Header().Del(xhttp.AcceptRanges)
    
    	// Set any additional requested response headers.
    	setHeadGetRespHeaders(w, r.Form)
    
    	// Successful response.
    	w.WriteHeader(http.StatusOK)
    }
    
    // Update the passed zip object metadata with the zip contents info, file name, modtime, size, etc.
    // The returned zip index will de decrypted.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	return func(w http.ResponseWriter, r *http.Request) {
    		pathWithQuery := &gourl.URL{Path: path, RawQuery: r.URL.RawQuery}
    		w.Header().Set("Location", pathWithQuery.String())
    		w.WriteHeader(code)
    	}
    }
    
    func isLocalhost(host string) bool {
    	for _, v := range []string{"localhost", "127.0.0.1", "[::1]", "::1"} {
    		if host == v {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. api/go1.7.txt

    pkg net/http/httptrace, type ClientTrace struct, PutIdleConn func(error)
    pkg net/http/httptrace, type ClientTrace struct, Wait100Continue func()
    pkg net/http/httptrace, type ClientTrace struct, WroteHeaders func()
    pkg net/http/httptrace, type ClientTrace struct, WroteRequest func(WroteRequestInfo)
    pkg net/http/httptrace, type DNSDoneInfo struct
    pkg net/http/httptrace, type DNSDoneInfo struct, Addrs []net.IPAddr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 28 15:08:11 UTC 2016
    - 13.6K bytes
    - Viewed (0)
  5. src/net/http/pprof/pprof.go

    	}
    }
    
    func serveError(w http.ResponseWriter, status int, txt string) {
    	w.Header().Set("Content-Type", "text/plain; charset=utf-8")
    	w.Header().Set("X-Go-Pprof", "1")
    	w.Header().Del("Content-Disposition")
    	w.WriteHeader(status)
    	fmt.Fprintln(w, txt)
    }
    
    // Profile responds with the pprof-formatted cpu profile.
    // Profiling lasts for duration specified in seconds GET parameter, or for 30 seconds if not specified.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/net/http/transfer.go

    	if t.ContentLength == 0 && isIdentity(t.TransferEncoding) {
    		if t.Method == "GET" || t.Method == "HEAD" {
    			return false
    		}
    		return true
    	}
    
    	return false
    }
    
    func (t *transferWriter) writeHeader(w io.Writer, trace *httptrace.ClientTrace) error {
    	if t.Close && !hasToken(t.Header.get("Connection"), "close") {
    		if _, err := io.WriteString(w, "Connection: close\r\n"); err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    			}
    		}
    	}
    }
    
    func TestNamespaceOverride(t *testing.T) {
    	s := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		w.WriteHeader(http.StatusOK)
    		w.Write([]byte(runtime.EncodeOrDie(corev1Codec, &v1.Pod{ObjectMeta: metav1.ObjectMeta{Namespace: "foo", Name: "test"}})))
    	}))
    	defer s.Close()
    
    	b := newDefaultBuilder().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  8. pkg/kubelet/server/server.go

    // Derived from go-restful writeJSON.
    func writeJSONResponse(response *restful.Response, data []byte) {
    	if data == nil {
    		response.WriteHeader(http.StatusOK)
    		// do not write a nil representation
    		return
    	}
    	response.Header().Set(restful.HEADER_ContentType, restful.MIME_JSON)
    	response.WriteHeader(http.StatusOK)
    	if _, err := response.Write(data); err != nil {
    		klog.ErrorS(err, "Error writing response")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/pcln.go

    // generator to fill in its data later.
    func (state *pclntab) generatePCHeader(ctxt *Link) {
    	ldr := ctxt.loader
    	textStartOff := int64(8 + 2*ctxt.Arch.PtrSize)
    	size := int64(8 + 8*ctxt.Arch.PtrSize)
    	writeHeader := func(ctxt *Link, s loader.Sym) {
    		header := ctxt.loader.MakeSymbolUpdater(s)
    
    		writeSymOffset := func(off int64, ws loader.Sym) int64 {
    			diff := ldr.SymValue(ws) - ldr.SymValue(s)
    			if diff <= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    	}
    
    	// Set any additional requested response headers.
    	setHeadGetRespHeaders(w, r.Form)
    
    	// Successful response.
    	if rs != nil || opts.PartNumber > 0 {
    		w.WriteHeader(http.StatusPartialContent)
    	} else {
    		w.WriteHeader(http.StatusOK)
    	}
    
    	// Notify object accessed via a HEAD request.
    	sendEvent(eventArgs{
    		EventName:    event.ObjectAccessedHead,
    		BucketName:   bucket,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top