Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for collision (0.17 sec)

  1. staging/src/k8s.io/api/apps/v1/types.go

    	// [replicas-updatedReplicas,replicas)
    	UpdateRevision string `json:"updateRevision,omitempty" protobuf:"bytes,7,opt,name=updateRevision"`
    
    	// collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller
    	// uses this field as a collision avoidance mechanism when it needs to create the name for the
    	// newest ControllerRevision.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  2. cmd/bucket-handlers.go

    			// No IPs seem to intersect, this means that bucket exists but has
    			// different IP addresses perhaps from a different deployment.
    			// bucket names are globally unique in federation at a given
    			// path prefix, name collision is not allowed. We simply log
    			// an error and continue.
    			bucketsInConflict.Add(bucket.Name)
    		}
    	}
    
    	// Add/update buckets that are not registered with the DNS
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/runtime/malloc.go

    			case GOARCH == "arm64":
    				p = uintptr(i)<<40 | uintptrMask&(0x0040<<32)
    			case GOOS == "aix":
    				if i == 0 {
    					// We don't use addresses directly after 0x0A00000000000000
    					// to avoid collisions with others mmaps done by non-go programs.
    					continue
    				}
    				p = uintptr(i)<<40 | uintptrMask&(0xa0<<52)
    			default:
    				p = uintptr(i)<<40 | uintptrMask&(0x00c0<<32)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/runtime/map.go

    					i--
    				}
    				if b.tophash[i] != emptyOne {
    					break
    				}
    			}
    		notLast:
    			h.count--
    			// Reset the hash seed to make it more difficult for attackers to
    			// repeatedly trigger hash collisions. See issue 25237.
    			if h.count == 0 {
    				h.hash0 = uint32(rand())
    			}
    			break search
    		}
    	}
    
    	if h.flags&hashWriting == 0 {
    		fatal("concurrent map writes")
    	}
    	h.flags &^= hashWriting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. pkg/proxy/winkernel/proxier.go

    	return int(info.port)
    }
    
    // Uses mac prefix and IPv4 address to return a mac address
    // This ensures mac addresses are unique for proper load balancing
    // There is a possibility of MAC collisions but this Mac address is used for remote endpoints only
    // and not sent on the wire.
    func conjureMac(macPrefix string, ip net.IP) string {
    	if ip4 := ip.To4(); ip4 != nil {
    		a, b, c, d := ip4[0], ip4[1], ip4[2], ip4[3]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  10. istioctl/pkg/describe/describe.go

    					"Warning: No Kubernetes Services select pod %s (see https://istio.io/docs/setup/kubernetes/additional-setup/requirements/ )\n", // nolint: lll
    					kname(pod.ObjectMeta))
    			}
    			// TODO look for port collisions between services targeting this pod
    
    			kubeClient, err := ctx.CLIClientWithRevision(opts.Revision)
    			if err != nil {
    				return err
    			}
    
    			configClient := client.Istio()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top