Lines Matching full:before
47 <h2>Happens Before</h2>
60 the updated value of <code>b</code> before the updated value of <code>a</code>.
65 <i>happens before</i>, a partial order on the execution
67 before event <span class="event">e<sub>2</sub></span>, then we say that <span class="event">e<sub>2</sub></span> happens after <span class="event">e<sub>1</sub></span>.
68 Also, if <span class="event">e<sub>1</sub></span> does not happen before <span class="event">e<sub>2</sub></span> and does not happen
73 Within a single goroutine, the happens-before order is the
83 <li><span class="event">r</span> does not happen before <span class="event">w</span>.</li>
85 after <span class="event">w</span> but before <span class="event">r</span>.</li>
96 <li><span class="event">w</span> happens before <span class="event">r</span>.</li>
98 either happens before <span class="event">w</span> or after <span class="event">r</span>.</li>
113 happens-before conditions that ensure reads observe the
140 <code>q</code>'s <code>init</code> functions happens before the start of any of <code>p</code>'s.
152 happens before the goroutine's execution begins.
180 The exit of a goroutine is not guaranteed to happen before
216 A send on a channel happens before the corresponding
242 happens before the send on <code>c</code>, which happens before
243 the corresponding receive on <code>c</code> completes, which happens before
248 The closing of a channel happens before a receive that returns a zero value
259 A receive from an unbuffered channel happens before
288 happens before the receive on <code>c</code>, which happens before
290 before the <code>print</code>.
301 The <i>k</i>th receive on a channel with capacity <i>C</i> happens before the <i>k</i>+<i>C</i>th send from that channel completes.
344 call <i>n</i> of <code>l.Unlock()</code> happens before call <i>m</i> of <code>l.Lock()</code> returns.
371 before the second call to <code>l.Lock()</code> (in <code>main</code>) returns,
372 which happens before the <code>print</code>.
379 before call <i>n</i>+1 to <code>l.Lock</code>.
394 A single call of <code>f()</code> from <code>once.Do(f)</code> happens (returns) before any call of <code>once.Do(f)</code> returns.
431 will observe writes that happened before <span class="event">w</span>.
522 As before, there is no guarantee that, in <code>main</code>,