Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 759 for Godebug (0.18 sec)

  1. 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)
  2. doc/next/6-stdlib/99-minor/crypto/tls/66214.md

    3DES cipher suites were removed from the default list used when
    [Config.CipherSuites] is nil. The default can be reverted adding `tls3des=1` to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 178 bytes
    - Viewed (0)
  3. doc/next/6-stdlib/99-minor/net/http/66405.md

    For inbound requests, the new [Request.Pattern] field contains the [ServeMux]
    pattern (if any) that matched the request. This field is not set when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 181 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. test/fixedbugs/issue65778.go

    // compile -godebug gotypesalias=1
    
    // 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 p
    
    type A = int
    
    type T[P any] *A
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 01:40:00 UTC 2024
    - 252 bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/testdata/script/fsys_walk.txt

    # Test that go list prefix... does not read directories not beginning with prefix.
    env GODEBUG=gofsystrace=1
    go list m...
    stderr mime
    stderr mime[\\/]multipart
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 09:11:26 UTC 2022
    - 177 bytes
    - Viewed (0)
  10. 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)
Back to top