Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Greter (2.88 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64latelower.rules

    // See comments in ARM64latelower.rules...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 636 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_retract_incompatible.txt

    # The current version of a module should not be considered when loading
    # retractions. If the current version is +incompatible, we should not prefer
    # +incompatible versions when looking for retractions.
    # Verifies #42601.
    
    go mod init m
    
    # Request a +incompatible version retracted in v1.0.0.
    go get example.com/retract/incompatible@v2.0.0+incompatible
    stderr '^go: warning: example.com/retract/incompatible@v2.0.0\+incompatible: retracted by module author$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 716 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_compile_multi_pkg.txt

    go test -c ./pkg/...
    exists -exec pkg1.test$GOEXE
    exists -exec pkg2.test$GOEXE
    
    ! go test -c -o $WORK/bin/test/bin.test.exe ./pkg/...
    stderr '^with multiple packages, -o must refer to a directory or '$devnull
    
    ! go test -c ./...
    stderr '^cannot write test binary pkg1.test for multiple packages:\nexample/anotherpkg/pkg1\nexample/pkg/pkg1'
    
    ! go test -c -o $WORK/bin/test/ ./...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:09:34 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_query.txt

    go list -m rsc.io/quote@v1.5
    stdout 'rsc.io/quote v1.5.2$'
    
    # We should fall back to prereleases if no release tags match...
    go list -m rsc.io/quote@>v1.5.2
    stdout 'rsc.io/quote v1.5.3-pre1$'
    
    # ...but prefer release versions when given the option.
    go list -m rsc.io/quote@<v1.5.4
    stdout 'rsc.io/quote v1.5.2$'
    
    ! go list -m rsc.io/quote@>v1.5.3
    stderr 'go: module rsc.io/quote: no matching versions for query ">v1.5.3"'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_main.txt

    ! go get $WORK/...
    stderr '^go: '$WORK'[/\\]\.\.\. is not within module rooted at '$WORK'[/\\]gopath[/\\]src$'
    
    # @patch and @latest within the main module refer to the current version.
    # The main module won't be upgraded, but missing dependencies will be added.
    go get rsc.io/x
    grep 'rsc.io/quote v1.5.2' go.mod
    go get rsc.io/x@upgrade
    grep 'rsc.io/quote v1.5.2' go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    stderr '^package cmd/go not provided by module example.com/cmd@v1.0.0$'
    
    # 'go install pkg@version' should accept multiple arguments but report an error
    # if the version suffixes are different, even if they refer to the same version.
    go install example.com/cmd/a@v1.0.0 example.com/cmd/b@v1.0.0
    exists $GOPATH/bin/a$GOEXE
    exists $GOPATH/bin/b$GOEXE
    rm $GOPATH/bin
    
    env GO111MODULE=on
    go list -m example.com/cmd@latest
    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/test_fuzz_cache.txt

    }
    
    func FuzzY(f *testing.F) {
    	f.Add([]byte("y"))
    	f.Fuzz(func(t *testing.T, b []byte) { Y(io.Discard, b) })
    }
    -- y.go --
    package y
    
    import (
    	"bytes"
    	"io"
    )
    
    func Y(w io.Writer, b []byte) {
    	if !bytes.Equal(b, []byte("y")) {
    		w.Write([]byte("not equal"))
    	}
    }
    -- empty/empty.go --
    package empty
    -- contains_files/contains_files.go --
    package main
    
    import (
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_doc.txt

    # When in a module with a vendor directory, doc should use the vendored copies
    # of the packages. 'std' and 'cmd' are convenient examples of such modules.
    #
    # When in those modules, the "// import" comment should refer to the same import
    # path used in source code, not to the absolute path relative to GOROOT.
    
    cd $GOROOT/src
    env GOFLAGS=
    env GOWORK=off
    go doc cryptobyte
    stdout '// import "golang.org/x/crypto/cryptobyte"'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. doc/README.md

    To begin the next release development cycle, populate the contents of `next`
    with those of `initial`. From the repo root:
    
        > cd doc
        > cp -r initial/* next
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. doc/next/5-toolchain.md

    ## Assembler {#assembler}
    
    ## Linker {#linker}
    
    <!-- go.dev/issue/67401, CL 585556, CL 587220, and many more -->
    The linker now disallows using a `//go:linkname` directive to refer to
    internal symbols in the standard library (including the runtime) that
    are not marked with `//go:linkname` on their definitions.
    Similarly, the linker disallows references to such symbols from assembly
    code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top