Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestRemoveInternalEntries (0.19 sec)

  1. internal/crypto/metadata_test.go

    			"X-Amz-Meta-A":       "X",
    			"X-Minio-Internal-B": "Y",
    		},
    		Expected: map[string]string{
    			"X-Amz-Meta-A":       "X",
    			"X-Minio-Internal-B": "Y",
    		},
    	},
    }
    
    func TestRemoveInternalEntries(t *testing.T) {
    	isEqual := func(x, y map[string]string) bool {
    		if len(x) != len(y) {
    			return false
    		}
    		for k, v := range x {
    			if u, ok := y[k]; !ok || v != u {
    				return false
    			}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jul 12 20:51:54 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top