Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for design (0.21 sec)

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

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    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.
    
    HTML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Jul 02 16:47:10 GMT 2021
    - 2.3K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    x++                 x += 1
    x--                 x -= 1
    </pre>
    
    
    <h3 id="Assignments">Assignments</h3>
    
    <pre class="ebnf">
    Assignment = ExpressionList assign_op ExpressionList .
    
    assign_op = [ add_op | mul_op ] "=" .
    </pre>
    
    <p>
    Each left-hand side operand must be <a href="#Address_operators">addressable</a>,
    a map index expression, or (for <code>=</code> assignments only) the
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. doc/go_spec.html

    with a new value specified by an <a href="#Expressions">expression</a>.
    An assignment statement may assign a single value to a single variable, or multiple values to a
    matching number of variables.
    </p>
    
    <pre class="ebnf">
    Assignment = ExpressionList assign_op ExpressionList .
    
    assign_op = [ add_op | mul_op ] "=" .
    </pre>
    
    <p>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  4. doc/asm.html

    <code>GOMIPS64_hardfloat</code> or <code>GOMIPS64_softfloat</code>.
    </p>
    
    <h3 id="unsupported_opcodes">Unsupported opcodes</h3>
    
    <p>
    The assemblers are designed to support the compiler so not all hardware instructions
    are defined for all architectures: if the compiler doesn't generate it, it might not be there.
    If you need to use a missing instruction, there are two ways to proceed.
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
Back to top