Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 105 for collision (0.2 sec)

  1. 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)
  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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/internal/coverage/cfile/emit.go

    // where there are several instances of a given instrumented program
    // all terminating at the same time and trying to create meta-data
    // files simultaneously.
    //
    // For counter data files there is less chance of a collision, hence
    // the openOutputFiles() stores the counter data file in 'cfname' and
    // then places the *io.File into 'cf'.
    type emitState struct {
    	mfname string   // path of final meta-data output file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

      # different graph when running the calibration.
      _replace_tensors_by_numpy_ndarrays(representative_dataset_map)
    
      # Run the calibration in a new graph to avoid name collision, which could
      # happen when the same model is loaded multiple times in the default graph.
      with ops.Graph().as_default(), session.Session() as sess:
        meta_graph: meta_graph_pb2.MetaGraphDef = loader_impl.load(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/fsys/fsys.go

    		replaceFrom = append(replaceFrom, k)
    	}
    	sort.Strings(replaceFrom)
    
    	for _, from := range replaceFrom {
    		to := overlayJSON.Replace[from]
    		// Canonicalize paths and check for a collision.
    		if from == "" {
    			return fmt.Errorf("empty string key in overlay file Replace map")
    		}
    		cfrom := canonicalize(from)
    		if to != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top