Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Tarkus (0.19 sec)

  1. doc/go1.17_spec.html

    <p>
    The grammar is compact and simple to parse, allowing for easy analysis
    by automatic tools such as integrated development environments.
    </p>
    
    <h2 id="Notation">Notation</h2>
    <p>
    The syntax is specified using Extended Backus-Naur Form (EBNF):
    </p>
    
    <pre class="grammar">
    Production  = production_name "=" [ Expression ] "." .
    Expression  = Alternative { "|" Alternative } .
    Alternative = Term { Term } .
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. api/go1.16.txt

    pkg syscall (darwin-arm64), const IPPROTO_APES = 99
    pkg syscall (darwin-arm64), const IPPROTO_APES ideal-int
    pkg syscall (darwin-arm64), const IPPROTO_ARGUS = 13
    pkg syscall (darwin-arm64), const IPPROTO_ARGUS ideal-int
    pkg syscall (darwin-arm64), const IPPROTO_AX25 = 93
    pkg syscall (darwin-arm64), const IPPROTO_AX25 ideal-int
    pkg syscall (darwin-arm64), const IPPROTO_BHA = 49
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  3. api/go1.14.txt

    pkg syscall (freebsd-arm64), const IPPROTO_APES = 99
    pkg syscall (freebsd-arm64), const IPPROTO_APES ideal-int
    pkg syscall (freebsd-arm64), const IPPROTO_ARGUS = 13
    pkg syscall (freebsd-arm64), const IPPROTO_ARGUS ideal-int
    pkg syscall (freebsd-arm64), const IPPROTO_AX25 = 93
    pkg syscall (freebsd-arm64), const IPPROTO_AX25 ideal-int
    pkg syscall (freebsd-arm64), const IPPROTO_BHA = 49
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  4. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const IPPROTO_APES = 99 #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_APES ideal-int #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_ARGUS = 13 #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_ARGUS ideal-int #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_AX25 = 93 #53466
    pkg syscall (freebsd-riscv64), const IPPROTO_AX25 ideal-int #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  5. doc/go_spec.html

    </p>
    
    <h2 id="Notation">Notation</h2>
    <p>
    The syntax is specified using a
    <a href="https://en.wikipedia.org/wiki/Wirth_syntax_notation">variant</a>
    of Extended Backus-Naur Form (EBNF):
    </p>
    
    <pre class="grammar">
    Syntax      = { Production } .
    Production  = production_name "=" [ Expression ] "." .
    Expression  = Term { "|" Term } .
    Term        = Factor { Factor } .
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  6. src/archive/tar/reader.go

    //   - Exactly 1 block of zeros is read and EOF is hit.
    //   - At least 2 blocks of zeros are read.
    func (tr *Reader) readHeader() (*Header, *block, error) {
    	// Two blocks of zero bytes marks the end of the archive.
    	if _, err := io.ReadFull(tr.r, tr.blk[:]); err != nil {
    		return nil, nil, err // EOF is okay here; exactly 0 bytes read
    	}
    	if bytes.Equal(tr.blk[:], zeroBlock[:]) {
    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