Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for StatusNoContent (0.22 sec)

  1. cmd/post-policy_test.go

    		{http.StatusNoContent, credentials.SecretKey, map[string]string{"AWSAccessKeyId": credentials.AccessKey}},
    		{http.StatusForbidden, credentials.SecretKey, map[string]string{"Awsaccesskeyid": "invalidaccesskey"}},
    		{http.StatusForbidden, "invalidsecretkey", map[string]string{"Awsaccesskeyid": credentials.AccessKey}},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. src/net/http/status.go

    	StatusOK                   = 200 // RFC 9110, 15.3.1
    	StatusCreated              = 201 // RFC 9110, 15.3.2
    	StatusAccepted             = 202 // RFC 9110, 15.3.3
    	StatusNonAuthoritativeInfo = 203 // RFC 9110, 15.3.4
    	StatusNoContent            = 204 // RFC 9110, 15.3.5
    	StatusResetContent         = 205 // RFC 9110, 15.3.6
    	StatusPartialContent       = 206 // RFC 9110, 15.3.7
    	StatusMultiStatus          = 207 // RFC 4918, 11.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 10 23:30:35 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers.go

    	if err != nil {
    		ErrorNegotiated(err, s, gv, w, req)
    		return
    	}
    	if out == nil {
    		// No output provided - return StatusNoContent
    		w.WriteHeader(http.StatusNoContent)
    		return
    	}
    	defer out.Close()
    
    	if wsstream.IsWebSocketRequest(req) {
    		r := wsstream.NewReader(out, true, wsstream.NewDefaultReaderProtocols())
    		if err := r.Copy(w, req); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. cmd/bucket-policy-handlers_test.go

    			policyLen:          len(fmt.Sprintf(bucketPolicyTemplate, bucketName, bucketName)),
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusNoContent,
    		},
    		// Test case - 2.
    		// Setting the content length to be more than max allowed size.
    		// Expecting StatusBadRequest (400).
    		{
    			bucketName:         bucketName,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/filters/cors.go

    		w.Header().Set("Access-Control-Allow-Credentials", allowCredentials)
    
    		// Stop here if its a preflight OPTIONS request
    		if req.Method == "OPTIONS" {
    			w.WriteHeader(http.StatusNoContent)
    			return
    		}
    
    		// Dispatch to the next handler
    		handler.ServeHTTP(w, req)
    	})
    }
    
    // isOriginAllowed returns true if the given origin header in the
    // request is allowed CORS.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 15 13:59:10 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  6. cmd/object-lambda-handlers.go

    	"Created":                         http.StatusCreated,
    	"Accepted":                        http.StatusAccepted,
    	"Non-Authoritative Information":   http.StatusNonAuthoritativeInfo,
    	"No Content":                      http.StatusNoContent,
    	"Reset Content":                   http.StatusResetContent,
    	"Partial Content":                 http.StatusPartialContent,
    	"Multi-Status":                    http.StatusMultiStatus,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. cmd/server_test.go

    	response3, err := s.client.Do(request)
    	c.Assert(err, nil)
    	// expecting the response status code to be http.StatusNoContent.
    	// The assertion validates the success of Abort Multipart operation.
    	c.Assert(response3.StatusCode, http.StatusNoContent)
    }
    
    // TestBucketMultipartList - Initiates a NewMultipart upload, uploads parts and validates listing of the parts.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  8. cmd/bucket-lifecycle-handlers_test.go

    			accessKey:          creds.AccessKey,
    			secretKey:          creds.SecretKey,
    			bucketName:         bucketName,
    			body:               []byte(``),
    			expectedRespStatus: http.StatusNoContent,
    			lifecycleResponse:  []byte(``),
    			errorResponse:      APIErrorResponse{},
    			shouldPass:         true,
    		},
    		{
    			method:             http.MethodGet,
    			accessKey:          creds.AccessKey,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. cmd/bucket-handlers_test.go

    	// Call the ServeHTTP to execute the handler.
    	apiRouter.ServeHTTP(rec, req)
    	switch rec.Code {
    	case http.StatusOK, http.StatusCreated, http.StatusAccepted, http.StatusNoContent:
    		t.Fatalf("Test %v: expected failure, but succeeded with %v", instanceType, rec.Code)
    	}
    
    	// Verify response of the V2 signed HTTP request.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  10. internal/rest/client.go

    	var respTrace []byte
    
    	// For errors we make sure to dump response body as well.
    	if resp.StatusCode != http.StatusOK &&
    		resp.StatusCode != http.StatusPartialContent &&
    		resp.StatusCode != http.StatusNoContent {
    		respTrace, err = httputil.DumpResponse(resp, true)
    		if err != nil {
    			return
    		}
    	} else {
    		respTrace, err = httputil.DumpResponse(resp, false)
    		if err != nil {
    			return
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top