Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 78 for collision (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

        builder.create<func::ReturnOp>(loc, results_after_mapping);
        symbol_table.insert(func_op, metadata.insertion_point++);
        // Record the actual name. The symbol table might rename the FuncOp if there
        // is name collision.
        metadata.partition_name = func_op.getName();
      }
    }
    
    // Creates a tf_device.remote_run call for every remote function. And replaces
    // usages of the results of the original operations with the results of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_collective.cc

        return success();
      }
    };
    
    void LegalizeTFCollective::runOnOperation() {
      // FIXME(b/226139061): Figure out a way to share the channel_id with
      // send/recv Ops. For now, start with a different range to avoid collision.
      int64_t channel_id = 10000;
      auto module = getOperation();
      MLIRContext* context = module->getContext();
    
      RewritePatternSet patterns(context);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/vendor.go

    	for m := range modpkgs {
    		fold := str.ToFold(m.Path)
    		if other := foldPath[fold]; other == "" {
    			foldPath[fold] = m.Path
    		} else if other != m.Path {
    			base.Fatalf("go.mod: case-insensitive import collision: %q and %q", m.Path, other)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. src/internal/concurrent/hashtriemap.go

    // produces a subtree of indirect nodes to hold the two new entries.
    func (ht *HashTrieMap[K, V]) expand(oldEntry, newEntry *entry[K, V], newHash uintptr, hashShift uint, parent *indirect[K, V]) *node[K, V] {
    	// Check for a hash collision.
    	oldHash := ht.keyHash(unsafe.Pointer(&oldEntry.key), ht.seed)
    	if oldHash == newHash {
    		// Store the old entry in the new entry's overflow list, then store
    		// the new entry.
    		newEntry.overflow.Store(oldEntry)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. cni/README.md

    | HOST_PROBE_SNAT_IPV6 | "fd16:9254:7127:1337:ffff:ffff:ffff:ffff" | IPv6 link local ranges are designed to be collision-resistant by default, and so this probably never needs to be overridden |
    
    ## Sidecar Mode Implementation Details
    
    Istio CNI injection is currently based on the same Pod annotations used in init-container/inject mode.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top