Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DIRECT (0.26 sec)

  1. doc/go_mem.html

    always return or are free of synchronization operations.
    For example, a compiler must not move the accesses to <code>*p</code> or <code>*q</code>
    ahead of the function call in this program
    (at least not without direct knowledge of the precise behavior of <code>f</code>):
    </p>
    
    <pre>
    f()
    i := *p
    *q = 1
    </pre>
    
    <p>
    If the call never returned, then once again the original program
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    </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 May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. doc/asm.html

    </p>
    
    <p>
    Branches and direct jumps are always written as offsets to the PC, or as
    jumps to labels:
    </p>
    
    <pre>
    label:
    	MOVW $0, R1
    	JMP label
    </pre>
    
    <p>
    Each label is visible only within the function in which it is defined.
    It is therefore permitted for multiple functions in a file to define
    and use the same label names.
    Direct jumps and call instructions can target text symbols,
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  4. doc/go_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 that type
    is 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 types are not comparable.
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top