Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for l1 (0.03 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

            int p1, p2, l1, l2;
    
            // if unsure return this method returns true
    
            p1 = path1.lastIndexOf('/');
            p2 = path2.lastIndexOf('/');
            l1 = path1.length() - p1;
            l2 = path2.length() - p2;
    
            // anything with dots voids comparison
            if (l1 > 1 && path1.charAt(p1 + 1) == '.')
                return true;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  2. 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>
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top