Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for whale (0.12 sec)

  1. cmd/api-errors.go

    		Code:           "XMinioSiteReplicationBucketConfigError",
    		Description:    "Error while configuring replication on a bucket",
    		HTTPStatusCode: http.StatusServiceUnavailable,
    	},
    	ErrSiteReplicationBucketMetaError: {
    		Code:           "XMinioSiteReplicationBucketMetaError",
    		Description:    "Error while replicating bucket metadata",
    		HTTPStatusCode: http.StatusServiceUnavailable,
    	},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 91.4K bytes
    - Viewed (6)
  2. cmd/erasure-object.go

    			// Expire all versions expiration must still verify the state() on disk
    			// via a getObjectInfo() call as follows, any read quorum issues we
    			// must not proceed further for safety reasons. attempt a MRF heal
    			// while we see such quorum errors.
    			goi, _, gerr := er.getObjectInfoAndQuorum(ctx, bucket, object, opts)
    			if gerr != nil && goi.Name == "" {
    				if _, ok := gerr.(InsufficientReadQuorum); ok {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 77.2K bytes
    - Viewed (2)
  3. cmd/httprange.go

    // given the size of the resource
    func (h *HTTPRangeSpec) GetOffsetLength(resourceSize int64) (start, length int64, err error) {
    	if h == nil {
    		// No range specified, implies whole object.
    		return 0, resourceSize, nil
    	}
    
    	length, err = h.GetLength(resourceSize)
    	if err != nil {
    		return 0, 0, err
    	}
    
    	start = h.Start
    	if h.IsSuffixLength {
    		start = resourceSize + h.Start
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 5.9K bytes
    - Viewed (0)
Back to top