Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. doc/go1.22.html

    <p><!-- CL 514907 -->
      The <code>GOARM</code> environment variable now allows you to select whether to use software or hardware floating point.
      Previously, valid <code>GOARM</code> values were <code>5</code>, <code>6</code>, or <code>7</code>. Now those same values can
      be optionally followed by <code>,softfloat</code> or <code>,hardfloat</code> to select the floating-point implementation.
    </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)
  2. doc/go_mem.html

    </p>
    
    <pre>
    var limit = make(chan int, 3)
    
    func main() {
    	for _, w := range work {
    		go func(w func()) {
    			limit &lt;- 1
    			w()
    			&lt;-limit
    		}(w)
    	}
    	select{}
    }
    </pre>
    
    <h3 id="locks">Locks</h3>
    
    <p>
    The <code>sync</code> package implements two lock data types,
    <code>sync.Mutex</code> and <code>sync.RWMutex</code>.
    </p>
    
    <p class="rule">
    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/go1.17_spec.html

    The identifier <code>f</code> is called the (field or method) <i>selector</i>;
    it must not be the <a href="#Blank_identifier">blank identifier</a>.
    The type of the selector expression is the type of <code>f</code>.
    If <code>x</code> is a package name, see the section on
    <a href="#Qualified_identifiers">qualified identifiers</a>.
    </p>
    
    <p>
    A selector <code>f</code> may denote a field or method <code>f</code> of
    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)
  4. doc/go_spec.html

    The identifier <code>f</code> is called the (field or method) <i>selector</i>;
    it must not be the <a href="#Blank_identifier">blank identifier</a>.
    The type of the selector expression is the type of <code>f</code>.
    If <code>x</code> is a package name, see the section on
    <a href="#Qualified_identifiers">qualified identifiers</a>.
    </p>
    
    <p>
    A selector <code>f</code> may denote a field or method <code>f</code> of
    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)
  5. doc/asm.html

    <a href="https://9p.io/sys/doc/compiler.html">this description</a>)
    needs no assembler pass in the usual pipeline.
    Instead, the compiler operates on a kind of semi-abstract instruction set,
    and instruction selection occurs partly after code generation.
    The assembler works on the semi-abstract form, so
    when you see an instruction like <code>MOV</code>
    what the toolchain actually generates for that operation might
    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