Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 368 for godebug (0.25 sec)

  1. src/cmd/tools/tools.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build tools
    
    package tools
    
    // Arrange to vendor the bisect command for use
    // by the internal/godebug package test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:10 UTC 2023
    - 323 bytes
    - Viewed (0)
  2. src/net/http/servemux121.go

    // the pre-Go 1.22 ServeMux implementation for backwards compatibility.
    // Do not modify this file, it should remain frozen.
    
    import (
    	"internal/godebug"
    	"net/url"
    	"sort"
    	"strings"
    	"sync"
    )
    
    var httpmuxgo121 = godebug.New("httpmuxgo121")
    
    var use121 bool
    
    // Read httpmuxgo121 once at startup, since dealing with changes to it during
    // program execution is too complex and error-prone.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. operator/pkg/translate/translate_value_test.go

      traceSampling: 1.0
      image: pilot
      env:
        GODEBUG: gctrace=1
    global:
      hub: docker.io/istio
      istioNamespace: istio-system
      tag: 1.2.3
      proxy:
        readinessInitialDelaySeconds: 2
    `,
    			want: `
    hub: docker.io/istio
    tag: 1.2.3
    components:
       pilot:
         enabled: true
         k8s:
           replicaCount: 1
           env:
           - name: GODEBUG
             value: gctrace=1
           nodeSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/work_edit.txt

    cmp stdout go.work.want_print
    
    go work edit -json -go 1.19 -use b -dropuse c -replace 'x.1@v1.4.0 = ../z' -dropreplace x.1 -dropreplace x.1@v1.3.0
    cmp stdout go.work.want_json
    
    # go work edit -godebug
    cd $WORK/g
    cp go.work.start go.work
    go work edit -godebug key=value
    cmpenv go.work go.work.edit
    go work edit -dropgodebug key2
    cmpenv go.work go.work.edit
    go work edit -dropgodebug key
    cmpenv go.work go.work.start
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/crypto/tls/67061.md

    <!-- TODO: Improve the wording. Mention the tlskyber GODEBUG. -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 157 bytes
    - Viewed (0)
  6. src/crypto/x509/root_test.go

    				systemRoots.systemPool = tc.systemPool
    			}
    			for _, c := range tc.poolContent {
    				systemRoots.AddCert(c)
    			}
    			if tc.forceFallback {
    				t.Setenv("GODEBUG", "x509usefallbackroots=1")
    			} else {
    				t.Setenv("GODEBUG", "x509usefallbackroots=0")
    			}
    
    			fallbackPool := NewCertPool()
    			SetFallbackRoots(fallbackPool)
    
    			systemPoolIsFallback := systemRoots == fallbackPool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 23:57:10 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/x509metrics/server_cert_deprecations.go

    //     with the GODEBUG=x509ignoreCN=0 in env
    //
    // It increases the `sha1` counter whenever:
    //  1. we get a x509.InsecureAlgorithmError with string `SHA1`
    //     which indicates an error caused by an insecure SHA1 signature
    //  2. the server certificate in response contains a SHA1WithRSA or ECDSAWithSHA1 signature.
    //     This indicates that this binary run with the GODEBUG=x509sha1=1 in env
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/index.txt

    # Check that standard library packages are cached.
    go list -json math # refresh cache
    env GODEBUG=gofsystrace=1,gofsystracelog=fsys.log
    go list -json math
    ! grep math/abs.go fsys.log
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 11 16:51:38 UTC 2022
    - 229 bytes
    - Viewed (0)
  9. src/runtime/linkname.go

    // 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 runtime
    
    import _ "unsafe"
    
    // used in internal/godebug and syscall
    //go:linkname write
    
    // used by cgo
    //go:linkname _cgo_panic_internal
    //go:linkname cgoAlwaysFalse
    //go:linkname cgoUse
    //go:linkname cgoCheckPointer
    //go:linkname cgoCheckResult
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 778 bytes
    - Viewed (0)
  10. 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)
Back to top