You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 12, 2022. It is now read-only.
addr=flag.String("addr", ":4389", "server listen address (tcp or websocket)")
40
+
trace=flag.Bool("trace", false, "print all requests and responses")
41
+
logfile=flag.String("logfile", "", "also log to this file (in addition to stderr)")
42
+
printVersion=flag.Bool("version", false, "print version and exit")
43
+
pprof=flag.String("pprof", "", "start a pprof http server (https://golang.org/pkg/net/http/pprof/)")
44
+
freeosmemory=flag.Bool("freeosmemory", true, "aggressively free memory back to the OS")
45
+
useBuildServer=flag.Bool("usebuildserver", false, "use a build server to fetch dependencies, fetch files via Zip URL, etc.")
46
+
cacheDir=flag.String("cachedir", "/tmp", "directory to store cached archives")
47
+
maxCacheSizeBytes=flag.Int64("maxCacheSizeBytes", 50*1024*1024*1024, "the maximum size of the cache directory after evicting entries")
45
48
46
49
// Default Config, can be overridden by InitializationOptions
47
50
usebinarypkgcache=flag.Bool("usebinarypkgcache", true, "use $GOPATH/pkg binary .a files (improves performance). Can be overridden by InitializationOptions.")
0 commit comments