Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RawURLEncoding (0.16 sec)

  1. cmd/erasure-multipart.go

    	"github.com/minio/pkg/v3/mimedb"
    	"github.com/minio/pkg/v3/sync/errgroup"
    )
    
    func (er erasureObjects) getUploadIDDir(bucket, object, uploadID string) string {
    	uploadUUID := uploadID
    	uploadBytes, err := base64.RawURLEncoding.DecodeString(uploadID)
    	if err == nil {
    		slc := strings.SplitN(string(uploadBytes), ".", 2)
    		if len(slc) == 2 {
    			uploadUUID = slc[1]
    		}
    	}
    	return pathJoin(er.getMultipartSHADir(bucket, object), uploadUUID)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. cmd/sts-handlers.go

    	// filename characters and needs to have bounded length.
    	{
    		h := sha256.New()
    		h.Write([]byte("openid:" + subFromToken + ":" + issFromToken))
    		bs := h.Sum(nil)
    		cred.ParentUser = base64.RawURLEncoding.EncodeToString(bs)
    	}
    
    	// Deny this assume role request if the policy that the user intends to bind
    	// has a sts:DurationSeconds condition, which is not satisfied as well
    	{
    		p := policyName
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top