Zahoor Mohamed 11e7a712f4 swarm/api: support mounting manifests via FUSE (#3690) | 7 yıl önce | |
---|---|---|
.. | ||
fs | 7 yıl önce | |
fuseutil | 7 yıl önce | |
LICENSE | 7 yıl önce | |
README.md | 7 yıl önce | |
buffer.go | 7 yıl önce | |
debug.go | 7 yıl önce | |
error_darwin.go | 7 yıl önce | |
error_freebsd.go | 7 yıl önce | |
error_linux.go | 7 yıl önce | |
error_std.go | 7 yıl önce | |
fuse.go | 7 yıl önce | |
fuse.iml | 7 yıl önce | |
fuse_darwin.go | 7 yıl önce | |
fuse_freebsd.go | 7 yıl önce | |
fuse_kernel.go | 7 yıl önce | |
fuse_kernel_darwin.go | 7 yıl önce | |
fuse_kernel_freebsd.go | 7 yıl önce | |
fuse_kernel_linux.go | 7 yıl önce | |
fuse_kernel_std.go | 7 yıl önce | |
fuse_linux.go | 7 yıl önce | |
mount.go | 7 yıl önce | |
mount_darwin.go | 7 yıl önce | |
mount_freebsd.go | 7 yıl önce | |
mount_linux.go | 7 yıl önce | |
options.go | 7 yıl önce | |
options_darwin.go | 7 yıl önce | |
options_freebsd.go | 7 yıl önce | |
options_linux.go | 7 yıl önce | |
protocol.go | 7 yıl önce | |
unmount.go | 7 yıl önce | |
unmount_linux.go | 7 yıl önce | |
unmount_std.go | 7 yıl önce |
bazil.org/fuse
is a Go library for writing FUSE userspace
filesystems.
It is a from-scratch implementation of the kernel-userspace
communication protocol, and does not use the C library from the
project called FUSE. bazil.org/fuse
embraces Go fully for safety and
ease of programming.
Here’s how to get going:
go get bazil.org/fuse
Website: http://bazil.org/fuse/
Github repository: https://github.com/bazil/fuse
API docs: http://godoc.org/bazil.org/fuse
Our thanks to Russ Cox for his fuse library, which this project is based on.