Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for api (0.18 sec)

  1. cmd/api-errors.go

    	if apiErr.Code == "InternalError" {
    		// Make sure to log the errors which we cannot translate
    		// to a meaningful S3 API errors. This is added to aid in
    		// debugging unexpected/unhandled errors.
    		internalLogIf(ctx, err)
    	}
    
    	return apiErr
    }
    
    // getAPIError provides API Error for input API error code.
    func getAPIError(code APIErrorCode) APIError {
    	if apiErr, ok := errorCodes[code]; ok {
    		return apiErr
    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

    Harshavardhana <******@****.***> 1714928181 -0700
    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/batch-handlers.go

    func (j BatchJobRequest) delete(ctx context.Context, api ObjectLayer) {
    	deleteConfig(ctx, api, getJobReportPath(j))
    	deleteConfig(ctx, api, getJobPath(j))
    }
    
    func (j *BatchJobRequest) save(ctx context.Context, api ObjectLayer) error {
    	if j.Replicate == nil && j.KeyRotate == nil && j.Expire == nil {
    		return errInvalidArgument
    	}
    
    	if err := j.Validate(ctx, api); err != nil {
    		return err
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  4. cmd/erasure-object.go

    	}
    
    	storageDisks := er.getDisks()
    	versionFound := true
    	objInfo = ObjectInfo{VersionID: opts.VersionID} // version id needed in Delete API response.
    	goi, _, gerr := er.getObjectInfoAndQuorum(ctx, bucket, object, opts)
    	tryDel := false
    	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)
Back to top