Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for movement (0.21 sec)

  1. doc/go1.17_spec.html

    <pre class="ebnf">
    FallthroughStmt = "fallthrough" .
    </pre>
    
    
    <h3 id="Defer_statements">Defer statements</h3>
    
    <p>
    A "defer" statement invokes a function whose execution is deferred
    to the moment the surrounding function returns, either because the
    surrounding function executed a <a href="#Return_statements">return statement</a>,
    reached the end of its <a href="#Function_declarations">function body</a>,
    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)
  2. doc/go_spec.html

    The variable used by each subsequent iteration is declared implicitly before
    executing the post statement and initialized to the value of the previous
    iteration's variable at that moment.
    </p>
    
    <pre>
    var prints []func()
    for i := 0; i < 5; i++ {
    	prints = append(prints, func() { println(i) })
    	i++
    }
    for _, p := range prints {
    	p()
    }
    </pre>
    
    <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)
  3. doc/asm.html

    the function should start by zeroing the results and then
    executing the pseudo-instruction <code>GO_RESULTS_INITIALIZED</code>.
    This instruction records that the results are now initialized
    and should be scanned during stack movement and garbage collection.
    It is typically easier to arrange that assembly functions do not
    return pointers or do not contain call instructions;
    no assembly functions in the standard library use
    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. api/go1.16.txt

    pkg debug/elf, const DT_MIPS_TIME_STAMP DynTag
    pkg debug/elf, const DT_MIPS_UNREFEXTNO = 1879048210
    pkg debug/elf, const DT_MIPS_UNREFEXTNO DynTag
    pkg debug/elf, const DT_MOVEENT = 1879047674
    pkg debug/elf, const DT_MOVEENT DynTag
    pkg debug/elf, const DT_MOVESZ = 1879047675
    pkg debug/elf, const DT_MOVESZ DynTag
    pkg debug/elf, const DT_MOVETAB = 1879047934
    pkg debug/elf, const DT_MOVETAB DynTag
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  5. doc/go1.22.html

          trace reading package is available at <a href="/pkg/golang.org/x/exp/trace">golang.org/x/exp/trace</a>.
          Note that this package only works on traces produced by programs built with Go 1.22 at the moment.
          Please try out the package and provide feedback on
          <a href="https://github.com/golang/go/issues/62627">the corresponding proposal issue</a>.
        </p>
        <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)
Back to top