Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 103 for collision (0.39 sec)

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

    		// generate expensive permutations of the host name just like RDS does..
    		// NOTE that we cannot have two services with the same VIP as our listener build logic will treat it as a collision and
    		// ignore one of the services.
    		svcListenAddress := service.GetAddressForProxy(node)
    		if strings.Contains(svcListenAddress, "/") {
    			// Address is a CIDR, already captured by destinationCIDR parameter.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/buildid.go

    // own action ID (instead of content ID) when computing the action ID of
    // the next step in the build process, then the compiler could never have its
    // own input action ID as its output action ID (short of a miraculous hash collision).
    // Instead we use the content IDs to compute the next action ID, and because
    // the content IDs converge, so too do the action IDs and therefore the
    // build IDs and the overall compiler binary. See cmd/dist's cmdbootstrap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/net.go

    		} else {
    			addedIps, err := addPodToHostNSIpset(pod, podIPs, &s.hostsideProbeIPSet)
    			if err != nil {
    				log.Errorf("pod %s has IP collision, pod will be skipped and will fail healthchecks", pod.Name, podIPs)
    			}
    			addedIPSnapshot = append(addedIPSnapshot, addedIps...)
    		}
    
    	}
    	return pruneHostIPset(sets.New(addedIPSnapshot...), &s.hostsideProbeIPSet)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/config.go

    type ConfigKey struct {
    	Kind      kind.Kind
    	Name      string
    	Namespace string
    }
    
    func (key ConfigKey) HashCode() ConfigHash {
    	h := hash.New()
    	h.Write([]byte{byte(key.Kind)})
    	// Add separator / to avoid collision.
    	h.WriteString("/")
    	h.WriteString(key.Namespace)
    	h.WriteString("/")
    	h.WriteString(key.Name)
    	return ConfigHash(h.Sum64())
    }
    
    func (key ConfigKey) String() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    ====
    
    ----
    $ gradle hello
    include::{snippetsPath}/ant/dependsOnTask/tests/dependsOnTask.out[]
    ----
    
    Sometimes, it may be necessary to “rename” the task generated for an Ant target to avoid a naming collision with existing Gradle tasks.
    To do this, use the link:{javadocPath}/org/gradle/api/AntBuilder.html#importBuild-java.lang.Object-org.gradle.api.Transformer-[AntBuilder.importBuild(java.lang.Object, org.gradle.api.Transformer)] method:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java

          SortedMap<K, V> map, Entry<? extends K, ? extends V> entry) {
        K key = checkNotNull(entry.getKey());
        V value = checkNotNull(entry.getValue());
        if (map.containsKey(key)) {
          // When a collision happens, the colliding entry is the first entry
          // of the tail map.
          Entry<K, V> previousEntry = map.tailMap(key).entrySet().iterator().next();
          throw new IllegalArgumentException(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/gateway_simulation_test.go

      tcp:
      - route:
        - destination:
            host: productpage
            port:
              number: 9080
    `
    	runGatewayTest(t,
    		simulationTest{
    			name: "duplicate cross namespace gateway collision",
    			config: createGateway("gateway", "istio-system", tcpServer) +
    				createGateway("gateway", "alpha", tcpServer) + // namespace comes before istio-system
    
    				gatewayCollision,
    			calls: []simulation.Expect{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

      // `_xla_outside_compilation` attribute value of "auto" plus
      // an increasing counter.  Manually marked ops for outside compilation only
      // have an increasing counteri for the attribute value.  Therefore there is no
      // collision in
      // `_xla_outside_compilation` attribute between automatically and manually
      // marking ops.
      int outside_compiled_cluster_counter = 0;
      block->walk([&](Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  9. pkg/volume/csi/nodeinfomanager/nodeinfomanager.go

    		if len(topology) == 0 {
    			return node, false, nil
    		}
    
    		for k, v := range topology {
    			if curVal, exists := node.Labels[k]; exists && curVal != v {
    				return nil, false, fmt.Errorf("detected topology value collision: driver reported %q:%q but existing label is %q:%q", k, v, k, curVal)
    			}
    		}
    
    		if node.Labels == nil {
    			node.Labels = make(map[string]string)
    		}
    		for k, v := range topology {
    			node.Labels[k] = v
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

      // (ready for at least spec.minReadySeconds)
      // +optional
      optional int32 numberUnavailable = 8;
    
      // Count of hash collisions for the DaemonSet. The DaemonSet controller
      // uses this field as a collision avoidance mechanism when it needs to
      // create the name for the newest ControllerRevision.
      // +optional
      optional int32 collisionCount = 9;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
Back to top