Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for normPath (0.09 sec)

  1. src/path/filepath/symlink_windows.go

    			normPath = `\` + normPath
    
    			break
    		}
    
    		path = path[:i]
    	}
    
    	normPath = normPath[:len(normPath)-1] // remove trailing '\'
    
    	return volume + normPath, nil
    }
    
    func evalSymlinks(path string) (string, error) {
    	newpath, err := walkSymlinks(path)
    	if err != nil {
    		return "", err
    	}
    	newpath, err = toNorm(newpath, normBase)
    	if err != nil {
    		return "", err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 07:42:17 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. RELEASE.md

    Deven Desai, Diego Caballero, Duncan Dean, Duncan Riach, Dwight J Lyle, Eamon
    Ito-Fisher, eashtian3, EFanZh, ejot, Elroy Ashtian Jr, Eric Schweitz, Fangjun
    Kuang, Fei Hu, fo40225, formath, Fred Reiss, Frederic Bastien, Fredrik Knutsson,
    G. Hussain Chinoy, Gabriel, gehring, George Grzegorz Pawelczak, Gianluca
    Varisco, Gleb Popov, Greg Peatfield, Guillaume Klein, Gurpreet Singh, Gustavo
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top