Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,680 for Keys (0.21 sec)

  1. pkg/credentialprovider/plugin/plugin_test.go

    	cacheKeys := pluginProvider.cache.ListKeys()
    
    	if !reflect.DeepEqual(cacheKeys, expectedCacheKeys) {
    		t.Logf("actual cache keys: %v", cacheKeys)
    		t.Logf("expected cache keys: %v", expectedCacheKeys)
    		t.Error("unexpected cache keys")
    	}
    
    	// nil out the exec plugin, this will test whether credentialproviderapi are fetched
    	// from cache, otherwise Provider should panic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/openapi/maplist_test.go

    				},
    				VendorExtensible: spec.VendorExtensible{Extensions: map[string]interface{}{
    					extListType: listTypeSet,
    				}}},
    			query:    map[string]interface{}{},
    			expected: nil,
    		},
    		{
    			name: "no keys",
    			sts: &spec.Schema{
    				SchemaProps: spec.SchemaProps{
    					Type: []string{"array"},
    				}},
    			query:    map[string]interface{}{},
    			expected: nil,
    		},
    		{
    			name: "single key",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 18:08:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/Cache.java

      void invalidate(@CompatibleWith("K") Object key);
    
      /**
       * Discards any cached values for keys {@code keys}.
       *
       * @since 11.0
       */
      // For discussion of <? extends Object>, see getAllPresent.
      void invalidateAll(Iterable<? extends Object> keys);
    
      /** Discards all entries in the cache. */
      void invalidateAll();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/LinkedListMultimap.java

        }
      }
    
      @CheckForNull private transient Node<K, V> head; // the head for all keys
      @CheckForNull private transient Node<K, V> tail; // the tail for all keys
      private transient Map<K, KeyList<K, V>> keyToKeyList;
      private transient int size;
    
      /*
       * Tracks modifications to keyToKeyList so that addition or removal of keys invalidates
       * preexisting iterators. This does *not* track simple additions and removals of values
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/StandardRowSortedTable.java

    import java.util.SortedMap;
    import java.util.SortedSet;
    import javax.annotation.CheckForNull;
    
    /**
     * Implementation of {@code Table} whose iteration ordering across row keys is sorted by their
     * natural ordering or by a supplied comparator. Note that iterations across the columns keys for a
     * single row key may or may not be ordered, depending on the implementation. When rows and columns
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 15 15:41:16 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  6. pkg/test/framework/components/prometheus/kube.go

    	Metric      string
    	Aggregation string
    	Labels      map[string]string
    }
    
    func (q Query) String() string {
    	query := q.Metric + `{`
    
    	keys := []string{}
    	for k := range q.Labels {
    		keys = append(keys, k)
    	}
    	sort.Strings(keys)
    	for _, k := range keys {
    		v := q.Labels[k]
    		query += fmt.Sprintf(`%s=%q,`, k, v)
    	}
    	query += "}"
    	if q.Aggregation != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. pkg/kubelet/checkpointmanager/checkpoint_manager_test.go

    	testStore.Write("key1", blob)
    	err = manager.GetCheckpoint("key1", checkpoint1)
    	assert.EqualError(t, err, "checkpoint is corrupted")
    
    	// Test ListCheckpoints
    	keys, err := manager.ListCheckpoints()
    	assert.NoError(t, err)
    	sort.Strings(keys)
    	assert.Equal(t, keys, []string{"key1", "key2"})
    
    	// Test RemoveCheckpoints
    	err = manager.RemoveCheckpoint("key1")
    	assert.NoError(t, err)
    	// Test Remove Nonexisted Checkpoints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 12 06:41:04 UTC 2018
    - 6.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugins.go

    // Registered enumerates the names of all registered plugins.
    func (ps *Plugins) Registered() []string {
    	ps.lock.Lock()
    	defer ps.lock.Unlock()
    	keys := []string{}
    	for k := range ps.registry {
    		keys = append(keys, k)
    	}
    	sort.Strings(keys)
    	return keys
    }
    
    // Register registers a plugin Factory by name. This
    // is expected to happen during app startup.
    func (ps *Plugins) Register(name string, plugin Factory) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/CompactHashMap.java

       */
      @VisibleForTesting @CheckForNull transient int[] entries;
    
      /**
       * The keys of the entries in the map, in the range of [0, size()). The keys in [size(),
       * keys.length) are all {@code null}.
       */
      @VisibleForTesting @CheckForNull transient @Nullable Object[] keys;
    
      /**
       * The values of the entries in the map, in the range of [0, size()). The values in [size(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  10. pkg/routes/openidmetadata.go

    type OpenIDMetadataServer struct {
    	configJSON []byte
    	keysetJSON []byte
    }
    
    // NewOpenIDMetadataServer creates a new OpenIDMetadataServer.
    // The issuer is the OIDC issuer; keys are the keys that may be used to sign
    // KSA tokens.
    func NewOpenIDMetadataServer(configJSON, keysetJSON []byte) *OpenIDMetadataServer {
    	return &OpenIDMetadataServer{
    		configJSON: configJSON,
    		keysetJSON: keysetJSON,
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 09 18:11:41 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top