Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ContinuationToken (0.1 sec)

  1. cmd/api-response.go

    	// you can use the value of the last Key in the response as the marker in the
    	// subsequent request to get the next set of object keys.
    	ContinuationToken     string `xml:"ContinuationToken,omitempty"`
    	NextContinuationToken string `xml:"NextContinuationToken,omitempty"`
    
    	KeyCount  int
    	MaxKeys   int
    	Delimiter string `xml:"Delimiter,omitempty"`
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 31 19:27:06 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool.go

    }
    
    func (z *erasureServerPools) ListObjectsV2(ctx context.Context, bucket, prefix, continuationToken, delimiter string, maxKeys int, fetchOwner bool, startAfter string) (ListObjectsV2Info, error) {
    	marker := continuationToken
    	if marker == "" {
    		marker = startAfter
    	}
    
    	loi, err := z.listObjectsGeneric(ctx, bucket, prefix, marker, delimiter, maxKeys, false)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Sep 29 22:40:36 UTC 2024
    - 89.8K bytes
    - Viewed (0)
Back to top