Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for system (0.37 sec)

  1. doc/go1.22.html

          now read directory entries in batches to reduce the number of system calls,
          improving performance up to 30%.
        </p>
    
        <p><!-- https://go.dev/issue/58808 -->
          When <a href="/pkg/io#Copy"><code>io.Copy</code></a> copies
          from a <code>File</code> to a <code>net.UnixConn</code>,
          it will now use Linux's <code>sendfile(2)</code> system call if possible,
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    represent distinct run-time error conditions are unspecified.
    </p>
    
    <pre>
    package runtime
    
    type Error interface {
    	error
    	// and perhaps other methods
    }
    </pre>
    
    <h2 id="System_considerations">System considerations</h2>
    
    <h3 id="Package_unsafe">Package <code>unsafe</code></h3>
    
    <p>
    The built-in package <code>unsafe</code>, known to the compiler
    HTML
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. doc/go_spec.html

    represent distinct run-time error conditions are unspecified.
    </p>
    
    <pre>
    package runtime
    
    type Error interface {
    	error
    	// and perhaps other methods
    }
    </pre>
    
    <h2 id="System_considerations">System considerations</h2>
    
    <h3 id="Package_unsafe">Package <code>unsafe</code></h3>
    
    <p>
    The built-in package <code>unsafe</code>, known to the compiler
    HTML
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  4. doc/asm.html

    register, even on architectures with a hardware frame pointer.
    </p>
    
    <p>
    For assembly functions with Go prototypes, <code>go</code> <code>vet</code> will check that the argument names
    and offsets match.
    On 32-bit systems, the low and high 32 bits of a 64-bit value are distinguished by adding
    a <code>_lo</code> or <code>_hi</code> suffix to the name, as in <code>arg_lo+0(FP)</code> or <code>arg_hi+4(FP)</code>.
    HTML
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
Back to top