Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for Stuart (0.43 sec)

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

    cmp stdout go.work.want_json
    
    # go work edit -godebug
    cd $WORK/g
    cp go.work.start go.work
    go work edit -godebug key=value
    cmpenv go.work go.work.edit
    go work edit -dropgodebug key2
    cmpenv go.work go.work.edit
    go work edit -dropgodebug key
    cmpenv go.work go.work.start
    
    # go work edit -print -fmt
    env GOWORK=$GOPATH/src/unformatted
    go work edit -print -fmt
    cmp stdout $GOPATH/src/formatted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/build_pgo_auto.txt

    stderr 'preprofile.*-i.*default\.pgo'
    stderr 'compile.*-pgoprofile=.*a1.go'
    
    # check that pgo applied to dependencies
    stderr 'compile.*-p test/dep.*-pgoprofile=.*'
    
    # check that pgo appears in build info
    # N.B. we can't start the stdout check with -pgo because the script assumes that
    # if the first arg starts with - it is a grep flag.
    stderr 'build\\t-pgo=.*default\.pgo'
    
    # check also that -pgo appears with the other flags, before non-flag settings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cover_build_pkg_select.txt

    ! grep 'mod.example/sub/sub.go:' $WORK/covdata2/out.txt
    grep 'rsc.io' $WORK/covdata2/out.txt
    ! grep 'bufio/bufio.go:' $WORK/covdata2/out.txt
    
    #-------------------------------------------
    # end of test cmds, start of harness and related files.
    
    -- go.mod --
    module mod.example
    
    go 1.20
    
    require rsc.io/quote/v3 v3.0.0
    
    -- main/main.go --
    package main
    
    import (
    	"fmt"
    	"mod.example/sub"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. api/go1.20.txt

    pkg syscall (freebsd-riscv64), type Flock_t struct, Pad_cgo_0 [4]uint8 #53466
    pkg syscall (freebsd-riscv64), type Flock_t struct, Pid int32 #53466
    pkg syscall (freebsd-riscv64), type Flock_t struct, Start int64 #53466
    pkg syscall (freebsd-riscv64), type Flock_t struct, Sysid int32 #53466
    pkg syscall (freebsd-riscv64), type Flock_t struct, Type int16 #53466
    pkg syscall (freebsd-riscv64), type Flock_t struct, Whence int16 #53466
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_pgo.txt

    		panic(err)
    	}
    	err = pprof.StartCPUProfile(f)
    	if err != nil {
    		panic(err)
    	}
    	// Spin to ensure we get some samples. If we get no samples, the result
    	// is equivalent to an empty profile.
    	start := time.Now()
    	for time.Since(start) < 100*time.Millisecond {}
    	pprof.StopCPUProfile()
    	f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/clean_cache_n.txt

    # We're testing cache behavior, so start with a clean GOCACHE.
    env GOCACHE=$WORK/cache
    
    # Build something so that the cache gets populates
    go build main.go
    
    # Check that cache contains directories before running
    exists $GOCACHE/00
    
    # Run go clean -cache -n and ensure that directories weren't deleted
    go clean -cache -n
    exists $GOCACHE/00
    
    # Re-run go clean cache without the -n flag go ensure that directories were properly removed
    go clean -cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 637 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_test_pkgselect.txt

    stdout 'coverage: \[no statements\]'
    
    # Ask for foo coverage, but test bar.
    go test -coverpkg=example/foo example/bar
    stdout 'coverage: 50.0% of statements in example/foo'
    
    # end of test cmds, start of harness and related files.
    
    -- go.mod --
    module example
    
    go 1.18
    
    -- foo/foo.go --
    package foo
    
    func FooFunc() int {
    	return 42
    }
    func FooFunc2() int {
    	return 42
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cgo_stale_precompiled.txt

    # A missing $CC caused the C dependencies of the net
    # package to appear stale, and it could not be rebuilt due to a missing $CC.
    
    [!cgo] skip
    
    # This test may start with the runtime/cgo package already stale.
    # Explicitly rebuild it to ensure that it is cached.
    # (See https://go.dev/issue/50892.)
    #
    # If running in non-short mode, explicitly vary CGO_CFLAGS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_vendor_modules_txt_conditional.txt

    # This test checks to see if we only start in workspace vendor
    # mode if the modules.txt specifies ## workspace (and only in
    # standard vendor if it doesn't).
    
    # vendor directory produced for workspace, workspace mode
    # runs in mod=vendor
    go work vendor
    cmp vendor/modules.txt want_workspace_modules_txt
    go list -f {{.Dir}} example.com/b
    stdout $GOPATH[\\/]src[\\/]vendor[\\/]example.com[\\/]b
    
    # vendor directory produced for workspace, module mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/vcstest/git/querytest.txt

    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    git init
    
    at 2018-07-03T22:31:01-04:00
    git add go.mod
    git commit -a -m 'v1'
    git branch -m master
    git tag start
    
    git branch v2
    
    at 2018-07-03T22:33:47-04:00
    echo 'before v0.0.0-pre1'
    cp stdout status
    git add status
    git commit -a -m 'before v0.0.0-pre1'
    
    echo 'at v0.0.0-pre1'
    cp stdout status
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 6K bytes
    - Viewed (0)
Back to top