Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 294 for collision (0.25 sec)

  1. src/internal/types/testdata/check/decls2/decls2a.go

    // Disabled for now: LookupFieldOrMethod will find Pointer even though
    // it's double-declared (it would cost extra in the common case to verify
    // this). But the MethodSet computation will not find it due to the name
    // collision caused by the double-declaration, leading to an internal
    // inconsistency while we are verifying one computation against the other.
    // var _ = T1c{}.Pointer
    
    // T2's method declared before the type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pkg/controller/history/controller_history_test.go

    			if created.Name != expectedName {
    				t.Errorf("%s: on name collision wanted new name %s got %s", test.name, expectedName, created.Name)
    			}
    
    			// Second name collision will be caused by an identical revision, so no need to do anything
    			_, err = history.CreateControllerRevision(test.parent, test.revision, &collisionCount)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller.go

    	// so that we can deterministically allocate an IP.
    	// We use "Double Hashning" for collision detection.
    	// The hash algorithm is
    	// - h1(k) = Sum32 hash of the service key (namespace + "/" + hostname)
    	// - Check if we have an empty slot for h1(x) % MAXIPS. Use it if available.
    	// - If there is a collision, apply second hash i.e. h2(x) = PRIME - (Key % PRIME)
    	//   where PRIME is the max prime number below MAXIPS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. pkg/proxy/servicechangetracker.go

    	metrics.ServiceChangesPending.Set(0)
    
    	return result
    }
    
    // merge adds other ServicePortMap's elements to current ServicePortMap.
    // If collision, other ALWAYS win. Otherwise add the other to current.
    // In other words, if some elements in current collisions with other, update the current by other.
    func (sm *ServicePortMap) merge(other ServicePortMap) {
    	for svcPortName, info := range other {
    		_, exists := (*sm)[svcPortName]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. pkg/controller/history/controller_history.go

    	// CreateControllerRevision attempts to create the revision as owned by parent via a ControllerRef. If name
    	// collision occurs, collisionCount (incremented each time collision occurs except for the first time) is
    	// added to the hash of the revision and it is renamed using ControllerRevisionName. Implementations may
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    }
    
    // Recomposition
    // We use 32-bit keys instead of 64-bit for the two codepoint keys.
    // This clips off the bits of three entries, but we know this will not
    // result in a collision. In the unlikely event that changes to
    // UnicodeData.txt introduce collisions, the compiler will catch it.
    // Note that the recomposition map for NFC and NFKC are identical.
    
    // combine returns the combined rune or 0 if it doesn't exist.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"collisionCount":         "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.",
    	"conditions":             "Represents the latest available observations of a DaemonSet's current state.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_control.go

    }
    
    // getStatefulSetRevisions returns the current and update ControllerRevisions for set. It also
    // returns a collision count that records the number of name collisions set saw when creating
    // new ControllerRevisions. This count is incremented on every name collision and is used in
    // building the ControllerRevision names for name collision avoidance. This method may create
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesCachingIntegrationTest.groovy

        }
    }
    """
    
            then:
            succeeds 'checkDeps'
            outputContains('Modified cached rule executed')
    
        }
    
        def 'having a rule triggered on missing metadata does not cause cache collision'() {
            file('deps/projectA-1.0.jar').createFile()
            file('deps/projectB-1.0.jar').createFile()
    
            def cachedRule = file('buildSrc/src/main/groovy/rule/CachedRule.groovy')
            cachedRule.text = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_tf_xla_call_module_to_stablehlo_pass.cc

            casted_operands);
        rewriter.replaceOp(op, call->getResults());
    
        return success();
      }
    
      // Creates a new function name to avoid collision. The naming scheme is
      // XlaCallModule_%s_%d where %s is the original function name and %d is the
      // counter.
      std::string CreateNewFuncName(const StringRef func_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 25 09:43:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top