Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for NoExperiment (0.51 sec)

  1. src/internal/trace/batch.go

    }
    
    func (b *batch) isStringsBatch() bool {
    	return b.exp == event.NoExperiment && len(b.data) > 0 && event.Type(b.data[0]) == go122.EvStrings
    }
    
    func (b *batch) isStacksBatch() bool {
    	return b.exp == event.NoExperiment && len(b.data) > 0 && event.Type(b.data[0]) == go122.EvStacks
    }
    
    func (b *batch) isCPUSamplesBatch() bool {
    	return b.exp == event.NoExperiment && len(b.data) > 0 && event.Type(b.data[0]) == go122.EvCPUSamples
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/internal/trace/event/event.go

    		nameToType[spec.Name] = Type(byte(i))
    	}
    	return nameToType
    }
    
    // Experiment is an experiment ID that events may be associated with.
    type Experiment uint
    
    // NoExperiment is the reserved ID 0 indicating no experiment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/internal/trace/generation.go

    		freq, err := parseFreq(b)
    		if err != nil {
    			return err
    		}
    		if g.freq != 0 {
    			return fmt.Errorf("found multiple frequency events")
    		}
    		g.freq = freq
    	case b.exp != event.NoExperiment:
    		if g.expData == nil {
    			g.expData = make(map[event.Experiment]*ExperimentalData)
    		}
    		if err := addExperimentalData(g.expData, b); err != nil {
    			return err
    		}
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/internal/buildcfg/exp.go

    package buildcfg
    
    import (
    	"fmt"
    	"reflect"
    	"strings"
    
    	"internal/goexperiment"
    )
    
    // ExperimentFlags represents a set of GOEXPERIMENT flags relative to a baseline
    // (platform-default) experiment configuration.
    type ExperimentFlags struct {
    	goexperiment.Flags
    	baseline goexperiment.Flags
    }
    
    // Experiment contains the toolchain experiments enabled for the
    // current build.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. src/internal/goexperiment/flags.go

    // Package goexperiment implements support for toolchain experiments.
    //
    // Toolchain experiments are controlled by the GOEXPERIMENT
    // environment variable. GOEXPERIMENT is a comma-separated list of
    // experiment names. GOEXPERIMENT can be set at make.bash time, which
    // sets the default experiments for binaries built with the tool
    // chain; or it can be set at build time. GOEXPERIMENT can also be set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/crypto/boring/notboring_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build (goexperiment.boringcrypto && !boringcrypto) || (!goexperiment.boringcrypto && boringcrypto)
    
    package boring_test
    
    import "testing"
    
    func TestNotBoring(t *testing.T) {
    	t.Error("goexperiment.boringcrypto and boringcrypto should be equivalent build tags")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 428 bytes
    - Viewed (0)
  7. src/internal/goexperiment/exp_arenas_off.go

    // Code generated by mkconsts.go. DO NOT EDIT.
    
    //go:build !goexperiment.arenas
    
    package goexperiment
    
    const Arenas = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 144 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top