Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Hallas (0.2 sec)

  1. doc/go1.22.html

          The new <a href="/pkg/go/types#Alias"><code>Alias</code></a> type represents type aliases.
          Previously, type aliases were not represented explicitly, so a reference to a type alias was equivalent
          to spelling out the aliased type, and the name of the alias was lost.
          The new representation retains the intermediate <code>Alias</code>.
    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)
  2. doc/go_mem.html

    initialization in the presence of multiple goroutines
    through the use of the <code>Once</code> type.
    Multiple threads can execute <code>once.Do(f)</code> for a particular <code>f</code>,
    but only one will run <code>f()</code>, and the other calls block
    until <code>f()</code> has returned.
    </p>
    
    <p class="rule">
    The completion of a single call of <code>f()</code> from <code>once.Do(f)</code>
    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/go_spec.html

    Type declarations come in two forms: alias declarations and type definitions.
    </p>
    
    <pre class="ebnf">
    TypeDecl = "type" ( TypeSpec | "(" { TypeSpec ";" } ")" ) .
    TypeSpec = AliasDecl | TypeDef .
    </pre>
    
    <h4 id="Alias_declarations">Alias declarations</h4>
    
    <p>
    An alias declaration binds an identifier to the given type
    [<a href="#Go_1.9">Go 1.9</a>].
    </p>
    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)
  4. doc/go1.17_spec.html

    Type declarations come in two forms: alias declarations and type definitions.
    </p>
    
    <pre class="ebnf">
    TypeDecl = "type" ( TypeSpec | "(" { TypeSpec ";" } ")" ) .
    TypeSpec = AliasDecl | TypeDef .
    </pre>
    
    <h4 id="Alias_declarations">Alias declarations</h4>
    
    <p>
    An alias declaration binds an identifier to the given type.
    </p>
    
    <pre class="ebnf">
    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)
  5. doc/asm.html

    </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.
    </p>
    
    <p>
    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)
Back to top