Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 103 for collision (0.64 sec)

  1. src/go/types/stmt.go

    // 		var hash string
    // 		if check.isNil(e) {
    // 			check.expr(nil, &dummy, e) // run e through expr so we get the usual Info recordings
    // 			T = nil
    // 			hash = "<nil>" // avoid collision with a type named nil
    // 		} else {
    // 			T = check.varType(e)
    // 			if !isValid(T) {
    // 				continue L
    // 			}
    // 			hash = typeHash(T, nil)
    // 		}
    // 		// look for duplicate types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/types.go

    	Generation int64
    }
    
    // nextGeneration: Let's make sure history never forgets the name...
    // Increments the generation number monotonically ensuring that generation numbers never collide.
    // Collision of the generation numbers would be particularly problematic if a node was deleted and
    // added back with the same name. See issue#63262.
    func nextGeneration() int64 {
    	return atomic.AddInt64(&generation, 1)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  3. src/go/doc/comment/parse.go

    // d.LookupPackage provides a way for the caller to allow resolving such names with reference
    // to the imports in the surrounding package.
    //
    // There is one collision between these two cases: single-element standard library names
    // like "math" are full import paths but don't contain slashes. We let d.LookupPackage have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  4. 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. 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)
  6. pkg/controller/controller_utils.go

    	return err
    }
    
    // ComputeHash returns a hash value calculated from pod template and
    // a collisionCount to avoid hash collision. The hash will be safe encoded to
    // avoid bad words.
    func ComputeHash(template *v1.PodTemplateSpec, collisionCount *int32) string {
    	podTemplateSpecHasher := fnv.New32a()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  7. src/hash/maphash/smhasher_test.go

    	list := s.list
    	slices.Sort(list)
    
    	collisions := 0
    	for i := 1; i < len(list); i++ {
    		if list[i] == list[i-1] {
    			collisions++
    		}
    	}
    	n := len(list)
    
    	const SLOP = 10.0
    	pairs := int64(n) * int64(n-1) / 2
    	expected := float64(pairs) / math.Pow(2.0, float64(hashSize))
    	stddev := math.Sqrt(expected)
    	if float64(collisions) > expected+SLOP*(3*stddev+1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/runtime/hash_test.go

    	list := s.list
    	slices.Sort(list)
    
    	collisions := 0
    	for i := 1; i < len(list); i++ {
    		if list[i] == list[i-1] {
    			collisions++
    		}
    	}
    	n := len(list)
    
    	const SLOP = 50.0
    	pairs := int64(n) * int64(n-1) / 2
    	expected := float64(pairs) / math.Pow(2.0, float64(hashSize))
    	stddev := math.Sqrt(expected)
    	if float64(collisions) > expected+SLOP*(3*stddev+1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors.go

    	// provided (e.g. empty strings, null values, or empty arrays).  See
    	// Required().
    	ErrorTypeRequired ErrorType = "FieldValueRequired"
    	// ErrorTypeDuplicate is used to report collisions of values that must be
    	// unique (e.g. unique IDs).  See Duplicate().
    	ErrorTypeDuplicate ErrorType = "FieldValueDuplicate"
    	// ErrorTypeInvalid is used to report malformed values (e.g. failed regex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. src/crypto/ed25519/ed25519.go

    	// uint8-length prefixed context.
    	domPrefixPh = "SigEd25519 no Ed25519 collisions\x01"
    	// domPrefixCtx is dom2(phflag=0) for Ed25519ctx. It must be followed by the
    	// uint8-length prefixed context.
    	domPrefixCtx = "SigEd25519 no Ed25519 collisions\x00"
    )
    
    func sign(signature, privateKey, message []byte, domPrefix, context string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top