Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FormatDirEntry (0.1 sec)

  1. src/os/file_unix.go

    func (d *unixDirent) Info() (FileInfo, error) {
    	if d.info != nil {
    		return d.info, nil
    	}
    	return lstat(d.parent + "/" + d.name)
    }
    
    func (d *unixDirent) String() string {
    	return fs.FormatDirEntry(d)
    }
    
    func newUnixDirent(parent, name string, typ FileMode) (DirEntry, error) {
    	ude := &unixDirent{
    		parent: parent,
    		name:   name,
    		typ:    typ,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. api/go1.21.txt

    pkg go/types, method (*Package) GoVersion() string #61175
    pkg html/template, const ErrJSTemplate = 12 #59584
    pkg html/template, const ErrJSTemplate ErrorCode #59584
    pkg io/fs, func FormatDirEntry(DirEntry) string #54451
    pkg io/fs, func FormatFileInfo(FileInfo) string #54451
    pkg log/slog, const KindAny = 0 #56345
    pkg log/slog, const KindAny Kind #56345
    pkg log/slog, const KindBool = 1 #56345
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
Back to top