Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 73 for wroteHeader (0.24 sec)

  1. docs/iam/identity-manager-plugin.go

    	if token == "" {
    		writeErrorResponse(w, errors.New("token parameter not given"))
    		return
    	}
    
    	rsp, ok := tokens[token]
    	if !ok {
    		w.WriteHeader(http.StatusForbidden)
    		return
    	}
    
    	fmt.Printf("Allowed for token: %s user: %s\n", token, rsp.User)
    
    	w.WriteHeader(http.StatusOK)
    	json.NewEncoder(w).Encode(rsp)
    	return
    }
    
    func main() {
    	http.HandleFunc("/", mainHandler)
    
    	log.Print("Listening on :8081")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 21:31:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/net/testing/http.go

    		rw.WriteHeader(http.StatusInternalServerError)
    		return
    	}
    	defer sconn.Close()
    
    	hj, ok := rw.(http.Hijacker)
    	if !ok {
    		h.t.Logf("Can't switch protocols using non-Hijacker ResponseWriter: type=%T, host=%s", rw, req.Host)
    		rw.WriteHeader(http.StatusInternalServerError)
    		return
    	}
    
    	rw.WriteHeader(http.StatusOK)
    
    	conn, brw, err := hj.Hijack()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 20 14:58:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. pkg/bootstrap/platform/aws_test.go

    	}
    }
    
    func errorHandler(writer http.ResponseWriter, _ *http.Request) {
    	writer.WriteHeader(http.StatusInternalServerError)
    }
    
    func regionHandler(writer http.ResponseWriter, _ *http.Request) {
    	writer.WriteHeader(http.StatusOK)
    	writer.Write([]byte("us-west-2"))
    }
    
    func zoneHandler(writer http.ResponseWriter, _ *http.Request) {
    	writer.WriteHeader(http.StatusOK)
    	writer.Write([]byte("us-west-2b"))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 18 13:10:06 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/dist/buildruntime.go

    )
    
    /*
     * Helpers for building runtime.
     */
    
    // mkzversion writes zversion.go:
    //
    //	package sys
    //
    // (Nothing right now!)
    func mkzversion(dir, file string) {
    	var buf strings.Builder
    	writeHeader(&buf)
    	fmt.Fprintf(&buf, "package sys\n")
    	writefile(buf.String(), file, writeSkipSame)
    }
    
    // mkbuildcfg writes internal/buildcfg/zbootstrap.go:
    //
    //	package buildcfg
    //
    //	const defaultGOROOT = <goroot>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. internal/http/response-recorder.go

    	// ... otherwise we return the <BLOB> place holder
    	return blobBody
    }
    
    // WriteHeader - writes http status code
    func (lrw *ResponseRecorder) WriteHeader(code int) {
    	if !lrw.headersLogged {
    		lrw.StatusCode = code
    		lrw.writeHeaders(&lrw.headers, code, lrw.ResponseWriter.Header())
    		lrw.headersLogged = true
    		lrw.ResponseWriter.WriteHeader(code)
    	}
    }
    
    // Flush - Calls the underlying Flush.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 00:13:19 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. pilot/pkg/request/command_test.go

    			if err := util.Compare(body, p.States[0].wantBody); err == nil {
    				w.WriteHeader(p.States[0].StatusCode)
    				w.Write([]byte(p.States[0].Response))
    			} else {
    				w.WriteHeader(http.StatusBadRequest)
    				w.Write([]byte(fmt.Sprintf("wanted body %q got %q", string(p.States[0].wantBody), string(body))))
    			}
    		} else {
    			w.WriteHeader(http.StatusBadRequest)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 19:11:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. src/internal/trace/version/version.go

    	}
    	if !v.Valid() {
    		return v, fmt.Errorf("unknown or unsupported trace version go 1.%d", v)
    	}
    	return v, nil
    }
    
    // WriteHeader writes a header for a trace version v to w.
    func WriteHeader(w io.Writer, v Version) (int, error) {
    	return fmt.Fprintf(w, headerFmt, v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. src/net/http/httptest/recorder_test.go

    			func(w http.ResponseWriter, r *http.Request) {
    				w.WriteHeader(201)
    				w.WriteHeader(202)
    				w.Write([]byte("hi"))
    			},
    			check(hasStatus(201), hasContents("hi")),
    		},
    		{
    			"write sends 200",
    			func(w http.ResponseWriter, r *http.Request) {
    				w.Write([]byte("hi first"))
    				w.WriteHeader(201)
    				w.WriteHeader(202)
    			},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 23:17:38 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  9. pkg/hbone/server.go

    	defer cancel()
    
    	dst, err := (&net.Dialer{}).DialContext(ctx, "tcp", r.Host)
    	if err != nil {
    		w.WriteHeader(http.StatusServiceUnavailable)
    		log.Errorf("failed to dial upstream: %v", err)
    		return true
    	}
    	log.Infof("Connected to %v", r.Host)
    	w.WriteHeader(http.StatusOK)
    
    	wg := sync.WaitGroup{}
    	wg.Add(1)
    	go func() {
    		// downstream (hbone client) <-- upstream (app)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 10 02:05:07 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. pkg/ctrlz/topics/signals.go

    		err := syscall.Kill(os.Getpid(), syscall.SIGUSR1)
    		if err != nil {
    			w.WriteHeader(http.StatusInternalServerError)
    			return
    		}
    		w.WriteHeader(http.StatusAccepted)
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:12:24 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top