Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 105 for collision (0.2 sec)

  1. 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)
  2. 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)
  3. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

            // probably intended. So no point in using an equal-but-different factory argument.
            // We check twice to avoid confusion caused by accidental hash collision.
            equalArgs.set(i, shouldBeEqualArg);
          }
        }
        return equalArgs;
      }
    
      private static boolean hashCodeInsensitiveToArgReference(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

            // probably intended. So no point in using an equal-but-different factory argument.
            // We check twice to avoid confusion caused by accidental hash collision.
            equalArgs.set(i, shouldBeEqualArg);
          }
        }
        return equalArgs;
      }
    
      private static boolean hashCodeInsensitiveToArgReference(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/gateway.go

    		for _, s := range gatewayCfg.Servers {
    			if len(s.Name) > 0 {
    				if snames.InsertContains(s.Name) {
    					log.Warnf("Server name %s is not unique in gateway %s and may create possible issues like stat prefix collision ",
    						s.Name, gatewayName)
    				}
    			}
    			if s.Port == nil {
    				// Should be rejected in validation, this is an extra check
    				log.Debugf("invalid server without port: %q", gatewayName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/decl.go

    		for _, fld := range t.fields {
    			if fld.name != "_" {
    				if alt := mset.insert(fld); alt != nil {
    					// Struct fields should already be unique, so we should only
    					// encounter an alternate via collision with a method name.
    					_ = alt.(*Func)
    
    					// For historical consistency, we report the primary error on the
    					// method, and the alt decl on the field.
    					err := check.newError(DuplicateFieldAndMethod)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/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.7K bytes
    - Viewed (0)
  8. src/go/types/decl.go

    		for _, fld := range t.fields {
    			if fld.name != "_" {
    				if alt := mset.insert(fld); alt != nil {
    					// Struct fields should already be unique, so we should only
    					// encounter an alternate via collision with a method name.
    					_ = alt.(*Func)
    
    					// For historical consistency, we report the primary error on the
    					// method, and the alt decl on the field.
    					err := check.newError(DuplicateFieldAndMethod)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top