Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for collision (0.16 sec)

  1. tests/integration/pilot/common/routing.go

    			},
    			Check: check.Status(http.StatusNotFound),
    		},
    		setupOpts: setHostHeader,
    	})
    
    	t.RunTraffic(TrafficTestCase{
    		name:             "usage2: matched with simple collision-resistant claim name:200",
    		targetMatchers:   matchers,
    		workloadAgnostic: true,
    		viaIngress:       true,
    		config:           configAll,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    		}
    	}
    
    	// Check for case-insensitive collision of input files.
    	// To avoid problems on case-insensitive files, we reject any package
    	// where two different input files have equal names under a case-insensitive
    	// comparison.
    	inputs := p.AllFiles()
    	f1, f2 := str.FoldDup(inputs)
    	if f1 != "" {
    		setError(fmt.Errorf("case-insensitive file name collision: %q and %q", f1, f2))
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_test.go

    			prepareWorker: func(t *testing.T, w *podWorkers, records map[types.UID][]syncPodRecord) {
    				// send a create of a static pod
    				pod := staticPod()
    				// block startup of the static pod due to full name collision
    				w.startedStaticPodsByFullname[kubecontainer.GetPodFullName(pod)] = types.UID("2")
    
    				w.UpdatePod(UpdatePodOptions{
    					UpdateType: kubetypes.SyncPodCreate,
    					StartTime:  time.Unix(1, 0).UTC(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

        project_hash=$(md5 -q -s "$PROJECT")
      else
        project_hash=$(echo -n "$PROJECT" | md5sum)
        project_hash=${project_hash%%[[:blank:]]*}
      fi
    
      # This requires 1 million projects before the probability of collision is 50%
      # that's probably good enough for now :P
      project_hash=${project_hash:0:10}
    
      set-preferred-region
    
      if [[ "${ENABLE_DOCKER_REGISTRY_CACHE:-}" == "true" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_control_test.go

    		rt.parallelLock.Lock()
    		rt.parallelRequests++
    	}
    	defer rt.parallelLock.Unlock()
    	// update the local maximum of parallel collisions
    	if rt.maxParallelRequests < rt.parallelRequests {
    		rt.maxParallelRequests = rt.parallelRequests
    	}
    	// increase the chance of collisions
    	if rt.parallelRequestDelay > 0 {
    		time.Sleep(rt.parallelRequestDelay)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.cc

          Node* n = g->graph.FindNodeId(i);
          if (n == nullptr) continue;
    
          // Adding the gradients to the graph can alter the prefix to prevent
          // name collisions only if this prefix has not been provided explicitly
          // by the user. If it was provided, assert that it remained intact.
          if (prefix != nullptr && !absl::StartsWith(n->name(), prefix_cmp)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

       * hash functions. This is critical when the concurrent hash map uses power-of-two length hash
       * tables, that otherwise encounter collisions for hash codes that do not differ in lower or upper
       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LocalCache.java

       * hash functions. This is critical when the concurrent hash map uses power-of-two length hash
       * tables, that otherwise encounter collisions for hash codes that do not differ in lower or upper
       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    			if len(infiles) != 0 {
    				// Coverage instrumentation creates new top level
    				// variables in the target package for things like
    				// meta-data containers, counter vars, etc. To avoid
    				// collisions with user variables, suffix the var name
    				// with 12 hex digits from the SHA-256 hash of the
    				// import path. Choice of 12 digits is historical/arbitrary,
    				// we just need enough of the hash to avoid accidents,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top