Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for rappel (0.26 sec)

  1. doc/go_mem.html

    <i>W</i>(<i>r</i>) must be a write <i>w</i> that is <i>visible</i> to <i>r</i>,
    where visible means that both of the following hold:
    </p>
    
    <ol>
    	<li><i>w</i> happens before <i>r</i>.</li>
    	<li><i>w</i> does not happen before any other write <i>w'</i> (to <i>x</i>) that happens before <i>r</i>.</li>
    </ol>
    
    <p>
    A <i>read-write data race</i> on memory location <i>x</i>
    consists of a read-like memory operation <i>r</i> on <i>x</i>
    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.17_spec.html

    order.
    </p>
    
    <p>
    For example, in the (function-local) assignment
    </p>
    <pre>
    y[f()], ok = g(h(), i()+x[j()], &lt;-c), k()
    </pre>
    <p>
    the function calls and communication happen in the order
    <code>f()</code>, <code>h()</code>, <code>i()</code>, <code>j()</code>,
    <code>&lt;-c</code>, <code>g()</code>, and <code>k()</code>.
    However, the order of those events compared to the evaluation
    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)
  3. doc/go_spec.html

    </p>
    
    <p>
    For example, in the (function-local) assignment
    </p>
    <pre>
    y[f()], ok = g(z || h(), i()+x[j()], &lt;-c), k()
    </pre>
    <p>
    the function calls and communication happen in the order
    <code>f()</code>, <code>h()</code> (if <code>z</code>
    evaluates to false), <code>i()</code>, <code>j()</code>,
    <code>&lt;-c</code>, <code>g()</code>, and <code>k()</code>.
    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)
  4. docs/en/overrides/main.html

    {% extends "base.html" %}
    
    {% block announce %}
    <div class="announce-wrapper">
      <div id="announce-left">
        <div class="item">
          <a class="announce-link" href="https://twitter.com/fastapi" target="_blank">
            <span class="twemoji twitter">
              {% include ".icons/fontawesome/brands/twitter.svg" %}
            </span> Follow <strong>@fastapi</strong> on <strong>Twitter</strong> to stay updated
          </a>
        </div>
        <div class="item">
    HTML
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Mon Mar 25 23:10:11 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  5. doc/asm.html

    <br>
    (For <code>DATA</code> and <code>GLOBL</code> items.)
    This data contains no pointers and therefore does not need to be
    scanned by the garbage collector.
    </li>
    <li>
    <code>WRAPPER</code> = 32
    <br>
    (For <code>TEXT</code> items.)
    This is a wrapper function and should not count as disabling <code>recover</code>.
    </li>
    <li>
    <code>NEEDCTXT</code> = 64
    <br>
    (For <code>TEXT</code> items.)
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
Back to top