Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 63 for Intersections (0.22 sec)

  1. pilot/pkg/networking/core/gateway.go

    			// 2. virtualService hosts are *.foo.com, and server hosts are ns/1.foo.com, ns/2.foo.com, ns/3.foo.com
    			intersectingHosts := serverHosts.Intersection(virtualServiceHosts)
    			if len(intersectingHosts) == 0 {
    				continue
    			}
    
    			// Make sure we can obtain services which are visible to this virtualService as much as possible.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

    import static com.google.common.collect.Iterables.getOnlyElement;
    import static com.google.common.collect.Lists.newArrayList;
    import static com.google.common.collect.Sets.intersection;
    import static com.google.common.truth.Truth.assertThat;
    import static com.google.common.truth.Truth.assertWithMessage;
    import static com.google.common.util.concurrent.Futures.allAsList;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

    import static com.google.common.collect.Iterables.getOnlyElement;
    import static com.google.common.collect.Lists.newArrayList;
    import static com.google.common.collect.Sets.intersection;
    import static com.google.common.truth.Truth.assertThat;
    import static com.google.common.truth.Truth.assertWithMessage;
    import static com.google.common.util.concurrent.Futures.allAsList;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    org.codehaus.plexus.util; public synchronized class CollectionUtils { public void CollectionUtils(); public static java.util.Map mergeMaps(java.util.Map, java.util.Map); public static java.util.Map mergeMaps(java.util.Map[]); public static java.util.Collection intersection(java.util.Collection, java.util.Collection); public static java.util.Collection subtract(java.util.Collection, java.util.Collection); public static java.util.Map getCardinalityMap(java.util.Collection); public static java.util.List iteratorToL...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  5. doc/go_spec.html

    name <code>E</code> as an interface element. This is called
    <i>embedding</i> interface <code>E</code> in <code>T</code>
    [<a href="#Go_1.14">Go 1.14</a>].
    The type set of <code>T</code> is the <i>intersection</i> of the type sets
    defined by <code>T</code>'s explicitly declared methods and the type sets
    of <code>T</code>’s embedded interfaces.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      TFL_OperandHasRank<4, 0>]> {
      let summary = [{
    Greedily selects a subset of bounding boxes in descending order of score,
      }];
    
      let description = [{
    pruning away boxes that have high intersection-over-union (IOU) overlap
    with previously selected boxes.  Bounding boxes with score less than
    `score_threshold` are removed.  Bounding boxes are supplied as
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    			// Over-matching is fine because this only controls the set of namespace
    			// label change events to watch and the actual binding enforcement happens
    			// by checking the intersection of the generated VirtualService.spec.hosts
    			// and Istio Gateway.spec.servers.hosts arrays - we just can't miss
    			// potentially relevant namespace label events here.
    			res = append(res, "*")
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue_test.go

    						// here the rational is:
    						// - in baseline case, don't inject unschedulable plugin names, so podMatchesEvent()
    						//   never gets executed.
    						// - in worst case, make both ends (of the intersection) a big number,i.e.,
    						//   M intersected with N instead of M with 1 (or 1 with N)
    						// - in random case, each pod failed by a random plugin, and also the moveEvent
    						//   is randomized.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. tests/integration/pilot/testdata/gateway-api-crd.yaml

                            For HTTPRoute and TLSRoute resources, there is an interaction with the
                            `spec.hostnames` array. When both listener and route specify hostnames,
                            there MUST be an intersection between the values for a Route to be
                            accepted. For more information, refer to the Route specific Hostnames
                            documentation.
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  10. cmd/site-replication.go

    		// If current cluster is already SR enabled and no new site being added ,fail.
    		if currDeploymentIDsSet.Equals(deploymentIDsSet) {
    			return madmin.ReplicateAddStatus{}, errSRCannotJoin
    		}
    		if len(currDeploymentIDsSet.Intersection(deploymentIDsSet)) != len(currDeploymentIDsSet) {
    			diffSlc := getMissingSiteNames(currDeploymentIDsSet, deploymentIDsSet, currSites.Sites)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top