forked from kahing/goofys
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ref: kahing#758
- Loading branch information
Showing
19 changed files
with
1,257 additions
and
650 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
--- | ||
Language: Cpp | ||
BasedOnStyle: LLVM | ||
AccessModifierOffset: -4 | ||
AlignAfterOpenBracket: Align | ||
AlignConsecutiveAssignments: false | ||
AlignConsecutiveDeclarations: false | ||
AlignEscapedNewlinesLeft: true | ||
AlignOperands: true | ||
AlignTrailingComments: true | ||
AllowAllParametersOfDeclarationOnNextLine: true | ||
AllowShortBlocksOnASingleLine: false | ||
AllowShortCaseLabelsOnASingleLine: false | ||
AllowShortFunctionsOnASingleLine: Inline | ||
AllowShortIfStatementsOnASingleLine: false | ||
AllowShortLoopsOnASingleLine: false | ||
AlwaysBreakAfterDefinitionReturnType: None | ||
AlwaysBreakAfterReturnType: None | ||
AlwaysBreakBeforeMultilineStrings: true | ||
AlwaysBreakTemplateDeclarations: true | ||
BinPackArguments: true | ||
BinPackParameters: true | ||
BraceWrapping: | ||
AfterClass: false | ||
AfterControlStatement: false | ||
AfterEnum: false | ||
AfterFunction: false | ||
AfterNamespace: false | ||
AfterObjCDeclaration: false | ||
AfterStruct: false | ||
AfterUnion: false | ||
BeforeCatch: false | ||
BeforeElse: false | ||
IndentBraces: false | ||
BreakBeforeBinaryOperators: None | ||
BreakBeforeBraces: Attach | ||
BreakBeforeTernaryOperators: true | ||
BreakConstructorInitializersBeforeComma: false | ||
BreakAfterJavaFieldAnnotations: false | ||
BreakStringLiterals: true | ||
ColumnLimit: 80 | ||
CommentPragmas: '^ IWYU pragma:' | ||
CompactNamespaces: false | ||
ConstructorInitializerAllOnOneLineOrOnePerLine: true | ||
ConstructorInitializerIndentWidth: 8 | ||
ContinuationIndentWidth: 8 | ||
Cpp11BracedListStyle: true | ||
DerivePointerAlignment: false | ||
DisableFormat: false | ||
ExperimentalAutoDetectBinPacking: false | ||
ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ] | ||
IncludeCategories: | ||
- Regex: '^<.*\.h>' | ||
Priority: 1 | ||
- Regex: '^<.*' | ||
Priority: 2 | ||
- Regex: '.*' | ||
Priority: 3 | ||
IncludeIsMainRegex: '([-_](test|unittest))?$' | ||
IndentCaseLabels: true | ||
IndentWidth: 4 | ||
IndentWrappedFunctionNames: false | ||
JavaScriptQuotes: Leave | ||
JavaScriptWrapImports: true | ||
KeepEmptyLinesAtTheStartOfBlocks: false | ||
MacroBlockBegin: '' | ||
MacroBlockEnd: '' | ||
MaxEmptyLinesToKeep: 1 | ||
NamespaceIndentation: None | ||
ObjCBlockIndentWidth: 2 | ||
ObjCSpaceAfterProperty: false | ||
ObjCSpaceBeforeProtocolList: false | ||
PenaltyBreakBeforeFirstCallParameter: 1 | ||
PenaltyBreakComment: 300 | ||
PenaltyBreakFirstLessLess: 120 | ||
PenaltyBreakString: 1000 | ||
PenaltyExcessCharacter: 1000000 | ||
PenaltyReturnTypeOnItsOwnLine: 200 | ||
PointerAlignment: Left | ||
ReflowComments: true | ||
SortIncludes: true | ||
SpaceAfterCStyleCast: false | ||
SpaceBeforeAssignmentOperators: true | ||
SpaceBeforeParens: ControlStatements | ||
SpaceInEmptyParentheses: false | ||
SpacesBeforeTrailingComments: 2 | ||
SpacesInAngles: false | ||
SpacesInContainerLiterals: true | ||
SpacesInCStyleCastParentheses: false | ||
SpacesInParentheses: false | ||
SpacesInSquareBrackets: false | ||
Standard: Auto | ||
TabWidth: 8 | ||
UseTab: Never | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ goofys | |
goofys.test | ||
xout | ||
s3proxy.jar | ||
/s3proxy.sh | ||
/mnt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,77 @@ | ||
module github.com/kahing/goofys | ||
|
||
go 1.14 | ||
go 1.20 | ||
|
||
require ( | ||
cloud.google.com/go/storage v1.14.0 | ||
cloud.google.com/go/storage v1.30.1 | ||
github.com/Azure/azure-pipeline-go v0.2.3 | ||
github.com/Azure/azure-sdk-for-go v61.4.0+incompatible | ||
github.com/Azure/azure-storage-blob-go v0.14.0 | ||
github.com/Azure/go-autorest/autorest v0.11.18 | ||
github.com/Azure/go-autorest/autorest/adal v0.9.13 | ||
github.com/Azure/go-autorest/autorest/azure/auth v0.5.7 | ||
github.com/Azure/go-autorest/autorest/azure/cli v0.4.2 | ||
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect | ||
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect | ||
github.com/aws/aws-sdk-go v1.44.37 | ||
github.com/gofrs/uuid v4.2.0+incompatible | ||
github.com/google/uuid v1.2.0 | ||
github.com/gopherjs/gopherjs v0.0.0-20210413103415-7d3cbed7d026 // indirect | ||
github.com/jacobsa/fuse v0.0.0-20221016084658-a4cd154343d8 | ||
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible | ||
github.com/Azure/azure-storage-blob-go v0.15.0 | ||
github.com/Azure/go-autorest/autorest v0.11.29 | ||
github.com/Azure/go-autorest/autorest/adal v0.9.23 | ||
github.com/Azure/go-autorest/autorest/azure/auth v0.5.12 | ||
github.com/Azure/go-autorest/autorest/azure/cli v0.4.6 | ||
github.com/aws/aws-sdk-go v1.44.278 | ||
github.com/gofrs/uuid v4.4.0+incompatible | ||
github.com/google/uuid v1.3.0 | ||
github.com/jacobsa/fuse v0.0.0-20230509090321-7263f3a2b474 | ||
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/sevlyar/go-daemon v0.1.5 | ||
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 | ||
github.com/sevlyar/go-daemon v0.1.6 | ||
github.com/shirou/gopsutil/v3 v3.24.5 | ||
github.com/sirupsen/logrus v1.4.3-0.20190807103436-de736cf91b92 | ||
github.com/smartystreets/assertions v1.2.0 // indirect | ||
github.com/urfave/cli v1.21.1-0.20190807111034-521735b7608a | ||
golang.org/x/oauth2 v0.0.0-20210323180902-22b0adad7558 | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c | ||
github.com/sirupsen/logrus v1.9.3 | ||
github.com/urfave/cli v1.22.13 | ||
golang.org/x/oauth2 v0.8.0 | ||
golang.org/x/sync v0.2.0 | ||
golang.org/x/sys v0.20.0 | ||
google.golang.org/api v0.43.0 | ||
google.golang.org/api v0.125.0 | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c | ||
gopkg.in/ini.v1 v1.51.0 | ||
gopkg.in/ini.v1 v1.67.0 | ||
k8s.io/utils v0.0.0-20240902221715-702e33fdd3c3 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.110.0 // indirect | ||
cloud.google.com/go/compute v1.19.3 // indirect | ||
cloud.google.com/go/compute/metadata v0.2.3 // indirect | ||
cloud.google.com/go/iam v0.13.0 // indirect | ||
github.com/Azure/go-autorest v14.2.0+incompatible // indirect | ||
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect | ||
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect | ||
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect | ||
github.com/Azure/go-autorest/logger v0.2.1 // indirect | ||
github.com/Azure/go-autorest/tracing v0.6.0 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect | ||
github.com/dimchansky/utfbom v1.1.1 // indirect | ||
github.com/go-ole/go-ole v1.2.6 // indirect | ||
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/s2a-go v0.1.4 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect | ||
github.com/googleapis/gax-go/v2 v2.10.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/kr/pretty v0.2.1 // indirect | ||
github.com/kr/text v0.1.0 // indirect | ||
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect | ||
github.com/mattn/go-ieproxy v0.0.1 // indirect | ||
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/shoenig/go-m1cpu v0.1.6 // indirect | ||
github.com/tklauser/go-sysconf v0.3.12 // indirect | ||
github.com/tklauser/numcpus v0.6.1 // indirect | ||
github.com/yusufpapurcu/wmi v1.2.4 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
golang.org/x/crypto v0.9.0 // indirect | ||
golang.org/x/net v0.10.0 // indirect | ||
golang.org/x/text v0.9.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc // indirect | ||
google.golang.org/grpc v1.55.0 // indirect | ||
google.golang.org/protobuf v1.30.0 // indirect | ||
) |
Oops, something went wrong.