Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. doc/go1.17_spec.html

    </p>
    
    <pre class="ebnf">
    ChannelType = ( "chan" | "chan" "&lt;-" | "&lt;-" "chan" ) ElementType .
    </pre>
    
    <p>
    The optional <code>&lt;-</code> operator specifies the channel <i>direction</i>,
    <i>send</i> or <i>receive</i>. If no direction is given, the channel is
    <i>bidirectional</i>.
    A channel may be constrained only to send or only to receive by
    <a href="#Assignments">assignment</a> or
    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)
  2. doc/go_mem.html

    This section informally describes the semantics that implementations must provide
    for programs that do contain races.
    </p>
    
    <p>
    Any implementation can, upon detecting a data race,
    report the race and halt execution of the program.
    Implementations using ThreadSanitizer
    (accessed with “<code>go</code> <code>build</code> <code>-race</code>”)
    do exactly this.
    </p>
    
    <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/asm.html

    <a href="https://9p.io/sys/doc/compiler.html">this description</a>)
    needs no assembler pass in the usual pipeline.
    Instead, the compiler operates on a kind of semi-abstract instruction set,
    and instruction selection occurs partly after code generation.
    The assembler works on the semi-abstract form, so
    when you see an instruction like <code>MOV</code>
    what the toolchain actually generates for that operation might
    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)
  4. doc/go_spec.html

    </p>
    
    <pre class="ebnf">
    ChannelType = ( "chan" | "chan" "&lt;-" | "&lt;-" "chan" ) ElementType .
    </pre>
    
    <p>
    The optional <code>&lt;-</code> operator specifies the channel <i>direction</i>,
    <i>send</i> or <i>receive</i>. If a direction is given, the channel is <i>directional</i>,
    otherwise it is <i>bidirectional</i>.
    A channel may be constrained only to send or only to receive by
    <a href="#Assignment_statements">assignment</a> or
    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