本文整理汇总了Golang中github.com/kildevaeld/vault/Godeps/_workspace/src/bazil/org/fuse.Attr.Size方法的典型用法代码示例。如果您正苦于以下问题:Golang Attr.Size方法的具体用法?Golang Attr.Size怎么用?Golang Attr.Size使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/kildevaeld/vault/Godeps/_workspace/src/bazil/org/fuse.Attr
的用法示例。
在下文中一共展示了Attr.Size方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: Attr
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: zipAttr
func zipAttr(f *zip.File, a *fuse.Attr) {
a.Size = f.UncompressedSize64
a.Mode = f.Mode()
a.Mtime = f.ModTime()
a.Ctime = f.ModTime()
a.Crtime = f.ModTime()
}
示例3: Attr
func (self *File) Attr(ctx context.Context, a *fuse.Attr) error {
a.Mode = 0755
a.Size = self.item.Size
t := time.Now()
a.Crtime = t
a.Ctime = t
a.Mtime = t
return nil
}
示例4: Attr
func (benchFile) Attr(ctx context.Context, a *fuse.Attr) error {
a.Inode = 2
a.Mode = 0644
a.Size = 9999999999999999
return nil
}
示例5: Attr
func (File) Attr(ctx context.Context, a *fuse.Attr) error {
a.Inode = 2
a.Mode = 0444
a.Size = uint64(len(greeting))
return nil
}