Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for l1 (0.12 sec)

  1. doc/go1.17_spec.html

    For instance, this example:
    </p>
    
    <pre>
    if n%2 == 1 {
    	goto L1
    }
    for n &gt; 0 {
    	f()
    	n--
    L1:
    	f()
    	n--
    }
    </pre>
    
    <p>
    is erroneous because the label <code>L1</code> is inside
    the "for" statement's block but the <code>goto</code> is not.
    </p>
    
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. src/bytes/bytes.go

    	// limit (8KB), we stop growing the source string once the limit
    	// is reached and keep reusing the same source string - that
    	// should therefore be always resident in the L1 cache - until we
    	// have completed the construction of the result.
    	// This yields significant speedups (up to +100%) in cases where
    	// the result length is large (roughly, over L2 cache size).
    	const chunkLimit = 8 * 1024
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  3. doc/go_spec.html

    For instance, this example:
    </p>
    
    <pre>
    if n%2 == 1 {
    	goto L1
    }
    for n &gt; 0 {
    	f()
    	n--
    L1:
    	f()
    	n--
    }
    </pre>
    
    <p>
    is erroneous because the label <code>L1</code> is inside
    the "for" statement's block but the <code>goto</code> is not.
    </p>
    
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top