Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for nn (0.14 sec)

  1. doc/go1.17_spec.html

    <code>\"</code> is legal), with the same restrictions.
    The three-digit octal (<code>\</code><i>nnn</i>)
    and two-digit hexadecimal (<code>\x</code><i>nn</i>) escapes represent individual
    <i>bytes</i> of the resulting string; all other escapes represent
    the (possibly multi-byte) UTF-8 encoding of individual <i>characters</i>.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    <code>\"</code> is legal), with the same restrictions.
    The three-digit octal (<code>\</code><i>nnn</i>)
    and two-digit hexadecimal (<code>\x</code><i>nn</i>) escapes represent individual
    <i>bytes</i> of the resulting string; all other escapes represent
    the (possibly multi-byte) UTF-8 encoding of individual <i>characters</i>.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  3. src/bufio/bufio.go

    			n, b.err = b.wr.Write(p)
    		} else {
    			n = copy(b.buf[b.n:], p)
    			b.n += n
    			b.Flush()
    		}
    		nn += n
    		p = p[n:]
    	}
    	if b.err != nil {
    		return nn, b.err
    	}
    	n := copy(b.buf[b.n:], p)
    	b.n += n
    	nn += n
    	return nn, nil
    }
    
    // WriteByte writes a single byte.
    func (b *Writer) WriteByte(c byte) error {
    	if b.err != nil {
    		return b.err
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Oct 12 14:39:08 GMT 2023
    - 21.8K bytes
    - Viewed (0)
  4. src/archive/tar/reader.go

    // io.EOF when it is hit before len(b) bytes are read.
    func tryReadFull(r io.Reader, b []byte) (n int, err error) {
    	for len(b) > n && err == nil {
    		var nn int
    		nn, err = r.Read(b[n:])
    		n += nn
    	}
    	if len(b) == n && err == io.EOF {
    		err = nil
    	}
    	return n, err
    }
    
    // readSpecialFile is like io.ReadAll except it returns
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 08 01:59:14 GMT 2024
    - 26.8K bytes
    - Viewed (0)
Back to top