Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for top (0.73 sec)

  1. src/cmd/compile/internal/ssa/_gen/386splitload.rules

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // See the top of AMD64splitload.rules for discussion of these rules.
    
    (CMP(L|W|B)load {sym} [off] ptr x mem) => (CMP(L|W|B) (MOV(L|W|B)load {sym} [off] ptr mem) x)
    
    (CMPLconstload {sym} [vo] ptr mem) => (CMPLconst (MOVLload {sym} [vo.Off()] ptr mem) [vo.Val()])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 620 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_pkgtags.txt

    # https://golang.org/issue/44106
    # 'go get' should fetch the transitive dependencies of packages regardless of
    # tags, but shouldn't error out if the package is missing tag-guarded
    # dependencies.
    
    # Control case: just adding the top-level module to the go.mod file does not
    # fetch its dependencies.
    
    go mod edit -require example.net/tools@v0.1.0
    ! go list -deps example.net/cmd/tool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/README

    On Plan 9, the variables $path and $home are set instead of $PATH and $HOME.
    On Windows, the variables $USERPROFILE and $TMP are set instead of
    $HOME and $TMPDIR.
    
    The lines at the top of the script are a sequence of commands to be executed by
    a small script engine configured in ../../script_test.go (not the system shell).
    
    The scripts' supporting files are unpacked relative to $GOPATH/src
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. doc/godebug.md

    The defaults from the `go` and `godebug` lines apply to all main
    packages that are built. For more fine-grained control,
    starting in Go 1.21, a main package's source files
    can include one or more `//go:debug` directives at the top of the file
    (preceding the `package` statement).
    The `godebug` lines in the previous example would be written:
    
    	//go:debug default=go1.21
    	//go:debug panicnil=1
    	//go:debug asynctimerchan=0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/generic.rules

    //    uses must match (be == to) the first use.
    //  - v is defined to be the value matched.
    //  - an additional conditional can be provided after the match pattern with "&&".
    // on the generated side
    //  - the type of the top-level expression is the same as the one on the left-hand side.
    //  - the type of any subexpressions must be specified explicitly (or
    //    be specified in the op's type field).
    //  - auxint will be 0 if not specified.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top