Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for constraint (0.22 sec)

  1. doc/go1.22.html

      The behavior of the <code>vet</code> tool has changed to match
      the new semantics (see above) of loop variables in Go 1.22.
      When analyzing a file that requires Go 1.22 or newer
      (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,
    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

    Otherwise, each read of a single-word-sized or sub-word-sized memory location
    must observe a value actually written to that location (perhaps by a concurrent executing goroutine)
    and not yet overwritten.
    These implementation constraints make Go more like Java or JavaScript,
    in that most races have a limited number of outcomes,
    and less like C and C++, where the meaning of any program with a race
    is entirely undefined, and the compiler may do anything at all.
    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

    Literal constants, <code>true</code>, <code>false</code>, <code>iota</code>,
    and certain <a href="#Constant_expressions">constant expressions</a>
    containing only untyped constant operands are untyped.
    </p>
    
    <p>
    A constant may be given a type explicitly by a <a href="#Constant_declarations">constant declaration</a>
    or <a href="#Conversions">conversion</a>, or implicitly when used in a
    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

    Literal constants, <code>true</code>, <code>false</code>, <code>iota</code>,
    and certain <a href="#Constant_expressions">constant expressions</a>
    containing only untyped constant operands are untyped.
    </p>
    
    <p>
    A constant may be given a type explicitly by a <a href="#Constant_declarations">constant declaration</a>
    or <a href="#Conversions">conversion</a>, or implicitly when used in 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)
  5. doc/asm.html

    </pre>
    
    <h3 id="constants">Constants</h3>
    
    <p>
    Although the assembler takes its guidance from the Plan 9 assemblers,
    it is a distinct program, so there are some differences.
    One is in constant evaluation.
    Constant expressions in the assembler are parsed using Go's operator
    precedence, not the C-like precedence of the original.
    Thus <code>3&amp;1&lt;&lt;2</code> is 4, not 0—it parses as <code>(3&amp;1)&lt;&lt;2</code>
    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