Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 162 for NoExperiment (0.21 sec)

  1. src/internal/goexperiment/exp_boringcrypto_on.go

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

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

    // Code generated by mkconsts.go. DO NOT EDIT.
    
    //go:build !goexperiment.coverageredesign
    
    package goexperiment
    
    const CoverageRedesign = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 174 bytes
    - Viewed (0)
  4. src/internal/goexperiment/exp_loopvar_on.go

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

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

    // Code generated by mkconsts.go. DO NOT EDIT.
    
    //go:build !goexperiment.rangefunc
    
    package goexperiment
    
    const RangeFunc = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:32:14 UTC 2023
    - 153 bytes
    - Viewed (0)
  7. src/internal/goexperiment/exp_regabiargs_off.go

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

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // mkconsts generates const definition files for each GOEXPERIMENT.
    package main
    
    import (
    	"bytes"
    	"fmt"
    	"internal/goexperiment"
    	"log"
    	"os"
    	"reflect"
    	"strings"
    )
    
    func main() {
    	// Delete existing experiment constant files.
    	ents, err := os.ReadDir(".")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/runtime/atomic_pointer.go

    // Copyright 2009 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 runtime
    
    import (
    	"internal/goexperiment"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    // These functions cannot have go:noescape annotations,
    // because while ptr does not escape, new does.
    // If new is marked as not escaping, the compiler will make incorrect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. src/internal/goexperiment/exp_cgocheck2_off.go

    // Code generated by mkconsts.go. DO NOT EDIT.
    
    //go:build !goexperiment.cgocheck2
    
    package goexperiment
    
    const CgoCheck2 = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 153 bytes
    - Viewed (0)
Back to top