Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ReadFrame (0.15 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/binutils/addr2liner_llvm.go

    	a := &llvmSymbolizer{
    		filename: file,
    		rw:       j,
    		base:     base,
    	}
    
    	return a, nil
    }
    
    // readFrame parses the llvm-symbolizer output for a single address. It
    // returns a populated plugin.Frame and whether it has reached the end of the
    // data.
    func (d *llvmSymbolizer) readFrame() (plugin.Frame, bool) {
    	funcname, err := d.rw.readLine()
    	if err != nil {
    		return plugin.Frame{}, true
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/binutils/addr2liner.go

    		return nil, err
    	}
    
    	a := &addr2Liner{
    		rw:   j,
    		base: base,
    	}
    
    	return a, nil
    }
    
    // readFrame parses the addr2line output for a single address. It
    // returns a populated plugin.Frame and whether it has reached the end of the
    // data.
    func (d *addr2Liner) readFrame() (plugin.Frame, bool) {
    	funcname, err := d.rw.readLine()
    	if err != nil {
    		return plugin.Frame{}, true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    func NewJSONFramedReader(r io.ReadCloser) io.ReadCloser {
    	return &jsonFrameReader{
    		r:       r,
    		decoder: json.NewDecoder(r),
    	}
    }
    
    // ReadFrame decodes the next JSON object in the stream, or returns an error. The returned
    // byte slice will be modified the next time ReadFrame is invoked and should not be altered.
    func (r *jsonFrameReader) Read(data []byte) (int, error) {
    	// Return whatever remaining data exists from an in progress frame
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    // error from ReadFrame and no other frames should be read.
    func http2terminalReadFrameError(err error) bool {
    	if _, ok := err.(http2StreamError); ok {
    		return false
    	}
    	return err != nil
    }
    
    // ReadFrame reads a single frame. The returned Frame is only valid
    // until the next call to ReadFrame.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top