Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 159 for GOEXPERIMENT (0.14 sec)

  1. test/live_regabi.go

    // errorcheckwithauto -0 -l -live -wb=0 -d=ssa/insert_resched_checks/off
    
    //go:build (amd64 && goexperiment.regabiargs) || (arm64 && goexperiment.regabiargs)
    
    // Copyright 2014 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.
    
    // liveness tests with inlining disabled.
    // see also live2.go.
    
    package main
    
    import "runtime"
    
    func printnl()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  2. test/inline.go

    // errorcheckwithauto -0 -m -d=inlfuncswithclosures=1
    
    //go:build !goexperiment.newinliner
    
    // Copyright 2015 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.
    
    // Test, using compiler diagnostic flags, that inlining is working.
    // Compiles but does not run.
    
    package foo
    
    import (
    	"errors"
    	"runtime"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/build.go

    	}
    	if ctxt.GOOS == "ios" && name == "darwin" {
    		return true
    	}
    	if name == "unix" && unixOS[ctxt.GOOS] {
    		return true
    	}
    	if name == "boringcrypto" {
    		name = "goexperiment.boringcrypto" // boringcrypto is an old name for goexperiment.boringcrypto
    	}
    
    	// other tags
    	for _, tag := range ctxt.BuildTags {
    		if tag == name {
    			return true
    		}
    	}
    	for _, tag := range ctxt.ToolTags {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  4. test/rangegen.go

    // runoutput -goexperiment rangefunc
    
    // Copyright 2023 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.
    
    // Torture test for range-over-func.
    //
    // cmd/internal/testdir runs this like
    //
    //	go run rangegen.go >x.go
    //	go run x.go
    //
    // but a longer version can be run using
    //
    //	go run rangegen.go long
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 23:35:19 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    				pkg:      "crypto/x509",
    			})
    	}
    
    	// GOEXPERIMENT=rangefunc tests
    	if !t.compileOnly {
    		for _, pkg := range []string{"iter", "slices", "maps"} {
    			t.registerTest("GOEXPERIMENT=rangefunc",
    				&goTest{
    					variant: pkg,
    					short:   t.short,
    					env:     []string{"GOEXPERIMENT=rangefunc"},
    					pkg:     pkg,
    				})
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. src/go/types/stdlib_test.go

    		// get per-file instructions
    		expectErrors := false
    		filename := filepath.Join(path, f.Name())
    		goVersion := ""
    		if comment := firstComment(filename); comment != "" {
    			if strings.Contains(comment, "-goexperiment") {
    				continue // ignore this file
    			}
    			fields := strings.Fields(comment)
    			switch fields[0] {
    			case "skip", "compiledir":
    				continue // ignore this file
    			case "errorcheck":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/amd64/versions_test.go

    // 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.
    
    // When using GOEXPERIMENT=boringcrypto, the test program links in the boringcrypto syso,
    // which does not respect GOAMD64, so we skip the test if boringcrypto is enabled.
    //go:build !boringcrypto
    
    package amd64_test
    
    import (
    	"bufio"
    	"debug/elf"
    	"debug/macho"
    	"errors"
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  8. src/runtime/lockrank_on.go

    // 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.
    
    //go:build goexperiment.staticlockranking
    
    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    const staticLockRanking = true
    
    // worldIsStopped is accessed atomically to track world-stops. 1 == world
    // stopped.
    var worldIsStopped atomic.Uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. test/newinline.go

    // errorcheckwithauto -0 -m -d=inlfuncswithclosures=1
    
    //go:build goexperiment.newinliner
    
    // Copyright 2023 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.
    
    // Test, using compiler diagnostic flags, that inlining is working.
    // Compiles but does not run.
    
    package foo
    
    import (
    	"errors"
    	"runtime"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/stdlib_test.go

    		// get per-file instructions
    		expectErrors := false
    		filename := filepath.Join(path, f.Name())
    		goVersion := ""
    		if comment := firstComment(filename); comment != "" {
    			if strings.Contains(comment, "-goexperiment") {
    				continue // ignore this file
    			}
    			fields := strings.Fields(comment)
    			switch fields[0] {
    			case "skip", "compiledir":
    				continue // ignore this file
    			case "errorcheck":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top