Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,030 for shame (0.11 sec)

  1. src/runtime/badlinkname.go

    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    
    // Notable members of the hall of shame include:
    //   - github.com/dgraph-io/ristretto
    //   - github.com/outcaste-io/ristretto
    //   - github.com/clubpay/ronykit
    //go:linkname cputicks
    
    // Notable members of the hall of shame include:
    //   - gvisor.dev/gvisor (from assembly)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 661 bytes
    - Viewed (0)
  2. src/math/big/arith_decl.go

    // Notable members of the hall of shame include:
    //   - github.com/remyoudompheng/bigfft
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname addVV
    //go:noescape
    func addVV(z, x, y []Word) (c Word)
    
    // subVV should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/remyoudompheng/bigfft
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:15:13 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/net/http/clone.go

    // Notable members of the hall of shame include:
    //   - github.com/searKing/golang
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname cloneURLValues
    func cloneURLValues(v url.Values) url.Values {
    	if v == nil {
    		return nil
    	}
    	// http.Header and url.Values have the same representation, so temporarily
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/text/template/example_test.go

    	// Thank you for the lovely bone china tea set.
    	//
    	// Best wishes,
    	// Josie
    	//
    	// Dear Uncle John,
    	//
    	// It is a shame you couldn't make it to the wedding.
    	// Thank you for the lovely moleskin pants.
    	//
    	// Best wishes,
    	// Josie
    	//
    	// Dear Cousin Rodney,
    	//
    	// It is a shame you couldn't make it to the wedding.
    	//
    	// Best wishes,
    	// Josie
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 29 00:17:40 UTC 2015
    - 2.4K bytes
    - Viewed (0)
  5. src/runtime/env_posix.go

    // Notable members of the hall of shame include:
    //   - github.com/ebitengine/purego
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname _cgo_setenv
    var _cgo_setenv unsafe.Pointer // pointer to C function
    
    // _cgo_unsetenv should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/ebitengine/purego
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. src/net/http/roundtrip.go

    //go:build !js
    
    package http
    
    import _ "unsafe" // for linkname
    
    // RoundTrip should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/erda-project/erda-infra
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname badRoundTrip net/http.(*Transport).RoundTrip
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 988 bytes
    - Viewed (0)
  7. src/runtime/proflabel.go

    package runtime
    
    import "unsafe"
    
    var labelSync uintptr
    
    // runtime_setProfLabel should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/cloudwego/localsession
    //   - github.com/DataDog/datadog-agent
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/crypto/tls/defaults.go

    // disabled by default TLS 1.3 cipher suites. The same AES vs ChaCha20 logic as
    // cipherSuitesPreferenceOrder applies.
    //
    // defaultCipherSuitesTLS13 should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/quic-go/quic-go
    //   - github.com/sagernet/quic-go
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/internal/cpu/cpu_arm64_darwin.go

    }
    
    //go:noescape
    func getsysctlbyname(name []byte) (int32, int32)
    
    // sysctlEnabled should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/gopkg
    //   - github.com/songzhibin97/gkit
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname sysctlEnabled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/runtime/cgo.go

    )
    
    // iscgo is set to true by the runtime/cgo package
    //
    // iscgo should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/ebitengine/purego
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname iscgo
    var iscgo bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top