Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 272 for collision (0.34 sec)

  1. cni/pkg/nodeagent/options.go

    	// APIPA/"link-local" IP.
    	//
    	// It doesn't matter what this IP is, so long as it's not routable and doesn't collide with anything else.
    	//
    	// IPv6 link local ranges are designed to be collision-resistant by default, and so probably never need to be overridden
    	DefaultHostProbeSNATIP   = "169.254.7.127"
    	DefaultHostProbeSNATIPV6 = "fd16:9254:7127:1337:ffff:ffff:ffff:ffff"
    )
    
    type AmbientArgs struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationProgressNotification.java

     *
     * The methods of this interface are awkwardly prefixed to allow
     * internal types to implement this interface along with other internal interfaces
     * without risking method collision.
     *
     * @since 4.4
     */
    @UsedByScanPlugin
    public interface BuildOperationProgressNotification {
    
        /**
         * The operation ID.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationFinishedNotification.java

     *
     * The methods of this interface are awkwardly prefixed to allow
     * internal types to implement this interface along with other internal interfaces
     * without risking method collision.
     *
     * @since 4.0
     */
    @UsedByScanPlugin
    public interface BuildOperationFinishedNotification {
    
        /**
         * The operation ID.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassGeneratorSuffixRegistry.java

    import java.util.Map;
    import java.util.concurrent.ConcurrentHashMap;
    
    public class ClassGeneratorSuffixRegistry {
        // Use Throwable to record the location where a suffix was registered, to allow diagnostics when a collision is found
        // This may have performance implications, however the assumption is that class generators are global scoped objects that are created once and in very small numbers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/cache.go

    // this is relevant in the context of nonce collision since transformers that are created
    // from encrypted DEKs retrieved from etcd cannot maintain their nonce counter state.
    type simpleCache struct {
    	cache *utilcache.Expiring
    	ttl   time.Duration
    	// hashPool is a per cache pool of hash.Hash (to avoid allocations from building the Hash)
    	// SHA-256 is used to prevent collisions
    	hashPool        *sync.Pool
    	providerName    string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 31 20:26:58 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top