Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Hoeger (0.17 sec)

  1. doc/go1.22.html

      (due to its go.mod file or a per-file build constraint),
      <code>vet</code>code> no longer reports references to
      loop variables from within a function literal that
      might outlive the iteration of the loop.
      In Go 1.22, loop variables are created anew for each iteration,
      so such references are no longer at risk of using a variable
      after it has been updated by the loop.
    </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)
  2. doc/go_mem.html

    <h3 id="finalizer">Finalizers</h3>
    
    <p>
    The <a href="/pkg/runtime/"><code>runtime</code></a> package provides
    a <code>SetFinalizer</code> function that adds a finalizer to be called when
    a particular object is no longer reachable by the program.
    A call to <code>SetFinalizer(x, f)</code> is synchronized before the finalization call <code>f(x)</code>.
    </p>
    
    <h3 id="more">Additional Mechanisms</h3>
    
    <p>
    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

    </li>
    </ul>
    
    <h4 id="Go_1.17">Go 1.17</h4>
    <ul>
    <li>
    A slice may be <a href="#Conversions">converted</a> to an array pointer if the slice and array element
    types match, and the array is not longer than the slice.
    </li>
    <li>
    The built-in <a href="#Package_unsafe">package <code>unsafe</code></a> includes the new functions
    <code>Add</code> and <code>Slice</code>.
    </li>
    </ul>
    
    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