Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 294 for collision (0.27 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-input-func-arg-name-collision.pbtxt

    A. Unique TensorFlower <******@****.***> 1605121757 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 4.8K bytes
    - Viewed (0)
  2. test/fixedbugs/issue6269.go

    // issue 6269: name collision on method names for function local types.
    
    package main
    
    type foo struct{}
    
    func (foo) Error() string {
    	return "ok"
    }
    
    type bar struct{}
    
    func (bar) Error() string {
    	return "fail"
    }
    
    func unused() {
    	type collision struct {
    		bar
    	}
    	_ = collision{}
    }
    
    func main() {
    	type collision struct {
    		foo
    	}
    	s := error(collision{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 627 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/list_case_collision.txt

    go list -json example/a
    stdout 'case-insensitive import collision'
    
    ! go build example/a
    stderr 'case-insensitive import collision'
    
    # List files explicitly on command line, to encounter case-checking
    # logic even on case-insensitive filesystems.
    cp b/file.go b/FILE.go  # no-op on case-insensitive filesystems
    ! go list b/file.go b/FILE.go
    stderr 'case-insensitive file name collision'
    
    mkdir a/Pkg  # no-op on case-insensitive filesystems
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_bad_filenames.txt

    stderr 'unzip.*badfile4[\\/]@v[\\/]v1.0.0.zip: rsc.io[\\/]badfile4@v1.0.0[\\/]x[\\/]y.go: case-insensitive file name collision: "x/Y.go" and "x/y.go"'
    stderr 'unzip.*badfile5[\\/]@v[\\/]v1.0.0.zip: rsc.io[\\/]badfile5@v1.0.0[\\/]x[\\/]Y[\\/]zz[\\/]ww.go: case-insensitive file name collision: "x/y" and "x/Y"'
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 01 17:38:07 UTC 2020
    - 708 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. android/guava/src/com/google/common/hash/HashFunction.java

     *       they appear. Input data is never modified. {@link HashFunction} instances should always be
     *       stateless, and therefore thread-safe.
     *   <li><b>collision-averse:</b> while it can't be helped that a hash function will sometimes
     *       produce the same hash code for distinct inputs (a "collision"), every hash function strives
     *       to <i>some</i> degree to make this unlikely. (Without this condition, a function that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/HashFunction.java

     *       they appear. Input data is never modified. {@link HashFunction} instances should always be
     *       stateless, and therefore thread-safe.
     *   <li><b>collision-averse:</b> while it can't be helped that a hash function will sometimes
     *       produce the same hash code for distinct inputs (a "collision"), every hash function strives
     *       to <i>some</i> degree to make this unlikely. (Without this condition, a function that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  10. 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)
Back to top