Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. CONTRIBUTING.md

    Errors are the only type of issues that must be resolved for the `checkBinaryCompatibility` task to succeed.
    
    You can set the 'bin.cmp.report.severity.filter' property in your `gradle.properties` to one of the available values in the dropdown box to automatically filter issues to that severity level upon opening this report.
    
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Sat May 04 07:43:02 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  2. cmd/batch-handlers.go

    func (ri *batchJobInfo) trackMultipleObjectVersions(bucket string, info ObjectInfo, success bool) {
    	if success {
    		ri.Objects += int64(info.NumVersions)
    	} else {
    		ri.ObjectsFailed += int64(info.NumVersions)
    	}
    }
    
    func (ri *batchJobInfo) trackCurrentBucketObject(bucket string, info ObjectInfo, success bool) {
    	if ri == nil {
    		return
    	}
    
    	ri.mu.Lock()
    	defer ri.mu.Unlock()
    
    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)
  3. 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)
  4. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrBucketAlreadyOwnedByYou: {
    		Code:           "BucketAlreadyOwnedByYou",
    		Description:    "Your previous request to create the named bucket succeeded and you already own it.",
    		HTTPStatusCode: http.StatusConflict,
    	},
    	ErrInvalidDuration: {
    		Code:           "InvalidDuration",
    		Description:    "Duration provided in the request is invalid.",
    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)
Back to top