Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 162 for NoExperiment (0.21 sec)

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

    # Test that experiments appear in "go version <binary>"
    
    # This test requires rebuilding the runtime, which takes a while.
    [short] skip
    
    env GOEXPERIMENT=fieldtrack
    go build -o main$GOEXE version.go
    go version main$GOEXE
    stdout 'X:fieldtrack$'
    exec ./main$GOEXE
    stderr 'X:fieldtrack$'
    
    -- version.go --
    package main
    import "runtime"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 08 02:17:22 UTC 2021
    - 376 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/env_write.txt

    ! go env -w GOMODCACHE=./test
    stderr 'go: GOMODCACHE entry is relative; must be absolute path: "./test"'
    
    # go env -w checks validity of GOEXPERIMENT
    env GOEXPERIMENT=
    ! go env -w GOEXPERIMENT=badexp
    stderr 'unknown GOEXPERIMENT badexp'
    go env -w GOEXPERIMENT=fieldtrack
    
    # go env -w and go env -u work on unknown fields already in the go/env file
    cp bad.env $GOENV
    go env GOENV
    cat $GOENV
    go env
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 18:42:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/gotoolchain_net.txt

    # The full test of toolchain version selection is in gotoolchain.txt.
    
    # This test is sensitive to "new" Go experiments, so
    # update the environment to remove any existing GOEXPERIMENT
    # setting, see #62016 for more on this. 
    env GOEXPERIMENT=''
    
    env TESTGO_VERSION=go1.21actual
    
    # GOTOOLCHAIN from network, does not exist
    env GOTOOLCHAIN=go1.9999x
    ! go version
    stderr 'go: download go1.9999x for .*: toolchain not available'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 17:16:47 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_concurrent_backend.txt

    # Tests golang.org/issue/48490
    # cmd/go should enable concurrent compilation by default
    
    # Reset all experiments, since one of them can disable
    # concurrent compilation, e.g: fieldtrack.
    env GOEXPERIMENT=none
    
    env GOMAXPROCS=4
    go build -n -x -a fmt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 05 01:30:56 UTC 2021
    - 265 bytes
    - Viewed (0)
  5. src/crypto/internal/boring/syso/syso.go

    // Copyright 2022 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.
    
    //go:build boringcrypto
    
    // This package only exists with GOEXPERIMENT=boringcrypto.
    // It provides the actual syso file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:22 UTC 2022
    - 295 bytes
    - Viewed (0)
  6. test/fixedbugs/issue42686.go

    // compile -goexperiment fieldtrack
    
    // Copyright 2020 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.
    
    package p
    
    func a(x struct{ f int }) { _ = x.f }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 18 21:27:21 UTC 2021
    - 281 bytes
    - Viewed (0)
  7. test/fixedbugs/issue20014.go

    // runindir -goexperiment fieldtrack -ldflags -k=main.fieldTrackInfo
    
    // Copyright 2021 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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 21 20:24:34 UTC 2021
    - 246 bytes
    - Viewed (0)
  8. src/internal/coverage/cfile/ts_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cfile
    
    import (
    	"encoding/json"
    	"flag"
    	"internal/coverage"
    	"internal/goexperiment"
    	"internal/testenv"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"strings"
    	"testing"
    	_ "unsafe"
    )
    
    func testGoCoverDir(t *testing.T) string {
    	if f := flag.Lookup("test.gocoverdir"); f != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. test/fixedbugs/issue19261.go

    // errorcheckdir -0 -m
    
    //go:build !goexperiment.newinliner
    
    // Copyright 2017 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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 237 bytes
    - Viewed (0)
  10. test/fixedbugs/issue42284.go

    // errorcheckdir -0 -m
    
    //go:build !goexperiment.newinliner
    
    // Copyright 2020 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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 237 bytes
    - Viewed (0)
Back to top