Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Biundo (0.15 sec)

  1. cmd/erasure-multipart.go

    				return errDiskNotFound
    			}
    			return disks[index].RenameFile(ctx, srcBucket, srcEntry, dstBucket, dstEntry)
    		}, index)
    	}
    
    	// Wait for all renames to finish.
    	errs := g.Wait()
    
    	// Do not need to undo partial successful operation since those will be cleaned up
    	// in 24hrs via multipart cleaner, never rename() back to `.minio.sys/tmp` as there
    	// is no way to clean them.
    
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 42K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool.go

    	}
    	return bucketInfo, nil
    }
    
    // DeleteBucket - deletes a bucket on all serverPools simultaneously,
    // even if one of the serverPools fail to delete buckets, we proceed to
    // undo a successful operation.
    func (z *erasureServerPools) DeleteBucket(ctx context.Context, bucket string, opts DeleteBucketOptions) error {
    	if isMinioMetaBucketName(bucket) {
    		return BucketNameInvalid{Bucket: bucket}
    	}
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 77.8K bytes
    - Viewed (0)
Back to top