Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NextContinuationToken (0.13 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"`
    	// A flag that indicates whether or not ListObjects returned all of the results
    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

    	if err != nil {
    		return ListObjectsV2Info{}, err
    	}
    
    	listObjectsV2Info := ListObjectsV2Info{
    		IsTruncated:           loi.IsTruncated,
    		ContinuationToken:     continuationToken,
    		NextContinuationToken: loi.NextMarker,
    		Objects:               loi.Objects,
    		Prefixes:              loi.Prefixes,
    	}
    	return listObjectsV2Info, err
    }
    
    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