- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for ObjectParts (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
cmd/erasure-multipart.go
g := errgroup.WithNErrs(len(onlineDisks)) objectParts := make([][]string, len(onlineDisks)) // List uploaded parts from drives. for index := range onlineDisks { g.Go(func() (err error) { if onlineDisks[index] == nil { return errDiskNotFound } objectParts[index], err = onlineDisks[index].ListDir(ctx, minioMetaMultipartBucket, minioMetaMultipartBucket, partPath, -1)
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) -
cmd/object-api-datatypes.go
ChecksumAlgo string ChecksumType string } type getObjectAttributesResponse struct { ETag string `xml:",omitempty"` Checksum *objectAttributesChecksum `xml:",omitempty"` ObjectParts *objectAttributesParts `xml:",omitempty"` StorageClass string `xml:",omitempty"` ObjectSize int64 `xml:",omitempty"` } type objectAttributesChecksum struct {Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 21.2K bytes - Click Count (0) -
cmd/object-api-options.go
return opts, valid } for tag := range opts.ObjectAttributes { switch tag { case xhttp.ETag: case xhttp.Checksum: case xhttp.StorageClass: case xhttp.ObjectSize: case xhttp.ObjectParts: default: apiErr = errorCodes.ToAPIErr(ErrInvalidAttributeName) argumentName = strings.ToLower(xhttp.AmzObjectAttributes) argumentValue = tag valid = false return opts, valid } }Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 14.3K bytes - Click Count (0)