Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,771 for keys2 (0.08 sec)

  1. pilot/pkg/security/authz/matcher/metadata.go

    func MetadataListValueMatcher(filter string, keys []string, value *matcher.ValueMatcher, useExtendedJwt bool) *matcher.MetadataMatcher {
    	listMatcher := &matcher.ListMatcher{
    		MatchPattern: &matcher.ListMatcher_OneOf{
    			OneOf: value,
    		},
    	}
    
    	paths := make([]*matcher.MetadataMatcher_PathSegment, 0, len(keys))
    	for _, k := range keys {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ArrayTable.java

      }
    
      /**
       * Associates the value {@code null} with the specified keys, assuming both keys are valid. If
       * either key is null or isn't among the keys provided during construction, this method has no
       * effect.
       *
       * <p>This method is equivalent to {@code put(rowKey, columnKey, null)} when both provided keys
       * are valid.
       *
       * @param rowKey row key of mapping to be erased
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. pkg/serviceaccount/openidmetadata.go

    			continue
    		}
    
    		if !pubkey.Valid() {
    			errs = append(errs, fmt.Errorf("key #%d not valid", i))
    			continue
    		}
    		keys.Keys = append(keys.Keys, *pubkey)
    	}
    	if len(errs) != 0 {
    		return nil, errors.NewAggregate(errs)
    	}
    	return &keys, nil
    }
    
    func jwkFromPublicKey(publicKey crypto.PublicKey) (*jose.JSONWebKey, error) {
    	alg, err := algorithmFromPublicKey(publicKey)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 12 00:23:31 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  4. internal/s3select/json/testdata/10.json

    [
     {
    	 "key_1": "value",
    	 "key_2": "value"
     }
    ]
    [
    	{
    		"key_1": "value2",
    		"key_2": "value3"
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 100 bytes
    - Viewed (0)
  5. src/expvar/expvar_test.go

    	for i := range procKeys {
    		keys := make([]string, 4)
    		for j := range keys {
    			keys[j] = fmt.Sprint(i, j)
    		}
    		procKeys[i] = keys
    	}
    
    	b.ResetTimer()
    
    	var n int32
    	b.RunParallel(func(pb *testing.PB) {
    		i := int(atomic.AddInt32(&n, 1)-1) % len(procKeys)
    		keys := procKeys[i]
    
    		for pb.Next() {
    			m := new(Map).Init()
    			for _, k := range keys {
    				m.Add(k, 1)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:46:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. test/typeparam/mapsimp.dir/a.go

    		if v1 != v2 {
    			isNaN := func(f Elem) bool { return f != f }
    			if !isNaN(v1) || !isNaN(v2) {
    				return false
    			}
    		}
    	}
    	return true
    }
    
    // Keys returns the keys of the map m.
    // The keys will be an indeterminate order.
    func Keys[K comparable, V any](m map[K]V) []K {
    	r := make([]K, 0, len(m))
    	for k := range m {
    		r = append(r, k)
    	}
    	return r
    }
    
    // Values returns the values of the map m.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 24 22:17:33 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  7. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/FakeKeyStore.java

            keys.remove(alias);
            certChains.remove(alias);
        }
    
        @Override
        public Enumeration<String> engineAliases() {
            return Collections.enumeration(keys.keySet());
        }
    
        @Override
        public boolean engineContainsAlias(String alias) {
            return keys.containsKey(alias) || certChains.containsKey(alias);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/util/DocMapTest.java

            DocMap docMap = new DocMap(value);
            assertTrue(docMap.isEmpty());
            value.clear();
    
            List<String> keys = Arrays.asList("test_2", "test_0", "lang", "test_1");
            value.put(keys.get(0), true);
            value.put(keys.get(1), 1000);
            value.put(keys.get(2), "ja");
            value.put(keys.get(3), "str");
            docMap = new DocMap(value);
            assertFalse(docMap.isEmpty());
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. pkg/kubelet/util/store/filestore_test.go

    		// Test read data by key.
    		data, err := store.Read(c.key)
    		require.NoError(t, err)
    		assert.Equal(t, string(data), c.data)
    	}
    
    	// Test list keys.
    	keys, err := store.List()
    	assert.NoError(t, err)
    	sort.Strings(keys)
    	assert.Equal(t, keys, []string{"id1", "id2"})
    
    	// Test Delete data
    	for _, c := range testCases {
    		if c.expectErr {
    			continue
    		}
    
    		err = store.Delete(c.key)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 24 13:51:34 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  10. src/runtime/pprof/label_test.go

    	}
    
    	// Add a label with a different key.
    	ctx = WithLabels(ctx, Labels("key2", "value2"))
    	v, ok = Label(ctx, "key2")
    	if !ok || v != "value2" {
    		t.Errorf(`Label(ctx, "key2"): got %v, %v; want "value2", ok`, v, ok)
    	}
    	gotLabels = labelsSorted(ctx)
    	wantLabels = []label{{"key", "value"}, {"key2", "value2"}}
    	if !reflect.DeepEqual(gotLabels, wantLabels) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top