Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for acquire (0.25 sec)

  1. doc/go_mem.html

    the number of items in the channel corresponds to the number of active uses,
    the capacity of the channel corresponds to the maximum number of simultaneous uses,
    sending an item acquires the semaphore, and receiving an item releases
    the semaphore.
    This is a common idiom for limiting concurrency.
    </p>
    
    <p>
    This program starts a goroutine for every entry in the work list, but the
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  2. doc/go1.22.html

      always aligned to a 16 byte (or higher) boundary will now only be aligned to an 8
      byte boundary.
      Some programs that use assembly instructions that require memory addresses to be
      more than 8-byte aligned and rely on the memory allocator's previous alignment behavior
      may break, but we expect such programs to be rare.
    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/go1.17_spec.html

    const iΘ = complex(0, Θ)   // iΘ == 1i     (type complex128)
    </pre>
    
    <p>
    Constant expressions are always evaluated exactly; intermediate values and the
    constants themselves may require precision significantly larger than supported
    by any predeclared type in the language. The following are legal declarations:
    </p>
    
    <pre>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. doc/asm.html

    traditionally aliases for a physical, numbered register,
    in the Go assembler the names <code>SP</code> and <code>PC</code>
    are still treated specially;
    for instance, references to <code>SP</code> require a symbol,
    much like <code>FP</code>.
    To access the actual hardware register use the true <code>R</code> name.
    For example, on the ARM architecture the hardware
    <code>SP</code> and <code>PC</code> are accessible as
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  5. doc/go_spec.html

    const iΘ = complex(0, Θ)   // iΘ == 1i     (type complex128)
    </pre>
    
    <p>
    Constant expressions are always evaluated exactly; intermediate values and the
    constants themselves may require precision significantly larger than supported
    by any predeclared type in the language. The following are legal declarations:
    </p>
    
    <pre>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
Back to top