Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Clojure (0.16 sec)

  1. src/bytes/bytes.go

    // punctuation properly. Use golang.org/x/text/cases instead.
    func Title(s []byte) []byte {
    	// Use a closure here to remember state.
    	// Hackish but effective. Depends on Map scanning in order and calling
    	// the closure once per rune.
    	prev := ' '
    	return Map(
    		func(r rune) rune {
    			if isSeparator(prev) {
    				prev = r
    				return unicode.ToTitle(r)
    			}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  2. doc/asm.html

    (For <code>TEXT</code> items.)
    This is a wrapper function and should not count as disabling <code>recover</code>.
    </li>
    <li>
    <code>NEEDCTXT</code> = 64
    <br>
    (For <code>TEXT</code> items.)
    This function is a closure so it uses its incoming context register.
    </li>
    <li>
    <code>LOCAL</code> = 128
    <br>
    This symbol is local to the dynamic shared object.
    </li>
    <li>
    <code>TLSBSS</code> = 256
    <br>
    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)
  3. doc/go_mem.html

    mentioned in the previous paragraph,
    limited to the information that <i>W</i> directly observes.
    </p>
    
    <p>
    The <i>happens before</i> relation is defined as the transitive closure of the
    union of the sequenced before and synchronized before relations.
    </p>
    
    <p>
    <b>Requirement 3</b>:
    For an ordinary (non-synchronizing) data read <i>r</i> on a memory location <i>x</i>,
    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)
Back to top