Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 162 for NoExperiment (0.17 sec)

  1. src/internal/cfg/cfg.go

    	CGO_LDFLAGS
    	CGO_LDFLAGS_ALLOW
    	CGO_LDFLAGS_DISALLOW
    	CXX
    	FC
    	GCCGO
    	GO111MODULE
    	GO386
    	GOAMD64
    	GOARCH
    	GOARM
    	GOARM64
    	GOBIN
    	GOCACHE
    	GOCACHEPROG
    	GOENV
    	GOEXE
    	GOEXPERIMENT
    	GOFLAGS
    	GOGCCFLAGS
    	GOHOSTARCH
    	GOHOSTOS
    	GOINSECURE
    	GOMIPS
    	GOMIPS64
    	GOMODCACHE
    	GONOPROXY
    	GONOSUMDB
    	GOOS
    	GOPATH
    	GOPPC64
    	GOPRIVATE
    	GOPROXY
    	GORISCV64
    	GOROOT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 1.2K bytes
    - Viewed (1)
  2. src/cmd/internal/objabi/flag.go

    	p := ""
    
    	if s == "goexperiment" {
    		// test/run.go uses this to discover the full set of
    		// experiment tags. Report everything.
    		p = " X:" + strings.Join(buildcfg.Experiment.All(), ",")
    	} else {
    		// If the enabled experiments differ from the baseline,
    		// include that difference.
    		if goexperiment := buildcfg.Experiment.String(); goexperiment != "" {
    			p = " X:" + goexperiment
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 23:08:09 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/envcmd/env.go

    		{Name: "GOEXE", Value: cfg.ExeSuffix},
    
    		// List the raw value of GOEXPERIMENT, not the cleaned one.
    		// The set of default experiments may change from one release
    		// to the next, so a GOEXPERIMENT setting that is redundant
    		// with the current toolchain might actually be relevant with
    		// a different version (for example, when bisecting a regression).
    		{Name: "GOEXPERIMENT", Value: cfg.RawGOEXPERIMENT},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. src/internal/types/testdata/spec/typeAliases1.23b.go

    // -lang=go1.23 -gotypesalias=1 -goexperiment=aliastypeparams
    
    // Copyright 2024 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 aliasTypes
    
    type _ = int
    type _[P any] = int
    
    // A type alias may have fewer type parameters than its RHS.
    type RHS[P any, Q ~int] struct {
    	p P
    	q Q
    }
    
    type _[P any] = RHS[P, int]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. test/typeparam/mdempsky/15.go

    // run -goexperiment fieldtrack
    
    // 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.
    
    // Test that generics, promoted methods, and //go:nointerface
    // interoperate as expected.
    
    package main
    
    import (
    	"reflect"
    )
    
    func TypeString[T any]() string {
    	return reflect.TypeOf(new(T)).Elem().String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. src/internal/buildcfg/cfg.go

    	// build tag with the same name but prefixed by "goexperiment." which can be
    	// used for compiling alternative files for the experiment. This allows
    	// changes for the experiment, like extra struct fields in the runtime,
    	// without affecting the base non-experiment code at all.
    	for _, exp := range Experiment.Enabled() {
    		list = append(list, "goexperiment."+exp)
    	}
    	return list
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/build_shorten_pkg.txt

    # Accurate reporting of notable loops in the presence of inlining
    # can create warnings in sibling directories, and it's nice if those
    # can be trimmed like subdirectory paths are.
    
    env GOEXPERIMENT=loopvar
    go build -gcflags=inlines/a=-d=loopvar=2 .
    stderr ^\.[\\/]b[\\/]b\.go:12:6:.*loop.inlined.into.a[\\/]a\.go
    stderr ^\.[\\/]b[\\/]b\.go:12:9:.*loop.inlined.into.a[\\/]a\.go
    
    -- go.mod --
    module inlines
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 09:07:58 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/crypto/internal/boring/fipstls/tls.go

    // license that can be found in the LICENSE file.
    
    //go:build boringcrypto
    
    // Package fipstls allows control over whether crypto/tls requires FIPS-approved settings.
    // This package only exists with GOEXPERIMENT=boringcrypto, but the effects are independent
    // of the use of BoringCrypto.
    package fipstls
    
    import (
    	"internal/stringslite"
    	"sync/atomic"
    )
    
    var required atomic.Bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. src/internal/abi/abi_generic.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.regabiargs && !amd64 && !arm64 && !loong64 && !ppc64 && !ppc64le && !riscv64
    
    package abi
    
    const (
    	// ABI-related constants.
    	//
    	// In the generic case, these are all zero
    	// which lets them gracefully degrade to ABI0.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/runtime/cgocheck.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Code to check that pointer writes follow the cgo rules.
    // These functions are invoked when GOEXPERIMENT=cgocheck2 is enabled.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    const cgoWriteBarrierFail = "unpinned Go pointer stored into non-Go memory"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top