コード例 #1
0
ファイル: clockfs.go プロジェクト: muthu-r/horcrux
func (f *File) Attr(ctx context.Context, a *fuse.Attr) error {
	a.Inode = 2
	a.Mode = 0444
	t := f.content.Load().(string)
	a.Size = uint64(len(t))
	return nil
}
コード例 #2
0
ファイル: clockfs.go プロジェクト: muthu-r/horcrux
func (d *Dir) Attr(ctx context.Context, a *fuse.Attr) error {
	a.Inode = 1
	a.Mode = os.ModeDir | 0555
	return nil
}
コード例 #3
0
ファイル: bench_test.go プロジェクト: muthu-r/horcrux
func (benchFile) Attr(ctx context.Context, a *fuse.Attr) error {
	a.Inode = 2
	a.Mode = 0644
	a.Size = 9999999999999999
	return nil
}