Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for key0 (0.04 sec)

  1. pilot/pkg/model/telemetry_logging_test.go

    					Text: EnvoyTextLogFormat + " %REQ_WITHOUT_QUERY(key1:val1)% REQ_WITHOUT_QUERY(key2:val1)% %METADATA(UPSTREAM_HOST:istio)% %METADATA(CLUSTER:istio)%",
    					Labels: &structpb.Struct{
    						Fields: map[string]*structpb.Value{
    							"key1": {Kind: &structpb.Value_StringValue{StringValue: "%METADATA(CLUSTER:istio)%"}},
    							"key2": {Kind: &structpb.Value_StringValue{StringValue: "%REQ_WITHOUT_QUERY(key1:val1)%"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    						"restricted": map[string]interface{}{
    							"key1": "hi",
    							"key2": "there",
    							"key3": "buddy",
    						},
    					}},
    
    				expectError{applyPatchOperation{
    					"violate new validation by removing keys",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"restricted": map[string]interface{}{
    							"key1": "hi",
    							"key2": nil,
    							"key3": nil,
    						},
    					}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation_test.go

    		// multiple drivers with different node IDs, topology keys
    		ObjectMeta: metav1.ObjectMeta{Name: "foo6"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         "driver1",
    				NodeID:       "node1",
    				TopologyKeys: []string{"key1", "key2"},
    			}, {
    				Name:         "driverB",
    				NodeID:       "nodeA",
    				TopologyKeys: []string{"keyA", "keyB"},
    			}},
    		},
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_client_test.go

    	}
    
    	// Update entry 0 in place.
    	cache.Put(keys[0], &cs[3])
    	if s, ok := cache.Get(keys[0]); !ok || s != &cs[3] {
    		t.Fatalf("session cache failed update for key 0")
    	}
    
    	// Calling Put with a nil entry deletes the key.
    	cache.Put(keys[0], nil)
    	if _, ok := cache.Get(keys[0]); ok {
    		t.Fatalf("session cache failed to delete key 0")
    	}
    
    	// Delete entry 2. LRU should keep 4 and 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  5. tests/integration/security/authz_test.go

    							path:   "/nested-key1",
    							allow:  true,
    						},
    						{
    							prefix: "[NestedToken2]",
    							jwt:    jwt.TokenIssuer1WithNestedClaims2,
    							path:   "/nested-key1",
    							allow:  false,
    						},
    						{
    							prefix: "[NestedToken1]",
    							jwt:    jwt.TokenIssuer1WithNestedClaims1,
    							path:   "/nested-key2",
    							allow:  false,
    						},
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

      E getEntry(@CheckForNull Object key) {
        if (key == null) {
          return null;
        }
        int hash = hash(key);
        return segmentFor(hash).getEntry(key, hash);
      }
    
      @Override
      public boolean containsKey(@CheckForNull Object key) {
        if (key == null) {
          return false;
        }
        int hash = hash(key);
        return segmentFor(hash).containsKey(key, hash);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    					}},
    					{AESCBC: &apiserver.AESConfiguration{
    						Keys: []apiserver.Key{
    							{Name: "key1", Secret: "c2VjcmV0IGlzIHNlY3VyZQ=="},
    							{Name: "key2", Secret: "dGhpcyBpcyBwYXNzd29yZA=="},
    						},
    					}},
    					{Secretbox: &apiserver.SecretboxConfiguration{
    						Keys: []apiserver.Key{
    							{Name: "key1", Secret: "YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXoxMjM0NTY="},
    						},
    					}},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    // all have the same session ticket keys. If the session ticket keys leaks,
    // previously recorded and future TLS connections using those keys might be
    // compromised.
    func (c *Config) SetSessionTicketKeys(keys [][32]byte) {
    	if len(keys) == 0 {
    		panic("tls: keys must have at least one key")
    	}
    
    	newKeys := make([]ticketKey, len(keys))
    	for i, bytes := range keys {
    		newKeys[i] = c.ticketKeyFromBytes(bytes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. internal/bucket/lifecycle/lifecycle_test.go

    			expectedValidationErr: errLifecycleNoRule,
    		},
    		{ // Valid lifecycle config
    			inputConfig: `<LifecycleConfiguration>
    					  <Rule>
    					  <Filter>
    					  <And><Tag><Key>key1</Key><Value>val1</Value><Key>key2</Key><Value>val2</Value></Tag></And>
    		                          </Filter>
    		                          <Expiration><Days>3</Days></Expiration>
    		                          </Rule>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/crypto/x509/x509.go

    // certificate to be generated and priv is the private key of the signer.
    //
    // The returned slice is the certificate in DER encoding.
    //
    // The currently supported key types are *rsa.PublicKey, *ecdsa.PublicKey and
    // ed25519.PublicKey. pub must be a supported key type, and priv must be a
    // crypto.Signer with a supported public key.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top