Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for mmapFile (0.08 sec)

  1. src/testing/fstest/mapfs.go

    // iterating over the entire map, so a MapFS should typically be used with not more
    // than a few hundred entries or directory reads.
    type MapFS map[string]*MapFile
    
    // A MapFile describes a single file in a [MapFS].
    type MapFile struct {
    	Data    []byte      // file content
    	Mode    fs.FileMode // fs.FileInfo.Mode
    	ModTime time.Time   // fs.FileInfo.ModTime
    	Sys     any         // fs.FileInfo.Sys
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top