Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 105 for collision (0.23 sec)

  1. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    				},
    			},
    		},
    		{
    			name: "collision",
    			inServices: []*model.Service{
    				{
    					Hostname:       "a17061.example.com",
    					Resolution:     model.DNSLB,
    					DefaultAddress: "0.0.0.0",
    				},
    				{
    					// hashes to the same value as the hostname above,
    					// a new collision needs to be found if the hash algorithm changes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Ordering.java

          int leftCode = identityHashCode(left);
          int rightCode = identityHashCode(right);
          if (leftCode != rightCode) {
            return leftCode < rightCode ? -1 : 1;
          }
    
          // identityHashCode collision (rare, but not as rare as you'd think)
          int result = getUid(left).compareTo(getUid(right));
          if (result == 0) {
            throw new AssertionError(); // extremely, extremely unlikely.
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. 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)
  4. android/guava/src/com/google/common/collect/Ordering.java

          int leftCode = identityHashCode(left);
          int rightCode = identityHashCode(right);
          if (leftCode != rightCode) {
            return leftCode < rightCode ? -1 : 1;
          }
    
          // identityHashCode collision (rare, but not as rare as you'd think)
          int result = getUid(left).compareTo(getUid(right));
          if (result == 0) {
            throw new AssertionError(); // extremely, extremely unlikely.
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  5. 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)
  6. pilot/pkg/networking/core/listener.go

    				// for user defined Egress listeners with ports. And these should occur in the API before
    				// the wildcard egress listener. the check for the "locked" bit will eliminate the collision.
    				// User is also not allowed to add duplicate ports in the egress listener
    				var newHostname host.Name
    				if opts.service != nil {
    					newHostname = opts.service.Hostname
    				} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    			// an 8 bytes nonce but its nonces must be unpredictable (see RFC
    			// 5246, Appendix F.3), forcing us to use randomness. That's not
    			// 3DES' biggest problem anyway because the birthday bound on block
    			// collision is reached first due to its similarly small block size
    			// (see the Sweet32 attack).
    			copy(explicitNonce, hc.seq[:])
    		} else {
    			if _, err := io.ReadFull(rand, explicitNonce); err != nil {
    				return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    			t.Fatalf("unexpected error waiting for the cache to be ready")
    		}
    	}
    
    	pred := storage.Everything
    	pred.AllowWatchBookmarks = true
    
    	// run the collision test for 3 seconds to let ~2 buckets expire
    	stopCh := make(chan struct{})
    	var watchErr error
    	time.AfterFunc(3*time.Second, func() { close(stopCh) })
    
    	wg := &sync.WaitGroup{}
    
    	wg.Add(1)
    	go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation_test.go

    		"name not found":                         {{Name: "", MountPath: "/foo"}},
    		"empty mountpath":                        {{Name: "abc", MountPath: ""}},
    		"mountpath collision":                    {{Name: "foo", MountPath: "/path/a"}, {Name: "bar", MountPath: "/path/a"}},
    		"absolute subpath":                       {{Name: "abc", MountPath: "/bar", SubPath: "/baz"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  10. .typos.toml

    [files]
    extend-exclude = [
        ".git/",
        "docs/",
    ]
    ignore-hidden = false
    
    [default]
    extend-ignore-re = [
        "Patrick Collison",
        "Copyright 2014 Unknwon",
        "[0-9A-Za-z/+=]{64}",
        "ZXJuZXQxDjAMBgNVBA-some-junk-Q4wDAYDVQQLEwVNaW5pbzEOMAwGA1UEAxMF",
        "eyJmb28iOiJiYXIifQ",
        "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.*",
        "MIIDBTCCAe2gAwIBAgIQWHw7h.*",
        'http\.Header\{"X-Amz-Server-Side-Encryptio":',
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 18 15:15:02 UTC 2024
    - 854 bytes
    - Viewed (0)
Back to top