Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isWindowsDot (0.12 sec)

  1. src/path/filepath/symlink.go

    		// We look it up, and use the value if it is absolute.
    		// If not, we just return ".".
    		isWindowsDot := runtime.GOOS == "windows" && path[filepathlite.VolumeNameLen(path):] == "."
    
    		// The next path component is in path[start:end].
    		if end == start {
    			// No more path components.
    			break
    		} else if path[start:end] == "." && !isWindowsDot {
    			// Ignore path component ".".
    			continue
    		} else if path[start:end] == ".." {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top