Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 584 for Keys (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/serviceregistry/util/workloadinstances/index.go

    // GetByIP implements Index.
    func (i *index) GetByIP(ip string) []*model.WorkloadInstance {
    	i.mu.RLock()
    	defer i.mu.RUnlock()
    
    	keys := i.ipToKeys[ip]
    	if len(keys) == 0 {
    		return nil
    	}
    	instances := make([]*model.WorkloadInstance, 0, len(keys))
    	for _, key := range sets.SortedList(keys) {
    		if instance, exists := i.keyToInstance[key]; exists {
    			instances = append(instances, instance)
    		}
    	}
    	return instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 05:45:36 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. android/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)
  9. pkg/kube/labels/labels.go

    }
    
    // lookupLabelValue returns the value of the first label in the supplied map that matches
    // one of the supplied keys.
    func lookupLabelValue(labels map[string]string, keys ...string) (string, bool) {
    	for _, key := range keys {
    		if value, ok := labels[key]; ok {
    			return value, true
    		}
    	}
    	return "", false
    }
    
    func HasCanonicalServiceName(labels map[string]string) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/body-nested-models.md

    You can also declare a body as a `dict` with keys of some type and values of some other type.
    
    This way, you don't have to know beforehand what the valid field/attribute names are (as would be the case with Pydantic models).
    
    This would be useful if you want to receive keys that you don't already know.
    
    ---
    
    Another useful case is when you want to have keys of another type (e.g., `int`).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top