Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 862 for keys2 (0.05 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. src/net/http/transport_test.go

    	}
    
    	doReq("first")
    	keys1 := tr.IdleConnKeysForTesting()
    
    	ts.CloseClientConnections()
    
    	var keys2 []string
    	waitCondition(t, 10*time.Millisecond, func(d time.Duration) bool {
    		keys2 = tr.IdleConnKeysForTesting()
    		if len(keys2) != 0 {
    			if d > 0 {
    				t.Logf("Transport hasn't noticed idle connection's death in %v.\nbefore: %q\n after: %q\n", d, keys1, keys2)
    			}
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/plugin-portal-api-keys.png

    plugin-portal-api-keys.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 71K bytes
    - Viewed (0)
  4. gradle/verification-keyring.keys

    Vlad Chesnokov <******@****.***> 1711962993 +0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 525.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/testdata/invalid-configs/invalid-typo.yaml

    apiVersion: apiserver.config.k8s.io/v1
    resources:
      - resources:
          - secrets
        providers:
          - aesgcm:
              keys:
                - name: key1
                  secret: c2VjcmV0IGlzIHNlY3VyZQ==
                - name: key2
                  secret: dGhpcyBpcyBwYXNzd29yZA==
          - secretbox:
              keys:
                - name: key1
                  secret: YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXoxMjM0NTY=
          - kms:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 941 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top