Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for pinned (0.22 sec)

  1. src/net/http/transport.go

    	}
    	return cfg.Clone()
    }
    
    type connLRU struct {
    	ll *list.List // list.Element.Value type is of *persistConn
    	m  map[*persistConn]*list.Element
    }
    
    // add adds pc to the head of the linked list.
    func (cl *connLRU) add(pc *persistConn) {
    	if cl.ll == nil {
    		cl.ll = list.New()
    		cl.m = make(map[*persistConn]*list.Element)
    	}
    	ele := cl.ll.PushFront(pc)
    	if _, ok := cl.m[pc]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    	return register(bits.TrailingZeros64(uint64(r)))
    }
    
    type use struct {
    	dist int32    // distance from start of the block to a use of a value
    	pos  src.XPos // source position of the use
    	next *use     // linked list of uses of a value in nondecreasing dist order
    }
    
    // A valState records the register allocation state for a (pre-regalloc) value.
    type valState struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    				st.fail("expected _ after _BitInt size")
    			}
    			st.advance(1)
    			ret = &BitIntType{Size: size, Signed: signed}
    
    		case 'k':
    			constraint, _ := st.name()
    			ret = &SuffixType{
    				Base:   constraint,
    				Suffix: "auto",
    			}
    
    		case 'K':
    			constraint, _ := st.name()
    			ret = &SuffixType{
    				Base:   constraint,
    				Suffix: "decltype(auto)",
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top