Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 188 for exclude (2.71 sec)

  1. src/cmd/distpack/test.go

    	{name: "go/.gitattributes", exclude: true},
    	{name: "go/.github", exclude: true},
    	{name: "go/VERSION.cache", exclude: true},
    	{name: "go/bin", exclude: true},
    	{name: "go/pkg", exclude: true},
    	{name: "go/src/cmd/dist/dist", exclude: true},
    	{name: "go/src/cmd/dist/dist.exe", exclude: true},
    
    	{name: "go/bin/go", goos: "linux"},
    	{name: "go/bin/go", goos: "darwin"},
    	{name: "go/bin/go", goos: "windows", exclude: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 22:29:19 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/fmt_load_errors.txt

    stderr -count=1 'nopackage\.go:1:1: expected .package., found not'
    
    -- exclude/empty/x.txt --
    -- exclude/ignore/_x.go --
    package x
    -- exclude/x.go --
    // +build linux,!linux
    
    package x
    -- exclude/x_linux.go --
    // +build windows
    
    package x
    -- gofmt-dir/no-extension --
    package x
    -- empty.go --
    -- nopackage.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 09:17:34 UTC 2022
    - 775 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_exclude_go121.txt

    cp $WORK/go.mod.badfmtexclude go.mod
    go mod edit -go=1.20
    cmp go.mod $WORK/go.mod.goodfmtexclude120
    go mod edit -go=1.21
    cmp go.mod $WORK/go.mod.goodfmtexclude121
    
    -- $WORK/go.mod.badfmtexclude --
    module     x.x/y/z
    exclude  (
    	x.1   v1.11.0
    	x.1    v1.10.0
    	x.1     v1.9.0
    )
    -- $WORK/go.mod.goodfmtexclude120 --
    module x.x/y/z
    
    go 1.20
    
    exclude (
    	x.1 v1.10.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 17:26:48 UTC 2023
    - 563 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_empty_err.txt

    -- $WORK/go.mod --
    module example.com/m
    
    go 1.14
    
    -- $WORK/empty/empty.txt --
    -- $WORK/exclude/exclude.go --
    // +build exclude
    
    package exclude
    -- $WORK/testonly/testonly_test.go --
    package testonly_test
    -- $WORK/excluded-stdout --
    package ./excluded: cannot find package "." in:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 922 bytes
    - Viewed (0)
  5. .gitignore

    /test/run.out
    /test/times.out
    
    # This file includes artifacts of Go build that should not be checked in.
    # For files created by specific development environment (e.g. editor),
    # use alternative ways to exclude files from git.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 958 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    
    # 'go install pkg@version' should report errors if the module contains
    # replace or exclude directives.
    go mod download example.com/cmd@v1.0.0-replace
    ! go install example.com/cmd/a@v1.0.0-replace
    cmp stderr replace-err
    
    go mod download example.com/cmd@v1.0.0-exclude
    ! go install example.com/cmd/a@v1.0.0-exclude
    cmp stderr exclude-err
    
    # 'go install pkg@version' should report an error if the module requires a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/generate_invalid.txt

    Go generate should ignore this directory.
    //go:generate echo Fail nogo
    
    -- excluded/a.go --
    // Include a build tag that go generate should exclude.
    // Go generate should ignore this file.
    
    // +build a
    
    //go:generate echo Fail a
    
    package excluded
    
    -- excluded/b.go --
    // Include a build tag that go generate should exclude.
    // Go generate should ignore this file.
    
    //go:generate echo Fail b
    
    // +build b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:48:44 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_query_exclude.txt

    # get excluded version
    cp go.exclude.mod go.exclude.mod.orig
    ! go get -modfile=go.exclude.mod rsc.io/quote@v1.5.0
    stderr '^go: rsc.io/quote@v1.5.0: excluded by go.mod$'
    
    # get non-excluded version
    cp go.exclude.mod.orig go.exclude.mod
    go get -modfile=go.exclude.mod rsc.io/quote@v1.5.1
    stderr 'rsc.io/quote v1.5.1'
    
    # get query with excluded version
    cp go.exclude.mod.orig go.exclude.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_edit.txt

    cmpenv go.mod $WORK/go.mod.edit2
    
    # -exclude and -retract reject invalid versions.
    ! go mod edit -exclude=example.com/m@bad
    stderr '^go: -exclude=example.com/m@bad: version "bad" invalid: must be of the form v1.2.3$'
    ! go mod edit -retract=bad
    stderr '^go: -retract=bad: version "bad" invalid: must be of the form v1.2.3$'
    
    ! go mod edit -exclude=example.com/m@v2.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_unsupported_goos.txt

    [compiler:gccgo] skip # gccgo assumes cross-compilation is always possible
    
    env GOOS=windwos # intentional misspelling of windows
    
    ! go build -n exclude
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 18:25:35 UTC 2023
    - 191 bytes
    - Viewed (0)
Back to top