Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 204 for unambiguous (0.16 sec)

  1. src/cmd/go/testdata/mod/example.com_ambiguous_a_v1.0.0.txt

    Module example.com/ambiguous/a is a prefix of example.com/a/b.
    It contains package example.com/a/b.
    -- .mod --
    module example.com/ambiguous/a
    
    go 1.16
    
    require example.com/ambiguous/a/b v0.0.0-empty
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module example.com/ambiguous/a
    
    go 1.16
    
    require example.com/ambiguous/a/b v0.0.0-empty
    -- b/b.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 23 20:54:35 UTC 2020
    - 356 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/example.com_ambiguous_a_b_v0.0.0-empty.txt

    Module example.com/ambiguous/a/b is a suffix of example.com/a.
    This version contains no package.
    -- .mod --
    module example.com/ambiguous/a/b
    
    go 1.16
    -- .info --
    {"Version":"v0.0.0-empty"}
    -- go.mod --
    module example.com/ambiguous/a/b
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 23 20:54:35 UTC 2020
    - 244 bytes
    - Viewed (0)
  3. test/fixedbugs/issue14321.go

    }
    
    func (A) F() {}
    func (A) G() {}
    
    type B struct{
    	G int
    	H int
    }
    
    func (B) F() {}
    
    type C struct {
    	A
    	B
    }
    
    var _ = C.F // ERROR "ambiguous"
    var _ = C.G // ERROR "ambiguous"
    var _ = C.H // ERROR "ambiguous"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 22 17:50:13 UTC 2020
    - 528 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.net_ambiguous_nested_v0.1.0.txt

    with the same version.
    
    -- .mod --
    module example.net/ambiguous/nested
    
    go 1.16
    -- .info --
    {"Version": "v0.1.0"}
    -- go.mod --
    module example.net/ambiguous/nested
    
    go 1.16
    -- pkg/pkg.go --
    // Package pkg exists in both example.net/ambiguous v0.1.0
    // and example.net/ambiguous/nested v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 30 18:07:21 UTC 2020
    - 402 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_retract_ambiguous_other_v1.0.0.txt

    -- .mod --
    module example.com/retract/ambiguous/other
    
    go 1.16
    
    require example.com/retract/ambiguous v1.0.0
    -- .info --
    {"Version":"v1.0.0"}
    -- other.go --
    package other
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 18 15:31:11 UTC 2020
    - 220 bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/decls3.go

    	_ = S2{}.C
    	_ = S2{}.D /* ERROR "no field or method" */
    	_ = S3{}.S1 /* ERROR "ambiguous selector S3{}.S1" */
    	_ = S3{}.A
    	_ = S3{}.B /* ERROR "ambiguous selector S3{}.B" */
    	_ = S3{}.D
    	_ = S3{}.E
    	_ = S4{}.A
    	_ = S4{}.B /* ERROR "no field or method" */
    	_ = S5{}.X /* ERROR "ambiguous selector S5{}.X" */
    	_ = S5{}.Y
    	_ = S10{}.X /* ERROR "ambiguous selector S10{}.X" */
    	_ = S10{}.Y
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:16:04 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.net_ambiguous_v0.2.0.txt

    with the same version.
    
    -- .mod --
    module example.net/ambiguous
    
    go 1.16
    -- .info --
    {"Version": "v0.2.0"}
    -- go.mod --
    module example.net/ambiguous
    
    go 1.16
    -- nested/pkg/README.txt --
    // Package pkg no longer exists in this module at v0.2.0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 30 18:07:21 UTC 2020
    - 402 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_issue35270.txt

    cd a
    ! go build
    stderr '^ambiguous import: found package image in multiple modules:\s+image\s+.+\s.+image.+\s$'
    
    
    cd ../b
    ! go build -mod=vendor
    stderr '^main.go:4:5: ambiguous import: found package image in multiple directories:\s+.+image\s+.+image\s+$'
    
    cd ../c
    ! go build -mod=vendor
    stderr 'main.go:4:5: package p is not in std'
    
    -- a/go.mod --
    module image
    
    -- a/main.go --
    package main
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 768 bytes
    - Viewed (0)
  9. src/internal/trace/testdata/tests/go122-syscall-steal-proc-ambiguous.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 589 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_moved.txt

    go mod init example.com/foo
    go get example.com/split/subpkg@v1.0.0
    go list -m all
    stdout 'example.com/split v1.0.0'
    
    # A 'go get' that simultaneously upgrades away conflicting package definitions is not ambiguous.
    go get example.com/split/subpkg@v1.1.0
    
    # A 'go get' without an upgrade should find the package.
    rm go.mod
    go mod init example.com/foo
    go get example.com/split/subpkg
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top