Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 104 for StatusOK (0.11 sec)

  1. internal/config/dns/operator_dns.go

    	if err != nil {
    		if derr := c.Delete(bucket); derr != nil {
    			return newError(bucket, derr)
    		}
    		return err
    	}
    	defer xhttp.DrainBody(resp.Body)
    
    	if resp.StatusCode != http.StatusOK {
    		var errorStringBuilder strings.Builder
    		io.Copy(&errorStringBuilder, io.LimitReader(resp.Body, resp.ContentLength))
    		errorString := errorStringBuilder.String()
    		if resp.StatusCode == http.StatusConflict {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/group.go

    }
    
    func (s *APIGroupHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
    	responsewriters.WriteObjectNegotiated(s.serializer, negotiation.DefaultEndpointRestrictions, schema.GroupVersion{}, w, req, http.StatusOK, &s.group, false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 20:38:08 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/app/wait.go

    		return err
    	}
    	resp, err := client.Do(req)
    	if err != nil {
    		return err
    	}
    	defer resp.Body.Close()
    	_, err = io.ReadAll(resp.Body)
    	if err != nil {
    		return err
    	}
    	if resp.StatusCode != http.StatusOK {
    		return fmt.Errorf("HTTP status code %v", resp.StatusCode)
    	}
    	return nil
    }
    
    func init() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/legacy.go

    		Versions:                   []string{"v1"},
    	}
    
    	responsewriters.WriteObjectNegotiated(s.serializer, negotiation.DefaultEndpointRestrictions, schema.GroupVersion{}, resp, req, http.StatusOK, apiVersions, false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 22:44:49 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. pkg/proxy/healthcheck/proxier_health.go

    	if !healthy {
    		metrics.ProxyHealthzTotal.WithLabelValues("503").Inc()
    		resp.WriteHeader(http.StatusServiceUnavailable)
    	} else {
    		metrics.ProxyHealthzTotal.WithLabelValues("200").Inc()
    		resp.WriteHeader(http.StatusOK)
    		// In older releases, the returned "lastUpdated" time indicated the last
    		// time the proxier sync loop ran, even if nothing had changed. To
    		// preserve compatibility, we use the same semantics: the returned
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. pkg/hbone/server.go

    	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)
    		copyBuffered(w, dst, log.WithLabels("name", "dst to w"))
    		err = r.Body.Close()
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 10 02:05:07 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. samples/extauthz/cmd/extauthz/main_test.go

    	cases := []struct {
    		name     string
    		isGRPCV3 bool
    		isGRPCV2 bool
    		header   string
    		want     int
    	}{
    		{
    			name:   "HTTP-allow",
    			header: "allow",
    			want:   http.StatusOK,
    		},
    		{
    			name:   "HTTP-deny",
    			header: "deny",
    			want:   http.StatusForbidden,
    		},
    		{
    			name:     "GRPCv3-allow",
    			isGRPCV3: true,
    			header:   "allow",
    			want:     int(codes.OK),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 23 16:58:02 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. pkg/credentialprovider/config.go

    	if cfg, err := ReadDockerConfigJSONFile(nil); err == nil {
    		return cfg, nil
    	}
    	// Can't find latest config file so check for the old one
    	return ReadDockercfgFile(nil)
    }
    
    // HTTPError wraps a non-StatusOK error code as an error.
    type HTTPError struct {
    	StatusCode int
    	URL        string
    }
    
    // Error implements error
    func (he *HTTPError) Error() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit.go

    			// But Audit-Id http header will only be sent when http.ResponseWriter.WriteHeader is called.
    			fakedSuccessStatus := &metav1.Status{
    				Code:    http.StatusOK,
    				Status:  metav1.StatusSuccess,
    				Message: "Connection closed early",
    			}
    			if ev.ResponseStatus == nil && longRunningSink != nil {
    				ev.ResponseStatus = fakedSuccessStatus
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. pkg/test/echo/server/forwarder/udp.go

    		if line != "" {
    			echo.WriteBodyLine(&msgBuilder, requestID, line)
    		}
    	}
    
    	msg := msgBuilder.String()
    	expected := fmt.Sprintf("%s=%d", string(echo.StatusCodeField), http.StatusOK)
    	if cfg.Request.ExpectedResponse != nil {
    		expected = cfg.Request.ExpectedResponse.GetValue()
    	}
    	if !strings.Contains(msg, expected) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 17:19:22 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top