Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for behavior (0.18 sec)

  1. doc/go1.22.html

      more than 8-byte aligned and rely on the memory allocator's previous alignment behavior
      may break, but we expect such programs to be rare.
      Such programs may be built with <code>GOEXPERIMENT=noallocheaders</code> to revert
      to the old metadata layout and restore the previous alignment behavior, but package
      owners should update their assembly code to avoid the alignment assumption, as this
    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/go_mem.html

    such as those in the <a href="/pkg/sync/"><code>sync</code></a>
    and <a href="/pkg/sync/atomic/"><code>sync/atomic</code></a> packages.
    </p>
    
    <p>
    If you must read the rest of this document to understand the behavior of your program,
    you are being too clever.
    </p>
    
    <p>
    Don't be clever.
    </p>
    
    <h3 id="overview">Informal Overview</h3>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    	</li>
    </ul>
    
    <p>
    A comparison of two interface values with identical dynamic types
    causes a <a href="#Run_time_panics">run-time panic</a> if values
    of that type are not comparable.  This behavior applies not only to direct interface
    value comparisons but also when comparing arrays of interface values
    or structs with interface-valued fields.
    </p>
    
    <p>
    Slice, map, and function values are not comparable.
    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)
  4. doc/go_spec.html

    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
    operations that read from a sequence of bytes, which may be a byte slice or a string.
    </p>
    
    <h3 id="Type_identity">Type identity</h3>
    
    <p>
    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)
Back to top