Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 272 for collision (0.31 sec)

  1. src/go/types/methodset.go

    // A methodSet is a set of methods and name collisions.
    // A collision indicates that multiple methods with the
    // same unique id, or a field with that id appeared.
    type methodSet map[string]*Selection // a nil entry indicates a name collision
    
    // Add adds all functions in list to the method set s.
    // If multiples is set, every function in list appears multiple times
    // and is treated as a collision.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/sha3/hashes.go

    // Its generic security strength is 224 bits against preimage attacks,
    // and 112 bits against collision attacks.
    func New224() hash.Hash {
    	return new224()
    }
    
    // New256 creates a new SHA3-256 hash.
    // Its generic security strength is 256 bits against preimage attacks,
    // and 128 bits against collision attacks.
    func New256() hash.Hash {
    	return new256()
    }
    
    // New384 creates a new SHA3-384 hash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_vendor_collision.txt

    ! go build
    stderr 'case-insensitive import collision'
    
    ! go mod vendor
    stderr 'case-insensitive import collision'
    
    -- foo.go --
    package main
    
    import (
    	_ "example.com/Foo"
    	_ "example.com/foo"
    )
    
    func main() {}
    -- go.mod --
    module play.ground
    
    go 1.14
    
    require (
    	example.com/foo v0.1.0
    	example.com/Foo v0.1.0
    )
    
    replace (
    	example.com/foo => ./foo
    	example.com/Foo => ./foo_alt
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:04:57 UTC 2024
    - 528 bytes
    - Viewed (0)
  4. 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)
  5. src/vendor/golang.org/x/crypto/sha3/doc.go

    // bits of output, their collision-resistance is only "x/2" bits.
    //
    // The SHAKE-256 and -128 functions have a generic security strength of 256 and
    // 128 bits against all attacks, provided that at least 2x bits of their output
    // is used.  Requesting more than 64 or 32 bytes of output, respectively, does
    // not increase the collision-resistance of the SHAKE functions.
    //
    // # The sponge construction
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-execution/hashing/src/test/groovy/org/gradle/internal/hash/HashingTest.groovy

            def hash = hasher.hash()
            hash != Hashing.hashString("abc")
        }
    
        def 'hash collision for bytes'() {
            def left = [[1, 2, 3], [4, 5]]
            def right = [[1, 2], [3, 4, 5]]
            expect:
            hashKey(left) != hashKey(right)
        }
    
        def 'hash collision for strings'() {
            expect:
            hashStrings(["abc", "de"]) != hashStrings(["ab", "cde"])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/DuplicateProjectException.java

         * @param collisions The POM files of the projects that collided, indexed by their g:a:v, may be {@code null}.
         */
        public DuplicateProjectException(String message, Map<String, List<File>> collisions) {
            super(message, (File) null);
    
            this.collisions = (collisions != null) ? collisions : new LinkedHashMap<>();
        }
    
        /**
         * Gets the POM files of the projects that collided.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/runtime/covermeta.go

    	id := rtcov.AddMeta(p, dlen, hash, pkgpath, pkgid, cmode, cgran)
    	if id == 0 {
    		throw("runtime.addCovMeta: coverage package map collision")
    	}
    	return id
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 603 bytes
    - Viewed (0)
  9. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationStartedNotification.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 BuildOperationStartedNotification {
    
        /**
         * A unique, opaque, value identifying this operation.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. src/crypto/rsa/example_test.go

    	message := []byte("message to be signed")
    
    	// Only small messages can be signed directly; thus the hash of a
    	// message, rather than the message itself, is signed. This requires
    	// that the hash function be collision resistant. SHA-256 is the
    	// least-strong hash function that should be used for this at the time
    	// of writing (2016).
    	hashed := sha256.Sum256(message)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:52:37 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top