Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. doc/go1.22.html

          <a href="/pkg/net/http#NewFileTransportFS"><code>NewFileTransportFS</code></a>
          are versions of the existing
          <code>ServeFile</code>, <code>FileServer</code>, and <code>NewFileTransport</code>,
          operating on an <code>fs.FS</code>.
        </p>
    
        <p><!-- https://go.dev/issue/61679 -->
          The HTTP server and client now reject requests and responses containing
          an invalid empty <code>Content-Length</code> header.
    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

    which are made up of goroutine executions,
    which in turn are made up of memory operations.
    </p>
    
    <p>
    A <i>memory operation</i> is modeled by four details:
    </p>
    <ul>
    	<li>its kind, indicating whether it is an ordinary data read, an ordinary data write,
        or a <i>synchronizing operation</i> such as an atomic data access,
    	a mutex operation, or a channel operation,</li>
    	<li>its location in the program,</li>
    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 value of the receive operation <code>&lt;-ch</code> is the value received
    from the channel <code>ch</code>. The channel direction must permit receive operations,
    and the type of the receive operation is the element type of the channel.
    The expression blocks until a value is available.
    Receiving from a <code>nil</code> channel blocks forever.
    A receive operation on a <a href="#Close">closed</a> channel can always proceed
    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/asm.html

    when you see an instruction like <code>MOV</code>
    what the toolchain actually generates for that operation might
    not be a move instruction at all, perhaps a clear or load.
    Or it might correspond exactly to the machine instruction with that name.
    In general, machine-specific operations tend to appear as themselves, while more general concepts like
    memory move and subroutine call and return are more abstract.
    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)
  5. doc/go_spec.html

    the value of the receive operation <code>&lt;-ch</code> is the value received
    from the channel <code>ch</code>. The channel direction must permit receive operations,
    and the type of the receive operation is the element type of the channel.
    The expression blocks until a value is available.
    Receiving from a <code>nil</code> channel blocks forever.
    A receive operation on a <a href="#Close">closed</a> channel can always proceed
    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