Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for __component (0.19 sec)

  1. doc/go_mem.html

    do exactly this.
    </p>
    
    <p>
    A read of an array, struct, or complex number
    may by implemented as a read of each individual sub-value
    (array element, struct field, or real/imaginary component),
    in any order.
    Similarly, a write of an array, struct, or complex number
    may be implemented as a write of each individual sub-value,
    in any order.
    </p>
    
    <p>
    A read <i>r</i> of a memory location <i>x</i>
    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)
  2. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/AboutTheStubs.html

    -->
    
    <html>
    <head>
        <title>About these stubs</title>
    </head>
    <body>
    <h2>Design</h2>
    These stubs can be thought of as hand-coded mock objects. They allow unit tests to test only specific
    aspects of a component while ignoring others.
    
    These stubs form an internally consistent data-set that is not expected to change. They are
    used to test the individual components in the lifecycle with data that has expected characteristics
    HTML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Jul 02 16:47:10 GMT 2021
    - 2.3K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    </li>
    
    <li>
    <code>T</code> is a complex type, and <code>x</code>'s
    <a href="#Complex_numbers">components</a> <code>real(x)</code> and <code>imag(x)</code>
    are representable by values of <code>T</code>'s component type (<code>float32</code> or
    <code>float64</code>).
    </li>
    </ul>
    
    <pre>
    x                   T           x is representable by a value of T because
    
    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

    either no local stack frame or no function calls,
    the only requirement is to define a Go prototype for the function
    in a Go source file in the same package. The name of the assembly
    function must not contain the package name component (for example,
    function <code>Syscall</code> in package <code>syscall</code> should
    use the name <code>·Syscall</code> instead of the equivalent name
    <code>syscall·Syscall</code> in its <code>TEXT</code> directive).
    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

    )
    
    // valid array types
    type (
    	T5 [10]*T5                // T5 contains T5 as component of a pointer
    	T6 [10]func() T6          // T6 contains T6 as component of a function type
    	T7 [10]struct{ f []T7 }   // T7 contains T7 as component of a slice in a struct
    )
    </pre>
    
    <h3 id="Slice_types">Slice types</h3>
    
    <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)
Back to top