Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 85 for isSuperset (0.28 sec)

  1. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

       *         .add(42)
       *         .build();
       * }</pre>
       *
       * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build
       * multiple sets in series. Each set is a superset of the set created before it.
       *
       * @since 2.0
       */
      public static final class Builder<E> extends ImmutableSet.Builder<E> {
        private final Comparator<? super E> comparator;
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&SucceedsTilde;":                   "\u227f",
    	"&SuchThat;":                        "\u220b",
    	"&Sum;":                             "\u2211",
    	"&Sup;":                             "\u22d1",
    	"&Superset;":                        "\u2283",
    	"&SupersetEqual;":                   "\u2287",
    	"&Supset;":                          "\u22d1",
    	"&THORN;":                           "\u00de",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  3. pkg/controller/replicaset/replica_set.go

    // that wraps podsToRank and assigns each pod a rank equal to the number of
    // active pods in relatedPods that are colocated on the same node with the pod.
    // relatedPods generally should be a superset of podsToRank.
    func getPodsRankedByRelatedPodsOnSameNode(podsToRank, relatedPods []*v1.Pod) controller.ActivePodsWithRanks {
    	podsOnNode := make(map[string]int)
    	for _, pod := range relatedPods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/controller.go

    }
    
    type configType int
    
    const (
    	serviceEntryConfigType configType = iota
    	workloadEntryConfigType
    	podConfigType
    )
    
    // configKeyWithParent is a superset of configKey that also encodes the parent resource. For instance, if something comes
    // from a ServiceEntry selector, the parent is the ServiceEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  5. pkg/controller/deployment/util/deployment_util.go

    	// TODO: Right now we list replica sets by their labels. We should list them by selector, i.e. the replica set's selector
    	//       should be a superset of the deployment's selector, see https://github.com/kubernetes/kubernetes/issues/19830.
    	namespace := deployment.Namespace
    	selector, err := metav1.LabelSelectorAsSelector(deployment.Spec.Selector)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableMap.java

       * sort entries by value.
       *
       * <p>Builder instances can be reused - it is safe to call {@link #buildOrThrow} multiple times to
       * build multiple maps in series. Each map is a superset of the maps created before it.
       *
       * @since 2.0
       */
      @DoNotMock
      public static class Builder<K, V> {
        @CheckForNull Comparator<? super V> valueComparator;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. src/html/entity.go

    		"SucceedsTilde;":                   '\U0000227F',
    		"SuchThat;":                        '\U0000220B',
    		"Sum;":                             '\U00002211',
    		"Sup;":                             '\U000022D1',
    		"Superset;":                        '\U00002283',
    		"SupersetEqual;":                   '\U00002287',
    		"Supset;":                          '\U000022D1',
    		"THORN;":                           '\U000000DE',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  8. src/internal/poll/fd_windows.go

    var InitWSA = sync.OnceFunc(func() {
    	var d syscall.WSAData
    	e := syscall.WSAStartup(uint32(0x202), &d)
    	if e != nil {
    		initErr = e
    	}
    	checkSetFileCompletionNotificationModes()
    })
    
    // operation contains superset of data necessary to perform all async IO.
    type operation struct {
    	// Used by IOCP interface, it must be first field
    	// of the struct, as our code rely on it.
    	o syscall.Overlapped
    
    	// fields used by runtime.netpoll
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableMap.java

       * sort entries by value.
       *
       * <p>Builder instances can be reused - it is safe to call {@link #buildOrThrow} multiple times to
       * build multiple maps in series. Each map is a superset of the maps created before it.
       *
       * @since 2.0
       */
      @DoNotMock
      public static class Builder<K, V> {
        @CheckForNull Comparator<? super V> valueComparator;
        @Nullable Entry<K, V>[] entries;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 30 14:39:16 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableSortedMap.java

       * more convenient.
       *
       * <p>Builder instances can be reused - it is safe to call {@link #buildOrThrow} multiple times to
       * build multiple maps in series. Each map is a superset of the maps created before it.
       *
       * @since 2.0
       */
      public static class Builder<K, V> extends ImmutableMap.Builder<K, V> {
        private final Comparator<? super K> comparator;
    
        /**
    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