Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for access (0.17 sec)

  1. cmd/object-api-errors.go

    func (e ObjectExistsAsDirectory) Error() string {
    	return "Object exists on : " + e.Bucket + " as directory " + e.Object
    }
    
    // PrefixAccessDenied object access is denied.
    type PrefixAccessDenied GenericError
    
    func (e PrefixAccessDenied) Error() string {
    	return "Prefix access is denied: " + e.Bucket + SlashSeparator + e.Object
    }
    
    // BucketExists bucket exists.
    type BucketExists GenericError
    
    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)
  2. cmd/api-errors.go

    		Description:    "The access key is invalid.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrAdminInvalidSecretKey: {
    		Code:           "XMinioAdminInvalidSecretKey",
    		Description:    "The secret key is invalid.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrAdminNoAccessKey: {
    		Code:           "XMinioAdminNoAccessKey",
    		Description:    "No access key was provided.",
    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)
  3. cmd/common-main.go

    	// Check if the supported credential env vars,
    	// "MINIO_ROOT_USER" and "MINIO_ROOT_PASSWORD" are provided
    	// Warn user if deprecated environment variables,
    	// "MINIO_ACCESS_KEY" and "MINIO_SECRET_KEY", are defined
    	// Check all error conditions first
    	//nolint:gocritic
    	if !env.IsSet(config.EnvRootUser) && env.IsSet(config.EnvRootPassword) {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat May 04 00:17:57 GMT 2024
    - 35.8K bytes
    - Viewed (2)
  4. cmd/erasure-object.go

    	}
    
    	var (
    		modTime     time.Time
    		etag        string
    		fi          FileInfo
    		onlineMeta  []FileInfo
    		onlineDisks []StorageAPI
    		err         error
    	)
    
    	for success := range done {
    		totalResp++
    		if success {
    			validResp++
    		}
    		if totalResp < er.setDriveCount {
    			if !opts.FastGetObjInfo {
    				continue
    			}
    			if validResp < minDisks {
    				continue
    			}
    		}
    
    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