Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 162 for NoExperiment (0.15 sec)

  1. src/internal/goexperiment/exp_heapminimum512kib_on.go

    // Code generated by mkconsts.go. DO NOT EDIT.
    
    //go:build goexperiment.heapminimum512kib
    
    package goexperiment
    
    const HeapMinimum512KiB = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 175 bytes
    - Viewed (0)
  2. src/internal/goexperiment/exp_newinliner_on.go

    // Code generated by mkconsts.go. DO NOT EDIT.
    
    //go:build goexperiment.newinliner
    
    package goexperiment
    
    const NewInliner = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 154 bytes
    - Viewed (0)
  3. src/internal/goexperiment/exp_regabiargs_on.go

    // Code generated by mkconsts.go. DO NOT EDIT.
    
    //go:build goexperiment.regabiargs
    
    package goexperiment
    
    const RegabiArgs = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 154 bytes
    - Viewed (0)
  4. src/cmd/internal/bootstrap_test/experiment_toolid_test.go

    	}
    
    	// Build a package in a mode not handled by the make script.
    	runCmd(t, gorootSrc, env, goCmdPath, "build", "-race", "archive/tar")
    
    	// Rebuild the toolchain with GOEXPERIMENT.
    	env = append(env, "GOEXPERIMENT=fieldtrack")
    	runCmd(t, gorootSrc, env, makeScriptPath)
    
    	// Verify compiler version string.
    	gotVersion = bytes.TrimSpace(runCmd(t, gorootSrc, env, goCmdPath, "tool", "compile", "-V=full"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 18:47:14 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/crypto/internal/boring/README.md

    We have heard that some external users of Go would be
    interested in this code as well, so we have published this code
    here in the main Go repository behind the setting GOEXPERIMENT=boringcrypto.
    
    Use of GOEXPERIMENT=boringcrypto outside Google is _unsupported_.
    This mode is not part of the [Go 1 compatibility rules](https://go.dev/doc/go1compat),
    and it may change incompatibly or break in other ways at any time.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testerrors/ptr_test.go

    	goexperiment := strings.Split(os.Getenv("GOEXPERIMENT"), ",")
    	if len(goexperiment) == 1 && goexperiment[0] == "" {
    		goexperiment = nil
    	}
    	i := slices.Index(goexperiment, "cgocheck2")
    	changed := false
    	if cgocheck2 && i < 0 {
    		goexperiment = append(goexperiment, "cgocheck2")
    		changed = true
    	} else if !cgocheck2 && i >= 0 {
    		goexperiment = append(goexperiment[:i], goexperiment[i+1:]...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  7. src/cmd/go/scriptconds_test.go

    	add("git", lazyBool("the 'git' executable exists and provides the standard CLI", hasWorkingGit))
    	add("GODEBUG", script.PrefixCondition("GODEBUG contains <suffix>", hasGodebug))
    	add("GOEXPERIMENT", script.PrefixCondition("GOEXPERIMENT <suffix> is enabled", hasGoexperiment))
    	add("go-builder", script.BoolCondition("GO_BUILDER_NAME is non-empty", testenv.Builder() != ""))
    	add("link", lazyBool("testenv.HasLink()", testenv.HasLink))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. src/testing/newcover.go

    // license that can be found in the LICENSE file.
    
    // Support for test coverage with redesigned coverage implementation.
    
    package testing
    
    import (
    	"fmt"
    	"internal/goexperiment"
    	"os"
    	_ "unsafe" // for linkname
    )
    
    // cover2 variable stores the current coverage mode and a
    // tear-down function to be called at the end of the testing run.
    var cover2 struct {
    	mode        string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/internal/coverage/pkid.go

    //    slot: 7 path='internal/bytealg'  hard-coded id: 7
    //    slot: 8 path='internal/goexperiment'
    //    slot: 9 path='internal/runtime/syscall'  hard-coded id: 8
    //    slot: 10 path='runtime'  hard-coded id: 9
    //    fatal error: runtime.addCovMeta
    //
    // For the error above, the hard-coded list is missing "internal/goos"
    // and "internal/goexperiment" ; the developer in question will need
    // to copy the list above into "rtPkgs" below.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/testing/cover.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Support for test coverage.
    
    package testing
    
    import (
    	"fmt"
    	"internal/goexperiment"
    	"os"
    	"sync/atomic"
    )
    
    // CoverBlock records the coverage data for a single basic block.
    // The fields are 1-indexed, as in an editor: The opening line of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:37:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top