Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ErrMissingContentLength (0.29 sec)

  1. src/net/http/request.go

    	// compare errors against this variable.
    	ErrShortBody = &ProtocolError{"entity body too short"}
    
    	// Deprecated: ErrMissingContentLength is no longer returned by
    	// anything in the net/http package. Callers should not
    	// compare errors against this variable.
    	ErrMissingContentLength = &ProtocolError{"missing ContentLength in HEAD response"}
    )
    
    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/api-errors.go

    	ErrInvalidPartNumber
    	ErrInvalidRequestBody
    	ErrInvalidCopySource
    	ErrInvalidMetadataDirective
    	ErrInvalidCopyDest
    	ErrInvalidPolicyDocument
    	ErrInvalidObjectState
    	ErrMalformedXML
    	ErrMissingContentLength
    	ErrMissingContentMD5
    	ErrMissingRequestBodyError
    	ErrMissingSecurityHeader
    	ErrNoSuchBucket
    	ErrNoSuchBucketPolicy
    	ErrNoSuchBucketLifecycle
    	ErrNoSuchLifecycleConfiguration
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  3. cmd/bucket-handlers.go

    	}
    
    	// Content-Length is required and should be non-zero
    	// http://docs.aws.amazon.com/AmazonS3/latest/API/multiobjectdeleteapi.html
    	if r.ContentLength <= 0 {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrMissingContentLength), r.URL)
    		return
    	}
    
    	// The max. XML contains 100000 object names (each at most 1024 bytes long) + XML overhead
    	const maxBodySize = 2 * 100000 * 1024
    
    	if r.ContentLength > maxBodySize {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  4. cmd/admin-handlers-users.go

    		return
    	}
    
    	// Error out if Content-Length is missing.
    	if r.ContentLength <= 0 {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrMissingContentLength), r.URL)
    		return
    	}
    
    	// Error out if Content-Length is beyond allowed size.
    	if r.ContentLength > maxBucketPolicySize {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrEntityTooLarge), r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top