Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sqlite (0.15 sec)

  1. src/net/http/h2_bundle.go

    	})
    }
    
    // foreachHeaderElement splits v according to the "#rule" construction
    // in RFC 7230 section 7 and calls fn for each non-empty element.
    func http2foreachHeaderElement(v string, fn func(string)) {
    	v = textproto.TrimString(v)
    	if v == "" {
    		return
    	}
    	if !strings.Contains(v, ",") {
    		fn(v)
    		return
    	}
    	for _, f := range strings.Split(v, ",") {
    		if f = textproto.TrimString(f); f != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	// *(ptr+(len-1)) = e3
    
    	et := n.Type().Elem()
    	pt := types.NewPtr(et)
    
    	// Evaluate slice
    	sn := n.Args[0] // the slice node is the first in the list
    	var slice, addr *ssa.Value
    	if inplace {
    		addr = s.addr(sn)
    		slice = s.load(n.Type(), addr)
    	} else {
    		slice = s.expr(sn)
    	}
    
    	// Allocate new blocks
    	grow := s.f.NewBlock(ssa.BlockPlain)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top