Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for popf (0.05 sec)

  1. src/net/http/h2_bundle.go

    	Push(wr http2FrameWriteRequest)
    
    	// Pop dequeues the next frame to write. Returns false if no frames can
    	// be written. Frames with a given wr.StreamID() are Pop'd in the same
    	// order they are Push'd, except RST_STREAM frames. No frames should be
    	// discarded except by CloseStream.
    	Pop() (wr http2FrameWriteRequest, ok bool)
    }
    
    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

    		line = s.peekPos()
    		if base.Flag.K != 0 {
    			base.Warn("buildssa: unknown position (line 0)")
    		}
    	} else {
    		s.lastPos = line
    	}
    
    	s.line = append(s.line, line)
    }
    
    // popLine pops the top of the line number stack.
    func (s *state) popLine() {
    	s.line = s.line[:len(s.line)-1]
    }
    
    // peekPos peeks the top of the line number stack.
    func (s *state) peekPos() src.XPos {
    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