8 | # Open http://localhost:8080/ .
9 | # Modify the file to see it update in the browser.
10 |
--------------------------------------------------------------------------------
/vendor/github.com/gorilla/websocket/mask_safe.go:
--------------------------------------------------------------------------------
1 | // Copyright 2016 The Gorilla WebSocket Authors. All rights reserved. Use of
2 | // this source code is governed by a BSD-style license that can be found in the
3 | // LICENSE file.
4 |
5 | // +build appengine
6 |
7 | package websocket
8 |
9 | func maskBytes(key [4]byte, pos int, b []byte) int {
10 | for i := range b {
11 | b[i] ^= key[pos&3]
12 | pos++
13 | }
14 | return pos & 3
15 | }
16 |
--------------------------------------------------------------------------------
/vendor/github.com/jtolds/gls/gen_sym.go:
--------------------------------------------------------------------------------
1 | package gls
2 |
3 | import (
4 | "sync"
5 | )
6 |
7 | var (
8 | keyMtx sync.Mutex
9 | keyCounter uint64
10 | )
11 |
12 | // ContextKey is a throwaway value you can use as a key to a ContextManager
13 | type ContextKey struct{ id uint64 }
14 |
15 | // GenSym will return a brand new, never-before-used ContextKey
16 | func GenSym() ContextKey {
17 | keyMtx.Lock()
18 | defer keyMtx.Unlock()
19 | keyCounter += 1
20 | return ContextKey{id: keyCounter}
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/github.com/kennygrant/sanitize/.gitignore:
--------------------------------------------------------------------------------
1 | # Compiled Object files, Static and Dynamic libs (Shared Objects)
2 | *.o
3 | *.a
4 | *.so
5 |
6 | # Folders
7 | _obj
8 | _test
9 |
10 | # Architecture specific extensions/prefixes
11 | *.[568vq]
12 | [568vq].out
13 |
14 | *.cgo1.go
15 | *.cgo2.c
16 | _cgo_defun.c
17 | _cgo_gotypes.go
18 | _cgo_export.*
19 |
20 | _testmain.go
21 |
22 | *.exe
23 |
--------------------------------------------------------------------------------
/vendor/github.com/kennygrant/sanitize/.travis.yml:
--------------------------------------------------------------------------------
1 | language: go
2 |
--------------------------------------------------------------------------------
/vendor/github.com/mitchellh/go-ps/.gitignore:
--------------------------------------------------------------------------------
1 | .vagrant/
2 |
--------------------------------------------------------------------------------
/vendor/github.com/mitchellh/go-ps/.travis.yml:
--------------------------------------------------------------------------------
1 | language: go
2 |
3 | go:
4 | - 1.2.1
5 |
--------------------------------------------------------------------------------
/vendor/github.com/mitchellh/go-ps/process_darwin_test.go:
--------------------------------------------------------------------------------
1 | // +build darwin
2 |
3 | package ps
4 |
5 | import (
6 | "testing"
7 | )
8 |
9 | func TestDarwinProcess_impl(t *testing.T) {
10 | var _ Process = new(DarwinProcess)
11 | }
12 |
--------------------------------------------------------------------------------
/vendor/github.com/mitchellh/go-ps/process_unix_test.go:
--------------------------------------------------------------------------------
1 | // +build linux solaris
2 |
3 | package ps
4 |
5 | import (
6 | "testing"
7 | )
8 |
9 | func TestUnixProcess_impl(t *testing.T) {
10 | var _ Process = new(UnixProcess)
11 | }
12 |
--------------------------------------------------------------------------------
/vendor/github.com/qiniu/log/.gitignore:
--------------------------------------------------------------------------------
1 | # Compiled Object files, Static and Dynamic libs (Shared Objects)
2 | *.o
3 | *.a
4 | *.so
5 |
6 | # Folders
7 | _obj
8 | _test
9 |
10 | # Architecture specific extensions/prefixes
11 | *.[568vq]
12 | [568vq].out
13 |
14 | *.cgo1.go
15 | *.cgo2.c
16 | _cgo_defun.c
17 | _cgo_gotypes.go
18 | _cgo_export.*
19 |
20 | _testmain.go
21 |
22 | *.exe
23 |
--------------------------------------------------------------------------------
/vendor/github.com/qiniu/log/README.md:
--------------------------------------------------------------------------------
1 | log
2 | ===
3 |
4 | Extension module of golang logging
--------------------------------------------------------------------------------
/vendor/github.com/qiniu/log/logext_test.go:
--------------------------------------------------------------------------------
1 | package log
2 |
3 | import (
4 | "testing"
5 | )
6 |
7 | func TestLog(t *testing.T) {
8 |
9 | SetOutputLevel(Ldebug)
10 |
11 | Debugf("Debug: foo\n")
12 | Debug("Debug: foo")
13 |
14 | Infof("Info: foo\n")
15 | Info("Info: foo")
16 |
17 | Warnf("Warn: foo\n")
18 | Warn("Warn: foo")
19 |
20 | Errorf("Error: foo\n")
21 | Error("Error: foo")
22 |
23 | SetOutputLevel(Linfo)
24 |
25 | Debugf("Debug: foo\n")
26 | Debug("Debug: foo")
27 |
28 | Infof("Info: foo\n")
29 | Info("Info: foo")
30 |
31 | Warnf("Warn: foo\n")
32 | Warn("Warn: foo")
33 |
34 | Errorf("Error: foo\n")
35 | Error("Error: foo")
36 | }
37 |
--------------------------------------------------------------------------------
/vendor/github.com/shurcooL/httpfs/.travis.yml:
--------------------------------------------------------------------------------
1 | sudo: false
2 | language: go
3 | go:
4 | - 1.x
5 | - master
6 | matrix:
7 | allow_failures:
8 | - go: master
9 | fast_finish: true
10 | install:
11 | - # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
12 | script:
13 | - go get -t -v ./...
14 | - diff -u <(echo -n) <(gofmt -d -s .)
15 | - go tool vet .
16 | - go test -v -race ./...
17 |
--------------------------------------------------------------------------------
/vendor/github.com/shurcooL/httpfs/vfsutil/file.go:
--------------------------------------------------------------------------------
1 | package vfsutil
2 |
3 | import (
4 | "net/http"
5 | "os"
6 | )
7 |
8 | // File implements http.FileSystem using the native file system restricted to a
9 | // specific file served at root.
10 | //
11 | // While the FileSystem.Open method takes '/'-separated paths, a File's string
12 | // value is a filename on the native file system, not a URL, so it is separated
13 | // by filepath.Separator, which isn't necessarily '/'.
14 | type File string
15 |
16 | func (f File) Open(name string) (http.File, error) {
17 | if name != "/" {
18 | return nil, &os.PathError{Op: "open", Path: name, Err: os.ErrNotExist}
19 | }
20 | return os.Open(string(f))
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/github.com/shurcooL/vfsgen/.travis.yml:
--------------------------------------------------------------------------------
1 | sudo: false
2 | language: go
3 | go:
4 | - 1.x
5 | - master
6 | matrix:
7 | allow_failures:
8 | - go: master
9 | fast_finish: true
10 | install:
11 | - # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
12 | script:
13 | - go get -t -v ./...
14 | - diff -u <(echo -n) <(gofmt -d -s .)
15 | - go tool vet .
16 | - go test -v -race ./...
17 |
--------------------------------------------------------------------------------
/vendor/github.com/shurcooL/vfsgen/doc.go:
--------------------------------------------------------------------------------
1 | /*
2 | Package vfsgen takes an http.FileSystem (likely at `go generate` time) and
3 | generates Go code that statically implements the provided http.FileSystem.
4 |
5 | Features:
6 |
7 | - Efficient generated code without unneccessary overhead.
8 |
9 | - Uses gzip compression internally (selectively, only for files that compress well).
10 |
11 | - Enables direct access to internal gzip compressed bytes via an optional interface.
12 |
13 | - Outputs `gofmt`ed Go code.
14 | */
15 | package vfsgen
16 |
--------------------------------------------------------------------------------
/vendor/github.com/shurcooL/vfsgen/test/doc.go:
--------------------------------------------------------------------------------
1 | // Package test contains tests for virtual filesystem implementation generated by vfsgen.
2 | package test
3 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/assertions/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | Thumbs.db
3 | *.iml
4 | /.idea
5 | coverage.out
6 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/assertions/.travis.yml:
--------------------------------------------------------------------------------
1 | language: go
2 |
3 | go:
4 | - 1.x
5 | - master
6 |
7 | install:
8 | - go get -t ./...
9 |
10 | script: go test -v
11 |
12 | sudo: false
13 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/assertions/internal/oglematchers/.gitignore:
--------------------------------------------------------------------------------
1 | *.6
2 | 6.out
3 | _obj/
4 | _test/
5 | _testmain.go
6 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/assertions/internal/oglematchers/.travis.yml:
--------------------------------------------------------------------------------
1 | # Cf. http://docs.travis-ci.com/user/getting-started/
2 | # Cf. http://docs.travis-ci.com/user/languages/go/
3 |
4 | language: go
5 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/.gitattributes:
--------------------------------------------------------------------------------
1 | web/client/resources/js/lib/* linguist-vendored
2 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | Thumbs.db
3 | examples/output.json
4 | web/client/reports/
5 | /.idea
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/.travis.yml:
--------------------------------------------------------------------------------
1 | language: go
2 |
3 | go:
4 | - 1.2.x
5 | - 1.3.x
6 | - 1.4.x
7 | - 1.5.x
8 | - 1.6.x
9 | - 1.7.x
10 | - 1.8.x
11 | - tip
12 |
13 | install:
14 | - go get -t ./...
15 |
16 | script: go test -short -v ./...
17 |
18 | sudo: false
19 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/convey/convey.goconvey:
--------------------------------------------------------------------------------
1 | #ignore
2 | -timeout=1s
3 | #-covermode=count
4 | #-coverpkg=github.com/smartystreets/goconvey/convey,github.com/smartystreets/goconvey/convey/gotest,github.com/smartystreets/goconvey/convey/reporting
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/convey/gotest/doc_test.go:
--------------------------------------------------------------------------------
1 | package gotest
2 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/convey/reporting/console.go:
--------------------------------------------------------------------------------
1 | package reporting
2 |
3 | import (
4 | "fmt"
5 | "io"
6 | )
7 |
8 | type console struct{}
9 |
10 | func (self *console) Write(p []byte) (n int, err error) {
11 | return fmt.Print(string(p))
12 | }
13 |
14 | func NewConsole() io.Writer {
15 | return new(console)
16 | }
17 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/convey/reporting/doc.go:
--------------------------------------------------------------------------------
1 | // Package reporting contains internal functionality related
2 | // to console reporting and output. Although this package has
3 | // exported names is not intended for public consumption. See the
4 | // examples package for how to use this project.
5 | package reporting
6 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/convey/reporting/reporting.goconvey:
--------------------------------------------------------------------------------
1 | #ignore
2 | -timeout=1s
3 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/dependencies.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import _ "github.com/jtolds/gls"
4 | import _ "github.com/smartystreets/assertions"
5 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/examples/doc.go:
--------------------------------------------------------------------------------
1 | // Package examples contains, well, examples of how to use goconvey to
2 | // specify behavior of a system under test. It contains a well-known example
3 | // by Robert C. Martin called "Bowling Game Kata" as well as another very
4 | // trivial example that demonstrates Reset() and some of the assertions.
5 | package examples
6 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/examples/examples.goconvey:
--------------------------------------------------------------------------------
1 | // Uncomment the next line to disable the package when running the GoConvey UI:
2 | //IGNORE
3 |
4 | // Uncomment the next line to limit testing to the specified test function name pattern:
5 | //-run=TestAssertionsAreAvailableFromConveyPackage
6 |
7 | // Uncomment the next line to limit testing to those tests that don't bail when testing.Short() is true:
8 | //-short
9 |
10 | // include any additional `go test` flags or application-specific flags below:
11 |
12 | -timeout=1s
13 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/github.com/smartystreets/goconvey/web/client/favicon.ico
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/FontAwesome/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/FontAwesome/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/FontAwesome/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/FontAwesome/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/FontAwesome/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/FontAwesome/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/FontAwesome/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/FontAwesome/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/FontAwesome/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/FontAwesome/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Bold.ttf
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Italic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Italic.ttf
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Light.ttf
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-LightItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-LightItalic.ttf
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Open_Sans/OpenSans-Regular.ttf
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Orbitron/Orbitron-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Orbitron/Orbitron-Regular.ttf
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Oswald/Oswald-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/github.com/smartystreets/goconvey/web/client/resources/fonts/Oswald/Oswald-Regular.ttf
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-buildfail.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-buildfail.ico
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-fail.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-fail.ico
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-ok.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-ok.ico
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-panic.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/github.com/smartystreets/goconvey/web/client/resources/ico/goconvey-panic.ico
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/js/config.js:
--------------------------------------------------------------------------------
1 | // Configure the GoConvey web UI client in here
2 |
3 | convey.config = {
4 |
5 | // Install new themes by adding them here; the first one will be default
6 | themes: {
7 | "dark": { name: "Dark", filename: "dark.css", coverage: "hsla({{hue}}, 75%, 30%, .5)" },
8 | "dark-bigtext": { name: "Dark-BigText", filename: "dark-bigtext.css", coverage: "hsla({{hue}}, 75%, 30%, .5)" },
9 | "light": { name: "Light", filename: "light.css", coverage: "hsla({{hue}}, 62%, 75%, 1)" }
10 | },
11 |
12 | // Path to the themes (end with forward-slash)
13 | themePath: "/resources/css/themes/"
14 |
15 | };
16 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/jquery-ui.js.url:
--------------------------------------------------------------------------------
1 | https://code.jquery.com/ui/1.10.4/jquery-ui.js
2 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/jquery.js.url:
--------------------------------------------------------------------------------
1 | https://code.jquery.com/jquery-2.1.0.js
2 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/jquery.pretty-text-diff.js.url:
--------------------------------------------------------------------------------
1 | https://raw.githubusercontent.com/arnab/jQuery.PrettyTextDiff/1.0.2/jquery.pretty-text-diff.js
2 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/jquery.tipsy.js.url:
--------------------------------------------------------------------------------
1 | https://raw.githubusercontent.com/jaz303/tipsy/v1.0.0a/src/javascripts/jquery.tipsy.js
2 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/markup.js.url:
--------------------------------------------------------------------------------
1 | https://raw.githubusercontent.com/adammark/Markup.js/master/src/markup.js
2 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/moment.js.url:
--------------------------------------------------------------------------------
1 | https://raw.githubusercontent.com/moment/moment/2.10.2/moment.js
2 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/client/resources/js/lib/taboverride.js.url:
--------------------------------------------------------------------------------
1 | https://raw.githubusercontent.com/wjbryant/taboverride/4.0.3/build/output/taboverride.js
2 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/server/api/api.goconvey:
--------------------------------------------------------------------------------
1 | #ignore
2 | -timeout=1s
3 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/server/contract/doc_test.go:
--------------------------------------------------------------------------------
1 | package contract
2 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/server/executor/contract.go:
--------------------------------------------------------------------------------
1 | package executor
2 |
3 | import "github.com/smartystreets/goconvey/web/server/contract"
4 |
5 | type Parser interface {
6 | Parse([]*contract.Package)
7 | }
8 |
9 | type Tester interface {
10 | SetBatchSize(batchSize int)
11 | TestAll(folders []*contract.Package)
12 | }
13 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/server/executor/executor.goconvey:
--------------------------------------------------------------------------------
1 | #ignore
2 | -timeout=1s
3 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/server/messaging/doc_test.go:
--------------------------------------------------------------------------------
1 | package messaging
2 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/server/parser/parser.goconvey:
--------------------------------------------------------------------------------
1 | #ignore
2 | -timeout=1s
3 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/server/system/system.goconvey:
--------------------------------------------------------------------------------
1 | #ignore
2 | -timeout=1s
3 | -short
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/server/watch/integration_testing/doc_test.go:
--------------------------------------------------------------------------------
1 | package main
2 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/server/watch/integration_testing/main.go:
--------------------------------------------------------------------------------
1 | // This file's only purpose is to provide a realistic
2 | // environment from which to run integration tests
3 | // against the Watcher.
4 | package main
5 |
6 | import "fmt"
7 |
8 | func main() {
9 | fmt.Println("Hello, World!")
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/server/watch/integration_testing/sub/.gitignore:
--------------------------------------------------------------------------------
1 | github.com-smartystreets-goconvey-web-server-integration_testing-sub.html
2 | github.com-smartystreets-goconvey-web-server-integration_testing-sub.txt
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/server/watch/integration_testing/sub/stuff.go:
--------------------------------------------------------------------------------
1 | // This file's only purpose is to provide a realistic
2 | // environment from which to run integration tests
3 | // against the Watcher.
4 | package sub
5 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/server/watch/integration_testing/sub/stuff_test.go:
--------------------------------------------------------------------------------
1 | // This file's only purpose is to provide a realistic
2 | // environment from which to run integration tests
3 | // against the Watcher.
4 | package sub
5 |
6 | import (
7 | "fmt"
8 | "testing"
9 | )
10 |
11 | func TestStuff(t *testing.T) {
12 | if testing.Short() {
13 | return
14 | }
15 |
16 | fmt.Println()
17 | }
18 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/server/watch/integration_testing/sub/sub.goconvey:
--------------------------------------------------------------------------------
1 | IGNORE
2 | -short
3 | -run=TestStuff
4 |
5 | // This file's only purpose is to provide a realistic
6 | // environment from which to run integration tests
7 | // against the Watcher.
8 |
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/goconvey/web/server/watch/watch.goconvey:
--------------------------------------------------------------------------------
1 | #ignore
2 | -timeout=1s
3 | -short
--------------------------------------------------------------------------------
/vendor/github.com/smartystreets/logging/.gitignore:
--------------------------------------------------------------------------------
1 | /.idea
2 |
--------------------------------------------------------------------------------
/vendor/github.com/urfave/cli/.flake8:
--------------------------------------------------------------------------------
1 | [flake8]
2 | max-line-length = 120
3 |
--------------------------------------------------------------------------------
/vendor/github.com/urfave/cli/.gitignore:
--------------------------------------------------------------------------------
1 | *.coverprofile
2 | node_modules/
3 |
--------------------------------------------------------------------------------
/vendor/github.com/urfave/cli/.travis.yml:
--------------------------------------------------------------------------------
1 | language: go
2 | sudo: false
3 | dist: trusty
4 | osx_image: xcode8.3
5 | go: 1.8.x
6 |
7 | os:
8 | - linux
9 | - osx
10 |
11 | cache:
12 | directories:
13 | - node_modules
14 |
15 | before_script:
16 | - go get github.com/urfave/gfmrun/... || true
17 | - go get golang.org/x/tools/cmd/goimports
18 | - if [ ! -f node_modules/.bin/markdown-toc ] ; then
19 | npm install markdown-toc ;
20 | fi
21 |
22 | script:
23 | - ./runtests gen
24 | - ./runtests vet
25 | - ./runtests test
26 | - ./runtests gfmrun
27 | - ./runtests toc
28 |
--------------------------------------------------------------------------------
/vendor/github.com/urfave/cli/altsrc/altsrc.go:
--------------------------------------------------------------------------------
1 | package altsrc
2 |
3 | //go:generate python ../generate-flag-types altsrc -i ../flag-types.json -o flag_generated.go
4 |
--------------------------------------------------------------------------------
/vendor/github.com/urfave/cli/altsrc/helpers_test.go:
--------------------------------------------------------------------------------
1 | package altsrc
2 |
3 | import (
4 | "reflect"
5 | "testing"
6 | )
7 |
8 | func expect(t *testing.T, a interface{}, b interface{}) {
9 | if !reflect.DeepEqual(b, a) {
10 | t.Errorf("Expected %#v (type %v) - Got %#v (type %v)", b, reflect.TypeOf(b), a, reflect.TypeOf(a))
11 | }
12 | }
13 |
14 | func refute(t *testing.T, a interface{}, b interface{}) {
15 | if a == b {
16 | t.Errorf("Did not expect %v (type %v) - Got %v (type %v)", b, reflect.TypeOf(b), a, reflect.TypeOf(a))
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/vendor/github.com/urfave/cli/altsrc/input_source_context.go:
--------------------------------------------------------------------------------
1 | package altsrc
2 |
3 | import (
4 | "time"
5 |
6 | "gopkg.in/urfave/cli.v1"
7 | )
8 |
9 | // InputSourceContext is an interface used to allow
10 | // other input sources to be implemented as needed.
11 | type InputSourceContext interface {
12 | Int(name string) (int, error)
13 | Duration(name string) (time.Duration, error)
14 | Float64(name string) (float64, error)
15 | String(name string) (string, error)
16 | StringSlice(name string) ([]string, error)
17 | IntSlice(name string) ([]int, error)
18 | Generic(name string) (cli.Generic, error)
19 | Bool(name string) (bool, error)
20 | BoolT(name string) (bool, error)
21 | }
22 |
--------------------------------------------------------------------------------
/vendor/github.com/urfave/cli/appveyor.yml:
--------------------------------------------------------------------------------
1 | version: "{build}"
2 |
3 | os: Windows Server 2016
4 |
5 | image: Visual Studio 2017
6 |
7 | clone_folder: c:\gopath\src\github.com\urfave\cli
8 |
9 | environment:
10 | GOPATH: C:\gopath
11 | GOVERSION: 1.8.x
12 | PYTHON: C:\Python36-x64
13 | PYTHON_VERSION: 3.6.x
14 | PYTHON_ARCH: 64
15 |
16 | install:
17 | - set PATH=%GOPATH%\bin;C:\go\bin;%PATH%
18 | - go version
19 | - go env
20 | - go get github.com/urfave/gfmrun/...
21 | - go get -v -t ./...
22 |
23 | build_script:
24 | - python runtests vet
25 | - python runtests test
26 | - python runtests gfmrun
27 |
--------------------------------------------------------------------------------
/vendor/github.com/urfave/cli/autocomplete/bash_autocomplete:
--------------------------------------------------------------------------------
1 | #! /bin/bash
2 |
3 | : ${PROG:=$(basename ${BASH_SOURCE})}
4 |
5 | _cli_bash_autocomplete() {
6 | local cur opts base
7 | COMPREPLY=()
8 | cur="${COMP_WORDS[COMP_CWORD]}"
9 | opts=$( ${COMP_WORDS[@]:0:$COMP_CWORD} --generate-bash-completion )
10 | COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
11 | return 0
12 | }
13 |
14 | complete -F _cli_bash_autocomplete $PROG
15 |
16 | unset PROG
17 |
--------------------------------------------------------------------------------
/vendor/github.com/urfave/cli/autocomplete/zsh_autocomplete:
--------------------------------------------------------------------------------
1 | autoload -U compinit && compinit
2 | autoload -U bashcompinit && bashcompinit
3 |
4 | script_dir=$(dirname $0)
5 | source ${script_dir}/bash_autocomplete
6 |
--------------------------------------------------------------------------------
/vendor/github.com/urfave/cli/helpers_unix_test.go:
--------------------------------------------------------------------------------
1 | // +build darwin dragonfly freebsd linux netbsd openbsd solaris
2 |
3 | package cli
4 |
5 | import "os"
6 |
7 | func clearenv() {
8 | os.Clearenv()
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/github.com/urfave/cli/helpers_windows_test.go:
--------------------------------------------------------------------------------
1 | package cli
2 |
3 | import (
4 | "os"
5 | "syscall"
6 | )
7 |
8 | // os.Clearenv() doesn't actually unset variables on Windows
9 | // See: https://github.com/golang/go/issues/17902
10 | func clearenv() {
11 | for _, s := range os.Environ() {
12 | for j := 1; j < len(s); j++ {
13 | if s[j] == '=' {
14 | keyp, _ := syscall.UTF16PtrFromString(s[0:j])
15 | syscall.SetEnvironmentVariable(keyp, nil)
16 | break
17 | }
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/.gitattributes:
--------------------------------------------------------------------------------
1 | # Treat all files in this repo as binary, with no git magic updating
2 | # line endings. Windows users contributing to Go will need to use a
3 | # modern version of git and editors capable of LF line endings.
4 | #
5 | # We'll prevent accidental CRLF line endings from entering the repo
6 | # via the git-review gofmt checks.
7 | #
8 | # See golang.org/issue/9281
9 |
10 | * -text
11 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/.gitignore:
--------------------------------------------------------------------------------
1 | # Add no patterns to .hgignore except for files generated by the build.
2 | last-change
3 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/AUTHORS:
--------------------------------------------------------------------------------
1 | # This source code refers to The Go Authors for copyright purposes.
2 | # The master list of authors is in the main Go distribution,
3 | # visible at http://tip.golang.org/AUTHORS.
4 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/CONTRIBUTORS:
--------------------------------------------------------------------------------
1 | # This source code was written by the Go contributors.
2 | # The master list of contributors is in the main Go distribution,
3 | # visible at http://tip.golang.org/CONTRIBUTORS.
4 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/README:
--------------------------------------------------------------------------------
1 | This repository holds supplementary Go networking libraries.
2 |
3 | To submit changes to this repository, see http://golang.org/doc/contribute.html.
4 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/bpf/setter.go:
--------------------------------------------------------------------------------
1 | // Copyright 2017 The Go Authors. All rights reserved.
2 | // Use of this source code is governed by a BSD-style
3 | // license that can be found in the LICENSE file.
4 |
5 | package bpf
6 |
7 | // A Setter is a type which can attach a compiled BPF filter to itself.
8 | type Setter interface {
9 | SetBPF(filter []RawInstruction) error
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/bpf/testdata/all_instructions.bpf:
--------------------------------------------------------------------------------
1 | 50,0 0 0 42,1 0 0 42,96 0 0 3,97 0 0 3,48 0 0 42,40 0 0 42,32 0 0 42,80 0 0 42,72 0 0 42,64 0 0 42,177 0 0 42,128 0 0 0,32 0 0 4294963200,32 0 0 4294963204,32 0 0 4294963256,2 0 0 3,3 0 0 3,4 0 0 42,20 0 0 42,36 0 0 42,52 0 0 42,68 0 0 42,84 0 0 42,100 0 0 42,116 0 0 42,148 0 0 42,164 0 0 42,12 0 0 0,28 0 0 0,44 0 0 0,60 0 0 0,76 0 0 0,92 0 0 0,108 0 0 0,124 0 0 0,156 0 0 0,172 0 0 0,132 0 0 0,5 0 0 10,21 8 9 42,21 0 8 42,53 0 7 42,37 0 6 42,37 4 5 42,53 3 4 42,69 2 3 42,7 0 0 0,135 0 0 0,22 0 0 0,6 0 0 0,
2 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/codereview.cfg:
--------------------------------------------------------------------------------
1 | issuerepo: golang/go
2 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/html/charset/testdata/README:
--------------------------------------------------------------------------------
1 | These test cases come from
2 | http://www.w3.org/International/tests/repository/html5/the-input-byte-stream/results-basics
3 |
4 | Distributed under both the W3C Test Suite License
5 | (http://www.w3.org/Consortium/Legal/2008/04-testsuite-license)
6 | and the W3C 3-clause BSD License
7 | (http://www.w3.org/Consortium/Legal/2008/03-bsd-license).
8 | To contribute to a W3C Test Suite, see the policies and contribution
9 | forms (http://www.w3.org/2004/10/27-testcases).
10 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ohlinux/gosuv/1d770f0bb0dca4886de2569e81fd1196f71a7775/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/html/testdata/webkit/adoption02.dat:
--------------------------------------------------------------------------------
1 | #data
2 | 1234
3 | #errors
4 | #document
5 | |
6 | |
7 | |
8 | |
9 | | "1"
10 | |
11 | | "2"
12 | |
13 | |
14 | |
15 | | "3"
16 | | "4"
17 |
18 | #data
19 |