Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for objInfos (0.05 sec)

  1. cmd/object-handlers.go

    			w.Header().Set(xhttp.AmzServerSideEncryptionKmsID, objInfo.KMSKeyID())
    			if kmsCtx, ok := objInfo.UserDefined[crypto.MetaContext]; ok {
    				w.Header().Set(xhttp.AmzServerSideEncryptionKmsContext, kmsCtx)
    			}
    			if len(objInfo.ETag) >= 32 && strings.Count(objInfo.ETag, "-") != 1 {
    				objInfo.ETag = objInfo.ETag[len(objInfo.ETag)-32:]
    			}
    		case crypto.SSEC:
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Oct 05 05:16:15 UTC 2024
    - 117.4K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    			ModTime:                   objInfo.LastModified,
    			Size:                      objInfo.Size,
    			ETag:                      objInfo.ETag,
    			VersionID:                 objInfo.VersionID,
    			IsLatest:                  objInfo.IsLatest,
    			DeleteMarker:              objInfo.IsDeleteMarker,
    			ContentType:               objInfo.ContentType,
    			Expires:                   objInfo.Expires,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 10 06:49:55 UTC 2024
    - 116.1K bytes
    - Viewed (0)
  3. cmd/object-handlers_test.go

    				continue
    			}
    			objInfo, err := obj.GetObjectInfo(context.Background(), testCase.bucketName, testCase.objectName, opts)
    			if err != nil {
    				t.Fatalf("Test %d: %s: Failed to fetch the copied object: <ERROR> %s", i+1, instanceType, err)
    			}
    			if objInfo.ContentEncoding == streamingContentEncoding {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 20:10:44 UTC 2024
    - 163.2K bytes
    - Viewed (0)
Back to top