Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for emberi (0.11 sec)

  1. src/runtime/mbitmap.go

    // Since p is a uintptr, it would not be adjusted if the stack were to move.
    //
    // findObject 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
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname findObject
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier.go

    	filterChainsData *bytes.Buffer
    	natChains        proxyutil.LineBuffer
    	filterChains     proxyutil.LineBuffer
    	natRules         proxyutil.LineBuffer
    	filterRules      proxyutil.LineBuffer
    	// Added as a member to the struct to allow injection for testing.
    	netlinkHandle NetLinkHandle
    	// ipsetList is the list of ipsets that ipvs proxier used.
    	ipsetList map[string]*IPSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  3. src/regexp/syntax/parse.go

    	// the Perl word-boundary \b as the C backspace \b
    	// when in POSIX mode. In Perl, /\b/ means word-boundary
    	// but /[\b]/ means backspace. We don't support that.
    	// If you want a backspace, embed a literal backspace
    	// character or use \x08.
    	case 'a':
    		return '\a', t, err
    	case 'f':
    		return '\f', t, err
    	case 'n':
    		return '\n', t, err
    	case 'r':
    		return '\r', t, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Sets.java

       * references, instead of calling {@code equals}, to determine whether a provided object matches
       * an element in the set. For example, {@code contains} returns {@code false} when passed an
       * object that equals a set member, but isn't the same instance. This behavior is similar to the
       * way {@code IdentityHashMap} handles key lookups.
       *
       * @since 8.0
       */
      public static <E extends @Nullable Object> Set<E> newIdentityHashSet() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    func (d *dwctxt) substitutetype(structdie *dwarf.DWDie, field string, dwtype loader.Sym) {
    	child := findchild(structdie, field)
    	if child == nil {
    		Exitf("dwarf substitutetype: %s does not have member %s",
    			getattr(structdie, dwarf.DW_AT_name).Data, field)
    		return
    	}
    
    	a := getattr(child, dwarf.DW_AT_type)
    	if a != nil {
    		a.Data = dwSym(dwtype)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    // cfg is nil. This is safe to call even if cfg is in active use by a TLS
    // client or server.
    //
    // cloneTLSConfig 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
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname cloneTLSConfig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top