Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Clauss (0.25 sec)

  1. doc/go1.17_spec.html

    </pre>
    
    <h3 id="Package_clause">Package clause</h3>
    
    <p>
    A package clause begins each source file and defines the package
    to which the file belongs.
    </p>
    
    <pre class="ebnf">
    PackageClause  = "package" PackageName .
    PackageName    = identifier .
    </pre>
    
    <p>
    The PackageName must not be the <a href="#Blank_identifier">blank identifier</a>.
    </p>
    
    <pre>
    package math
    </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)
  2. doc/go_mem.html

    but that goroutine may create other goroutines,
    which run concurrently.
    </p>
    
    <p class="rule">
    If a package <code>p</code> imports package <code>q</code>, the completion of
    <code>q</code>'s <code>init</code> functions happens before the start of any of <code>p</code>'s.
    </p>
    
    <p class="rule">
    The completion of all <code>init</code> functions is synchronized before
    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)
  3. doc/go1.22.html

      approximately 1% by deduplicating redundant metadata.
      Some programs may see a smaller improvement because this change adjusts the size
      class boundaries of the memory allocator, so some objects may be moved up a size
      class.
    </p>
    <p>
      A consequence of this change is that some objects' addresses that were previously
      always aligned to a 16 byte (or higher) boundary will now only be aligned to an 8
    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)
  4. doc/go_spec.html

    </pre>
    
    <h3 id="Package_clause">Package clause</h3>
    
    <p>
    A package clause begins each source file and defines the package
    to which the file belongs.
    </p>
    
    <pre class="ebnf">
    PackageClause  = "package" PackageName .
    PackageName    = identifier .
    </pre>
    
    <p>
    The PackageName must not be the <a href="#Blank_identifier">blank identifier</a>.
    </p>
    
    <pre>
    package math
    </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