Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for qsub (0.25 sec)

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

    (MSUB a (MOVDconst [-1]) x) => (ADD a x)
    (MSUB a (MOVDconst [0]) _) => a
    (MSUB a (MOVDconst [1]) x) => (SUB a x)
    (MSUB a (MOVDconst [c]) x) && isPowerOfTwo64(c) => (SUBshiftLL a x [log64(c)])
    (MSUB a (MOVDconst [c]) x) && isPowerOfTwo64(c-1) && c>=3 => (SUB a (ADDshiftLL <x.Type> x x [log64(c-1)]))
    (MSUB a (MOVDconst [c]) x) && isPowerOfTwo64(c+1) && c>=7 => (ADD a (SUBshiftLL <x.Type> x x [log64(c+1)]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/gopath_local.txt

    func main() {
    	easysub.Hello()
    }
    -- testdata/local/hard.go --
    package main
    
    import "./sub"
    
    func main() {
    	sub.Hello()
    }
    -- testdata/local/sub/sub.go --
    package sub
    
    import (
    	"fmt"
    
    	subsub "./sub"
    )
    
    func Hello() {
    	fmt.Println("sub.Hello")
    	subsub.Hello()
    }
    -- testdata/local/sub/sub/subsub.go --
    package subsub
    
    import "fmt"
    
    func Hello() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_buildvcs_auto.txt

    # with '-buildvcs=auto'.
    
    go build -o sub.exe ./sub
    go version -m sub.exe
    ! stdout '^\tbuild\tvcs'
    
    ! go build -buildvcs -o sub.exe ./sub
    stderr '\Aerror obtaining VCS status: main package is in repository ".*" but current directory is in repository ".*"\n\tUse -buildvcs=false to disable VCS stamping.\n\z'
    
    cd ./sub
    go build -o sub.exe .
    go version -m sub.exe
    ! stdout '^\tbuild\tvcs'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_issue56494.txt

    go 1.19
    
    require (
    	b v0.1.0
    	c v0.2.0
    )
    -- a2/a.go --
    package a
    
    import (
    	_ "b"
    	_ "c"
    )
    -- a2/sub/sub.go --
    package sub
    -- a3/go.mod --
    module a
    
    go 1.19
    
    require b v0.2.0
    -- a3/a.go --
    package a
    
    import _ "b"
    -- a3/sub/sub.go --
    package sub
    -- b1/go.mod --
    module b
    
    go 1.19
    -- b1/b.go --
    package b
    -- b2/go.mod --
    module b
    
    go 1.19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cover_build_pkg_select.txt

    module mod.example
    
    go 1.20
    
    require rsc.io/quote/v3 v3.0.0
    
    -- main/main.go --
    package main
    
    import (
    	"fmt"
    	"mod.example/sub"
    
    	"rsc.io/quote"
    )
    
    func main() {
    	fmt.Println(quote.Go(), sub.F())
    }
    
    -- sub/sub.go --
    
    package sub
    
    func F() int {
    	return 42
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/vcstest/git/gitrepo1.txt

    git add another.txt
    git commit -a -m 'another'
    git tag v2.0.2
    
    at 2018-04-17T16:16:52-04:00
    git checkout master
    git branch v3
    git checkout v3
    mkdir v3/sub/dir
    echo 'v3/sub/dir/file'
    cp stdout v3/sub/dir/file.txt
    git add v3
    git commit -a -m 'add v3/sub/dir/file.txt'
    
    at 2018-04-17T22:23:00-04:00
    git checkout master
    git tag -a v1.2.4-annotated -m 'v1.2.4-annotated'
    
    git show-ref --tags --heads
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. doc/next/6-stdlib/3-iter.md

      comparison function.
    - [SortedStableFunc](/pkg/slices#SortedStableFunc) is like `SortFunc`
      but uses a stable sort algorithm.
    - [Chunk](/pkg/slices#Chunk) returns an iterator over consecutive
      sub-slices of up to n elements of a slice.
    
    The [maps] package adds several functions that work with iterators:
    - [All](/pkg/maps#All) returns an iterator over key-value pairs from m.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_fs_patterns.txt

    env GO111MODULE=on
    
    # File system pattern searches should skip sub-modules and vendor directories.
    cd x
    
    # all packages
    go list all
    stdout ^m$
    stdout ^m/vendor$
    ! stdout vendor/
    stdout ^m/y$
    ! stdout ^m/y/z
    
    # path pattern
    go list m/...
    stdout ^m$
    stdout ^m/vendor$
    ! stdout vendor/
    stdout ^m/y$
    ! stdout ^m/y/z
    
    # directory pattern
    go list ./...
    stdout ^m$
    stdout ^m/vendor$
    ! stdout vendor/
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 18:09:53 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (F(MADD|NMADD|MSUB|NMSUB)S neg:(FNEGS x) y z) && neg.Uses == 1 => (F(NMSUB|MSUB|NMADD|MADD)S x y z)
    (F(MADD|NMADD|MSUB|NMSUB)S x y neg:(FNEGS z)) && neg.Uses == 1 => (F(MSUB|NMSUB|MADD|NMADD)S x y z)
    (F(MADD|NMADD|MSUB|NMSUB)D neg:(FNEGD x) y z) && neg.Uses == 1 => (F(NMSUB|MSUB|NMADD|MADD)D x y z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_go_version.txt

    ! go list
    stderr -count=1 '^go: sub@v1.0.0: module ./sub requires go >= 1.999 \(running go 1.21\)$'
    ! go build sub
    stderr -count=1 '^go: sub@v1.0.0: module ./sub requires go >= 1.999 \(running go 1.21\)$'
    
    -- go.mod --
    module m
    go 1.1
    require (
    	sub v1.0.0
    )
    replace (
    	sub => ./sub
    )
    
    -- x.go --
    package x
    
    -- sub/go.mod --
    module sub
    go 1.999
    
    -- sub/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 476 bytes
    - Viewed (0)
Back to top