Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for aspects (0.22 sec)

  1. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/AboutTheStubs.html

    under the License.
    -->
    
    <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)
  2. doc/go1.17_spec.html

    q.x          // (*(*q).T0).x        (*q).x is a valid field selector
    
    p.M0()       // ((*p).T0).M0()      M0 expects *T0 receiver
    p.M1()       // ((*p).T1).M1()      M1 expects T1 receiver
    p.M2()       // p.M2()              M2 expects *T2 receiver
    t.M2()       // (&amp;t).M2()           M2 expects *T2 receiver, see section on Calls
    </pre>
    
    <p>
    but the following is invalid:
    </p>
    
    <pre>
    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)
  3. doc/go_spec.html

    q.x          // (*(*q).T0).x        (*q).x is a valid field selector
    
    p.M0()       // ((*p).T0).M0()      M0 expects *T0 receiver
    p.M1()       // ((*p).T1).M1()      M1 expects T1 receiver
    p.M2()       // p.M2()              M2 expects *T2 receiver
    t.M2()       // (&amp;t).M2()           M2 expects *T2 receiver, see section on Calls
    </pre>
    
    <p>
    but the following is invalid:
    </p>
    
    <pre>
    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