Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Haddad (0.18 sec)

  1. doc/go1.22.html

        </p>
    
        <p><!-- https://go.dev/issue/58922, CL 519315-->
          On Android, root certificates will now be loaded from <code>/data/misc/keychain/certs-added</code> as well as <code>/system/etc/security/cacerts</code>.
        </p>
    
        <p><!-- https://go.dev/issue/60665, CL 520535 -->
    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

    into:
    
    <pre>
    n := 0
    local := *shared
    for i := 0; i < m; i++ {
    	n += local
    }
    </pre>
    
    <p>
    provided it can be proved that <code>*shared</code> will not fault on access,
    because the potential added read will not affect any existing concurrent reads or writes.
    On the other hand, the rewrite would not be valid in a source-to-source translator.
    </p>
    
    <h2 id="conclusion">Conclusion</h2>
    
    <p>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  3. doc/go_spec.html

    language.
    </p>
    
    <p>
    A link of the form [<a href="#Language_versions">Go 1.xx</a>] indicates that a described
    language feature (or some aspect of it) was changed or added with language version 1.xx and
    thus requires at minimum that language version to build.
    For details, see the <a href="#Language_versions">linked section</a>
    in the <a href="#Appendix">appendix</a>.
    </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. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/AboutTheStubs.html

    In the next test that same "live implementation" will be used in a stub version instead.
    
    Not all live services have stubs, but can be added as needed.
    </body>
    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)
  5. doc/go1.17_spec.html

    The number of map elements is called its length.
    For a map <code>m</code>, it can be discovered using the
    built-in function <a href="#Length_and_capacity"><code>len</code></a>
    and may change during execution. Elements may be added during execution
    using <a href="#Assignments">assignments</a> and retrieved with
    <a href="#Index_expressions">index expressions</a>; they may be removed with 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)
  6. doc/asm.html

    contains no pointers.
    </p>
    
    <p>
    There may be one or two arguments to the directives.
    If there are two, the first is a bit mask of flags,
    which can be written as numeric expressions, added or or-ed together,
    or can be set symbolically for easier absorption by a human.
    Their values, defined in the standard <code>#include</code>  file <code>textflag.h</code>, are:
    </p>
    
    <ul>
    <li>
    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