Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go-fuse
Commits
778c9eb1
Commit
778c9eb1
authored
Aug 03, 2016
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add license headers to all source files.
parent
7b0cb1ac
Changes
126
Hide whitespace changes
Inline
Side-by-side
Showing
126 changed files
with
504 additions
and
0 deletions
+504
-0
benchmark/benchmark.go
benchmark/benchmark.go
+4
-0
benchmark/bulkstat/main.go
benchmark/bulkstat/main.go
+4
-0
benchmark/latencymap.go
benchmark/latencymap.go
+4
-0
benchmark/latencymap_test.go
benchmark/latencymap_test.go
+4
-0
benchmark/stat_test.go
benchmark/stat_test.go
+4
-0
benchmark/statfs.go
benchmark/statfs.go
+4
-0
example/autounionfs/main.go
example/autounionfs/main.go
+4
-0
example/hello/main.go
example/hello/main.go
+4
-0
example/loopback/main.go
example/loopback/main.go
+4
-0
example/memfs/main.go
example/memfs/main.go
+4
-0
example/multizip/main.go
example/multizip/main.go
+4
-0
example/statfs/main.go
example/statfs/main.go
+4
-0
example/unionfs/main.go
example/unionfs/main.go
+4
-0
example/zipfs/main.go
example/zipfs/main.go
+4
-0
fuse/api.go
fuse/api.go
+4
-0
fuse/attr.go
fuse/attr.go
+4
-0
fuse/attr_darwin.go
fuse/attr_darwin.go
+4
-0
fuse/attr_linux.go
fuse/attr_linux.go
+4
-0
fuse/bufferpool.go
fuse/bufferpool.go
+4
-0
fuse/bufferpool_test.go
fuse/bufferpool_test.go
+4
-0
fuse/constants.go
fuse/constants.go
+4
-0
fuse/constants_freebsd.go
fuse/constants_freebsd.go
+4
-0
fuse/constants_linux.go
fuse/constants_linux.go
+4
-0
fuse/defaultraw.go
fuse/defaultraw.go
+4
-0
fuse/direntry.go
fuse/direntry.go
+4
-0
fuse/lockingfs.go
fuse/lockingfs.go
+4
-0
fuse/misc.go
fuse/misc.go
+4
-0
fuse/misc_test.go
fuse/misc_test.go
+4
-0
fuse/mount_darwin.go
fuse/mount_darwin.go
+4
-0
fuse/mount_linux.go
fuse/mount_linux.go
+4
-0
fuse/nodefs/api.go
fuse/nodefs/api.go
+4
-0
fuse/nodefs/defaultfile.go
fuse/nodefs/defaultfile.go
+4
-0
fuse/nodefs/defaultnode.go
fuse/nodefs/defaultnode.go
+4
-0
fuse/nodefs/dir.go
fuse/nodefs/dir.go
+4
-0
fuse/nodefs/fileless_test.go
fuse/nodefs/fileless_test.go
+4
-0
fuse/nodefs/files.go
fuse/nodefs/files.go
+4
-0
fuse/nodefs/files_darwin.go
fuse/nodefs/files_darwin.go
+4
-0
fuse/nodefs/files_linux.go
fuse/nodefs/files_linux.go
+4
-0
fuse/nodefs/fsconnector.go
fuse/nodefs/fsconnector.go
+4
-0
fuse/nodefs/fsmount.go
fuse/nodefs/fsmount.go
+4
-0
fuse/nodefs/fsops.go
fuse/nodefs/fsops.go
+4
-0
fuse/nodefs/fuse.go
fuse/nodefs/fuse.go
+4
-0
fuse/nodefs/handle.go
fuse/nodefs/handle.go
+4
-0
fuse/nodefs/handle_test.go
fuse/nodefs/handle_test.go
+4
-0
fuse/nodefs/inode.go
fuse/nodefs/inode.go
+4
-0
fuse/nodefs/lockingfile.go
fuse/nodefs/lockingfile.go
+4
-0
fuse/nodefs/memnode.go
fuse/nodefs/memnode.go
+4
-0
fuse/nodefs/memnode_test.go
fuse/nodefs/memnode_test.go
+4
-0
fuse/nodefs/nodefs.go
fuse/nodefs/nodefs.go
+4
-0
fuse/nodefs/print.go
fuse/nodefs/print.go
+4
-0
fuse/nodefs/syscall_linux.go
fuse/nodefs/syscall_linux.go
+4
-0
fuse/nodefs/verbose_test.go
fuse/nodefs/verbose_test.go
+4
-0
fuse/opcode.go
fuse/opcode.go
+4
-0
fuse/pathfs/api.go
fuse/pathfs/api.go
+4
-0
fuse/pathfs/copy.go
fuse/pathfs/copy.go
+4
-0
fuse/pathfs/copy_test.go
fuse/pathfs/copy_test.go
+4
-0
fuse/pathfs/default.go
fuse/pathfs/default.go
+4
-0
fuse/pathfs/locking.go
fuse/pathfs/locking.go
+4
-0
fuse/pathfs/loopback.go
fuse/pathfs/loopback.go
+4
-0
fuse/pathfs/loopback_darwin.go
fuse/pathfs/loopback_darwin.go
+4
-0
fuse/pathfs/loopback_linux.go
fuse/pathfs/loopback_linux.go
+4
-0
fuse/pathfs/owner_test.go
fuse/pathfs/owner_test.go
+4
-0
fuse/pathfs/pathfs.go
fuse/pathfs/pathfs.go
+4
-0
fuse/pathfs/prefixfs.go
fuse/pathfs/prefixfs.go
+4
-0
fuse/pathfs/readonlyfs.go
fuse/pathfs/readonlyfs.go
+4
-0
fuse/pathfs/syscall_linux.go
fuse/pathfs/syscall_linux.go
+4
-0
fuse/pathfs/syscall_test.go
fuse/pathfs/syscall_test.go
+4
-0
fuse/pathfs/verbose_test.go
fuse/pathfs/verbose_test.go
+4
-0
fuse/pathfs/xattr_test.go
fuse/pathfs/xattr_test.go
+4
-0
fuse/print.go
fuse/print.go
+4
-0
fuse/print_darwin.go
fuse/print_darwin.go
+4
-0
fuse/print_linux.go
fuse/print_linux.go
+4
-0
fuse/read.go
fuse/read.go
+4
-0
fuse/request.go
fuse/request.go
+4
-0
fuse/request_darwin.go
fuse/request_darwin.go
+4
-0
fuse/request_linux.go
fuse/request_linux.go
+4
-0
fuse/server.go
fuse/server.go
+4
-0
fuse/server_darwin.go
fuse/server_darwin.go
+4
-0
fuse/server_linux.go
fuse/server_linux.go
+4
-0
fuse/splice_darwin.go
fuse/splice_darwin.go
+4
-0
fuse/splice_linux.go
fuse/splice_linux.go
+4
-0
fuse/syscall_darwin.go
fuse/syscall_darwin.go
+4
-0
fuse/syscall_linux.go
fuse/syscall_linux.go
+4
-0
fuse/test/cache_test.go
fuse/test/cache_test.go
+4
-0
fuse/test/defaultread_test.go
fuse/test/defaultread_test.go
+4
-0
fuse/test/delete_linux_test.go
fuse/test/delete_linux_test.go
+4
-0
fuse/test/fsetattr_test.go
fuse/test/fsetattr_test.go
+4
-0
fuse/test/loopback_darwin_test.go
fuse/test/loopback_darwin_test.go
+4
-0
fuse/test/loopback_linux_test.go
fuse/test/loopback_linux_test.go
+4
-0
fuse/test/loopback_test.go
fuse/test/loopback_test.go
+4
-0
fuse/test/mount_test.go
fuse/test/mount_test.go
+4
-0
fuse/test/notify_linux_test.go
fuse/test/notify_linux_test.go
+4
-0
fuse/test/verbose.go
fuse/test/verbose.go
+4
-0
fuse/test/xattr_test.go
fuse/test/xattr_test.go
+4
-0
fuse/test/xfs_test.go
fuse/test/xfs_test.go
+4
-0
fuse/typeprint.go
fuse/typeprint.go
+4
-0
fuse/types.go
fuse/types.go
+4
-0
fuse/types_darwin.go
fuse/types_darwin.go
+4
-0
fuse/types_linux.go
fuse/types_linux.go
+4
-0
fuse/upgrade.go
fuse/upgrade.go
+4
-0
splice/copy.go
splice/copy.go
+4
-0
splice/copy_test.go
splice/copy_test.go
+4
-0
splice/pair.go
splice/pair.go
+4
-0
splice/pair_darwin.go
splice/pair_darwin.go
+4
-0
splice/pair_linux.go
splice/pair_linux.go
+4
-0
splice/pool.go
splice/pool.go
+4
-0
splice/splice.go
splice/splice.go
+4
-0
splice/splice_test.go
splice/splice_test.go
+4
-0
unionfs/autounion.go
unionfs/autounion.go
+4
-0
unionfs/autounion_test.go
unionfs/autounion_test.go
+4
-0
unionfs/cachingfs.go
unionfs/cachingfs.go
+4
-0
unionfs/cachingfs_test.go
unionfs/cachingfs_test.go
+4
-0
unionfs/create.go
unionfs/create.go
+4
-0
unionfs/dircache.go
unionfs/dircache.go
+4
-0
unionfs/timedcache.go
unionfs/timedcache.go
+4
-0
unionfs/timedcache_test.go
unionfs/timedcache_test.go
+4
-0
unionfs/unionfs.go
unionfs/unionfs.go
+4
-0
unionfs/unionfs_test.go
unionfs/unionfs_test.go
+4
-0
unionfs/unionfs_xattr_test.go
unionfs/unionfs_xattr_test.go
+4
-0
unionfs/verbose_test.go
unionfs/verbose_test.go
+4
-0
zipfs/memtree.go
zipfs/memtree.go
+4
-0
zipfs/multizip.go
zipfs/multizip.go
+4
-0
zipfs/multizip_test.go
zipfs/multizip_test.go
+4
-0
zipfs/tarfs.go
zipfs/tarfs.go
+4
-0
zipfs/zipfs.go
zipfs/zipfs.go
+4
-0
zipfs/zipfs_test.go
zipfs/zipfs_test.go
+4
-0
No files found.
benchmark/benchmark.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
benchmark
// Routines for benchmarking fuse.
...
...
benchmark/bulkstat/main.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
main
import
(
...
...
benchmark/latencymap.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
benchmark
import
(
...
...
benchmark/latencymap_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
benchmark
import
(
...
...
benchmark/stat_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
benchmark
import
(
...
...
benchmark/statfs.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
benchmark
import
(
...
...
example/autounionfs/main.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
main
import
(
...
...
example/hello/main.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// A Go mirror of libfuse's hello.c
package
main
...
...
example/loopback/main.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Mounts another directory as loopback for testing and benchmarking
// purposes.
...
...
example/memfs/main.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Mounts MemNodeFs for testing purposes.
package
main
...
...
example/multizip/main.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
main
import
(
...
...
example/statfs/main.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
main
import
(
...
...
example/unionfs/main.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
main
import
(
...
...
example/zipfs/main.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
main
import
(
...
...
fuse/api.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// The fuse package provides APIs to implement filesystems in
// userspace. Typically, each call of the API happens in its own
// goroutine, so take care to make the file system thread-safe.
...
...
fuse/attr.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/attr_darwin.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/attr_linux.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/bufferpool.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/bufferpool_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/constants.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/constants_freebsd.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
// arbitrary values
...
...
fuse/constants_linux.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/defaultraw.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/direntry.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
// all of the code for DirEntryList.
...
...
fuse/lockingfs.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/misc.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Random odds and ends.
package
fuse
...
...
fuse/misc_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/mount_darwin.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/mount_linux.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/nodefs/api.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// The nodefs package offers a high level API that resembles the
// kernel's idea of what an FS looks like. File systems can have
// multiple hard-links to one file, for example. It is also suited if
...
...
fuse/nodefs/defaultfile.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
(
...
...
fuse/nodefs/defaultnode.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
(
...
...
fuse/nodefs/dir.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
(
...
...
fuse/nodefs/fileless_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
(
...
...
fuse/nodefs/files.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
(
...
...
fuse/nodefs/files_darwin.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
(
...
...
fuse/nodefs/files_linux.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
(
...
...
fuse/nodefs/fsconnector.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
// This file contains the internal logic of the
...
...
fuse/nodefs/fsmount.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
(
...
...
fuse/nodefs/fsops.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
// This file contains FileSystemConnector's implementation of
...
...
fuse/nodefs/fuse.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
(
...
...
fuse/nodefs/handle.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
(
...
...
fuse/nodefs/handle_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
(
...
...
fuse/nodefs/inode.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
(
...
...
fuse/nodefs/lockingfile.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
(
...
...
fuse/nodefs/memnode.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
(
...
...
fuse/nodefs/memnode_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
(
...
...
fuse/nodefs/nodefs.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
"time"
...
...
fuse/nodefs/print.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
(
...
...
fuse/nodefs/syscall_linux.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
(
...
...
fuse/nodefs/verbose_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
nodefs
import
"flag"
...
...
fuse/opcode.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/pathfs/api.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
pathfs
import
(
...
...
fuse/pathfs/copy.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
pathfs
import
(
...
...
fuse/pathfs/copy_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
pathfs
import
(
...
...
fuse/pathfs/default.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
pathfs
import
(
...
...
fuse/pathfs/locking.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
pathfs
import
(
...
...
fuse/pathfs/loopback.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
pathfs
import
(
...
...
fuse/pathfs/loopback_darwin.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
pathfs
import
(
...
...
fuse/pathfs/loopback_linux.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
pathfs
import
(
...
...
fuse/pathfs/owner_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
pathfs
import
(
...
...
fuse/pathfs/pathfs.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
pathfs
import
(
...
...
fuse/pathfs/prefixfs.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
pathfs
import
(
...
...
fuse/pathfs/readonlyfs.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
pathfs
import
(
...
...
fuse/pathfs/syscall_linux.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
pathfs
import
(
...
...
fuse/pathfs/syscall_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build linux
package
pathfs
...
...
fuse/pathfs/verbose_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
pathfs
import
"flag"
...
...
fuse/pathfs/xattr_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build linux
package
pathfs
...
...
fuse/print.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/print_darwin.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/print_linux.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/read.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/request.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/request_darwin.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
const
outputHeaderSize
=
200
...
...
fuse/request_linux.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
const
outputHeaderSize
=
160
...
...
fuse/server.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/server_darwin.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/server_linux.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/splice_darwin.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/splice_linux.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/syscall_darwin.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/syscall_linux.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/test/cache_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
test
import
(
...
...
fuse/test/defaultread_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
test
import
(
...
...
fuse/test/delete_linux_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
test
import
(
...
...
fuse/test/fsetattr_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
test
import
(
...
...
fuse/test/loopback_darwin_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
test
import
(
...
...
fuse/test/loopback_linux_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
test
import
(
...
...
fuse/test/loopback_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
test
import
(
...
...
fuse/test/mount_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
test
import
(
...
...
fuse/test/notify_linux_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
test
import
(
...
...
fuse/test/verbose.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
test
import
"flag"
...
...
fuse/test/xattr_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build linux
package
test
...
...
fuse/test/xfs_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build linux
package
test
...
...
fuse/typeprint.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
func
(
a
*
Attr
)
String
()
string
{
...
...
fuse/types.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
fuse/types_darwin.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
type
Attr
struct
{
...
...
fuse/types_linux.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
type
Attr
struct
{
...
...
fuse/upgrade.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
fuse
import
(
...
...
splice/copy.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
splice
import
(
...
...
splice/copy_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
splice
import
(
...
...
splice/pair.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
splice
import
(
...
...
splice/pair_darwin.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
splice
import
()
...
...
splice/pair_linux.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
splice
import
(
...
...
splice/pool.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
splice
import
(
...
...
splice/splice.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
splice
// Routines for efficient file to file copying.
...
...
splice/splice_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
splice
import
(
...
...
unionfs/autounion.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
unionfs
import
(
...
...
unionfs/autounion_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
unionfs
import
(
...
...
unionfs/cachingfs.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
unionfs
import
(
...
...
unionfs/cachingfs_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
unionfs
import
(
...
...
unionfs/create.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
unionfs
import
(
...
...
unionfs/dircache.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
unionfs
import
(
...
...
unionfs/timedcache.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
unionfs
import
(
...
...
unionfs/timedcache_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
unionfs
import
(
...
...
unionfs/unionfs.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
unionfs
import
(
...
...
unionfs/unionfs_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
unionfs
import
(
...
...
unionfs/unionfs_xattr_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
unionfs
import
(
...
...
unionfs/verbose_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
unionfs
import
"flag"
...
...
zipfs/memtree.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
zipfs
import
(
...
...
zipfs/multizip.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
zipfs
/*
...
...
zipfs/multizip_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
zipfs
import
(
...
...
zipfs/tarfs.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
zipfs
import
(
...
...
zipfs/zipfs.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
zipfs
import
(
...
...
zipfs/zipfs_test.go
View file @
778c9eb1
// Copyright 2016 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
zipfs
import
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment