Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Stuart (0.57 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/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)
  4. src/database/sql/doc.txt

    * Provide optional interfaces in sql/driver for drivers to implement
      for special cases or fastpaths.  But the only party that knows about
      those is the sql package.  To user code, some stuff just might start
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 06:48:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_edit.txt

    cmpenv go.mod go.mod.edit
    
    # go mod edit -godebug
    cd $WORK/g
    cp go.mod.start go.mod
    go mod edit -godebug key=value
    cmpenv go.mod go.mod.edit
    go mod edit -dropgodebug key2
    cmpenv go.mod go.mod.edit
    go mod edit -dropgodebug key
    cmpenv go.mod go.mod.start
    
    -- x.go --
    package x
    
    -- w/w.go --
    package w
    
    -- $WORK/go.mod.init --
    module x.x/y/z
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top