Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 302 for shame (0.06 sec)

  1. src/runtime/map.go

    // noverflow counts the number of overflow buckets.
    // This is used to trigger same-size map growth.
    // See also tooManyOverflowBuckets.
    // To keep hmap small, noverflow is a uint16.
    // When there are few buckets, noverflow is an exact count.
    // When there are many buckets, noverflow is an approximate count.
    func (h *hmap) incrnoverflow() {
    	// We trigger same-size map growth if there are
    	// as many overflow buckets as buckets.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    // Large objects (> 32 kB) are allocated straight from the heap.
    //
    // mallocgc 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/bytedance/sonic
    //   - github.com/cloudwego/frugal
    //   - github.com/cockroachdb/cockroach
    //   - github.com/cockroachdb/pebble
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/reflect/type.go

    // a nil *rtype must be replaced by a nil Type, but in gccgo this
    // function takes care of ensuring that multiple *rtype for the same
    // type are coalesced into a single Type.
    //
    // toType should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - fortio.org/log
    //   - github.com/goccy/go-json
    //   - github.com/goccy/go-reflect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  4. src/go/build/build.go

    // Notable members of the hall of shame include:
    //   - github.com/gopherjs/gopherjs
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname defaultToolTags
    var defaultToolTags []string
    
    // defaultReleaseTags should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/gopherjs/gopherjs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  5. src/net/http/request.go

    // "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==" returns ("Aladdin", "open sesame", true).
    //
    // parseBasicAuth should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/sagernet/sing
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname parseBasicAuth
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    // barrier insertion code.
    //
    // writeBarrier should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //   - github.com/cloudwego/frugal
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname writeBarrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. src/time/time.go

    }
    
    // absClock is like clock but operates on an absolute time.
    //
    // absClock should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/phuslu/log
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname absClock
    func absClock(abs uint64) (hour, min, sec int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    // will panic if keys is empty.
    //
    // Calling this function will turn off automatic session ticket key rotation.
    //
    // If multiple servers are terminating connections for the same host they should
    // all have the same session ticket keys. If the session ticket keys leaks,
    // previously recorded and future TLS connections using those keys might be
    // compromised.
    func (c *Config) SetSessionTicketKeys(keys [][32]byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. src/time/format.go

    // layout and returns the text before, the std string, and the text after.
    //
    // nextStdChunk should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/searKing/golang/go
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname nextStdChunk
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    // that recorded the context, but only when the context is known to be
    // valid and unchanging. The traceback function may also be called
    // deeper in the call stack on the same thread that recorded the
    // context. The traceback function may be called multiple times with
    // the same Context value; it will usually be appropriate to cache the
    // result, if possible, the first time this is called for a specific
    // context value.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top