initial commit

This commit is contained in:
Eric Chiang
2016-07-25 13:00:28 -07:00
commit cab271f304
1438 changed files with 335968 additions and 0 deletions
.gitignoreMakefile
cmd
connector
example
glide.lockglide.yamlglide_test.go
server
storage
vendor
github.com
ericchiang
golang
gorilla
gtank
inconshreveable
mitchellh
pquerna
spf13
golang.org
x
crypto
.gitattributes.gitignoreAUTHORSCONTRIBUTING.mdCONTRIBUTORSLICENSEPATENTSREADME
acme
bcrypt
blowfish
bn256
cast5
codereview.cfg
curve25519
ed25519
hkdf
md4
nacl
ocsp
openpgp
otr
pbkdf2
pkcs12
poly1305
ripemd160
salsa20
scrypt
sha3
ssh
tea
twofish
xtea
xts
net
.gitattributes.gitignoreAUTHORSCONTRIBUTING.mdCONTRIBUTORSLICENSEPATENTSREADME
bpf
codereview.cfg
context
dict
html
http2
icmp
idna
internal
ipv4
ipv6
lex
netutil
proxy
publicsuffix
route
trace
webdav
websocket
xsrftoken
oauth2
google.golang.org
appengine
.travis.ymlLICENSEREADME.md
aetest
appengine.goappengine_test.goappengine_vm.go
blobstore
capability
channel
cloudsql
cmd
datastore
delay
demos
errors.go
file
identity.go
image
internal
log
mail
memcache
module
namespace.gonamespace_test.go
remote_api
runtime
search
socket
taskqueue
timeout.go
urlfetch
user
xmpp
gopkg.in
asn1-ber.v1
ldap.v2
square
go-jose.v1
go-jose.v2
yaml.v2
version

29
vendor/github.com/spf13/pflag/export_test.go generated vendored Normal file

@@ -0,0 +1,29 @@
// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package pflag
import (
"io/ioutil"
"os"
)
// Additional routines compiled into the package only during testing.
// ResetForTesting clears all flag state and sets the usage function as directed.
// After calling ResetForTesting, parse errors in flag handling will not
// exit the program.
func ResetForTesting(usage func()) {
CommandLine = &FlagSet{
name: os.Args[0],
errorHandling: ContinueOnError,
output: ioutil.Discard,
}
Usage = usage
}
// GetCommandLine returns the default FlagSet.
func GetCommandLine() *FlagSet {
return CommandLine
}