mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
go fmt
This commit is contained in:
parent
4f6096c7f0
commit
ddec7b2bb9
|
@ -10,11 +10,13 @@ import (
|
|||
// https://github.com/bazil/fuse/issues/130
|
||||
|
||||
var _ = fs.NodeAccesser(&Dir{})
|
||||
|
||||
func (dir *Dir) Access(ctx context.Context, req *fuse.AccessRequest) error {
|
||||
return fuse.ENOSYS
|
||||
}
|
||||
|
||||
var _ = fs.NodeAccesser(&File{})
|
||||
|
||||
func (file *File) Access(ctx context.Context, req *fuse.AccessRequest) error {
|
||||
return fuse.ENOSYS
|
||||
}
|
||||
|
|
|
@ -101,7 +101,6 @@ func TestCreateNeedleFromRequest(t *testing.T) {
|
|||
|
||||
}
|
||||
|
||||
|
||||
var textContent = `Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are
|
||||
met:
|
||||
|
|
|
@ -9,9 +9,7 @@ import (
|
|||
"github.com/chrislusf/seaweedfs/weed/util"
|
||||
)
|
||||
|
||||
|
||||
var (
|
||||
|
||||
visitFn = func(path util.FullPath) (childDirectories []string, err error) {
|
||||
fmt.Printf(" visit %v ...\n", path)
|
||||
switch path {
|
||||
|
@ -37,14 +35,11 @@ var (
|
|||
return nil, nil
|
||||
}
|
||||
|
||||
|
||||
printMap = func(m map[string]*Node) {
|
||||
for k := range m {
|
||||
println(" >", k)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
)
|
||||
|
||||
func TestBoundedTree(t *testing.T) {
|
||||
|
|
|
@ -54,6 +54,7 @@ func ungzipData(input []byte) ([]byte, error) {
|
|||
}
|
||||
|
||||
var decoder, _ = zstd.NewReader(nil)
|
||||
|
||||
func unzstdData(input []byte) ([]byte, error) {
|
||||
return decoder.DecodeAll(input, nil)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue