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
Levin Zimmermann
go-fuse
Commits
6b4b8072
Commit
6b4b8072
authored
Nov 09, 2011
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Run gofmt.
parent
014829e8
Changes
21
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
32 additions
and
33 deletions
+32
-33
example/hello/main.go
example/hello/main.go
+1
-1
example/loopback/main.go
example/loopback/main.go
+3
-3
example/multizip/main.go
example/multizip/main.go
+2
-2
example/unionfs/main.go
example/unionfs/main.go
+1
-1
example/zipfs/main.go
example/zipfs/main.go
+2
-2
fuse/bufferpool.go
fuse/bufferpool.go
+2
-2
fuse/bufferpool_test.go
fuse/bufferpool_test.go
+1
-1
fuse/copy_test.go
fuse/copy_test.go
+1
-1
fuse/misc_test.go
fuse/misc_test.go
+1
-1
fuse/mount_test.go
fuse/mount_test.go
+2
-2
fuse/switchfs.go
fuse/switchfs.go
+1
-1
fuse/xattr.go
fuse/xattr.go
+1
-1
fuse/xattr_test.go
fuse/xattr_test.go
+2
-2
unionfs/autounion_test.go
unionfs/autounion_test.go
+2
-2
unionfs/cachingfs_test.go
unionfs/cachingfs_test.go
+2
-2
unionfs/dircache.go
unionfs/dircache.go
+1
-1
unionfs/memunionfs.go
unionfs/memunionfs.go
+1
-1
unionfs/memunionfs_test.go
unionfs/memunionfs_test.go
+2
-2
unionfs/timedcache_test.go
unionfs/timedcache_test.go
+1
-2
unionfs/unionfs_test.go
unionfs/unionfs_test.go
+2
-2
zipfs/zipfs.go
zipfs/zipfs.go
+1
-1
No files found.
example/hello/main.go
View file @
6b4b8072
...
...
@@ -4,8 +4,8 @@ package main
import
(
"flag"
"log"
"github.com/hanwen/go-fuse/fuse"
"log"
"os"
)
...
...
example/loopback/main.go
View file @
6b4b8072
...
...
@@ -4,12 +4,12 @@
package
main
import
(
"
github.com/hanwen/go-fuse/fuse
"
"
flag
"
"fmt"
"github.com/hanwen/go-fuse/fuse"
"log"
"os"
"flag"
"runtime"
"log"
)
var
_
=
runtime
.
GOMAXPROCS
...
...
example/multizip/main.go
View file @
6b4b8072
package
main
import
(
"flag"
"fmt"
"github.com/hanwen/go-fuse/fuse"
"github.com/hanwen/go-fuse/zipfs"
"fmt"
"flag"
"log"
"os"
)
...
...
example/unionfs/main.go
View file @
6b4b8072
...
...
@@ -3,9 +3,9 @@ package main
import
(
"flag"
"fmt"
"log"
"github.com/hanwen/go-fuse/fuse"
"github.com/hanwen/go-fuse/unionfs"
"log"
"os"
)
...
...
example/zipfs/main.go
View file @
6b4b8072
package
main
import
(
"flag"
"fmt"
"github.com/hanwen/go-fuse/fuse"
"github.com/hanwen/go-fuse/zipfs"
"fmt"
"flag"
"log"
"os"
)
...
...
fuse/bufferpool.go
View file @
6b4b8072
package
fuse
import
(
"sync"
"fmt"
"unsafe"
"log"
"sync"
"unsafe"
)
var
_
=
log
.
Println
...
...
fuse/bufferpool_test.go
View file @
6b4b8072
package
fuse
import
(
"testing"
"fmt"
"testing"
)
var
_
=
fmt
.
Println
...
...
fuse/copy_test.go
View file @
6b4b8072
package
fuse
import
(
"testing"
"io/ioutil"
"os"
"testing"
)
func
TestCopyFile
(
t
*
testing
.
T
)
{
...
...
fuse/misc_test.go
View file @
6b4b8072
...
...
@@ -3,8 +3,8 @@ package fuse
import
(
"io/ioutil"
"os"
"testing"
"syscall"
"testing"
)
func
TestOsErrorToErrno
(
t
*
testing
.
T
)
{
...
...
fuse/mount_test.go
View file @
6b4b8072
package
fuse
import
(
"io/ioutil"
"os"
"path/filepath"
"testing"
"time"
"path/filepath"
"io/ioutil"
)
func
TestMountOnExisting
(
t
*
testing
.
T
)
{
...
...
fuse/switchfs.go
View file @
6b4b8072
package
fuse
import
(
"path/filepath"
"os"
"path/filepath"
"sort"
"strings"
"syscall"
...
...
fuse/xattr.go
View file @
6b4b8072
...
...
@@ -2,8 +2,8 @@ package fuse
import
(
"bytes"
"syscall"
"fmt"
"syscall"
"unsafe"
)
...
...
fuse/xattr_test.go
View file @
6b4b8072
...
...
@@ -3,10 +3,10 @@ package fuse
import
(
"bytes"
"io/ioutil"
"testing"
"log"
"path/filepath"
"os"
"path/filepath"
"testing"
)
var
_
=
log
.
Print
...
...
unionfs/autounion_test.go
View file @
6b4b8072
package
unionfs
import
(
"
os
"
"
fmt
"
"github.com/hanwen/go-fuse/fuse"
"io/ioutil"
"fmt"
"log"
"os"
"testing"
)
...
...
unionfs/cachingfs_test.go
View file @
6b4b8072
package
unionfs
import
(
"
os
"
"
fmt
"
"github.com/hanwen/go-fuse/fuse"
"io/ioutil"
"fmt"
"log"
"os"
"syscall"
"testing"
)
...
...
unionfs/dircache.go
View file @
6b4b8072
...
...
@@ -2,8 +2,8 @@ package unionfs
import
(
"github.com/hanwen/go-fuse/fuse"
"sync"
"log"
"sync"
"time"
)
...
...
unionfs/memunionfs.go
View file @
6b4b8072
...
...
@@ -6,8 +6,8 @@ import (
"log"
"os"
"path/filepath"
"strings"
"sort"
"strings"
"sync"
"time"
)
...
...
unionfs/memunionfs_test.go
View file @
6b4b8072
...
...
@@ -2,11 +2,11 @@ package unionfs
import
(
"exec"
"
os
"
"
fmt
"
"github.com/hanwen/go-fuse/fuse"
"io/ioutil"
"fmt"
"log"
"os"
"path/filepath"
"syscall"
"testing"
...
...
unionfs/timedcache_test.go
View file @
6b4b8072
...
...
@@ -3,14 +3,13 @@ package unionfs
import
(
"fmt"
"log"
"time"
"testing"
"time"
)
var
_
=
fmt
.
Print
var
_
=
log
.
Print
func
TestTimedCacheUncacheable
(
t
*
testing
.
T
)
{
fetchCount
:=
0
fetch
:=
func
(
n
string
)
(
interface
{},
bool
)
{
...
...
unionfs/unionfs_test.go
View file @
6b4b8072
...
...
@@ -2,11 +2,11 @@ package unionfs
import
(
"exec"
"
os
"
"
fmt
"
"github.com/hanwen/go-fuse/fuse"
"io/ioutil"
"fmt"
"log"
"os"
"path/filepath"
"syscall"
"testing"
...
...
zipfs/zipfs.go
View file @
6b4b8072
...
...
@@ -7,10 +7,10 @@ import (
"fmt"
"github.com/hanwen/go-fuse/fuse"
"io"
"log"
"os"
"path/filepath"
"strings"
"log"
)
var
_
=
log
.
Printf
...
...
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