Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 116 for StatusCode (0.16 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepositoryTest.groovy

        }
    
        private static HttpErrorStatusCodeException status(int statusCode) {
            new HttpErrorStatusCodeException("GET", "DUMMY", statusCode, "test") {
                @Override
                String toString() {
                    "status $statusCode"
                }
            }
        }
    
        @Unroll("can list module versions (max retries = #maxRetries, exception=#exception)")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. cmd/api-response.go

    	return deleteResp
    }
    
    func writeResponse(w http.ResponseWriter, statusCode int, response []byte, mType mimeType) {
    	if statusCode == 0 {
    		statusCode = 200
    	}
    	// Similar check to http.checkWriteHeaderCode
    	if statusCode < 100 || statusCode > 999 {
    		bugLogIf(context.Background(), fmt.Errorf("invalid WriteHeader code %v", statusCode))
    		statusCode = http.StatusInternalServerError
    	}
    	setCommonHeaders(w)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  3. src/net/http/httputil/dump_test.go

    			Status:        "200 OK",
    			StatusCode:    200,
    			Proto:         "HTTP/1.1",
    			ProtoMajor:    1,
    			ProtoMinor:    1,
    			ContentLength: 3,
    			Body:          io.NopCloser(strings.NewReader("foo")),
    		},
    		body: true,
    		want: `HTTP/1.1 200 OK
    Content-Length: 3
    
    foo`,
    	},
    
    	{
    		res: &http.Response{
    			Status:           "200 OK",
    			StatusCode:       200,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:07 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  4. pkg/controller/namespace/deletion/namespaced_resources_deleter_test.go

    func (f *fakeAction) String() string {
    	return strings.Join([]string{f.method, f.path}, "=")
    }
    
    // fakeActionHandler holds a list of fakeActions received
    type fakeActionHandler struct {
    	// statusCode returned by this handler
    	statusCode int
    
    	lock    sync.Mutex
    	actions []fakeAction
    }
    
    // ServeHTTP logs the action that occurred and always returns the associated status code
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  5. cmd/tier.go

    		Code:       "XMinioAdminTierMissingCredentials",
    		Message:    "Specified remote credentials are empty",
    		StatusCode: http.StatusForbidden,
    	}
    
    	errTierBackendInUse = AdminError{
    		Code:       "XMinioAdminTierBackendInUse",
    		Message:    "Specified remote tier is already in use",
    		StatusCode: http.StatusConflict,
    	}
    
    	errTierTypeUnsupported = AdminError{
    		Code:       "XMinioAdminTierTypeUnsupported",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    	req = req.WithContext(ctx)
    
    	res, err := frontend.Client().Do(req)
    	if err != nil {
    		t.Fatalf("Get: %v", err)
    	}
    	defer res.Body.Close()
    	if res.StatusCode != fakeStatusCode {
    		t.Fatalf("unexpected HTTP status code returned: %v, expected: %v", res.StatusCode, fakeStatusCode)
    	}
    	if !strings.Contains(responder.err.Error(), expectedErr.Error()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1beta1_test.go

    	server.URL = serverURL.String()
    
    	return server, nil
    }
    
    // A service that can be set to say yes or no to authentication requests.
    type mockV1beta1Service struct {
    	allow      bool
    	statusCode int
    	called     int
    }
    
    func (m *mockV1beta1Service) Review(r *authenticationv1beta1.TokenReview) {
    	m.called++
    	r.Status.Authenticated = m.allow
    	if m.allow {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  8. istioctl/pkg/admin/istiodconfig.go

    func (c *ControlzClient) GetScopes() ([]*ScopeInfo, error) {
    	var scopeInfos []*ScopeInfo
    	resp, err := c.httpClient.Get(c.baseURL.String())
    	if err != nil {
    		return nil, err
    	}
    	defer resp.Body.Close()
    	if resp.StatusCode != http.StatusOK {
    		return nil, fmt.Errorf("request not successful %s", resp.Status)
    	}
    
    	err = json.NewDecoder(resp.Body).Decode(&scopeInfos)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_graceful_termination_test.go

    	if resultGot.err != nil {
    		return fmt.Errorf("Expected no error, but got: %v", resultGot.err)
    	}
    	if resultGot.response.StatusCode != statusCodeExpected {
    		return fmt.Errorf("Expected Status Code: %d, but got: %d", statusCodeExpected, resultGot.response.StatusCode)
    	}
    	return nil
    }
    
    func requestMustFailWithRetryHeader(resultGot result, statusCodedExpected int) error {
    	if resultGot.err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    func (w *tunnelingResponseWriter) WriteHeader(statusCode int) {
    	w.mu.Lock()
    	defer w.mu.Unlock()
    	if w.written {
    		klog.Errorf("WriteHeader called after write")
    		return
    	}
    	if w.hijacked {
    		klog.Errorf("WriteHeader called after hijack")
    		return
    	}
    	w.written = true
    
    	if statusCode == http.StatusSwitchingProtocols {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top