Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for optimizations (0.2 sec)

  1. doc/go_mem.html

    In all these examples, the solution is the same:
    use explicit synchronization.
    </p>
    
    <h2 id="badcompiler">Incorrect compilation</h2>
    
    <p>
    The Go memory model restricts compiler optimizations as much as it does Go programs.
    Some compiler optimizations that would be valid in single-threaded programs are not valid in all Go programs.
    In particular, a compiler must not introduce writes that do not exist in the original program,
    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)
  2. doc/go1.22.html

    <li>The global generator accessed by top-level functions is unconditionally randomly seeded.
    Because the API guarantees no fixed sequence of results,
    optimizations like per-thread random generator states are now possible.
    
    <li>The <a href="/pkg/math/rand/v2/#Source"><code>Source</code></a>
    interface now has a single <code>Uint64</code> method;
    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)
Back to top