Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for collision (0.49 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

            expect:
            changes(NORMALIZED, [
                "modified-with-collision/input": fingerprint("input", 1),
                "unmodified/input": fingerprint("input", 1)
            ], [
                "modified-with-collision/input": fingerprint("input", 0),
                "unmodified/input": fingerprint("input", 1)
            ]) == [modified("modified-with-collision/input": "input")]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. pkg/controller/daemon/update.go

    			return existedHistory, nil
    		}
    
    		// Handle name collisions between different history
    		// Get the latest DaemonSet from the API server to make sure collision count is only increased when necessary
    		currDS, getErr := dsc.kubeClient.AppsV1().DaemonSets(ds.Namespace).Get(ctx, ds.Name, metav1.GetOptions{})
    		if getErr != nil {
    			return nil, getErr
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                    if (pomFiles == null) {
                        pomFiles = new ArrayList<>(Arrays.asList(collision.getFile(), project.getFile()));
                        collisions.put(projectId, pomFiles);
                    } else {
                        pomFiles.add(project.getFile());
                    }
                }
            }
    
            if (!collisions.isEmpty()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiIntegrationTest.groovy

                       "due to: Could not HEAD 'https://exoticJavaToolchain.com/java-99'.).")
        }
    
        def "fails on registration collision"() {
            settingsFile << """
                ${applyToolchainResolverPlugin("UselessToolchainResolver", NO_RESOLVER, "UselessPlugin1", NO_TOOLCHAIN_MANAGEMENT)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/lookup.go

    							return nil, index, false // collision
    						}
    						obj = f
    						indirect = e.indirect
    						continue // we can't have a matching interface method
    					}
    					// Collect embedded struct fields for searching the next
    					// lower depth, but only if we have not seen a match yet
    					// (if we have a match it is either the desired field or
    					// we have a name collision on the same depth; in either
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. src/go/types/lookup.go

    							return nil, index, false // collision
    						}
    						obj = f
    						indirect = e.indirect
    						continue // we can't have a matching interface method
    					}
    					// Collect embedded struct fields for searching the next
    					// lower depth, but only if we have not seen a match yet
    					// (if we have a match it is either the desired field or
    					// we have a name collision on the same depth; in either
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top