Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for key0 (0.05 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. platforms/software/security/src/test/resources/keyrings/valid-with-extra-metadata.keys

    AJ9QH2Af2uV84lVIICjYnGfnSm1LswCdHXi1mOIw3kUEjH0zIVWl9DCj8uU=
    =A4Zh
    -----END PGP PUBLIC KEY BLOCK-----
    
    pub    889B89A539677894
    uid    Gradle <******@****.***>
    
    sub    891E4C2D471515FE
    sub    8B2A34A7D4A9B8B3
    sub    8BA78B161991D5F7
    sub    8C40458A5F28CF7B
    -----BEGIN PGP PUBLIC KEY BLOCK-----
    Version: BCPG v1.68
    
    mQINBFrDOW0BEAC9byiOScTIrOeZ4+nUJHx5nApGe1jT0RBK6QGl0utlqWubJS3W
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 65.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. pilot/pkg/security/authn/policy_applier_test.go

    								JwksUri:              jwksURI,
    								ForwardOriginalToken: true,
    								OutputClaimToHeaders: []*v1beta1.ClaimToHeader{
    									{Header: "x-jwt-key1", Claim: "value1"},
    									{Header: "x-jwt-key2", Claim: "value2"},
    								},
    							},
    						},
    					},
    				},
    			},
    			expected: &hcm.HttpFilter{
    				Name: "envoy.filters.http.jwt_authn",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableSortedMap.java

                Entry<K, V> entry = requireNonNull(entryArray[i]);
                K key = entry.getKey();
                V value = entry.getValue();
                checkEntryNotNull(key, value);
                keys[i] = key;
                values[i] = value;
                checkNoConflict(comparator.compare(prevKey, key) != 0, "key", prevEntry, entry);
                prevKey = key;
              }
            }
            return new ImmutableSortedMap<>(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
Back to top