├── vendor
├── k8s.io
│ ├── gengo
│ │ ├── boilerplate
│ │ │ └── no-boilerplate.go.txt
│ │ ├── examples
│ │ │ ├── set-gen
│ │ │ │ └── .gitignore
│ │ │ ├── import-boss
│ │ │ │ └── .gitignore
│ │ │ ├── deepcopy-gen
│ │ │ │ └── .gitignore
│ │ │ ├── defaulter-gen
│ │ │ │ ├── .gitignore
│ │ │ │ ├── OWNERS
│ │ │ │ └── .import-restrictions
│ │ │ └── go-to-protobuf
│ │ │ │ ├── .gitignore
│ │ │ │ ├── OWNERS
│ │ │ │ └── .import-restrictions
│ │ ├── OWNERS
│ │ ├── code-of-conduct.md
│ │ └── .import-restrictions
│ ├── code-generator
│ │ ├── cmd
│ │ │ ├── set-gen
│ │ │ │ └── .gitignore
│ │ │ ├── import-boss
│ │ │ │ └── .gitignore
│ │ │ ├── lister-gen
│ │ │ │ └── .import-restrictions
│ │ │ ├── go-to-protobuf
│ │ │ │ ├── .gitignore
│ │ │ │ └── OWNERS
│ │ │ └── client-gen
│ │ │ │ ├── OWNERS
│ │ │ │ └── README.md
│ │ ├── Godeps
│ │ │ ├── OWNERS
│ │ │ └── Readme
│ │ ├── OWNERS
│ │ ├── code-of-conduct.md
│ │ └── .github
│ │ │ └── PULL_REQUEST_TEMPLATE.md
│ ├── api
│ │ ├── Godeps
│ │ │ ├── OWNERS
│ │ │ └── Readme
│ │ ├── storage
│ │ │ └── OWNERS
│ │ ├── imagepolicy
│ │ │ └── OWNERS
│ │ ├── networking
│ │ │ └── OWNERS
│ │ ├── events
│ │ │ └── OWNERS
│ │ ├── README.md
│ │ ├── authentication
│ │ │ └── OWNERS
│ │ ├── policy
│ │ │ └── OWNERS
│ │ ├── code-of-conduct.md
│ │ ├── .github
│ │ │ └── PULL_REQUEST_TEMPLATE.md
│ │ ├── certificates
│ │ │ └── OWNERS
│ │ ├── authorization
│ │ │ └── OWNERS
│ │ ├── rbac
│ │ │ └── OWNERS
│ │ ├── batch
│ │ │ └── OWNERS
│ │ ├── apps
│ │ │ └── OWNERS
│ │ └── autoscaling
│ │ │ └── OWNERS
│ ├── client-go
│ │ ├── Godeps
│ │ │ ├── OWNERS
│ │ │ └── Readme
│ │ ├── pkg
│ │ │ └── version
│ │ │ │ └── .gitattributes
│ │ ├── util
│ │ │ ├── retry
│ │ │ │ └── OWNERS
│ │ │ ├── certificate
│ │ │ │ └── OWNERS
│ │ │ └── cert
│ │ │ │ └── testdata
│ │ │ │ └── dontUseThisKey.pem
│ │ ├── tools
│ │ │ ├── bootstrap
│ │ │ │ └── token
│ │ │ │ │ └── api
│ │ │ │ │ └── OWNERS
│ │ │ ├── metrics
│ │ │ │ └── OWNERS
│ │ │ └── leaderelection
│ │ │ │ └── OWNERS
│ │ ├── plugin
│ │ │ └── pkg
│ │ │ │ └── client
│ │ │ │ └── auth
│ │ │ │ ├── oidc
│ │ │ │ └── OWNERS
│ │ │ │ └── gcp
│ │ │ │ └── OWNERS
│ │ ├── .travis.yml
│ │ ├── transport
│ │ │ └── OWNERS
│ │ ├── code-of-conduct.md
│ │ └── .github
│ │ │ └── PULL_REQUEST_TEMPLATE.md
│ ├── apimachinery
│ │ ├── Godeps
│ │ │ ├── OWNERS
│ │ │ └── Readme
│ │ ├── pkg
│ │ │ ├── util
│ │ │ │ ├── mergepatch
│ │ │ │ │ └── OWNERS
│ │ │ │ └── strategicpatch
│ │ │ │ │ └── OWNERS
│ │ │ ├── OWNERS
│ │ │ └── api
│ │ │ │ └── resource
│ │ │ │ └── OWNERS
│ │ ├── third_party
│ │ │ └── forked
│ │ │ │ └── golang
│ │ │ │ └── json
│ │ │ │ └── OWNERS
│ │ ├── code-of-conduct.md
│ │ ├── .github
│ │ │ └── PULL_REQUEST_TEMPLATE.md
│ │ └── OWNERS
│ └── apiextensions-apiserver
│ │ ├── Godeps
│ │ ├── OWNERS
│ │ └── Readme
│ │ ├── OWNERS
│ │ ├── artifacts
│ │ ├── example
│ │ │ ├── sa.yaml
│ │ │ └── service.yaml
│ │ └── customresource-01
│ │ │ └── noxu.yaml
│ │ ├── code-of-conduct.md
│ │ └── .github
│ │ └── PULL_REQUEST_TEMPLATE.md
├── github.com
│ ├── gogo
│ │ └── protobuf
│ │ │ ├── test
│ │ │ ├── .gitignore
│ │ │ ├── mixbench
│ │ │ │ └── .gitignore
│ │ │ ├── oneof
│ │ │ │ └── doc.go
│ │ │ ├── tags
│ │ │ │ └── doc.go
│ │ │ ├── embedconflict
│ │ │ │ ├── .gitignore
│ │ │ │ └── doc.go
│ │ │ ├── oneof3
│ │ │ │ └── doc.go
│ │ │ ├── packed
│ │ │ │ └── doc.go
│ │ │ ├── mapsproto2
│ │ │ │ └── doc.go
│ │ │ ├── theproto3
│ │ │ │ └── doc.go
│ │ │ ├── dashfilename
│ │ │ │ └── doc.go
│ │ │ ├── sizerconflict
│ │ │ │ └── doc.go
│ │ │ ├── defaultconflict
│ │ │ │ └── doc.go
│ │ │ ├── registration
│ │ │ │ └── .gitignore
│ │ │ ├── enumdecl
│ │ │ │ ├── models.go
│ │ │ │ └── Makefile
│ │ │ ├── enumdecl_all
│ │ │ │ ├── models.go
│ │ │ │ └── Makefile
│ │ │ ├── issue312
│ │ │ │ ├── Makefile
│ │ │ │ └── events
│ │ │ │ │ └── Makefile
│ │ │ ├── typedeclimport
│ │ │ │ ├── models.go
│ │ │ │ └── Makefile
│ │ │ ├── typedecl
│ │ │ │ └── Makefile
│ │ │ ├── typedecl_all
│ │ │ │ └── Makefile
│ │ │ ├── proto3extension
│ │ │ │ └── proto3ext.proto
│ │ │ ├── issue260
│ │ │ │ └── Makefile
│ │ │ ├── issue330
│ │ │ │ ├── Makefile
│ │ │ │ └── type.go
│ │ │ ├── issue322
│ │ │ │ └── Makefile
│ │ │ ├── issue262
│ │ │ │ └── timefail.proto
│ │ │ └── issue261
│ │ │ │ └── issue261.proto
│ │ │ ├── vanity
│ │ │ └── test
│ │ │ │ ├── doc.go
│ │ │ │ └── gofast
│ │ │ │ └── .gitignore
│ │ │ ├── .gitignore
│ │ │ ├── protoc-gen-gogo
│ │ │ └── testdata
│ │ │ │ └── multi
│ │ │ │ └── .gitignore
│ │ │ ├── GOLANG_CONTRIBUTORS
│ │ │ └── jsonpb
│ │ │ └── jsonpb_test_proto
│ │ │ └── bytes.go
│ ├── sirupsen
│ │ └── logrus
│ │ │ ├── .gitignore
│ │ │ ├── terminal_check_appengine.go
│ │ │ └── terminal_bsd.go
│ ├── spf13
│ │ ├── pflag
│ │ │ └── .gitignore
│ │ └── cobra
│ │ │ ├── command_notwin.go
│ │ │ └── .mailmap
│ ├── Pallinder
│ │ └── go-randomdata
│ │ │ └── .travis.yml
│ ├── onsi
│ │ ├── ginkgo
│ │ │ ├── integration
│ │ │ │ ├── integration.go
│ │ │ │ └── _fixtures
│ │ │ │ │ ├── watch_fixtures
│ │ │ │ │ ├── C
│ │ │ │ │ │ ├── C.json
│ │ │ │ │ │ └── C.go
│ │ │ │ │ ├── A
│ │ │ │ │ │ └── A.go
│ │ │ │ │ ├── B
│ │ │ │ │ │ └── B.go
│ │ │ │ │ └── D
│ │ │ │ │ │ └── D.go
│ │ │ │ │ ├── no_tests
│ │ │ │ │ └── no_tests.go
│ │ │ │ │ ├── xunit_tests
│ │ │ │ │ └── xunit_tests.go
│ │ │ │ │ ├── no_test_fn
│ │ │ │ │ └── no_test_fn.go
│ │ │ │ │ ├── more_ginkgo_tests
│ │ │ │ │ └── more_ginkgo_tests.go
│ │ │ │ │ ├── failing_ginkgo_tests
│ │ │ │ │ └── failing_ginkgo_tests.go
│ │ │ │ │ ├── flags_tests
│ │ │ │ │ └── flags.go
│ │ │ │ │ ├── suite_command_tests
│ │ │ │ │ └── suite_command.go
│ │ │ │ │ ├── passing_ginkgo_tests
│ │ │ │ │ └── passing_ginkgo_tests.go
│ │ │ │ │ ├── coverage_fixture
│ │ │ │ │ ├── external_coverage_fixture
│ │ │ │ │ │ └── external_coverage.go
│ │ │ │ │ └── coverage.go
│ │ │ │ │ └── combined_coverage_fixture
│ │ │ │ │ └── first_package
│ │ │ │ │ └── external_coverage_fixture
│ │ │ │ │ └── external_coverage.go
│ │ │ ├── .gitignore
│ │ │ ├── reporters
│ │ │ │ └── stenographer
│ │ │ │ │ └── support
│ │ │ │ │ ├── go-isatty
│ │ │ │ │ ├── doc.go
│ │ │ │ │ └── isatty_appengine.go
│ │ │ │ │ └── README.md
│ │ │ ├── ginkgo
│ │ │ │ └── interrupthandler
│ │ │ │ │ ├── sigquit_swallower_windows.go
│ │ │ │ │ └── sigquit_swallower_unix.go
│ │ │ ├── internal
│ │ │ │ ├── remote
│ │ │ │ │ ├── syscall_dup_solaris.go
│ │ │ │ │ ├── syscall_dup_unix.go
│ │ │ │ │ ├── output_interceptor.go
│ │ │ │ │ └── syscall_dup_linux_arm64.go
│ │ │ │ └── specrunner
│ │ │ │ │ └── random_id.go
│ │ │ └── types
│ │ │ │ └── code_location.go
│ │ └── gomega
│ │ │ ├── .gitignore
│ │ │ ├── ghttp
│ │ │ └── protobuf
│ │ │ │ ├── protobuf.go
│ │ │ │ └── simple_message.proto
│ │ │ └── matchers
│ │ │ ├── support
│ │ │ └── goraph
│ │ │ │ ├── node
│ │ │ │ └── node.go
│ │ │ │ └── util
│ │ │ │ └── util.go
│ │ │ └── test_data
│ │ │ └── xml
│ │ │ ├── sample_09.xml
│ │ │ ├── sample_10.xml
│ │ │ ├── sample_03.xml
│ │ │ ├── sample_04.xml
│ │ │ ├── sample_01.xml
│ │ │ ├── sample_02.xml
│ │ │ ├── sample_11.xml
│ │ │ └── sample_06.xml
│ ├── json-iterator
│ │ └── go
│ │ │ ├── .codecov.yml
│ │ │ ├── .gitignore
│ │ │ ├── output_tests
│ │ │ ├── array
│ │ │ │ ├── bool
│ │ │ │ │ └── types.go
│ │ │ │ ├── byte
│ │ │ │ │ └── types.go
│ │ │ │ ├── int32
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_bool
│ │ │ │ │ └── types.go
│ │ │ │ ├── string
│ │ │ │ │ └── types.go
│ │ │ │ ├── uint8
│ │ │ │ │ └── types.go
│ │ │ │ ├── array
│ │ │ │ │ ├── bool
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── byte
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── float64
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── int32
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── uint8
│ │ │ │ │ │ └── types.go
│ │ │ │ │ └── ptr_string
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── float64
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_int32
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_string
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_uint8
│ │ │ │ │ └── types.go
│ │ │ │ ├── slice
│ │ │ │ │ ├── bool
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── byte
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── float64
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── int32
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── uint8
│ │ │ │ │ │ └── types.go
│ │ │ │ │ └── ptr_string
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_float64
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_slice
│ │ │ │ │ ├── bool
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── byte
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── float64
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── int32
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── uint8
│ │ │ │ │ │ └── types.go
│ │ │ │ │ └── ptr_string
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── struct_empty
│ │ │ │ │ └── types.go
│ │ │ │ ├── map
│ │ │ │ │ ├── int32_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ └── string_string
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_map
│ │ │ │ │ ├── int32_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ └── string_string
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── struct_ptr_string
│ │ │ │ │ └── types.go
│ │ │ │ ├── struct_empty_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── struct_various
│ │ │ │ │ └── types.go
│ │ │ │ └── ptr_struct_various
│ │ │ │ │ └── types.go
│ │ │ ├── builtins
│ │ │ │ ├── bool
│ │ │ │ │ └── types.go
│ │ │ │ ├── byte
│ │ │ │ │ └── types.go
│ │ │ │ ├── int8
│ │ │ │ │ └── types.go
│ │ │ │ ├── int16
│ │ │ │ │ └── types.go
│ │ │ │ ├── int32
│ │ │ │ │ └── types.go
│ │ │ │ ├── int64
│ │ │ │ │ └── types.go
│ │ │ │ ├── string
│ │ │ │ │ └── types.go
│ │ │ │ ├── uint16
│ │ │ │ │ └── types.go
│ │ │ │ ├── uint32
│ │ │ │ │ └── types.go
│ │ │ │ ├── uint8
│ │ │ │ │ └── types.go
│ │ │ │ ├── bool_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── byte_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── float32
│ │ │ │ │ └── types.go
│ │ │ │ ├── float64
│ │ │ │ │ └── types.go
│ │ │ │ ├── int16_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── int32_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── int8_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── string_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── uint16_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── uint32_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── uint8_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── uintptr
│ │ │ │ │ └── types.go
│ │ │ │ ├── float32_alias
│ │ │ │ │ └── types.go
│ │ │ │ └── float64_alias
│ │ │ │ │ └── types.go
│ │ │ ├── slice
│ │ │ │ ├── bool
│ │ │ │ │ └── types.go
│ │ │ │ ├── byte
│ │ │ │ │ └── types.go
│ │ │ │ ├── float64
│ │ │ │ │ └── types.go
│ │ │ │ ├── int32
│ │ │ │ │ └── types.go
│ │ │ │ ├── int64
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_bool
│ │ │ │ │ └── types.go
│ │ │ │ ├── string
│ │ │ │ │ └── types.go
│ │ │ │ ├── uint8
│ │ │ │ │ └── types.go
│ │ │ │ ├── array
│ │ │ │ │ ├── bool
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── byte
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── float64
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── int32
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── uint8
│ │ │ │ │ │ └── types.go
│ │ │ │ │ └── ptr_string
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_float64
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_int32
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_string
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_uint8
│ │ │ │ │ └── types.go
│ │ │ │ ├── slice
│ │ │ │ │ ├── bool
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── byte
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── int32
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── uint8
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── float64
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ └── ptr_string
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_array
│ │ │ │ │ ├── bool
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── byte
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── float64
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── int32
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── uint8
│ │ │ │ │ │ └── types.go
│ │ │ │ │ └── ptr_string
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_slice
│ │ │ │ │ ├── bool
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── byte
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── int32
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── uint8
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── float64
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ └── ptr_string
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── struct_empty
│ │ │ │ │ └── types.go
│ │ │ │ ├── map
│ │ │ │ │ ├── int32_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ └── string_string
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_map
│ │ │ │ │ ├── int32_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ └── string_string
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── struct_ptr_string
│ │ │ │ │ └── types.go
│ │ │ │ ├── struct_empty_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── struct_various
│ │ │ │ │ └── types.go
│ │ │ │ └── ptr_struct_various
│ │ │ │ │ └── types.go
│ │ │ ├── struct
│ │ │ │ ├── empty
│ │ │ │ │ └── types.go
│ │ │ │ ├── int32
│ │ │ │ │ └── types.go
│ │ │ │ ├── int64
│ │ │ │ │ └── types.go
│ │ │ │ ├── string
│ │ │ │ │ └── types.go
│ │ │ │ ├── float64
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_int32
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_string
│ │ │ │ │ └── types.go
│ │ │ │ ├── array
│ │ │ │ │ ├── string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── ptr_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── strings
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── struct_strings
│ │ │ │ │ │ └── types.go
│ │ │ │ │ └── string_alias
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── empty_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_float64
│ │ │ │ │ └── types.go
│ │ │ │ ├── slice
│ │ │ │ │ ├── string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── ptr_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── strings
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── struct_strings
│ │ │ │ │ │ └── types.go
│ │ │ │ │ └── string_alias
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── struct
│ │ │ │ │ ├── empty
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── float64
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── empty_alias
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── empties
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── int32s
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── float64_alias
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── strings
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── float32s
│ │ │ │ │ │ └── types.go
│ │ │ │ │ └── strings_alias
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_struct_empty
│ │ │ │ │ └── types.go
│ │ │ │ ├── map
│ │ │ │ │ ├── int32_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── int32_ptr_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── string_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── string_ptr_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── int32_struct_strings
│ │ │ │ │ │ └── types.go
│ │ │ │ │ └── string_struct_strings
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_ptr_struct_empty
│ │ │ │ │ └── types.go
│ │ │ │ ├── int32_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── int32s
│ │ │ │ │ └── types.go
│ │ │ │ ├── float64_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── float64s
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptrs_int32
│ │ │ │ │ └── types.go
│ │ │ │ ├── string_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── strings
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptrs_string
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptrs_float64
│ │ │ │ │ └── types.go
│ │ │ │ ├── int32s_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── anonymous
│ │ │ │ │ ├── no_overlap
│ │ │ │ │ │ ├── int32
│ │ │ │ │ │ │ └── types.go
│ │ │ │ │ │ ├── float64
│ │ │ │ │ │ │ └── types.go
│ │ │ │ │ │ ├── ptr_int32
│ │ │ │ │ │ │ └── types.go
│ │ │ │ │ │ ├── string
│ │ │ │ │ │ │ └── types.go
│ │ │ │ │ │ ├── ptr_float64
│ │ │ │ │ │ │ └── types.go
│ │ │ │ │ │ ├── ptr_string
│ │ │ │ │ │ │ └── types.go
│ │ │ │ │ │ ├── slice_string
│ │ │ │ │ │ │ └── types.go
│ │ │ │ │ │ ├── ptr_slice_string
│ │ │ │ │ │ │ └── types.go
│ │ │ │ │ │ ├── map_string_string
│ │ │ │ │ │ │ └── types.go
│ │ │ │ │ │ ├── ptr_map_string_string
│ │ │ │ │ │ │ └── types.go
│ │ │ │ │ │ └── string_with_tag
│ │ │ │ │ │ │ └── types.go
│ │ │ │ │ └── overlap
│ │ │ │ │ │ ├── different_levels
│ │ │ │ │ │ └── types.go
│ │ │ │ │ │ ├── same_level_1_no_tags
│ │ │ │ │ │ └── types.go
│ │ │ │ │ │ └── same_level_1_tagged
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── float64s_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── strings_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_struct_strings
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_ptr_struct_strings
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_string_alias
│ │ │ │ │ └── types.go
│ │ │ │ ├── ptr_float64_alias
│ │ │ │ │ └── types.go
│ │ │ │ └── ptr_int32_alias
│ │ │ │ │ └── types.go
│ │ │ ├── map
│ │ │ │ ├── int16
│ │ │ │ │ └── string
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── int32
│ │ │ │ │ └── string
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── int64
│ │ │ │ │ └── string
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── int8
│ │ │ │ │ └── string
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── string
│ │ │ │ │ ├── bool
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── byte
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── int32
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── uint8
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── float64
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── ptr_bool
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── ptr_int32
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── ptr_uint8
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── ptr_float64
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── ptr_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── slice_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── struct_empty
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── array_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── ptr_slice_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── ptr_array_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── map_string_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── ptr_map_string_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── struct_ptr_string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── struct_empty_alias
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── string_alias
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── struct_various
│ │ │ │ │ │ └── types.go
│ │ │ │ │ └── ptr_struct_various
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── uint8
│ │ │ │ │ └── string
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── uint16
│ │ │ │ │ └── string
│ │ │ │ │ │ └── types.go
│ │ │ │ ├── uint32
│ │ │ │ │ └── string
│ │ │ │ │ │ └── types.go
│ │ │ │ └── string_alias
│ │ │ │ │ ├── string
│ │ │ │ │ └── types.go
│ │ │ │ │ └── string_alias
│ │ │ │ │ └── types.go
│ │ │ ├── struct_tags
│ │ │ │ ├── string
│ │ │ │ │ ├── bool
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── byte
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── int16
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── int32
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── int8
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── uint8
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── uint16
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── uint32
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── float32
│ │ │ │ │ │ └── types.go
│ │ │ │ │ └── float64
│ │ │ │ │ │ └── types.go
│ │ │ │ └── omitempty
│ │ │ │ │ ├── bool
│ │ │ │ │ └── types.go
│ │ │ │ │ ├── int32
│ │ │ │ │ └── types.go
│ │ │ │ │ ├── ptr_bool
│ │ │ │ │ └── types.go
│ │ │ │ │ ├── string
│ │ │ │ │ └── types.go
│ │ │ │ │ ├── uint32
│ │ │ │ │ └── types.go
│ │ │ │ │ ├── float32
│ │ │ │ │ └── types.go
│ │ │ │ │ ├── ptr_int32
│ │ │ │ │ └── types.go
│ │ │ │ │ ├── ptr_string
│ │ │ │ │ ├── types.go
│ │ │ │ │ └── string
│ │ │ │ │ │ └── types.go
│ │ │ │ │ ├── ptr_uint32
│ │ │ │ │ └── types.go
│ │ │ │ │ ├── struct
│ │ │ │ │ └── types.go
│ │ │ │ │ ├── ptr_float32
│ │ │ │ │ └── types.go
│ │ │ │ │ ├── slice_string
│ │ │ │ │ └── types.go
│ │ │ │ │ ├── ptr_slice_string
│ │ │ │ │ └── types.go
│ │ │ │ │ ├── map_string_string
│ │ │ │ │ └── types.go
│ │ │ │ │ ├── embedded
│ │ │ │ │ └── types.go
│ │ │ │ │ ├── ptr_map_string_string
│ │ │ │ │ └── types.go
│ │ │ │ │ ├── string_json_marshal
│ │ │ │ │ └── types.go
│ │ │ │ │ └── string_text_marshal
│ │ │ │ │ └── types.go
│ │ │ ├── caseless_unmarshal
│ │ │ │ └── types.go
│ │ │ └── partial_unmarshal
│ │ │ │ └── types.go
│ │ │ ├── .travis.yml
│ │ │ ├── test.sh
│ │ │ └── skip_tests
│ │ │ ├── array
│ │ │ └── inputs.go
│ │ │ └── string
│ │ │ └── inputs.go
│ ├── googleapis
│ │ └── gnostic
│ │ │ ├── examples
│ │ │ ├── README.md
│ │ │ └── v2.0
│ │ │ │ ├── yaml
│ │ │ │ └── petstore-separate
│ │ │ │ │ ├── common
│ │ │ │ │ └── Error.yaml
│ │ │ │ │ └── spec
│ │ │ │ │ ├── NewPet.yaml
│ │ │ │ │ └── Pet.yaml
│ │ │ │ └── json
│ │ │ │ └── petstore-separate
│ │ │ │ └── common
│ │ │ │ └── Error.json
│ │ │ ├── test
│ │ │ ├── README.md
│ │ │ ├── errors
│ │ │ │ ├── petstore-missingversion.errors
│ │ │ │ └── petstore-unresolvedrefs.errors
│ │ │ └── v2.0
│ │ │ │ └── yaml
│ │ │ │ └── sample-petstore.out
│ │ │ ├── printer
│ │ │ └── README.md
│ │ │ ├── jsonschema
│ │ │ └── README.md
│ │ │ ├── jsonwriter
│ │ │ └── README.md
│ │ │ ├── plugins
│ │ │ ├── gnostic-go-generator
│ │ │ │ └── examples
│ │ │ │ │ ├── v2.0
│ │ │ │ │ ├── xkcd
│ │ │ │ │ │ └── Makefile
│ │ │ │ │ ├── apis_guru
│ │ │ │ │ │ └── Makefile
│ │ │ │ │ └── bookstore
│ │ │ │ │ │ └── service
│ │ │ │ │ │ └── app.yaml
│ │ │ │ │ └── v3.0
│ │ │ │ │ └── bookstore
│ │ │ │ │ └── service
│ │ │ │ │ └── app.yaml
│ │ │ ├── gnostic-swift-sample
│ │ │ │ └── Makefile
│ │ │ ├── gnostic-swift-generator
│ │ │ │ └── examples
│ │ │ │ │ └── bookstore
│ │ │ │ │ └── Makefile
│ │ │ └── README.md
│ │ │ ├── compiler
│ │ │ └── README.md
│ │ │ ├── generate-gnostic
│ │ │ └── test
│ │ │ │ ├── errors
│ │ │ │ ├── x-extension-name-collision.errors
│ │ │ │ └── x-unsupportedprimitives.errors
│ │ │ │ └── x-unsupportedprimitives.json
│ │ │ ├── extensions
│ │ │ ├── COMPILE-EXTENSION.sh
│ │ │ └── README.md
│ │ │ ├── apps
│ │ │ ├── petstore-builder
│ │ │ │ └── README.md
│ │ │ └── report
│ │ │ │ └── README.md
│ │ │ ├── .gitignore
│ │ │ └── tools
│ │ │ └── README.md
│ ├── ghodss
│ │ └── yaml
│ │ │ ├── .travis.yml
│ │ │ └── .gitignore
│ ├── imdario
│ │ └── mergo
│ │ │ ├── testdata
│ │ │ ├── license.yml
│ │ │ └── thing.yml
│ │ │ └── .travis.yml
│ ├── howeyc
│ │ └── gopass
│ │ │ └── .travis.yml
│ ├── nauyey
│ │ └── factory
│ │ │ ├── .travis.yml
│ │ │ ├── AUTHORS.md
│ │ │ ├── db.go
│ │ │ └── debug.go
│ ├── golang
│ │ └── protobuf
│ │ │ ├── AUTHORS
│ │ │ ├── CONTRIBUTORS
│ │ │ └── .gitignore
│ └── google
│ │ └── gofuzz
│ │ └── .travis.yml
├── golang.org
│ └── x
│ │ ├── net
│ │ ├── codereview.cfg
│ │ ├── http2
│ │ │ ├── .gitignore
│ │ │ ├── h2demo
│ │ │ │ ├── rootCA.srl
│ │ │ │ ├── .gitignore
│ │ │ │ └── service.yaml
│ │ │ └── Makefile
│ │ ├── .gitignore
│ │ ├── html
│ │ │ ├── charset
│ │ │ │ └── testdata
│ │ │ │ │ ├── UTF-16BE-BOM.html
│ │ │ │ │ └── UTF-16LE-BOM.html
│ │ │ └── testdata
│ │ │ │ └── webkit
│ │ │ │ └── pending-spec-changes-plain-text-unsafe.dat
│ │ ├── AUTHORS
│ │ ├── CONTRIBUTORS
│ │ ├── internal
│ │ │ └── socket
│ │ │ │ ├── sys_darwin.go
│ │ │ │ ├── sys_dragonfly.go
│ │ │ │ ├── sys_linux_amd64.go
│ │ │ │ ├── sys_linux_arm.go
│ │ │ │ ├── sys_linux_arm64.go
│ │ │ │ ├── sys_linux_mips.go
│ │ │ │ ├── sys_linux_ppc64.go
│ │ │ │ ├── sys_linux_mips64.go
│ │ │ │ ├── sys_linux_mips64le.go
│ │ │ │ ├── sys_linux_mipsle.go
│ │ │ │ └── sys_linux_ppc64le.go
│ │ ├── lif
│ │ │ └── sys_solaris_amd64.s
│ │ └── icmp
│ │ │ └── sys_freebsd.go
│ │ ├── sys
│ │ ├── codereview.cfg
│ │ ├── unix
│ │ │ ├── .gitignore
│ │ │ ├── endian_big.go
│ │ │ ├── endian_little.go
│ │ │ └── constants.go
│ │ ├── .gitignore
│ │ ├── AUTHORS
│ │ ├── CONTRIBUTORS
│ │ ├── plan9
│ │ │ └── asm.s
│ │ └── windows
│ │ │ ├── svc
│ │ │ └── go12.go
│ │ │ └── registry
│ │ │ └── mksyscall.go
│ │ ├── tools
│ │ ├── go
│ │ │ ├── loader
│ │ │ │ └── testdata
│ │ │ │ │ ├── a.go
│ │ │ │ │ ├── b.go
│ │ │ │ │ └── badpkgdecl.go
│ │ │ ├── internal
│ │ │ │ └── gccgoimporter
│ │ │ │ │ └── testdata
│ │ │ │ │ ├── pointer.go
│ │ │ │ │ ├── conversions.go
│ │ │ │ │ ├── imports.go
│ │ │ │ │ ├── pointer.gox
│ │ │ │ │ ├── time.gox
│ │ │ │ │ ├── complexnums.go
│ │ │ │ │ ├── unicode.gox
│ │ │ │ │ ├── escapeinfo.gox
│ │ │ │ │ ├── complexnums.gox
│ │ │ │ │ ├── conversions.gox
│ │ │ │ │ └── alias.gox
│ │ │ ├── ssa
│ │ │ │ ├── identical_17.go
│ │ │ │ ├── identical.go
│ │ │ │ └── interp
│ │ │ │ │ └── testdata
│ │ │ │ │ └── reflect.go
│ │ │ ├── gccgoexportdata
│ │ │ │ └── testdata
│ │ │ │ │ ├── long.a
│ │ │ │ │ ├── short.a
│ │ │ │ │ └── errors.gox
│ │ │ ├── gcexportdata
│ │ │ │ └── testdata
│ │ │ │ │ └── errors-ae16.a
│ │ │ ├── gcimporter15
│ │ │ │ └── testdata
│ │ │ │ │ ├── versions
│ │ │ │ │ ├── test_go1.7_0.a
│ │ │ │ │ └── test_go1.7_1.a
│ │ │ │ │ ├── issue20046.go
│ │ │ │ │ ├── b.go
│ │ │ │ │ └── p.go
│ │ │ ├── pointer
│ │ │ │ └── testdata
│ │ │ │ │ └── recur.go
│ │ │ └── ast
│ │ │ │ └── astutil
│ │ │ │ └── util.go
│ │ ├── cmd
│ │ │ ├── bundle
│ │ │ │ ├── .gitignore
│ │ │ │ └── testdata
│ │ │ │ │ └── src
│ │ │ │ │ ├── domain.name
│ │ │ │ │ └── importdecl
│ │ │ │ │ │ └── p.go
│ │ │ │ │ └── initial
│ │ │ │ │ └── c.go
│ │ │ ├── heapview
│ │ │ │ └── client
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ └── .clang-format
│ │ │ ├── getgo
│ │ │ │ ├── .gitignore
│ │ │ │ ├── .dockerignore
│ │ │ │ └── server
│ │ │ │ │ ├── app.yaml
│ │ │ │ │ └── README.md
│ │ │ ├── guru
│ │ │ │ └── testdata
│ │ │ │ │ └── src
│ │ │ │ │ ├── lib
│ │ │ │ │ └── sublib
│ │ │ │ │ │ └── sublib.go
│ │ │ │ │ ├── definition-json
│ │ │ │ │ ├── type.go
│ │ │ │ │ ├── main19.go
│ │ │ │ │ └── main19.golden
│ │ │ │ │ ├── README.txt
│ │ │ │ │ ├── describe
│ │ │ │ │ └── main19.golden
│ │ │ │ │ ├── main
│ │ │ │ │ └── multi.go
│ │ │ │ │ └── softerrs
│ │ │ │ │ └── main.golden
│ │ │ ├── fiximports
│ │ │ │ └── testdata
│ │ │ │ │ └── src
│ │ │ │ │ ├── new.com
│ │ │ │ │ └── one
│ │ │ │ │ │ └── one.go
│ │ │ │ │ ├── old.com
│ │ │ │ │ ├── one
│ │ │ │ │ │ └── one.go
│ │ │ │ │ └── bad
│ │ │ │ │ │ └── bad.go
│ │ │ │ │ ├── fruit.io
│ │ │ │ │ ├── pear
│ │ │ │ │ │ └── pear.go
│ │ │ │ │ ├── orange
│ │ │ │ │ │ └── orange.go
│ │ │ │ │ └── banana
│ │ │ │ │ │ └── banana.go
│ │ │ │ │ └── titanic.biz
│ │ │ │ │ ├── foo
│ │ │ │ │ └── foo.go
│ │ │ │ │ └── bar
│ │ │ │ │ └── bar.go
│ │ │ ├── cover
│ │ │ │ └── README
│ │ │ ├── present
│ │ │ │ └── static
│ │ │ │ │ └── favicon.ico
│ │ │ ├── tip
│ │ │ │ └── talks.yaml
│ │ │ ├── goimports
│ │ │ │ └── goimports_not_gc.go
│ │ │ └── godex
│ │ │ │ └── isAlias19.go
│ │ ├── codereview.cfg
│ │ ├── refactor
│ │ │ ├── README
│ │ │ └── eg
│ │ │ │ └── testdata
│ │ │ │ ├── no_before.template
│ │ │ │ ├── E1.go
│ │ │ │ ├── F.template
│ │ │ │ ├── type_mismatch.template
│ │ │ │ ├── no_after_return.template
│ │ │ │ ├── E1.golden
│ │ │ │ ├── D.template
│ │ │ │ ├── bad_type.template
│ │ │ │ ├── A2.go
│ │ │ │ ├── G1.golden
│ │ │ │ ├── A2.golden
│ │ │ │ ├── E.template
│ │ │ │ ├── A.template
│ │ │ │ ├── H.template
│ │ │ │ ├── G.template
│ │ │ │ ├── G1.go
│ │ │ │ ├── H1.go
│ │ │ │ ├── H1.golden
│ │ │ │ ├── B.template
│ │ │ │ └── D1.go
│ │ ├── .gitignore
│ │ ├── godoc
│ │ │ └── static
│ │ │ │ ├── images
│ │ │ │ ├── plus.gif
│ │ │ │ ├── minus.gif
│ │ │ │ ├── treeview-black.gif
│ │ │ │ ├── treeview-gray.gif
│ │ │ │ ├── treeview-default.gif
│ │ │ │ ├── treeview-black-line.gif
│ │ │ │ ├── treeview-gray-line.gif
│ │ │ │ └── treeview-default-line.gif
│ │ │ │ ├── analysis
│ │ │ │ ├── call-eg.png
│ │ │ │ ├── call3.png
│ │ │ │ ├── chan1.png
│ │ │ │ ├── chan2a.png
│ │ │ │ ├── chan2b.png
│ │ │ │ ├── error1.png
│ │ │ │ ├── callers1.png
│ │ │ │ ├── callers2.png
│ │ │ │ ├── ident-def.png
│ │ │ │ ├── ipcg-func.png
│ │ │ │ ├── ipcg-pkg.png
│ │ │ │ ├── ident-field.png
│ │ │ │ ├── ident-func.png
│ │ │ │ ├── typeinfo-pkg.png
│ │ │ │ └── typeinfo-src.png
│ │ │ │ ├── gen.go
│ │ │ │ └── error.html
│ │ ├── AUTHORS
│ │ ├── CONTRIBUTORS
│ │ ├── container
│ │ │ └── intsets
│ │ │ │ └── popcnt_gccgo.go
│ │ └── playground
│ │ │ └── appenginevm.go
│ │ ├── crypto
│ │ ├── codereview.cfg
│ │ ├── .gitignore
│ │ ├── ed25519
│ │ │ └── testdata
│ │ │ │ └── sign.input.gz
│ │ ├── sha3
│ │ │ └── testdata
│ │ │ │ └── keccakKats.json.deflate
│ │ ├── AUTHORS
│ │ ├── CONTRIBUTORS
│ │ └── ssh
│ │ │ ├── test
│ │ │ └── doc.go
│ │ │ └── terminal
│ │ │ └── util_linux.go
│ │ ├── text
│ │ ├── codereview.cfg
│ │ ├── encoding
│ │ │ └── testdata
│ │ │ │ ├── candide-gb18030.txt
│ │ │ │ ├── candide-utf-16le.txt
│ │ │ │ ├── candide-utf-32be.txt
│ │ │ │ ├── rashomon-euc-jp.txt
│ │ │ │ ├── rashomon-shift-jis.txt
│ │ │ │ ├── candide-windows-1252.txt
│ │ │ │ ├── unsu-joh-eun-nal-euc-kr.txt
│ │ │ │ ├── sunzi-bingfa-simplified-gbk.txt
│ │ │ │ └── sunzi-bingfa-traditional-big5.txt
│ │ ├── AUTHORS
│ │ ├── CONTRIBUTORS
│ │ ├── .gitignore
│ │ ├── internal
│ │ │ └── export
│ │ │ │ └── README
│ │ ├── collate
│ │ │ └── tools
│ │ │ │ └── colcmp
│ │ │ │ └── Makefile
│ │ ├── language
│ │ │ └── go1_2.go
│ │ └── secure
│ │ │ └── doc.go
│ │ └── time
│ │ ├── AUTHORS
│ │ └── CONTRIBUTORS
└── gopkg.in
│ └── yaml.v2
│ └── .travis.yml
├── .travis-scripts
├── test.sh
├── format.sh
├── build-cli.sh
├── build.sh
└── deploy.sh
├── Dockerfile
├── cli
└── main.go
├── pkg
├── apis
│ └── cr
│ │ ├── register.go
│ │ └── v1
│ │ └── doc.go
├── util
│ ├── file_test.go
│ ├── template_test.go
│ └── util_suite_test.go
├── cmd
│ └── util
│ │ └── options
│ │ └── options.go
├── controller
│ ├── hook_test.go
│ ├── cluster
│ │ ├── fake_test.go
│ │ └── cluster_suite_test.go
│ ├── controller_test.go
│ ├── backupinstance
│ │ ├── fake_test.go
│ │ └── backupinstance_suite_test.go
│ ├── backupschedule
│ │ ├── fake_test.go
│ │ └── backupschedule_suite_test.go
│ └── controller_suite_test.go
├── operator
│ ├── backupinstance
│ │ ├── fake_test.go
│ │ └── backupinstance_suite_test.go
│ ├── backupschedule
│ │ ├── fake_test.go
│ │ └── backupschedule_suite_test.go
│ ├── cluster
│ │ ├── initialize_test.go
│ │ └── cluster_suite_test.go
│ └── operator_suite_test.go
├── crd
│ ├── wait_test.go
│ ├── register_test.go
│ ├── crd_suite_test.go
│ ├── cluster
│ │ └── cluster_suite_test.go
│ ├── backupinstance
│ │ └── backupinstance_suite_test.go
│ └── backupschedule
│ │ └── backupschedule_suite_test.go
├── logging
│ ├── logging_suite_test.go
│ └── cluster.go
└── testing
│ ├── testing_suite_test.go
│ └── factory
│ └── factory_suite_test.go
├── artifacts
├── backupschedule-pvc.yaml
└── cluster-configmap.yaml
├── hack
└── update-artifacts.sh
└── .gitignore
/vendor/k8s.io/gengo/boilerplate/no-boilerplate.go.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/.gitignore:
--------------------------------------------------------------------------------
1 | *.dat
2 |
--------------------------------------------------------------------------------
/vendor/github.com/sirupsen/logrus/.gitignore:
--------------------------------------------------------------------------------
1 | logrus
2 |
--------------------------------------------------------------------------------
/vendor/github.com/spf13/pflag/.gitignore:
--------------------------------------------------------------------------------
1 | .idea/*
2 |
3 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/codereview.cfg:
--------------------------------------------------------------------------------
1 | issuerepo: golang/go
2 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/http2/.gitignore:
--------------------------------------------------------------------------------
1 | *~
2 | h2i/h2i
3 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/sys/codereview.cfg:
--------------------------------------------------------------------------------
1 | issuerepo: golang/go
2 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/sys/unix/.gitignore:
--------------------------------------------------------------------------------
1 | _obj/
2 | unix.test
3 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/loader/testdata/a.go:
--------------------------------------------------------------------------------
1 | package P
2 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/loader/testdata/b.go:
--------------------------------------------------------------------------------
1 | package P
2 |
--------------------------------------------------------------------------------
/vendor/k8s.io/code-generator/cmd/set-gen/.gitignore:
--------------------------------------------------------------------------------
1 | set-gen
2 |
--------------------------------------------------------------------------------
/vendor/k8s.io/gengo/examples/set-gen/.gitignore:
--------------------------------------------------------------------------------
1 | set-gen
2 |
--------------------------------------------------------------------------------
/vendor/github.com/Pallinder/go-randomdata/.travis.yml:
--------------------------------------------------------------------------------
1 | language: go
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/mixbench/.gitignore:
--------------------------------------------------------------------------------
1 | mixbench
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/oneof/doc.go:
--------------------------------------------------------------------------------
1 | package one
2 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/tags/doc.go:
--------------------------------------------------------------------------------
1 | package tags
2 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/vanity/test/doc.go:
--------------------------------------------------------------------------------
1 | package test
2 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/vanity/test/gofast/.gitignore:
--------------------------------------------------------------------------------
1 | *.pb.go
--------------------------------------------------------------------------------
/vendor/golang.org/x/crypto/codereview.cfg:
--------------------------------------------------------------------------------
1 | issuerepo: golang/go
2 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/http2/h2demo/rootCA.srl:
--------------------------------------------------------------------------------
1 | E2CE26BF3285059C
2 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/text/codereview.cfg:
--------------------------------------------------------------------------------
1 | issuerepo: golang/go
2 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/bundle/.gitignore:
--------------------------------------------------------------------------------
1 | testdata/out.got
2 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/codereview.cfg:
--------------------------------------------------------------------------------
1 | issuerepo: golang/go
2 |
--------------------------------------------------------------------------------
/vendor/k8s.io/api/Godeps/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - dep-approvers
3 |
--------------------------------------------------------------------------------
/vendor/k8s.io/gengo/examples/import-boss/.gitignore:
--------------------------------------------------------------------------------
1 | import-boss
2 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/.gitignore:
--------------------------------------------------------------------------------
1 | ._*
2 | *.js
3 | *.js.map
4 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/embedconflict/.gitignore:
--------------------------------------------------------------------------------
1 | *.pb.go
2 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/oneof3/doc.go:
--------------------------------------------------------------------------------
1 | package oneof3
2 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/packed/doc.go:
--------------------------------------------------------------------------------
1 | package packed
2 |
--------------------------------------------------------------------------------
/vendor/k8s.io/client-go/Godeps/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - dep-approvers
3 |
--------------------------------------------------------------------------------
/vendor/k8s.io/code-generator/cmd/import-boss/.gitignore:
--------------------------------------------------------------------------------
1 | import-boss
2 |
--------------------------------------------------------------------------------
/vendor/k8s.io/code-generator/cmd/lister-gen/.import-restrictions:
--------------------------------------------------------------------------------
1 | {}
2 |
--------------------------------------------------------------------------------
/vendor/k8s.io/gengo/examples/deepcopy-gen/.gitignore:
--------------------------------------------------------------------------------
1 | deepcopy-gen
2 |
--------------------------------------------------------------------------------
/vendor/k8s.io/gengo/examples/defaulter-gen/.gitignore:
--------------------------------------------------------------------------------
1 | defaulter-gen
2 |
--------------------------------------------------------------------------------
/vendor/k8s.io/gengo/examples/go-to-protobuf/.gitignore:
--------------------------------------------------------------------------------
1 | go-to-protobuf
2 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/mapsproto2/doc.go:
--------------------------------------------------------------------------------
1 | package mapsproto2
2 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/theproto3/doc.go:
--------------------------------------------------------------------------------
1 | package theproto3
2 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/heapview/client/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules/
2 |
--------------------------------------------------------------------------------
/vendor/k8s.io/api/storage/OWNERS:
--------------------------------------------------------------------------------
1 | reviewers:
2 | - deads2k
3 | - mbohlool
4 |
--------------------------------------------------------------------------------
/vendor/k8s.io/apimachinery/Godeps/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - dep-approvers
3 |
--------------------------------------------------------------------------------
/vendor/k8s.io/client-go/pkg/version/.gitattributes:
--------------------------------------------------------------------------------
1 | base.go export-subst
2 |
--------------------------------------------------------------------------------
/vendor/k8s.io/client-go/util/retry/OWNERS:
--------------------------------------------------------------------------------
1 | reviewers:
2 | - caesarxuchao
3 |
--------------------------------------------------------------------------------
/vendor/k8s.io/code-generator/Godeps/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - dep-approvers
3 |
--------------------------------------------------------------------------------
/vendor/k8s.io/code-generator/cmd/go-to-protobuf/.gitignore:
--------------------------------------------------------------------------------
1 | go-to-protobuf
2 |
--------------------------------------------------------------------------------
/vendor/k8s.io/gengo/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - lavalamp
3 | - wojtek-t
4 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/dashfilename/doc.go:
--------------------------------------------------------------------------------
1 | package dashfilename
2 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/embedconflict/doc.go:
--------------------------------------------------------------------------------
1 | package embedconflict
2 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/sizerconflict/doc.go:
--------------------------------------------------------------------------------
1 | package sizerconflict
2 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/ginkgo/integration/integration.go:
--------------------------------------------------------------------------------
1 | package integration
2 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/getgo/.gitignore:
--------------------------------------------------------------------------------
1 | build
2 | testgetgo
3 | getgo
4 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/protoc-gen-gogo/testdata/multi/.gitignore:
--------------------------------------------------------------------------------
1 | *.pb.go
2 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/defaultconflict/doc.go:
--------------------------------------------------------------------------------
1 | package defaultcheck
2 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/registration/.gitignore:
--------------------------------------------------------------------------------
1 | *.pb.go
2 | *_test.go
3 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/heapview/client/.clang-format:
--------------------------------------------------------------------------------
1 | BasedOnStyle: Google
2 |
--------------------------------------------------------------------------------
/vendor/k8s.io/apiextensions-apiserver/Godeps/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - dep-approvers
3 |
--------------------------------------------------------------------------------
/vendor/k8s.io/gengo/examples/defaulter-gen/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - smarterclayton
3 |
--------------------------------------------------------------------------------
/vendor/k8s.io/gengo/examples/go-to-protobuf/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - smarterclayton
3 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/.codecov.yml:
--------------------------------------------------------------------------------
1 | ignore:
2 | - "output_tests/.*"
3 |
4 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/gomega/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | *.test
3 | .
4 | .idea
5 | gomega.iml
6 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/http2/Makefile:
--------------------------------------------------------------------------------
1 | curlimage:
2 | docker build -t gohttp2/curl .
3 |
4 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/loader/testdata/badpkgdecl.go:
--------------------------------------------------------------------------------
1 | // this file has no package decl
2 |
--------------------------------------------------------------------------------
/vendor/k8s.io/api/imagepolicy/OWNERS:
--------------------------------------------------------------------------------
1 | reviewers:
2 | - deads2k
3 | - mbohlool
4 | - jianhuiz
5 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/.gitignore:
--------------------------------------------------------------------------------
1 | /vendor
2 | /bug_test.go
3 | /coverage.txt
4 | /.idea
5 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/ginkgo/integration/_fixtures/watch_fixtures/C/C.json:
--------------------------------------------------------------------------------
1 | {
2 | "fixture": "data"
3 | }
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/guru/testdata/src/lib/sublib/sublib.go:
--------------------------------------------------------------------------------
1 | package sublib
2 |
3 | const C = 0
4 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/refactor/README:
--------------------------------------------------------------------------------
1 | golang.org/x/tools/refactor: libraries for refactoring tools.
2 |
--------------------------------------------------------------------------------
/.travis-scripts/test.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | set -e
4 | set -v
5 | ginkgo -cover -skipPackage e2e ./...
6 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/ginkgo/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | TODO
3 | tmp/**/*
4 | *.coverprofile
5 | .vscode
6 | .idea/
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/fiximports/testdata/src/new.com/one/one.go:
--------------------------------------------------------------------------------
1 | package one // import "new.com/one"
2 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/fiximports/testdata/src/old.com/one/one.go:
--------------------------------------------------------------------------------
1 | package one // import "new.com/one"
2 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/bool/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]bool
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/byte/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]byte
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/bool/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest bool
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/byte/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest byte
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/int8/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest int8
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/bool/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []bool
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/byte/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []byte
4 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/ginkgo/integration/_fixtures/no_tests/no_tests.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | func main() {
4 | }
5 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/getgo/.dockerignore:
--------------------------------------------------------------------------------
1 | .git
2 | .dockerignore
3 | LICENSE
4 | README.md
5 | .gitignore
6 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/guru/testdata/src/definition-json/type.go:
--------------------------------------------------------------------------------
1 | package definition
2 |
3 | type W int
4 |
--------------------------------------------------------------------------------
/vendor/k8s.io/api/networking/OWNERS:
--------------------------------------------------------------------------------
1 | reviewers:
2 | - caseydavenport
3 | - cmluciano
4 | - danwinship
5 | - thockin
6 |
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM alpine:latest
2 | ADD mysql-operator /go/bin/mysql-operator
3 | ENTRYPOINT ["/go/bin/mysql-operator"]
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]int32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/ptr_bool/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*bool
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/uint8/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]uint8
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/int16/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest int16
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest int32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/int64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest int64
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/uint16/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest uint16
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/uint32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest uint32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/uint8/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest uint8
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []float64
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []int32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/int64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []int64
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_bool/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []*bool
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/uint8/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []uint8
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/empty/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct{}
4 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/guru/testdata/src/README.txt:
--------------------------------------------------------------------------------
1 | This is not a Go source file.
2 | Used by TestIssue14684.
3 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/internal/gccgoimporter/testdata/pointer.go:
--------------------------------------------------------------------------------
1 | package pointer
2 |
3 | type Int8Ptr *int8
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/array/bool/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]bool
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/array/byte/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]byte
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]float64
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/ptr_int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*int32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/ptr_uint8/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*uint8
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/slice/bool/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]bool
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/slice/byte/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]byte
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/bool_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest bool
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/byte_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest byte
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/float32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest float32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest float64
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/int16_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest int16
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/int32_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest int32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/int8_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest int8
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/string_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/uint16_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest uint16
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/uint32_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest uint32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/uint8_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest uint8
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/uintptr/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest uintptr
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/array/bool/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]bool
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/array/byte/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]byte
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []*float64
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []*int32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []*string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_uint8/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []*uint8
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/slice/bool/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [][]bool
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/slice/byte/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [][]byte
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/slice/int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [][]int32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/slice/uint8/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [][]uint8
4 |
--------------------------------------------------------------------------------
/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/sys/.gitignore:
--------------------------------------------------------------------------------
1 | # Add no patterns to .hgignore except for files generated by the build.
2 | last-change
3 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/fiximports/testdata/src/fruit.io/pear/pear.go:
--------------------------------------------------------------------------------
1 | package pear
2 |
3 | import _ "fruit.io/banana"
4 |
--------------------------------------------------------------------------------
/vendor/k8s.io/apimachinery/pkg/util/mergepatch/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - pwittrock
3 | reviewers:
4 | - mengqiy
5 | - apelisse
6 |
--------------------------------------------------------------------------------
/vendor/k8s.io/client-go/tools/bootstrap/token/api/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - jbeda
3 | - luxas
4 | reviewers:
5 | - mattmoyer
6 |
--------------------------------------------------------------------------------
/vendor/k8s.io/code-generator/cmd/go-to-protobuf/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - smarterclayton
3 | reviewers:
4 | - smarterclayton
5 |
--------------------------------------------------------------------------------
/cli/main.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import "github.com/grtl/mysql-operator/pkg/cmd"
4 |
5 | func main() {
6 | cmd.Execute()
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/googleapis/gnostic/examples/README.md:
--------------------------------------------------------------------------------
1 | # examples
2 |
3 | This directory contains example descriptions of APIs.
4 |
--------------------------------------------------------------------------------
/vendor/github.com/googleapis/gnostic/test/README.md:
--------------------------------------------------------------------------------
1 | # test
2 |
3 | This directory contains test data used to verify gnostic.
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/array/float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]float64
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/array/int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]int32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/array/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/array/uint8/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]uint8
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/ptr_float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*float64
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/ptr_slice/bool/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*[4]bool
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/ptr_slice/byte/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*[4]byte
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/slice/float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]float64
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/slice/int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]int32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/slice/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/slice/uint8/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]uint8
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/struct_empty/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]struct{}
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/float32_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest float32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/builtins/float64_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest float64
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/int16/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[int16]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/int32/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[int32]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/int64/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[int64]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/int8/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[int8]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/bool/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string]bool
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/byte/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string]byte
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string]int32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/uint8/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string]uint8
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/uint8/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[uint8]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/array/float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]float64
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/array/int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]int32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/array/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/array/uint8/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]uint8
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_array/bool/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*[4]bool
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_array/byte/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*[4]byte
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_slice/bool/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []*[]bool
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_slice/byte/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []*[]byte
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_slice/int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []*[]int32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_slice/uint8/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []*[]uint8
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/slice/float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [][]float64
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/slice/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [][]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/struct_empty/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []struct{}
4 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/crypto/.gitignore:
--------------------------------------------------------------------------------
1 | # Add no patterns to .hgignore except for files generated by the build.
2 | last-change
3 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/.gitignore:
--------------------------------------------------------------------------------
1 | # Add no patterns to .gitignore except for files generated by the build.
2 | last-change
3 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/fiximports/testdata/src/fruit.io/orange/orange.go:
--------------------------------------------------------------------------------
1 | package orange
2 |
3 | import _ "fruit.io/pear"
4 |
--------------------------------------------------------------------------------
/vendor/k8s.io/apimachinery/pkg/util/strategicpatch/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - pwittrock
3 | reviewers:
4 | - mengqiy
5 | - apelisse
6 |
--------------------------------------------------------------------------------
/vendor/github.com/ghodss/yaml/.travis.yml:
--------------------------------------------------------------------------------
1 | language: go
2 | go:
3 | - 1.3
4 | - 1.4
5 | script:
6 | - go test
7 | - go build
8 |
--------------------------------------------------------------------------------
/vendor/github.com/googleapis/gnostic/printer/README.md:
--------------------------------------------------------------------------------
1 | # printer
2 |
3 | This directory contains code for generating files of code.
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/array/ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]*string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/ptr_slice/float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*[4]float64
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/ptr_slice/int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*[4]int32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/ptr_slice/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*[4]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/ptr_slice/uint8/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*[4]uint8
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/slice/ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]*string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string]float64
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/ptr_bool/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string]*bool
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/ptr_int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string]*int32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/ptr_uint8/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string]*uint8
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/uint16/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[uint16]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/uint32/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[uint32]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/array/ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4][4]*string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_array/float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*[4]float64
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_array/int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*[4]int32
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_array/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*[4]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_array/uint8/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*[4]uint8
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_slice/float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []*[]float64
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_slice/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []*[]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/slice/ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [][]*string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/spf13/cobra/command_notwin.go:
--------------------------------------------------------------------------------
1 | // +build !windows
2 |
3 | package cobra
4 |
5 | var preExecHookFn func(*Command)
6 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/bundle/testdata/src/domain.name/importdecl/p.go:
--------------------------------------------------------------------------------
1 | package importdecl
2 |
3 | func F() int { return 1 }
4 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/fiximports/testdata/src/titanic.biz/foo/foo.go:
--------------------------------------------------------------------------------
1 | // This package hasn't jumped ship yet.
2 | package foo
3 |
--------------------------------------------------------------------------------
/vendor/k8s.io/apimachinery/pkg/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - caesarxuchao
3 | - deads2k
4 | - lavalamp
5 | - smarterclayton
6 | - liggitt
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/map/int32_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]map[int32]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/ptr_slice/ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*[4]*string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/ptr_float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string]*float64
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string]*string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/slice_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string][]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/struct_empty/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string]struct{}
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/map/int32_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []map[int32]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/map/string_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []map[string]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_array/ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*[4]*string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_slice/ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []*[]*string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F int32
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/int64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F int64
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F string
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/ginkgo/integration/_fixtures/watch_fixtures/C/C.go:
--------------------------------------------------------------------------------
1 | package C
2 |
3 | func DoIt() string {
4 | return "done!"
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/gomega/ghttp/protobuf/protobuf.go:
--------------------------------------------------------------------------------
1 | package protobuf
2 |
3 | //go:generate protoc --go_out=. simple_message.proto
4 |
--------------------------------------------------------------------------------
/vendor/k8s.io/api/events/OWNERS:
--------------------------------------------------------------------------------
1 | reviewers:
2 | - gmarek
3 | - deads2k
4 | - sttts
5 | approvers:
6 | - gmarek
7 | - deads2k
8 | - sttts
9 |
--------------------------------------------------------------------------------
/vendor/k8s.io/apimachinery/third_party/forked/golang/json/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - pwittrock
3 | reviewers:
4 | - mengqiy
5 | - apelisse
6 |
--------------------------------------------------------------------------------
/vendor/k8s.io/client-go/plugin/pkg/client/auth/oidc/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - ericchiang
3 | reviewers:
4 | - ericchiang
5 | - rithujohn191
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/map/string_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]map[string]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/ptr_map/int32_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*map[int32]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/array_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string][4]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/ptr_slice_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string]*[]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_map/int32_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []*map[int32]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/ptr_map/string_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []*map[string]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F float64
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/ptr_int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F *int32
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F *string
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/ptr_map/string_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]*map[string]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/ptr_array_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string]*[4]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/array/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F [4]string
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/empty_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeA struct{}
4 |
5 | type typeForTest typeA
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/ptr_float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F *float64
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/slice/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F []string
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/struct/empty/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F struct{}
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty/doc.go:
--------------------------------------------------------------------------------
1 | // Package isatty implements interface to isatty
2 | package isatty
3 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/http2/h2demo/.gitignore:
--------------------------------------------------------------------------------
1 | h2demo
2 | h2demo.linux
3 | client-id.dat
4 | client-secret.dat
5 | token.dat
6 | ca-certificates.crt
7 |
--------------------------------------------------------------------------------
/vendor/k8s.io/client-go/.travis.yml:
--------------------------------------------------------------------------------
1 | language: go
2 |
3 | go_import_path: k8s.io/client-go
4 |
5 | go:
6 | - 1.8.1
7 |
8 | script: go build ./...
9 |
--------------------------------------------------------------------------------
/vendor/k8s.io/client-go/plugin/pkg/client/auth/gcp/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - cjcullen
3 | - jlowdermilk
4 | reviewers:
5 | - cjcullen
6 | - jlowdermilk
7 |
--------------------------------------------------------------------------------
/vendor/k8s.io/client-go/tools/metrics/OWNERS:
--------------------------------------------------------------------------------
1 | reviewers:
2 | - wojtek-t
3 | - eparis
4 | - krousey
5 | - jayunit100
6 | - fgrzadkowski
7 | - tmrts
8 |
--------------------------------------------------------------------------------
/vendor/k8s.io/client-go/transport/OWNERS:
--------------------------------------------------------------------------------
1 | reviewers:
2 | - smarterclayton
3 | - wojtek-t
4 | - deads2k
5 | - liggitt
6 | - krousey
7 | - caesarxuchao
8 |
--------------------------------------------------------------------------------
/vendor/k8s.io/code-generator/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - lavalamp
3 | - wojtek-t
4 | - sttts
5 | reviewers:
6 | - lavalamp
7 | - wojtek-t
8 | - sttts
9 |
--------------------------------------------------------------------------------
/vendor/github.com/imdario/mergo/testdata/license.yml:
--------------------------------------------------------------------------------
1 | import: ../../../../fossene/db/schema/thing.yml
2 | fields:
3 | site: string
4 | author: root
5 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/struct_ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest [4]struct {
4 | F *string
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/map_string_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string]map[string]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/struct_ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest []struct {
4 | F *string
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/array/ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F [4]*string
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/ptr_struct_empty/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F *struct{}
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/slice/ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F []*string
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/k8s.io/apiextensions-apiserver/OWNERS:
--------------------------------------------------------------------------------
1 | reviewers:
2 | - deads2k
3 | - sttts
4 | - enisoc
5 | approvers:
6 | - deads2k
7 | - lavalamp
8 | - sttts
9 |
--------------------------------------------------------------------------------
/vendor/github.com/googleapis/gnostic/jsonschema/README.md:
--------------------------------------------------------------------------------
1 | # jsonschema
2 |
3 | This directory contains code for reading, writing, and manipulating JSON schemas.
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/array/struct_empty_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeA struct{}
4 |
5 | type typeForTest [4]typeA
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/ptr_map_string_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string]*map[string]string
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/slice/struct_empty_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeA struct{}
4 |
5 | type typeForTest []typeA
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/map/int32_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F map[int32]string
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/ptr_ptr_struct_empty/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F **struct{}
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/ginkgo/integration/_fixtures/xunit_tests/xunit_tests.go:
--------------------------------------------------------------------------------
1 | package xunit_tests
2 |
3 | func AlwaysTrue() bool {
4 | return true
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/fiximports/testdata/src/titanic.biz/bar/bar.go:
--------------------------------------------------------------------------------
1 | // This package is moving to new.com too.
2 | package bar // import "new.com/bar"
3 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/getgo/server/app.yaml:
--------------------------------------------------------------------------------
1 | runtime: go
2 | service: get
3 | api_version: go1
4 |
5 | handlers:
6 | - url: /.*
7 | script: _go_app
8 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/internal/gccgoimporter/testdata/conversions.go:
--------------------------------------------------------------------------------
1 | package conversions
2 |
3 | type Units string
4 |
5 | const Bits = Units("bits")
6 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/internal/gccgoimporter/testdata/imports.go:
--------------------------------------------------------------------------------
1 | package imports
2 |
3 | import "fmt"
4 |
5 | var Hello = fmt.Sprintf("Hello, world")
6 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/images/plus.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/images/plus.gif
--------------------------------------------------------------------------------
/.travis-scripts/format.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | set -e
4 | set -v
5 | test -z "$(go fmt $(go list ./...))"
6 | go vet $(go list ./... | grep -v '/pkg/client/')
7 |
--------------------------------------------------------------------------------
/pkg/apis/cr/register.go:
--------------------------------------------------------------------------------
1 | package cr
2 |
3 | const (
4 | // GroupName used in custom resource definition
5 | GroupName = "cr.mysqloperator.grtl.github.com"
6 | )
7 |
--------------------------------------------------------------------------------
/pkg/util/file_test.go:
--------------------------------------------------------------------------------
1 | package util_test
2 |
3 | import (
4 | . "github.com/onsi/ginkgo"
5 | )
6 |
7 | var _ = Describe("File", func() {
8 |
9 | })
10 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/enumdecl/models.go:
--------------------------------------------------------------------------------
1 | package enumdecl
2 |
3 | type MyEnum int32
4 |
5 | const (
6 | A MyEnum = iota
7 | B MyEnum = iota
8 | )
9 |
--------------------------------------------------------------------------------
/vendor/github.com/googleapis/gnostic/jsonwriter/README.md:
--------------------------------------------------------------------------------
1 | # jsonwriter
2 |
3 | This directory contains code for writing yaml.MapSlice structures as JSON files.
4 |
--------------------------------------------------------------------------------
/vendor/github.com/googleapis/gnostic/plugins/gnostic-go-generator/examples/v2.0/xkcd/Makefile:
--------------------------------------------------------------------------------
1 | all:
2 | gnostic swagger.json --go-client-out=xkcd
3 | go install
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/map/int32_ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F map[int32]*string
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/map/string_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F map[string]string
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/ginkgo/integration/_fixtures/no_test_fn/no_test_fn.go:
--------------------------------------------------------------------------------
1 | package no_test_fn
2 |
3 | func StringIdentity(a string) string {
4 | return a
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/gomega/matchers/support/goraph/node/node.go:
--------------------------------------------------------------------------------
1 | package node
2 |
3 | type Node struct {
4 | Id int
5 | }
6 |
7 | type NodeOrderedSet []Node
8 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/cover/README:
--------------------------------------------------------------------------------
1 | NOTE: For Go releases 1.5 and later, this tool lives in the
2 | standard repository. The code here is not maintained.
3 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/getgo/server/README.md:
--------------------------------------------------------------------------------
1 | # getgo server
2 |
3 | ## Deployment
4 |
5 | ```
6 | gcloud app deploy --promote --project golang-org
7 | ```
8 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/present/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/cmd/present/static/favicon.ico
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/images/minus.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/images/minus.gif
--------------------------------------------------------------------------------
/vendor/k8s.io/api/README.md:
--------------------------------------------------------------------------------
1 | This repo is still in the experimental stage. Shortly it will contain the schema of the API that are served by the Kubernetes apiserver.
2 |
--------------------------------------------------------------------------------
/.travis-scripts/build-cli.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | set -e
4 | set -v
5 | CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o msp github.com/grtl/mysql-operator/cli
6 |
--------------------------------------------------------------------------------
/pkg/apis/cr/v1/doc.go:
--------------------------------------------------------------------------------
1 | // +k8s:deepcopy-gen=package
2 |
3 | // Package v1 is the v1 version of the API.
4 | // +groupName=cr.mysqloperator.grtl.github.com
5 | package v1
6 |
--------------------------------------------------------------------------------
/pkg/cmd/util/options/options.go:
--------------------------------------------------------------------------------
1 | package options
2 |
3 | // Options groups common cmd flags.
4 | type Options struct {
5 | Namespace string
6 | Force bool
7 | }
8 |
--------------------------------------------------------------------------------
/pkg/util/template_test.go:
--------------------------------------------------------------------------------
1 | package util_test
2 |
3 | import (
4 | . "github.com/onsi/ginkgo"
5 | )
6 |
7 | var _ = Describe("Template", func() {
8 |
9 | })
10 |
--------------------------------------------------------------------------------
/vendor/github.com/googleapis/gnostic/compiler/README.md:
--------------------------------------------------------------------------------
1 | # Compiler support code
2 |
3 | This directory contains compiler support code used by Gnostic and Gnostic extensions.
--------------------------------------------------------------------------------
/vendor/github.com/howeyc/gopass/.travis.yml:
--------------------------------------------------------------------------------
1 | language: go
2 |
3 | os:
4 | - linux
5 | - osx
6 |
7 | go:
8 | - 1.3
9 | - 1.4
10 | - 1.5
11 | - tip
12 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/struct_ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest map[string]struct {
4 | F *string
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/int32_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeA int32
4 |
5 | type typeForTest struct {
6 | F typeA
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/int32s/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 int32
5 | F2 int32
6 | F3 int32
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/map/string_ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F map[string]*string
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_09.xml:
--------------------------------------------------------------------------------
1 |
2 | Foo
3 | Bar
4 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_10.xml:
--------------------------------------------------------------------------------
1 |
2 | Foo
3 | Bar
4 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/crypto/ed25519/testdata/sign.input.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/crypto/ed25519/testdata/sign.input.gz
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/internal/gccgoimporter/testdata/pointer.gox:
--------------------------------------------------------------------------------
1 | v1;
2 | package pointer;
3 | pkgpath pointer;
4 | type >>;
5 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/ssa/identical_17.go:
--------------------------------------------------------------------------------
1 | // +build !go1.8
2 |
3 | package ssa
4 |
5 | import "go/types"
6 |
7 | var structTypesIdentical = types.Identical
8 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/analysis/call-eg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/analysis/call-eg.png
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/analysis/call3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/analysis/call3.png
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/analysis/chan1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/analysis/chan1.png
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/analysis/chan2a.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/analysis/chan2a.png
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/analysis/chan2b.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/analysis/chan2b.png
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/analysis/error1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/analysis/error1.png
--------------------------------------------------------------------------------
/vendor/gopkg.in/yaml.v2/.travis.yml:
--------------------------------------------------------------------------------
1 | language: go
2 |
3 | go:
4 | - 1.4
5 | - 1.5
6 | - 1.6
7 | - tip
8 |
9 | go_import_path: gopkg.in/yaml.v2
10 |
--------------------------------------------------------------------------------
/pkg/controller/hook_test.go:
--------------------------------------------------------------------------------
1 | package controller_test
2 |
3 | import (
4 | . "github.com/onsi/ginkgo"
5 | )
6 |
7 | var _ = Describe("Hook", func() {
8 |
9 | })
10 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/enumdecl_all/models.go:
--------------------------------------------------------------------------------
1 | package enumdeclall
2 |
3 | type MyEnum int32
4 |
5 | const (
6 | A MyEnum = iota
7 | B MyEnum = iota
8 | )
9 |
--------------------------------------------------------------------------------
/vendor/github.com/googleapis/gnostic/test/errors/petstore-missingversion.errors:
--------------------------------------------------------------------------------
1 | Errors reading examples/errors/petstore-missingversion.yaml
2 | unable to identify OpenAPI version
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/struct_empty_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeA struct{}
4 |
5 | type typeForTest map[string]typeA
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/float64_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeA float64
4 |
5 | type typeForTest struct {
6 | F typeA
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/float64s/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 float64
5 | F2 float64
6 | F3 float64
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/ptrs_int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 *int32
5 | F2 *int32
6 | F3 *int32
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/string_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeA string
4 |
5 | type typeForTest struct {
6 | F typeA
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/strings/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 string
5 | F2 string
6 | F3 string
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/struct/float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F struct {
5 | F float32
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/ginkgo/integration/_fixtures/more_ginkgo_tests/more_ginkgo_tests.go:
--------------------------------------------------------------------------------
1 | package more_ginkgo_tests
2 |
3 | func AlwaysTrue() bool {
4 | return true
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/gccgoexportdata/testdata/long.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/go/gccgoexportdata/testdata/long.a
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/gccgoexportdata/testdata/short.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/go/gccgoexportdata/testdata/short.a
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/ssa/identical.go:
--------------------------------------------------------------------------------
1 | // +build go1.8
2 |
3 | package ssa
4 |
5 | import "go/types"
6 |
7 | var structTypesIdentical = types.IdenticalIgnoreTags
8 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/analysis/callers1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/analysis/callers1.png
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/analysis/callers2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/analysis/callers2.png
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/analysis/ident-def.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/analysis/ident-def.png
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/analysis/ipcg-func.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/analysis/ipcg-func.png
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/analysis/ipcg-pkg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/analysis/ipcg-pkg.png
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/refactor/eg/testdata/no_before.template:
--------------------------------------------------------------------------------
1 | package template
2 |
3 | const shouldFail = "no 'before' func found in template"
4 |
5 | func Before() {}
6 |
--------------------------------------------------------------------------------
/vendor/k8s.io/api/authentication/OWNERS:
--------------------------------------------------------------------------------
1 | reviewers:
2 | - liggitt
3 | - lavalamp
4 | - wojtek-t
5 | - deads2k
6 | - sttts
7 | - mbohlool
8 | - jianhuiz
9 | - enj
10 |
--------------------------------------------------------------------------------
/vendor/k8s.io/api/policy/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - sig-apps-api-approvers
3 | reviewers:
4 | - sig-apps-reviewers
5 | - pweil-
6 | - liggitt
7 | - tallclair
8 | - php-coder
9 |
--------------------------------------------------------------------------------
/vendor/k8s.io/apiextensions-apiserver/artifacts/example/sa.yaml:
--------------------------------------------------------------------------------
1 | kind: ServiceAccount
2 | apiVersion: v1
3 | metadata:
4 | name: apiserver
5 | namespace: apiextensions
6 |
--------------------------------------------------------------------------------
/vendor/k8s.io/code-generator/cmd/client-gen/OWNERS:
--------------------------------------------------------------------------------
1 | approvers:
2 | - lavalamp
3 | - wojtek-t
4 | - caesarxuchao
5 | reviewers:
6 | - lavalamp
7 | - wojtek-t
8 | - caesarxuchao
9 |
--------------------------------------------------------------------------------
/pkg/controller/cluster/fake_test.go:
--------------------------------------------------------------------------------
1 | package cluster_test
2 |
3 | import (
4 | . "github.com/onsi/ginkgo"
5 | )
6 |
7 | var _ = Describe("Fake", func() {
8 |
9 | })
10 |
--------------------------------------------------------------------------------
/vendor/github.com/googleapis/gnostic/plugins/gnostic-go-generator/examples/v2.0/apis_guru/Makefile:
--------------------------------------------------------------------------------
1 |
2 | all:
3 | gnostic swagger.yaml --go-client-out=apis_guru
4 | go install
5 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string/string_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type stringAlias string
4 |
5 | type typeForTest map[string]stringAlias
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string_alias/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type stringAlias string
4 |
5 | type typeForTest map[stringAlias]string
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/ptrs_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 *string
5 | F2 *string
6 | F3 *string
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/struct/empty_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeA struct{}
4 |
5 | type typeForTest struct {
6 | F typeA
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/ginkgo/integration/_fixtures/watch_fixtures/A/A.go:
--------------------------------------------------------------------------------
1 | package A
2 |
3 | import "github.com/onsi/B"
4 |
5 | func DoIt() string {
6 | return B.DoIt()
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/ginkgo/integration/_fixtures/watch_fixtures/B/B.go:
--------------------------------------------------------------------------------
1 | package B
2 |
3 | import "github.com/onsi/C"
4 |
5 | func DoIt() string {
6 | return C.DoIt()
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/ginkgo/integration/_fixtures/watch_fixtures/D/D.go:
--------------------------------------------------------------------------------
1 | package D
2 |
3 | import "github.com/onsi/C"
4 |
5 | func DoIt() string {
6 | return C.DoIt()
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/crypto/sha3/testdata/keccakKats.json.deflate:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/crypto/sha3/testdata/keccakKats.json.deflate
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/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/grtl/mysql-operator/HEAD/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html
--------------------------------------------------------------------------------
/vendor/golang.org/x/text/encoding/testdata/candide-gb18030.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/text/encoding/testdata/candide-gb18030.txt
--------------------------------------------------------------------------------
/vendor/golang.org/x/text/encoding/testdata/candide-utf-16le.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/text/encoding/testdata/candide-utf-16le.txt
--------------------------------------------------------------------------------
/vendor/golang.org/x/text/encoding/testdata/candide-utf-32be.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/text/encoding/testdata/candide-utf-32be.txt
--------------------------------------------------------------------------------
/vendor/golang.org/x/text/encoding/testdata/rashomon-euc-jp.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/text/encoding/testdata/rashomon-euc-jp.txt
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/gccgoexportdata/testdata/errors.gox:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/go/gccgoexportdata/testdata/errors.gox
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/gcexportdata/testdata/errors-ae16.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/go/gcexportdata/testdata/errors-ae16.a
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/analysis/ident-field.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/analysis/ident-field.png
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/analysis/ident-func.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/analysis/ident-func.png
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/analysis/typeinfo-pkg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/analysis/typeinfo-pkg.png
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/analysis/typeinfo-src.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/analysis/typeinfo-src.png
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/images/treeview-black.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/images/treeview-black.gif
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/images/treeview-gray.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/images/treeview-gray.gif
--------------------------------------------------------------------------------
/vendor/k8s.io/client-go/util/certificate/OWNERS:
--------------------------------------------------------------------------------
1 | reviewers:
2 | - mikedanese
3 | - liggit
4 | - smarterclayton
5 | approvers:
6 | - mikedanese
7 | - liggit
8 | - smarterclayton
9 |
--------------------------------------------------------------------------------
/.travis-scripts/build.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | set -e
4 | set -v
5 | CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o mysql-operator
6 | docker build . -t mysql-operator:testing
7 |
--------------------------------------------------------------------------------
/pkg/controller/controller_test.go:
--------------------------------------------------------------------------------
1 | package controller_test
2 |
3 | import (
4 | . "github.com/onsi/ginkgo"
5 | )
6 |
7 | var _ = Describe("Controller", func() {
8 |
9 | })
10 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/ptrs_float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 *float64
5 | F2 *float64
6 | F3 *float64
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/slice/strings/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 []string
5 | F2 []string
6 | F3 []string
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/struct/empties/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 struct{}
5 | F2 struct{}
6 | F3 struct{}
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/ginkgo/integration/_fixtures/failing_ginkgo_tests/failing_ginkgo_tests.go:
--------------------------------------------------------------------------------
1 | package failing_ginkgo_tests
2 |
3 | func AlwaysFalse() bool {
4 | return false
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_03.xml:
--------------------------------------------------------------------------------
1 | Tove Jani Reminder Don't forget me this weekend!
2 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/text/encoding/testdata/rashomon-shift-jis.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/text/encoding/testdata/rashomon-shift-jis.txt
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/images/treeview-default.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/images/treeview-default.gif
--------------------------------------------------------------------------------
/vendor/k8s.io/api/Godeps/Readme:
--------------------------------------------------------------------------------
1 | This directory tree is generated automatically by godep.
2 |
3 | Please do not edit.
4 |
5 | See https://github.com/tools/godep for more information.
6 |
--------------------------------------------------------------------------------
/pkg/operator/backupinstance/fake_test.go:
--------------------------------------------------------------------------------
1 | package backupinstance_test
2 |
3 | import (
4 | . "github.com/onsi/ginkgo"
5 | )
6 |
7 | var _ = Describe("Fake", func() {
8 |
9 | })
10 |
--------------------------------------------------------------------------------
/pkg/operator/backupschedule/fake_test.go:
--------------------------------------------------------------------------------
1 | package backupschedule_test
2 |
3 | import (
4 | . "github.com/onsi/ginkgo"
5 | )
6 |
7 | var _ = Describe("Fake", func() {
8 |
9 | })
10 |
--------------------------------------------------------------------------------
/pkg/operator/cluster/initialize_test.go:
--------------------------------------------------------------------------------
1 | package cluster_test
2 |
3 | import (
4 | . "github.com/onsi/ginkgo"
5 | )
6 |
7 | var _ = Describe("Initialize", func() {
8 |
9 | })
10 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/map/string_alias/string_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type stringAlias string
4 |
5 | type typeForTest map[stringAlias]stringAlias
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/array/strings/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 [4]string
5 | F2 [4]string
6 | F3 [4]string
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/ginkgo/ginkgo/interrupthandler/sigquit_swallower_windows.go:
--------------------------------------------------------------------------------
1 | // +build windows
2 |
3 | package interrupthandler
4 |
5 | func SwallowSigQuit() {
6 | //noop
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/gomega/matchers/support/goraph/util/util.go:
--------------------------------------------------------------------------------
1 | package util
2 |
3 | import "math"
4 |
5 | func Odd(n int) bool {
6 | return math.Mod(float64(n), 2.0) == 1.0
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/text/encoding/testdata/candide-windows-1252.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/text/encoding/testdata/candide-windows-1252.txt
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/fiximports/testdata/src/fruit.io/banana/banana.go:
--------------------------------------------------------------------------------
1 | package banana
2 |
3 | import (
4 | _ "old.com/one"
5 | _ "titanic.biz/bar"
6 | _ "titanic.biz/foo"
7 | )
8 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/fiximports/testdata/src/old.com/bad/bad.go:
--------------------------------------------------------------------------------
1 | // This ill-formed Go source file is here to ensure the tool is robust
2 | // against bad packages in the workspace.
3 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/internal/gccgoimporter/testdata/time.gox:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/go/internal/gccgoimporter/testdata/time.gox
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/images/treeview-black-line.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/images/treeview-black-line.gif
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/images/treeview-gray-line.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/images/treeview-gray-line.gif
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/refactor/eg/testdata/E1.go:
--------------------------------------------------------------------------------
1 | // +build ignore
2 |
3 | package E1
4 |
5 | import "log"
6 |
7 | func example() {
8 | log.Fatal("oops") // match
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/k8s.io/apiextensions-apiserver/artifacts/customresource-01/noxu.yaml:
--------------------------------------------------------------------------------
1 | apiVersion: mygroup.example.com/v1alpha1
2 | kind: Noxu
3 | metadata:
4 | name: alfa-noxu
5 | spec:
6 | key: value
--------------------------------------------------------------------------------
/vendor/k8s.io/client-go/Godeps/Readme:
--------------------------------------------------------------------------------
1 | This directory tree is generated automatically by godep.
2 |
3 | Please do not edit.
4 |
5 | See https://github.com/tools/godep for more information.
6 |
--------------------------------------------------------------------------------
/pkg/controller/backupinstance/fake_test.go:
--------------------------------------------------------------------------------
1 | package backupinstance_test
2 |
3 | import (
4 | . "github.com/onsi/ginkgo"
5 | )
6 |
7 | var _ = Describe("Fake", func() {
8 |
9 | })
10 |
--------------------------------------------------------------------------------
/pkg/controller/backupschedule/fake_test.go:
--------------------------------------------------------------------------------
1 | package backupschedule_test
2 |
3 | import (
4 | . "github.com/onsi/ginkgo"
5 | )
6 |
7 | var _ = Describe("Fake", func() {
8 |
9 | })
10 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/string/bool/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 bool `json:"F1"`
5 | F2 bool `json:"F2,string"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/string/byte/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 byte `json:"F1"`
5 | F2 byte `json:"F2,string"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/string/int16/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 int16 `json:"F1"`
5 | F2 int16 `json:"F2,string"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/string/int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 int32 `json:"F1"`
5 | F2 int32 `json:"F2,string"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/string/int8/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 int8 `json:"F1"`
5 | F2 int8 `json:"F2,string"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/string/uint8/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 uint8 `json:"F1"`
5 | F2 uint8 `json:"F2,string"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/nauyey/factory/.travis.yml:
--------------------------------------------------------------------------------
1 | sudo: false
2 | language: go
3 | go:
4 | - 1.7.x
5 | - 1.8.x
6 | - 1.9.x
7 | - master
8 |
9 | script:
10 | - go test -v ./...
11 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/guru/testdata/src/definition-json/main19.go:
--------------------------------------------------------------------------------
1 | package definition
2 |
3 | import "nosuchpkg"
4 |
5 | var _ nosuchpkg.T // @definition qualified-nopkg "nosuchpkg"
6 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/internal/gccgoimporter/testdata/complexnums.go:
--------------------------------------------------------------------------------
1 | package complexnums
2 |
3 | const NN = -1 - 1i
4 | const NP = -1 + 1i
5 | const PN = 1 - 1i
6 | const PP = 1 + 1i
7 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/godoc/static/images/treeview-default-line.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/godoc/static/images/treeview-default-line.gif
--------------------------------------------------------------------------------
/vendor/k8s.io/api/code-of-conduct.md:
--------------------------------------------------------------------------------
1 | # Kubernetes Community Code of Conduct
2 |
3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md)
4 |
--------------------------------------------------------------------------------
/vendor/k8s.io/apimachinery/Godeps/Readme:
--------------------------------------------------------------------------------
1 | This directory tree is generated automatically by godep.
2 |
3 | Please do not edit.
4 |
5 | See https://github.com/tools/godep for more information.
6 |
--------------------------------------------------------------------------------
/vendor/k8s.io/code-generator/Godeps/Readme:
--------------------------------------------------------------------------------
1 | This directory tree is generated automatically by godep.
2 |
3 | Please do not edit.
4 |
5 | See https://github.com/tools/godep for more information.
6 |
--------------------------------------------------------------------------------
/vendor/k8s.io/gengo/code-of-conduct.md:
--------------------------------------------------------------------------------
1 | # Kubernetes Community Code of Conduct
2 |
3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md)
4 |
--------------------------------------------------------------------------------
/vendor/github.com/googleapis/gnostic/plugins/gnostic-swift-sample/Makefile:
--------------------------------------------------------------------------------
1 |
2 | all:
3 | swift build
4 |
5 | clean :
6 | rm -rf Packages
7 | rm -rf .build
8 | rm -f Package.pins Package.resolved
9 |
--------------------------------------------------------------------------------
/vendor/github.com/imdario/mergo/testdata/thing.yml:
--------------------------------------------------------------------------------
1 | fields:
2 | id: int
3 | name: string
4 | parent: ref "datu:thing"
5 | status: enum(draft, public, private)
6 | author: updater
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/omitempty/bool/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 bool `json:"F1"`
5 | F2 bool `json:"F2,omitempty"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/string/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 string `json:"F1"`
5 | F2 string `json:"F2,string"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/string/uint16/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 uint16 `json:"F1"`
5 | F2 uint16 `json:"F2,string"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/string/uint32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 uint32 `json:"F1"`
5 | F2 uint32 `json:"F2,string"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/gcimporter15/testdata/versions/test_go1.7_0.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/go/gcimporter15/testdata/versions/test_go1.7_0.a
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/gcimporter15/testdata/versions/test_go1.7_1.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/go/gcimporter15/testdata/versions/test_go1.7_1.a
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/internal/gccgoimporter/testdata/unicode.gox:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/go/internal/gccgoimporter/testdata/unicode.gox
--------------------------------------------------------------------------------
/vendor/k8s.io/client-go/code-of-conduct.md:
--------------------------------------------------------------------------------
1 | # Kubernetes Community Code of Conduct
2 |
3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md)
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/omitempty/int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 int32 `json:"F1"`
5 | F2 int32 `json:"F2,omitempty"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/omitempty/ptr_bool/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 *bool `json:"F1"`
5 | F2 *bool `json:"F2,omitempty"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/omitempty/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 string `json:"F1"`
5 | F2 string `json:"F2,omitempty"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/omitempty/uint32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 uint32 `json:"F1"`
5 | F2 uint32 `json:"F2,omitempty"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/string/float32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 float32 `json:"F1"`
5 | F2 float32 `json:"F2,string"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/string/float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 float64 `json:"F1"`
5 | F2 float64 `json:"F2,string"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/go/internal/gccgoimporter/testdata/escapeinfo.gox:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grtl/mysql-operator/HEAD/vendor/golang.org/x/tools/go/internal/gccgoimporter/testdata/escapeinfo.gox
--------------------------------------------------------------------------------
/vendor/k8s.io/api/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | Sorry, we do not accept changes directly against this repository. Please see
2 | CONTRIBUTING.md for information on where and how to contribute instead.
3 |
--------------------------------------------------------------------------------
/vendor/k8s.io/apiextensions-apiserver/Godeps/Readme:
--------------------------------------------------------------------------------
1 | This directory tree is generated automatically by godep.
2 |
3 | Please do not edit.
4 |
5 | See https://github.com/tools/godep for more information.
6 |
--------------------------------------------------------------------------------
/vendor/k8s.io/apimachinery/code-of-conduct.md:
--------------------------------------------------------------------------------
1 | # Kubernetes Community Code of Conduct
2 |
3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md)
4 |
--------------------------------------------------------------------------------
/vendor/k8s.io/code-generator/code-of-conduct.md:
--------------------------------------------------------------------------------
1 | # Kubernetes Community Code of Conduct
2 |
3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md)
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/int32s_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeA int32
4 |
5 | type typeForTest struct {
6 | F1 typeA
7 | F2 typeA
8 | F3 typeA
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/struct/int32s/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F struct {
5 | F1 int32
6 | F2 int32
7 | F3 int32
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/omitempty/float32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 float32 `json:"F1"`
5 | F2 float32 `json:"F2,omitempty"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/omitempty/ptr_int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 *int32 `json:"F1"`
5 | F2 *int32 `json:"F2,omitempty"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/omitempty/ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 *string `json:"F1"`
5 | F2 *string `json:"F2,omitempty"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/omitempty/ptr_uint32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 *uint32 `json:"F1"`
5 | F2 *uint32 `json:"F2,omitempty"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/omitempty/struct/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F struct{} `json:"f,omitempty"` // omitempty is meaningless here
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/refactor/eg/testdata/F.template:
--------------------------------------------------------------------------------
1 | package templates
2 |
3 | // Test
4 |
5 | import "sync"
6 |
7 | func before(s sync.RWMutex) { s.Lock() }
8 | func after(s sync.RWMutex) { s.RLock() }
--------------------------------------------------------------------------------
/vendor/github.com/googleapis/gnostic/generate-gnostic/test/errors/x-extension-name-collision.errors:
--------------------------------------------------------------------------------
1 | Schema SampleCompanyTwoPrimitiveString and SampleCompanyOnePrimitiveString have the same 'id' field value.
2 |
3 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/anonymous/no_overlap/int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | // Embedded TEST ONLY
4 | type Embedded int32
5 |
6 | type typeForTest struct {
7 | Embedded
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/float64s_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeA float64
4 |
5 | type typeForTest struct {
6 | F1 typeA
7 | F2 typeA
8 | F3 typeA
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/strings_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeA string
4 |
5 | type typeForTest struct {
6 | F1 typeA
7 | F2 typeA
8 | F3 typeA
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/struct/float64_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeA struct {
4 | F float64
5 | }
6 |
7 | type typeForTest struct {
8 | F typeA
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/struct/strings/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F struct {
5 | F1 string
6 | F2 string
7 | F3 string
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/omitempty/ptr_float32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 *float32 `json:"F1"`
5 | F2 *float32 `json:"F2,omitempty"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/omitempty/ptr_string/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 string `json:"F1"`
5 | F2 string `json:"F2,omitempty"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/omitempty/slice_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 []string `json:"F1"`
5 | F2 []string `json:"F2,omitempty"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_04.xml:
--------------------------------------------------------------------------------
1 |
2 | Tove
3 | John
4 | Doe
5 | Don't forget me this weekend!
6 |
--------------------------------------------------------------------------------
/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/sys/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/sys/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/text/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/time/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/tools/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/k8s.io/apiextensions-apiserver/code-of-conduct.md:
--------------------------------------------------------------------------------
1 | # Kubernetes Community Code of Conduct
2 |
3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md)
4 |
--------------------------------------------------------------------------------
/vendor/k8s.io/apimachinery/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | Sorry, we do not accept changes directly against this repository. Please see
2 | CONTRIBUTING.md for information on where and how to contribute instead.
3 |
--------------------------------------------------------------------------------
/vendor/k8s.io/client-go/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | Sorry, we do not accept changes directly against this repository. Please see
2 | CONTRIBUTING.md for information on where and how to contribute instead.
3 |
--------------------------------------------------------------------------------
/vendor/k8s.io/gengo/.import-restrictions:
--------------------------------------------------------------------------------
1 | {
2 | "Rules": [
3 | {
4 | "SelectorRegexp": "k8s[.]io",
5 | "AllowedPrefixes": [
6 | "k8s.io/gengo"
7 | ]
8 | }
9 | ]
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/caseless_unmarshal/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest1 struct {
4 | Field string
5 | }
6 |
7 | type typeForTest2 struct {
8 | FIELD string
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/anonymous/no_overlap/float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | // Embedded TEST ONLY
4 | type Embedded float64
5 |
6 | type typeForTest struct {
7 | Embedded
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/anonymous/no_overlap/ptr_int32/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | // Embedded TEST ONLY
4 | type Embedded int32
5 |
6 | type typeForTest struct {
7 | *Embedded
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/anonymous/no_overlap/string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | // Embedded TEST ONLY
4 | type Embedded string
5 |
6 | type typeForTest struct {
7 | Embedded
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/ptr_struct_strings/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F *struct {
5 | F1 string
6 | F2 string
7 | F3 string
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/struct/float32s/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F struct {
5 | F1 float32
6 | F2 float32
7 | F3 float32
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/omitempty/ptr_slice_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 *[]string `json:"F1"`
5 | F2 *[]string `json:"F2,omitempty"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/ginkgo/integration/_fixtures/flags_tests/flags.go:
--------------------------------------------------------------------------------
1 | package flags
2 |
3 | func Tested() string {
4 | return "tested"
5 | }
6 |
7 | func Untested() string {
8 | return "untested"
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_01.xml:
--------------------------------------------------------------------------------
1 |
2 | Tove
3 | Jani
4 | Reminder
5 | Don't forget me this weekend!
6 |
--------------------------------------------------------------------------------
/vendor/github.com/spf13/cobra/.mailmap:
--------------------------------------------------------------------------------
1 | Steve Francia
2 | Bjørn Erik Pedersen
3 | Fabiano Franz
4 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/crypto/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 https://tip.golang.org/AUTHORS.
4 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/crypto/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 https://tip.golang.org/CONTRIBUTORS.
4 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/text/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/time/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/tools/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/tools/refactor/eg/testdata/type_mismatch.template:
--------------------------------------------------------------------------------
1 | package template
2 |
3 | const shouldFail = "different signatures"
4 |
5 | func before() int { return 0 }
6 | func after() string { return "" }
7 |
--------------------------------------------------------------------------------
/vendor/k8s.io/code-generator/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | Sorry, we do not accept changes directly against this repository. Please see
2 | CONTRIBUTING.md for information on where and how to contribute instead.
3 |
--------------------------------------------------------------------------------
/vendor/github.com/golang/protobuf/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/github.com/golang/protobuf/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/github.com/json-iterator/go/output_tests/struct/anonymous/no_overlap/ptr_float64/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | // Embedded TEST ONLY
4 | type Embedded float64
5 |
6 | type typeForTest struct {
7 | *Embedded
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/anonymous/no_overlap/ptr_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | // Embedded TEST ONLY
4 | type Embedded string
5 |
6 | type typeForTest struct {
7 | *Embedded
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/anonymous/no_overlap/slice_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | // Embedded TEST ONLY
4 | type Embedded []string
5 |
6 | type typeForTest struct {
7 | Embedded
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/array/struct_strings/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F [4]struct {
5 | F1 string
6 | F2 string
7 | F3 string
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/ptr_ptr_struct_strings/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F **struct {
5 | F1 string
6 | F2 string
7 | F3 string
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/slice/struct_strings/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F []struct {
5 | F1 string
6 | F2 string
7 | F3 string
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/k8s.io/apiextensions-apiserver/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | Sorry, we do not accept changes directly against this repository. Please see
2 | CONTRIBUTING.md for information on where and how to contribute instead.
3 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/issue312/Makefile:
--------------------------------------------------------------------------------
1 | regenerate:
2 | protoc --proto_path=.:$(GOPATH)/src/:$(GOPATH)/src/github.com/gogo/protobuf/protobuf/ \
3 | --gogo_out=. issue312.proto
4 | (cd events && make regenerate)
5 |
--------------------------------------------------------------------------------
/vendor/github.com/googleapis/gnostic/extensions/COMPILE-EXTENSION.sh:
--------------------------------------------------------------------------------
1 | go get github.com/golang/protobuf/protoc-gen-go
2 |
3 | protoc \
4 | --go_out=Mgoogle/protobuf/any.proto=github.com/golang/protobuf/ptypes/any:. *.proto
5 |
6 |
--------------------------------------------------------------------------------
/vendor/github.com/googleapis/gnostic/test/errors/petstore-unresolvedrefs.errors:
--------------------------------------------------------------------------------
1 | Errors reading examples/errors/petstore-unresolvedrefs.yaml
2 | ERROR could not resolve #/definitions/Pet
3 | ERROR could not resolve #/definitions/Error
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/anonymous/no_overlap/ptr_slice_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | // Embedded TEST ONLY
4 | type Embedded []string
5 |
6 | type typeForTest struct {
7 | *Embedded
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/guru/testdata/src/definition-json/main19.golden:
--------------------------------------------------------------------------------
1 | -------- @definition qualified-nopkg --------
2 | {
3 | "objpos": "testdata/src/definition-json/main19.go:3:8",
4 | "desc": "package nosuchpkg"
5 | }
6 |
--------------------------------------------------------------------------------
/vendor/github.com/googleapis/gnostic/apps/petstore-builder/README.md:
--------------------------------------------------------------------------------
1 | # OpenAPI Builder Sample
2 |
3 | This directory contains a simple sample application that builds
4 | and exports an OpenAPI 2.0 description of a sample API.
5 |
6 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/array/string_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeA1 string
4 | type typeA2 [4]typeA1
5 |
6 | type typeForTest struct {
7 | F1 [4]typeA1
8 | F2 typeA2
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/map/int32_struct_strings/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F map[int32]struct {
5 | F1 string
6 | F2 string
7 | F3 string
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/slice/string_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeA1 string
4 | type typeA2 []typeA1
5 |
6 | type typeForTest struct {
7 | F1 []typeA1
8 | F2 typeA2
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/github.com/sirupsen/logrus/terminal_check_appengine.go:
--------------------------------------------------------------------------------
1 | // +build appengine gopherjs
2 |
3 | package logrus
4 |
5 | import (
6 | "io"
7 | )
8 |
9 | func checkIfTerminal(w io.Writer) bool {
10 | return true
11 | }
12 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/tools/cmd/guru/testdata/src/describe/main19.golden:
--------------------------------------------------------------------------------
1 | -------- @describe badimport1 --------
2 | import of package "nosuchpkg"
3 |
4 | -------- @describe badimport2 --------
5 | reference to package "nosuchpkg"
6 |
7 |
--------------------------------------------------------------------------------
/pkg/crd/wait_test.go:
--------------------------------------------------------------------------------
1 | package crd
2 |
3 | import (
4 | . "github.com/onsi/ginkgo"
5 | //. "github.com/onsi/gomega"
6 | //. "github.com/grtl/mysql-operator/crd"
7 | )
8 |
9 | var _ = Describe("Wait", func() {
10 |
11 | })
12 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/typedeclimport/models.go:
--------------------------------------------------------------------------------
1 | package typedeclimport
2 |
3 | import subpkg "github.com/gogo/protobuf/test/typedeclimport/subpkg"
4 |
5 | type SomeMessage struct {
6 | Imported subpkg.AnotherMessage
7 | }
8 |
--------------------------------------------------------------------------------
/vendor/github.com/googleapis/gnostic/.gitignore:
--------------------------------------------------------------------------------
1 | # Eclipse
2 | .checkstyle
3 | .project
4 | .settings
5 | # Swift
6 | .build
7 | Packages
8 | # vi
9 | *.swp
10 | # vscode
11 | .vscode
12 | .DS_Store
13 | *~
14 | Package.resolved
15 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/anonymous/no_overlap/map_string_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | // Embedded TEST ONLY
4 | type Embedded map[string]string
5 |
6 | type typeForTest struct {
7 | Embedded
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/map/string_struct_strings/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F map[string]struct {
5 | F1 string
6 | F2 string
7 | F3 string
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/omitempty/map_string_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 map[string]string `json:"F1"`
5 | F2 map[string]string `json:"F2,omitempty"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/enumdecl/Makefile:
--------------------------------------------------------------------------------
1 | regenerate:
2 | go install github.com/gogo/protobuf/protoc-gen-gogo
3 | protoc-min-version --version="3.0.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. enumdecl.proto
4 |
--------------------------------------------------------------------------------
/vendor/github.com/gogo/protobuf/test/typedecl/Makefile:
--------------------------------------------------------------------------------
1 | regenerate:
2 | go install github.com/gogo/protobuf/protoc-gen-gogo
3 | protoc-min-version --version="3.0.0" --gogo_out=. --proto_path=../../../../../:../../protobuf/:. typedecl.proto
4 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/partial_unmarshal/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest1 struct {
4 | F1 string
5 | F2 string
6 | F3 string
7 | }
8 |
9 | type typeForTest2 struct {
10 | F1 string
11 | }
12 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/anonymous/no_overlap/ptr_map_string_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | // Embedded TEST ONLY
4 | type Embedded map[string]string
5 |
6 | type typeForTest struct {
7 | *Embedded
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/anonymous/no_overlap/string_with_tag/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | // Embedded TEST ONLY
4 | type Embedded string
5 |
6 | type typeForTest struct {
7 | Embedded `json:"othername"`
8 | }
9 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct/ptr_string_alias/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeA1 string
4 | type typeA2 *string
5 |
6 | type typeForTest struct {
7 | F1 *typeA1
8 | F2 typeA2
9 | F3 *typeA2
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/omitempty/embedded/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | // E TEST ONLY
4 | type E struct {
5 | F string `json:"F,omitempty"`
6 | }
7 |
8 | type typeForTest struct {
9 | E
10 | }
11 |
--------------------------------------------------------------------------------
/vendor/github.com/json-iterator/go/output_tests/struct_tags/omitempty/ptr_map_string_string/types.go:
--------------------------------------------------------------------------------
1 | package test
2 |
3 | type typeForTest struct {
4 | F1 *map[string]string `json:"F1"`
5 | F2 *map[string]string `json:"F2,omitempty"`
6 | }
7 |
--------------------------------------------------------------------------------
/vendor/github.com/onsi/ginkgo/integration/_fixtures/suite_command_tests/suite_command.go:
--------------------------------------------------------------------------------
1 | package suite_command
2 |
3 | func Tested() string {
4 | return "tested"
5 | }
6 |
7 | func Untested() string {
8 | return "untested"
9 | }
10 |
--------------------------------------------------------------------------------
/vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat:
--------------------------------------------------------------------------------
1 | #data
2 |