Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for objectPartInfos (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/erasure-multipart.go

    	g := errgroup.WithNErrs(len(disks))
    
    	objectPartInfos := make([][]*ObjectPartInfo, len(disks))
    	// Rename file on all underlying storage disks.
    	for index := range disks {
    		g.Go(func() (err error) {
    			if disks[index] == nil {
    				return errDiskNotFound
    			}
    			objectPartInfos[index], err = disks[index].ReadParts(ctx, bucket, partMetaPaths...)
    			return err
    		}, index)
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Oct 24 04:05:31 GMT 2025
    - 47.1K bytes
    - Click Count (0)
Back to Top