Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 200 for Intersections (0.24 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/sets/byte.go

    func (s1 Byte) Union(s2 Byte) Byte {
    	return Byte(cast(s1).Union(cast(s2)))
    }
    
    // Intersection returns a new set which includes the item in BOTH s1 and s2
    // For example:
    // s1 = {a1, a2}
    // s2 = {a2, a3}
    // s1.Intersection(s2) = {a2}
    func (s1 Byte) Intersection(s2 Byte) Byte {
    	return Byte(cast(s1).Intersection(cast(s2)))
    }
    
    // IsSuperset returns true if and only if s1 is a superset of s2.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/sets/int64.go

    func (s1 Int64) Union(s2 Int64) Int64 {
    	return Int64(cast(s1).Union(cast(s2)))
    }
    
    // Intersection returns a new set which includes the item in BOTH s1 and s2
    // For example:
    // s1 = {a1, a2}
    // s2 = {a2, a3}
    // s1.Intersection(s2) = {a2}
    func (s1 Int64) Intersection(s2 Int64) Int64 {
    	return Int64(cast(s1).Intersection(cast(s2)))
    }
    
    // IsSuperset returns true if and only if s1 is a superset of s2.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/sets/string.go

    func (s1 String) Union(s2 String) String {
    	return String(cast(s1).Union(cast(s2)))
    }
    
    // Intersection returns a new set which includes the item in BOTH s1 and s2
    // For example:
    // s1 = {a1, a2}
    // s2 = {a2, a3}
    // s1.Intersection(s2) = {a2}
    func (s1 String) Intersection(s2 String) String {
    	return String(cast(s1).Intersection(cast(s2)))
    }
    
    // IsSuperset returns true if and only if s1 is a superset of s2.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/sets/int.go

    func (s1 Int) Union(s2 Int) Int {
    	return Int(cast(s1).Union(cast(s2)))
    }
    
    // Intersection returns a new set which includes the item in BOTH s1 and s2
    // For example:
    // s1 = {a1, a2}
    // s2 = {a2, a3}
    // s1.Intersection(s2) = {a2}
    func (s1 Int) Intersection(s2 Int) Int {
    	return Int(cast(s1).Intersection(cast(s2)))
    }
    
    // IsSuperset returns true if and only if s1 is a superset of s2.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/deployment/builder.go

    				for name := range data.RawTemplates {
    					t.Insert(name)
    				}
    				// either intersection has not been set or we intersect these templates
    				// with the current set.
    				if intersection.IsEmpty() {
    					intersection = t
    				} else {
    					intersection = intersection.Intersection(t)
    				}
    			}
    		}
    		for name := range intersection {
    			out[c.Name()].Insert(name)
    		}
    	}
    
    	return out, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/isolation.yaml

          allowedRoutes:
            namespaces:
              from: All
    ---
    apiVersion: gateway.networking.k8s.io/v1
    kind: HTTPRoute
    metadata:
      name: attaches-to-empty-hostname-with-hostname-intersection
      namespace: gateway-conformance-infra
    spec:
      parentRefs:
        - name: isolation
          namespace: gateway-conformance-infra
          sectionName: empty-hostname
      hostnames:
        - "bar.com"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/TreeRangeSet.java

            && ceilingEntry.getValue().isConnected(range)
            && !ceilingEntry.getValue().intersection(range).isEmpty()) {
          return true;
        }
        Entry<Cut<C>, Range<C>> priorEntry = rangesByLowerBound.lowerEntry(range.lowerBound);
        return priorEntry != null
            && priorEntry.getValue().isConnected(range)
            && !priorEntry.getValue().intersection(range).isEmpty();
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/sets/int32.go

    func (s1 Int32) Union(s2 Int32) Int32 {
    	return Int32(cast(s1).Union(cast(s2)))
    }
    
    // Intersection returns a new set which includes the item in BOTH s1 and s2
    // For example:
    // s1 = {a1, a2}
    // s2 = {a2, a3}
    // s1.Intersection(s2) = {a2}
    func (s1 Int32) Intersection(s2 Int32) Int32 {
    	return Int32(cast(s1).Intersection(cast(s2)))
    }
    
    // IsSuperset returns true if and only if s1 is a superset of s2.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/AbstractIntersection.java

    /**
     * Base implementation of {@link Intersection} that handles testing and intersecting arguments in either order.
     *
     * @param <L> the type of the first (left) exclude spec
     * @param <R> the type of the second (right) exclude spec
     */
    @NonNullApi
    public abstract class AbstractIntersection<L extends ExcludeSpec, R extends ExcludeSpec> implements Intersection<L, R> {
        private final Class<L> leftType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 21:03:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/TreeRangeSet.java

            && ceilingEntry.getValue().isConnected(range)
            && !ceilingEntry.getValue().intersection(range).isEmpty()) {
          return true;
        }
        Entry<Cut<C>, Range<C>> priorEntry = rangesByLowerBound.lowerEntry(range.lowerBound);
        return priorEntry != null
            && priorEntry.getValue().isConnected(range)
            && !priorEntry.getValue().intersection(range).isEmpty();
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 32.5K bytes
    - Viewed (0)
Back to top