Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for bufr (0.09 sec)

  1. cmd/storage-rest-server.go

    	bufp := poolBuf8k.Get().(*[]byte)
    	buf := *bufp
    	defer poolBuf8k.Put(bufp)
    	for {
    		_, err := io.ReadFull(respBody, tmp[:])
    		if err != nil {
    			return err
    		}
    		// Check if we have a response ready or a filler byte.
    		switch tmp[0] {
    		case 0:
    			// 0 is unbuffered, copy the rest.
    			_, err := io.CopyBuffer(w, respBody, buf)
    			if err == io.EOF {
    				return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. src/os/file_plan9.go

    	return f
    }
    
    // Auxiliary information if the File describes a directory
    type dirInfo struct {
    	mu   sync.Mutex
    	buf  [syscall.STATMAX]byte // buffer for directory I/O
    	nbuf int                   // length of buf; return value from Read
    	bufp int                   // location of next record in buf.
    }
    
    func epipecheck(file *File, e error) {
    }
    
    // DevNull is the name of the operating system's “null device.”
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertThat(peer.takeFrame().type).isEqualTo(Http2.TYPE_DATA)
        assertThat(peer.frameCount()).isEqualTo(5)
      }
    
      @Test fun maxFrameSizeHonored() {
        val buff = ByteArray(peer.maxOutboundDataLength() + 1)
        buff.fill('*'.code.toByte())
    
        // Write the mocking script.
        peer.sendFrame().settings(Settings())
        peer.acceptFrame() // ACK
        peer.acceptFrame() // SYN_STREAM
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _Socklen) (err error) {
    	var _p0 unsafe.Pointer
    	if len(buf) > 0 {
    		_p0 = unsafe.Pointer(&buf[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS___SENDTO_A<<4, uintptr(s), uintptr(_p0), uintptr(len(buf)), uintptr(flags), uintptr(to), uintptr(addrlen))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  5. src/net/http/client_test.go

    func pedanticReadAll(r io.Reader) (b []byte, err error) {
    	var bufa [64]byte
    	buf := bufa[:]
    	for {
    		n, err := r.Read(buf)
    		if n == 0 && err == nil {
    			return nil, fmt.Errorf("Read: n=0 with err=nil")
    		}
    		b = append(b, buf[:n]...)
    		if err == io.EOF {
    			n, err := r.Read(buf)
    			if n != 0 || err != io.EOF {
    				return nil, fmt.Errorf("Read: n=%d err=%#v after EOF", n, err)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    }
    
    func FormatMessage(flags uint32, msgsrc uintptr, msgid uint32, langid uint32, buf []uint16, args *byte) (n uint32, err error) {
    	var _p0 *uint16
    	if len(buf) > 0 {
    		_p0 = &buf[0]
    	}
    	r0, _, e1 := syscall.Syscall9(procFormatMessageW.Addr(), 7, uintptr(flags), uintptr(msgsrc), uintptr(msgid), uintptr(langid), uintptr(unsafe.Pointer(_p0)), uintptr(len(buf)), uintptr(unsafe.Pointer(args)), 0, 0)
    	n = uint32(r0)
    	if n == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	return
    }
    
    func Getwd() (wd string, err error) {
    	var buf [PathMax]byte
    	n, err := Getcwd(buf[0:])
    	if err != nil {
    		return "", err
    	}
    	// Getcwd returns the number of bytes written to buf, including the NUL.
    	if n < 1 || n > len(buf) || buf[n-1] != 0 {
    		return "", EINVAL
    	}
    	return string(buf[0 : n-1]), nil
    }
    
    func Getgroups() (gids []int, err error) {
    	n, err := getgroups(0, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    }
    
    const ImplementsGetwd = true
    
    //sys	Getcwd(buf []byte) (n int, err error)
    
    func Getwd() (wd string, err error) {
    	var buf [PathMax]byte
    	n, err := Getcwd(buf[0:])
    	if err != nil {
    		return "", err
    	}
    	// Getcwd returns the number of bytes written to buf, including the NUL.
    	if n < 1 || n > len(buf) || buf[n-1] != 0 {
    		return "", EINVAL
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    func (h http2FrameHeader) String() string {
    	var buf bytes.Buffer
    	buf.WriteString("[FrameHeader ")
    	h.writeDebug(&buf)
    	buf.WriteByte(']')
    	return buf.String()
    }
    
    func (h http2FrameHeader) writeDebug(buf *bytes.Buffer) {
    	buf.WriteString(h.Type.String())
    	if h.Flags != 0 {
    		buf.WriteString(" flags=")
    		set := 0
    		for i := uint8(0); i < 8; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"BpfTimeval.Usec", Field, 2},
    		{"BpfVersion", Type, 0},
    		{"BpfVersion.Major", Field, 0},
    		{"BpfVersion.Minor", Field, 0},
    		{"BpfZbuf", Type, 0},
    		{"BpfZbuf.Bufa", Field, 0},
    		{"BpfZbuf.Bufb", Field, 0},
    		{"BpfZbuf.Buflen", Field, 0},
    		{"BpfZbufHeader", Type, 0},
    		{"BpfZbufHeader.Kernel_gen", Field, 0},
    		{"BpfZbufHeader.Kernel_len", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top