Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 759 for Godebug (0.12 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/input/pilot_k8s_settings.yaml

          namespace: istio-control
          k8s:
            env:
              - name: POD_NAME
                valueFrom:
                  fieldRef:
                    apiVersion: v1
                    fieldPath: new.path
              - name: GODEBUG
                value: gctrace=111
              - name: NEW_VAR
                value: new_value
            hpaSpec:
              maxReplicas: 333
              scaleTargetRef:
                name: istio-pilot
              metrics:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/internal/fuzz/worker_test.go

    		return
    	}
    	os.Exit(m.Run())
    }
    
    func BenchmarkWorkerFuzzOverhead(b *testing.B) {
    	if race.Enabled {
    		b.Skip("TODO(48504): fix and re-enable")
    	}
    	origEnv := os.Getenv("GODEBUG")
    	defer func() { os.Setenv("GODEBUG", origEnv) }()
    	os.Setenv("GODEBUG", fmt.Sprintf("%s,fuzzseed=123", origEnv))
    
    	ws := &workerServer{
    		fuzzFn:     func(_ CorpusEntry) (time.Duration, error) { return time.Second, nil },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  3. src/internal/testenv/exec.go

    // GODEBUG and GOTRACEBACK.
    //
    // If the caller wants to set cmd.Dir, set it before calling this function,
    // so PWD will be set correctly in the environment.
    func CleanCmdEnv(cmd *exec.Cmd) *exec.Cmd {
    	if cmd.Env != nil {
    		panic("environment already set")
    	}
    	for _, env := range cmd.Environ() {
    		// Exclude GODEBUG from the environment to prevent its output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 27 17:53:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cache/cache.go

    //
    // verify is enabled by setting the environment variable
    // GODEBUG=gocacheverify=1.
    var verify = false
    
    var errVerifyMode = errors.New("gocacheverify=1")
    
    // DebugTest is set when GODEBUG=gocachetest=1 is in the environment.
    var DebugTest = false
    
    func init() { initEnv() }
    
    var (
    	gocacheverify = godebug.New("gocacheverify")
    	gocachehash   = godebug.New("gocachehash")
    	gocachetest   = godebug.New("gocachetest")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testshared/testdata/gcdata/main/main.go

    // Test that GC data is generated correctly for global
    // variables with types defined in a shared library.
    // See issue 39927.
    
    // This test run under GODEBUG=clobberfree=1. The check
    // *x[i] == 12345 depends on this debug mode to clobber
    // the value if the object is freed prematurely.
    
    package main
    
    import (
    	"fmt"
    	"runtime"
    	"testshared/gcdata/p"
    )
    
    var x p.T
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 763 bytes
    - Viewed (0)
  6. hack/verify-vendor.sh

    for repo in $(kube::util::list_staging_repos); do
      pushd "${_kubetmp}/staging/src/k8s.io/${repo}" >/dev/null 2>&1
        echo "Tidying k8s.io/${repo}..."
        GODEBUG=gocacheverify=1 go mod tidy
      popd >/dev/null 2>&1
    done
    pushd "${_kubetmp}" >/dev/null 2>&1
      echo "Tidying k8s.io/kubernetes..."
      GODEBUG=gocacheverify=1 go mod tidy
    popd >/dev/null 2>&1
    
    echo "Vendor Verified."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/crypto/tls/tls.go

    }
    
    var x509keypairleaf = godebug.New("x509keypairleaf")
    
    // X509KeyPair parses a public/private key pair from a pair of
    // PEM encoded data. On successful return, Certificate.Leaf will be populated.
    //
    // Before Go 1.23 Certificate.Leaf was left nil, and the parsed certificate was
    // discarded. This behavior can be re-enabled by setting "x509keypairleaf=0"
    // in the GODEBUG environment variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_dup_cache.txt

    # happen when a f.Add value has a duplicate entry in the cached corpus.) Duplicate entries
    # should be discarded, and the rest of the cache should be loaded as normal.
    
    env GOCACHE=$WORK/cache
    env GODEBUG=fuzzdebug=1
    
    mkdir -p $GOCACHE/fuzz/fuzztest/FuzzTarget
    go run ./populate $GOCACHE/fuzz/fuzztest/FuzzTarget
    
    go test -fuzz=FuzzTarget -fuzztime=10x .
    stdout 'entries: 5'
    
    -- go.mod --
    module fuzztest
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    		envFlag = "compile"
    		env = "GOCOMPILEDEBUG=" + value + "hash=PATTERN"
    		return nil
    	})
    	flag.Func("godebug", "bisect call stacks affected by GODEBUG setting `name=value`", func(value string) error {
    		if envFlag != "" {
    			return fmt.Errorf("cannot use -%s and -godebug", envFlag)
    		}
    		envFlag = "godebug"
    		env = "GODEBUG=" + value + "#PATTERN"
    		return nil
    	})
    
    	flag.Usage = usage
    	flag.Parse()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  10. src/internal/trace/trace_test.go

    		// Add a stack ownership check. This is cheap enough for testing.
    		godebug := "tracecheckstackownership=1"
    		if stress {
    			// Advance a generation constantly to stress the tracer.
    			godebug += ",traceadvanceperiod=0"
    		}
    		if extraGODEBUG != "" {
    			// Add extra GODEBUG flags.
    			godebug += "," + extraGODEBUG
    		}
    		cmd.Env = append(cmd.Env, "GODEBUG="+godebug)
    
    		// Capture stdout and stderr.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top