Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for operator (0.18 sec)

  1. cmd/api-errors.go

    		Code:           "LexerInvalidLiteral",
    		Description:    "The SQL expression contains an invalid operator.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrLexerInvalidIONLiteral: {
    		Code:           "LexerInvalidIONLiteral",
    		Description:    "The SQL expression contains an invalid operator.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseExpectedDatePart: {
    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/object-api-errors.go

    		return "Unknown"
    	}
    }
    
    // InsufficientReadQuorum storage cannot satisfy quorum for read operation.
    type InsufficientReadQuorum struct {
    	Bucket string
    	Object string
    	Err    error
    	Type   RQErrType
    }
    
    func (e InsufficientReadQuorum) Error() string {
    	return "Storage resources are insufficient for the read operation " + e.Bucket + "/" + e.Object
    }
    
    // Unwrap the error.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 21.3K bytes
    - Viewed (0)
  3. cmd/erasure-object.go

    		//
    		// This is possible to be lock free because
    		// - xl.meta for inlined objects has already read the data
    		//   into memory, any mutation on xl.meta subsequently is
    		//   inconsequential to the overall read operation.
    		// - xl.meta metadata is still verified for quorum under lock()
    		//   however writing the response doesn't need to serialize
    		//   concurrent writers
    		unlockOnDefer = true
    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)
Back to top