Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Dailey (0.19 sec)

  1. cmd/batch-handlers.go

    		ri.Complete = ri.ObjectsFailed == 0
    		ri.Failed = ri.ObjectsFailed > 0
    
    		globalBatchJobsMetrics.save(job.ID, ri)
    		// persist in-memory state to disk.
    		batchLogIf(ctx, ri.updateAfter(ctx, api, 0, job))
    
    		if err := r.Notify(ctx, ri); err != nil {
    			batchLogIf(ctx, fmt.Errorf("unable to notify %v", err))
    		}
    
    		cancel()
    		if ri.Failed {
    			ri.ObjectsFailed = 0
    			ri.Bucket = ""
    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)
  2. cmd/api-errors.go

    		Code:           "CastFailed",
    		Description:    "Attempt to convert from one data type to another using CAST failed in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidCast: {
    		Code:           "InvalidCast",
    		Description:    "Attempt to convert from one data type to another using CAST failed in the SQL expression.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    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

    		}
    
    		var kmsConf kms.Config
    		if env.IsSet(kms.EnvKESAPIKey) {
    			key, err := kes.ParseAPIKey(env.Get(kms.EnvKESAPIKey, ""))
    			if err != nil {
    				logger.Fatal(err, fmt.Sprintf("Failed to parse KES API key from %q", env.Get(kms.EnvKESAPIKey, "")))
    			}
    			kmsConf = kms.Config{
    				Endpoints:    endpoints,
    				DefaultKeyID: env.Get(kms.EnvKESKeyName, ""),
    				APIKey:       key,
    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/object-api-errors.go

    func isErrSignatureDoesNotMatch(err error) bool {
    	var signatureDoesNotMatch SignatureDoesNotMatch
    	return errors.As(err, &signatureDoesNotMatch)
    }
    
    // PreConditionFailed - Check if copy precondition failed
    type PreConditionFailed struct{}
    
    func (e PreConditionFailed) Error() string {
    	return "At least one of the pre-conditions you specified did not hold"
    }
    
    func isErrPreconditionFailed(err error) bool {
    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)
  5. cmd/erasure-object.go

    			errs[objIndex] = toObjectErr(err, bucket, objects[objIndex].ObjectName, objects[objIndex].VersionID)
    		} else {
    			errs[objIndex] = toObjectErr(err, bucket, objects[objIndex].ObjectName)
    		}
    	}
    
    	// Check failed deletes across multiple objects
    	for i, dobj := range dobjects {
    		// This object errored, we should attempt a heal just in case.
    		if errs[i] != nil && !isErrVersionNotFound(errs[i]) && !isErrObjectNotFound(errs[i]) {
    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