Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for mmapFile (0.81 sec)

  1. src/io/fs/walk_test.go

    	}
    }
    
    func makeTree() FS {
    	fsys := fstest.MapFS{}
    	walkTree(tree, tree.name, func(path string, n *Node) {
    		if n.entries == nil {
    			fsys[path] = &fstest.MapFile{}
    		} else {
    			fsys[path] = &fstest.MapFile{Mode: ModeDir}
    		}
    	})
    	return fsys
    }
    
    // Assumes that each node name is unique. Good enough for a test.
    // If clear is true, any incoming error is cleared before return. The errors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 15:21:18 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_block.go

      /dev/loopX ... Descriptor lock(Loopback device to mapFile under global map path)
      /var/lib/kubelet/plugins/kubernetes.io/csi/volumeDevices/{specName}/dev/ ... Global map path
      /var/lib/kubelet/plugins/kubernetes.io/csi/volumeDevices/{specName}/dev/{podUID} ... MapFile(Bind mount to publish Path)
      /var/lib/kubelet/plugins/kubernetes.io/csi/volumeDevices/staging/{specName} ... Staging path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. hack/lib/util.sh

        md5 -q "$1"
      else
        md5sum "$1" | awk '{ print $1 }'
      fi
    }
    
    # kube::util::read-array
    # Reads in stdin and adds it line by line to the array provided. This can be
    # used instead of "mapfile -t", and is bash 3 compatible.  If the named array
    # exists and is an array, it will be overwritten.  Otherwise it will be unset
    # and recreated.
    #
    # Assumed vars:
    #   $1 (name of array to create/modify)
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(MapFS).ReadFile", Method, 16},
    		{"(MapFS).Stat", Method, 16},
    		{"(MapFS).Sub", Method, 16},
    		{"MapFS", Type, 16},
    		{"MapFile", Type, 16},
    		{"MapFile.Data", Field, 16},
    		{"MapFile.ModTime", Field, 16},
    		{"MapFile.Mode", Field, 16},
    		{"MapFile.Sys", Field, 16},
    		{"TestFS", Func, 16},
    	},
    	"testing/iotest": {
    		{"DataErrReader", Func, 0},
    		{"ErrReader", Func, 16},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. api/go1.16.txt

    pkg testing/fstest, method (MapFS) Sub(string) (fs.FS, error)
    pkg testing/fstest, type MapFS map[string]*MapFile
    pkg testing/fstest, type MapFile struct
    pkg testing/fstest, type MapFile struct, Data []uint8
    pkg testing/fstest, type MapFile struct, ModTime time.Time
    pkg testing/fstest, type MapFile struct, Mode fs.FileMode
    pkg testing/fstest, type MapFile struct, Sys interface{}
    pkg testing/iotest, func ErrReader(error) io.Reader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    a=this.map.consumer(),s=a.originalPositionFor({line:e,column:t});if(!s.source)return!1;let o;typeof r=="number"&&(o=a.originalPositionFor({line:r,column:n}));let u;Is(s.source)?u=zi(s.source):u=new URL(s.source,this.map.consumer().sourceRoot||zi(this.map.mapFile));let c={url:u.toString(),line:s.line,column:s.column,endLine:o&&o.line,endColumn:o&&o.column};if(u.protocol==="file:")if(Zf)c.file=Zf(u);else throw new Error("file: protocol is not available in this PostCSS build");let f=a.sourceContentFor(s.source);return...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top