Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 404 for keys2 (0.12 sec)

  1. pkg/volume/util/atomic_writer_test.go

    					"add/new/keys2.txt": {Mode: 0644, Data: []byte("addNewKeys2")},
    					"add/new/keys3.txt": {Mode: 0644, Data: []byte("addNewKeys3")},
    				},
    			},
    		},
    		{
    			name: "remove 1",
    			payloads: []map[string]FileProjection{
    				{
    					"foo/bar.txt":         {Mode: 0644, Data: []byte("foo/bar")},
    					"bar//zab.txt":        {Mode: 0644, Data: []byte("bar/zab.txt")},
    					"foo/blaz/bar.txt":    {Mode: 0644, Data: []byte("foo/blaz/bar")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/values_test.go

    					"key2": "a2",
    					"val":  1,
    				},
    				map[string]interface{}{
    					"key1": "b1",
    					"key2": "b2",
    					"val":  2,
    				},
    			}, &multiKeyMapListSchema),
    			rhs: UnstructuredToVal([]interface{}{
    				map[string]interface{}{
    					"key1": "a1",
    					"key2": "a2",
    					"val":  1,
    				},
    				map[string]interface{}{
    					"key1": "c1",
    					"key2": "c2",
    					"val":  3,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. src/runtime/map_test.go

    	const key2 = "x"
    
    	m := make(map[string]int)
    	m[key1] = 99
    	delete(m, key1)
    	m[key2] += 1
    	if n2 := m[key2]; n2 != 1 {
    		t.Errorf("incremented 0 to %d", n2)
    	}
    }
    
    func TestIncrementAfterDeleteKeyValueString(t *testing.T) {
    	const key1 = ""
    	const key2 = "x"
    
    	m := make(map[string]string)
    	m[key1] = "99"
    	delete(m, key1)
    	m[key2] += "1"
    	if n2 := m[key2]; n2 != "1" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/helper/helpers_test.go

    		reqs   []v1.NodeSelectorRequirement
    		terms  []v1.NodeSelectorTerm
    		exists bool
    	}{
    		{
    			name:   "empty set of keys in empty set of terms",
    			reqs:   []v1.NodeSelectorRequirement{},
    			terms:  []v1.NodeSelectorTerm{},
    			exists: false,
    		},
    		{
    			name: "key existence in terms with all keys specified",
    			reqs: []v1.NodeSelectorRequirement{
    				{
    					Key:      "key1",
    					Operator: v1.NodeSelectorOpIn,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/jwks_resolver.go

    		return true, nil
    	}
    
    	// Sort both sets of keys by "kid (key ID)" to be able to directly compare
    	oldKeys, oldKeysExists := oldJWKs["keys"].([]any)
    	newKeys, newKeysExists := newJWKs["keys"].([]any)
    	if oldKeysExists && newKeysExists {
    		sort.Slice(oldKeys, func(i, j int) bool {
    			key1, ok1 := oldKeys[i].(map[string]any)
    			key2, ok2 := oldKeys[j].(map[string]any)
    			if ok1 && ok2 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. src/crypto/aes/gcm_ppc64x.s

    	VCIPHER vin, V23, vin; \
    	VCIPHER vin, V24, vin; \
    	VCIPHER vin, V25, vin; \
    	VCIPHER	vin, V26, vin
    
    // Encrypt 1 value (vin) with
    // 2 specified keys
    #define VCIPHER_1X2_KEYS(vin, key1, key2) \
    	XXLOR key1, key1, V25; \
    	XXLOR key2, key2, V26; \
    	VCIPHER vin, V25, vin; \
    	VCIPHER vin, V26, vin
    
    // Encrypt 4 values in V15 - V18
    // with the specified key from
    // VS1 - VS9.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication_test.go

    				"X-Remote-Group-2":      {"two-a", "two-b"},
    				"X-Remote-extra-1-key1": {"alfa", "bravo"},
    				"X-Remote-Extra-1-Key2": {"charlie", "delta"},
    				"X-Remote-Extra-1-":     {"india", "juliet"},
    				"X-Remote-extra-2-":     {"kilo", "lima"},
    				"X-Remote-extra-2-Key1": {"echo", "foxtrot"},
    				"X-Remote-Extra-2-key2": {"golf", "hotel"},
    			},
    		},
    
    		"extra prefix matches case-insensitive with unrelated headers": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest.groovy

                }
            """
    
            when:
            writeVerificationMetadata()
    
            succeeds ":help", "--export-keys"
    
            then:
            outputContains("Exported 1 keys to")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/18567")
        def "--export-keys can export keys even with without --write-verification-metadata"() {
            def keyring = newKeyRing()
            createMetadataFile {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  9. src/text/template/doc.go

    	  Key invocations may be chained and combined with fields to any
    	  depth:
    	    .Field1.Key1.Field2.Key2
    	  Although the key must be an alphanumeric identifier, unlike with
    	  field names they do not need to start with an upper case letter.
    	  Keys can also be evaluated on variables, including chaining:
    	    $x.key1.key2
    	- The name of a niladic method of the data, preceded by a period,
    	  such as
    		.Method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. pkg/serviceaccount/jwt_test.go

    			Token:       rsaToken,
    			Client:      nil,
    			Keys:        []interface{}{getPublicKey(otherPublicKey), getPublicKey(ecdsaPublicKey)},
    			ExpectedErr: true,
    			ExpectedOK:  false,
    		},
    		"invalid keys (ecdsa)": {
    			Token:       ecdsaToken,
    			Client:      nil,
    			Keys:        []interface{}{getPublicKey(otherPublicKey), getPublicKey(rsaPublicKey)},
    			ExpectedErr: true,
    			ExpectedOK:  false,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top