Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for multiples (0.43 sec)

  1. src/cmd/go/testdata/script/build_pgo_auto_multi.txt

    # Test go build -pgo=auto flag with multiple main packages.
    
    go install -a -n -pgo=auto ./a ./b ./nopgo
    
    # a/default.pgo and b/default.pgo are both preprocessed
    stderr 'preprofile.*-i.*a(/|\\\\)default\.pgo'
    stderr 'preprofile.*-i.*b(/|\\\\)default\.pgo'
    
    # a and b built once each with PGO.
    # Ideally we would check that the passed profile is the expected profile (here
    # and for dependencies). Unfortunately there is no nice way to map the expected
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:38:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_install_pkg_version.txt

    ! go install example.com/cmd/a@v1.0.0 cmd/...@v1.0.0
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 17:25:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Div64 n (Const64 [-1<<63])) && isNonNegative(n)                 => (Const64 [0])
    
    // Unsigned divide, not a power of 2.  Strength reduce to a multiply.
    // For 8-bit divides, we just do a direct 9-bit by 8-bit multiply.
    (Div8u x (Const8 [c])) && umagicOK8(c) =>
      (Trunc32to8
        (Rsh32Ux64 <typ.UInt32>
          (Mul32 <typ.UInt32>
            (Const32 <typ.UInt32> [int32(1<<8+umagic8(c).m)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/list_testdata.txt

    # Issue 65406. The testdata directory in GOROOT/src
    # shouldn't be treated as a standard package.
    
    go list -f '{{.ImportPath}} {{.Dir}}' testdata
    ! stderr 'found package testdata in multiple modules'
    stdout 'testdata '$WORK${/}'gopath'${/}'src'
    
    -- go.mod --
    module testdata
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 295 bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/net/http/66008.md

    The new [ParseCookie] function parses a Cookie header value and
    returns all the cookies which were set in it. Since the same cookie
    name can appear multiple times the returned Values can contain
    more than one value for a given key.
    
    The new [ParseSetCookie] function parses a Set-Cookie header value and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 17:43:50 UTC 2024
    - 359 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_compat_ambiguous.txt

    example\.com/m imports\n\texample\.net/indirect imports\n\texample\.net/ambiguous/nested/pkg loaded from example\.net/ambiguous/nested@v0\.1\.0,\n\tbut go 1.16 would fail to locate it:\n\tambiguous import: found package example\.net/ambiguous/nested/pkg in multiple modules:\n\texample\.net/ambiguous v0.1.0 \(.*\)\n\texample\.net/ambiguous/nested v0.1.0 \(.*\)\n\n'
    
    stderr '\n\nTo proceed despite packages unresolved in go 1\.16:\n\tgo mod tidy -e\nIf reproducibility with go 1.16 is not needed:\n\tgo...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/README

    The command prefix [cond] indicates that the command on the rest of the line
    should only run when the condition is satisfied.
    
    A condition can be negated: [!root] means to run the rest of the line only if
    the user is not root. Multiple conditions may be given for a single command,
    for example, '[linux] [amd64] skip'. The command will run if all conditions are
    satisfied.
    
    When TestScript runs a script and the script fails, by default TestScript shows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (FSUB(S|D) a (FMUL(S|D) x y)) && a.Block.Func.useFMA(v) => (FNMSUB(S|D) x y a)
    (FSUB(S|D) (FMUL(S|D) x y) a) && a.Block.Func.useFMA(v) => (FMSUB(S|D) x y a)
    
    // Merge negation into fused multiply-add and multiply-subtract.
    //
    // Key:
    //
    //   [+ -](x * y [+ -] z).
    //    _ N         A S
    //                D U
    //                D B
    //
    // Note: multiplication commutativity handled by rule generator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // as the original load. If not, we end up making a value with
    // memory type live in two different blocks, which can lead to
    // multiple memory values alive simultaneously.
    // Make sure we don't combine these ops if the load has another use.
    // This prevents a single load from being split into multiple loads
    // which then might return different values.  See test/atomicload.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/work_errors_pos.txt

    # printed on lines starting with file and line number so they
    # can be easily parsed by tools.
    
    cp go.work.repeated.txt go.work
    ! go list
    stderr '^go.work:4: path .* appears multiple times in workspace$'
    
    cp go.work.badgodebug.txt go.work
    ! go list
    stderr '^go.work:3: unknown godebug "foo"$'
    
    cp go.work.unparsable.txt go.work
    ! go list
    stderr '^go.work:5: unknown directive: notadirective'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 926 bytes
    - Viewed (0)
Back to top