Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Keping (0.2 sec)

  1. doc/go_mem.html

    reads of a variable in one goroutine can be guaranteed to
    observe values produced by writes to the same variable in a different goroutine.
    </p>
    
    
    <h3 id="advice">Advice</h3>
    
    <p>
    Programs that modify data being simultaneously accessed by multiple goroutines
    must serialize such access.
    </p>
    
    <p>
    To serialize access, protect the data with channel operations or other synchronization primitives
    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

      and <code>.xdata</code> sections into the final binary.
      This helps with debugging and profiling binaries using native tools, such as WinDbg.
      Note that until now, C functions' SEH exception handlers were not being honored,
      so this change may cause some programs to behave differently.
      <code>-linkmode=external</code> is not affected by this change, as external linkers
      already preserve SEH information.
    </p>
    
    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)
  3. doc/asm.html

    If a Go prototype does not name its result, the expected assembly name is <code>ret</code>.
    </p>
    
    <p>
    The <code>SP</code> pseudo-register is a virtual stack pointer
    used to refer to frame-local variables and the arguments being
    prepared for function calls.
    It points to the highest address within the local stack frame, so references should use negative offsets
    in the range [−framesize, 0):
    <code>x-8(SP)</code>, <code>y-4(SP)</code>, and so on.
    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

    Syntactically, this type parameter declaration looks like an
    <a href="#Instantiations">instantiation</a> of the receiver base type: the type
    arguments must be identifiers denoting the type parameters being declared, one
    for each type parameter of the receiver base type.
    The type parameter names do not need to match their corresponding parameter names in the
    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