Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NOTE (0.14 sec)

  1. doc/go_mem.html

    allowing a racing thread to read 1 as well.
    </p>
    
    <p>
    Note that all these optimizations are permitted in C/C++ compilers:
    a Go compiler sharing a back end with a C/C++ compiler must take care
    to disable optimizations that are invalid for Go.
    </p>
    
    <p>
    Note that the prohibition on introducing data races
    does not apply if the compiler can prove that the races
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  2. doc/go1.22.html

    <!--{
    	"Title": "Go 1.22 Release Notes",
    	"Path":  "/doc/go1.22"
    }-->
    
    <!--
    NOTE: In this document and others in this directory, the convention is to
    set fixed-width phrases with non-fixed-width spaces, as in
    <code>hello</code> <code>world</code>.
    Do not send CLs removing the interior tags from such phrases.
    -->
    
    <style>
      main ul li { margin: 0.5em 0; }
    </style>
    
    <h2 id="introduction">DRAFT RELEASE NOTES — Introduction to Go 1.22</h2>
    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)
  3. doc/go1.17_spec.html

    <code>T</code> is a floating-point type and <code>x</code> can be rounded to <code>T</code>'s
    precision without overflow. Rounding uses IEEE 754 round-to-even rules but with an IEEE
    negative zero further simplified to an unsigned zero. Note that constant values never result
    in an IEEE negative zero, NaN, or infinity.
    </li>
    
    <li>
    <code>T</code> is a complex type, and <code>x</code>'s
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. doc/asm.html

    the argument size must be provided.
    For assembly functions with Go prototypes, <code>go</code> <code>vet</code> will check that the
    argument size is correct.
    </p>
    
    <p>
    Note that the symbol name uses a middle dot to separate the components and is specified as an offset from the
    static base pseudo-register <code>SB</code>.
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  5. doc/go_spec.html

    <pre>
    interface{ int }                          // int (same as ordinary core type)
    interface{ []byte | string }              // bytestring
    interface{ ~[]byte | myString }           // bytestring
    </pre>
    
    <p>
    Note that <code>bytestring</code> is not a real type; it cannot be used to declare
    variables or compose other types. It exists solely to describe the behavior of some
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
Back to top