├── LICENSE ├── Lesson01 ├── blue-green.yaml ├── init-container.yaml ├── inject.yaml ├── recreate.yaml ├── rolling.yaml └── sidecar.yaml ├── Lesson02 ├── .gitignore ├── README.md ├── go │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── glide.lock │ ├── glide.yaml │ ├── main.go │ └── vendor │ │ ├── cloud.google.com │ │ └── go │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── authexample_test.go │ │ │ ├── bigquery │ │ │ ├── bigquery.go │ │ │ ├── copy_op.go │ │ │ ├── copy_test.go │ │ │ ├── create_table_test.go │ │ │ ├── dataset.go │ │ │ ├── dataset_test.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── extract_op.go │ │ │ ├── extract_test.go │ │ │ ├── gcs.go │ │ │ ├── integration_test.go │ │ │ ├── iterator.go │ │ │ ├── iterator_test.go │ │ │ ├── job.go │ │ │ ├── legacy.go │ │ │ ├── load_op.go │ │ │ ├── load_test.go │ │ │ ├── query.go │ │ │ ├── query_op.go │ │ │ ├── query_test.go │ │ │ ├── read_op.go │ │ │ ├── read_test.go │ │ │ ├── schema.go │ │ │ ├── schema_test.go │ │ │ ├── service.go │ │ │ ├── table.go │ │ │ ├── uploader.go │ │ │ ├── uploader_test.go │ │ │ ├── utils_test.go │ │ │ ├── value.go │ │ │ └── value_test.go │ │ │ ├── bigtable │ │ │ ├── admin.go │ │ │ ├── admin_test.go │ │ │ ├── bigtable.go │ │ │ ├── bigtable_test.go │ │ │ ├── bttest │ │ │ │ ├── example_test.go │ │ │ │ ├── inmem.go │ │ │ │ └── inmem_test.go │ │ │ ├── cmd │ │ │ │ ├── cbt │ │ │ │ │ ├── cbt.go │ │ │ │ │ ├── cbt_test.go │ │ │ │ │ └── cbtdoc.go │ │ │ │ ├── emulator │ │ │ │ │ └── cbtemulator.go │ │ │ │ ├── loadtest │ │ │ │ │ └── loadtest.go │ │ │ │ └── scantest │ │ │ │ │ └── scantest.go │ │ │ ├── doc.go │ │ │ ├── filter.go │ │ │ ├── gc.go │ │ │ ├── internal │ │ │ │ ├── cbtrc │ │ │ │ │ └── cbtrc.go │ │ │ │ ├── gax │ │ │ │ │ ├── call_option.go │ │ │ │ │ ├── invoke.go │ │ │ │ │ └── invoke_test.go │ │ │ │ ├── option │ │ │ │ │ └── option.go │ │ │ │ └── stat │ │ │ │ │ └── stats.go │ │ │ ├── reader.go │ │ │ ├── reader_test.go │ │ │ ├── retry_test.go │ │ │ └── testdata │ │ │ │ └── read-rows-acceptance-test.json │ │ │ ├── cloud.go │ │ │ ├── compute │ │ │ └── metadata │ │ │ │ ├── metadata.go │ │ │ │ └── metadata_test.go │ │ │ ├── container │ │ │ └── container.go │ │ │ ├── datastore │ │ │ ├── datastore.go │ │ │ ├── datastore_test.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── example_test.go │ │ │ ├── examples_test.go │ │ │ ├── integration_test.go │ │ │ ├── key.go │ │ │ ├── key_test.go │ │ │ ├── load.go │ │ │ ├── load_test.go │ │ │ ├── prop.go │ │ │ ├── query.go │ │ │ ├── query_test.go │ │ │ ├── save.go │ │ │ ├── save_test.go │ │ │ ├── testdata │ │ │ │ └── index.yaml │ │ │ ├── time.go │ │ │ ├── time_test.go │ │ │ └── transaction.go │ │ │ ├── errors │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ └── stack_test.go │ │ │ ├── examples │ │ │ ├── bigquery │ │ │ │ ├── concat_table │ │ │ │ │ └── main.go │ │ │ │ ├── load │ │ │ │ │ └── main.go │ │ │ │ ├── query │ │ │ │ │ └── main.go │ │ │ │ └── read │ │ │ │ │ └── main.go │ │ │ ├── bigtable │ │ │ │ ├── helloworld │ │ │ │ │ ├── README.md │ │ │ │ │ └── main.go │ │ │ │ ├── search │ │ │ │ │ └── search.go │ │ │ │ └── usercounter │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app.yaml │ │ │ │ │ └── main.go │ │ │ └── storage │ │ │ │ ├── appengine │ │ │ │ ├── app.go │ │ │ │ └── app.yaml │ │ │ │ └── appenginevm │ │ │ │ ├── app.go │ │ │ │ └── app.yaml │ │ │ ├── internal │ │ │ ├── bundler │ │ │ │ ├── bundler.go │ │ │ │ └── bundler_test.go │ │ │ ├── cloud.go │ │ │ └── testutil │ │ │ │ ├── context.go │ │ │ │ ├── iterators.go │ │ │ │ ├── server.go │ │ │ │ └── server_test.go │ │ │ ├── key.json.enc │ │ │ ├── language │ │ │ └── apiv1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── language.go │ │ │ │ ├── language_client.go │ │ │ │ └── language_client_example_test.go │ │ │ ├── license_test.go │ │ │ ├── logging │ │ │ ├── apiv2 │ │ │ │ ├── README.md │ │ │ │ ├── config_client.go │ │ │ │ ├── config_client_example_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── logging.go │ │ │ │ ├── logging_client.go │ │ │ │ ├── logging_client_example_test.go │ │ │ │ ├── metrics_client.go │ │ │ │ └── metrics_client_example_test.go │ │ │ ├── logging.go │ │ │ └── logging_test.go │ │ │ ├── preview │ │ │ └── logging │ │ │ │ ├── example_entry_iterator_test.go │ │ │ │ ├── example_metric_iterator_test.go │ │ │ │ ├── example_paging_test.go │ │ │ │ ├── example_resource_iterator_test.go │ │ │ │ ├── example_sink_iterator_test.go │ │ │ │ ├── examples_test.go │ │ │ │ ├── internal │ │ │ │ └── testing │ │ │ │ │ ├── fake.go │ │ │ │ │ └── fake_test.go │ │ │ │ ├── logging.go │ │ │ │ ├── logging_test.go │ │ │ │ ├── metrics.go │ │ │ │ ├── metrics_test.go │ │ │ │ ├── resources.go │ │ │ │ ├── resources_test.go │ │ │ │ ├── sinks.go │ │ │ │ ├── sinks_test.go │ │ │ │ └── unique_test.go │ │ │ ├── pubsub │ │ │ ├── acker.go │ │ │ ├── acker_test.go │ │ │ ├── apiv1 │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── publisher_client.go │ │ │ │ ├── publisher_client_example_test.go │ │ │ │ ├── pubsub.go │ │ │ │ ├── subscriber_client.go │ │ │ │ └── subscriber_client_example_test.go │ │ │ ├── doc.go │ │ │ ├── endtoend_test.go │ │ │ ├── example_subscription_iterator_test.go │ │ │ ├── example_test.go │ │ │ ├── example_topic_iterator_test.go │ │ │ ├── integration_test.go │ │ │ ├── iterator.go │ │ │ ├── iterator_test.go │ │ │ ├── keepalive.go │ │ │ ├── keepalive_test.go │ │ │ ├── message.go │ │ │ ├── pubsub.go │ │ │ ├── puller.go │ │ │ ├── puller_test.go │ │ │ ├── service.go │ │ │ ├── subscription.go │ │ │ ├── subscription_test.go │ │ │ ├── topic.go │ │ │ ├── topic_test.go │ │ │ └── utils_test.go │ │ │ ├── speech │ │ │ └── apiv1beta1 │ │ │ │ ├── doc.go │ │ │ │ ├── speech.go │ │ │ │ ├── speech_client.go │ │ │ │ └── speech_client_example_test.go │ │ │ ├── storage │ │ │ ├── acl.go │ │ │ ├── bucket.go │ │ │ ├── example_test.go │ │ │ ├── integration_test.go │ │ │ ├── reader.go │ │ │ ├── storage.go │ │ │ ├── storage_test.go │ │ │ ├── testdata │ │ │ │ ├── dummy_pem │ │ │ │ └── dummy_rsa │ │ │ ├── writer.go │ │ │ └── writer_test.go │ │ │ ├── trace │ │ │ ├── sampling.go │ │ │ ├── trace.go │ │ │ └── trace_test.go │ │ │ └── vision │ │ │ ├── annotations.go │ │ │ ├── apiv1 │ │ │ ├── doc.go │ │ │ ├── image_annotator_client.go │ │ │ ├── image_annotator_client_example_test.go │ │ │ └── vision.go │ │ │ ├── doc.go │ │ │ ├── examples_test.go │ │ │ ├── face.go │ │ │ ├── geometry.go │ │ │ ├── image.go │ │ │ ├── latlng.go │ │ │ ├── testdata │ │ │ ├── README.md │ │ │ ├── cat.jpg │ │ │ ├── eiffel-tower.jpg │ │ │ ├── face.jpg │ │ │ ├── faulkner.jpg │ │ │ ├── google.png │ │ │ ├── mountain.jpg │ │ │ └── no-text.jpg │ │ │ ├── vision.go │ │ │ └── vision_test.go │ │ ├── github.com │ │ ├── ghodss │ │ │ └── yaml │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── fields.go │ │ │ │ ├── yaml.go │ │ │ │ └── yaml_test.go │ │ ├── gogo │ │ │ └── protobuf │ │ │ │ ├── .gitignore │ │ │ │ ├── .mailmap │ │ │ │ ├── .travis.yml │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── GOLANG_CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── Readme.md │ │ │ │ ├── _conformance │ │ │ │ ├── Makefile │ │ │ │ ├── conformance.go │ │ │ │ └── conformance_proto │ │ │ │ │ ├── conformance.pb.go │ │ │ │ │ └── conformance.proto │ │ │ │ ├── bench.md │ │ │ │ ├── codec │ │ │ │ ├── codec.go │ │ │ │ └── codec_test.go │ │ │ │ ├── custom_types.md │ │ │ │ ├── extensions.md │ │ │ │ ├── gogoproto │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── gogo.pb.go │ │ │ │ ├── gogo.pb.golden │ │ │ │ ├── gogo.proto │ │ │ │ └── helper.go │ │ │ │ ├── gogoreplace │ │ │ │ └── main.go │ │ │ │ ├── install-protobuf.sh │ │ │ │ ├── io │ │ │ │ ├── full.go │ │ │ │ ├── io.go │ │ │ │ ├── io_test.go │ │ │ │ ├── uint32.go │ │ │ │ └── varint.go │ │ │ │ ├── jsonpb │ │ │ │ ├── jsonpb.go │ │ │ │ ├── jsonpb_test.go │ │ │ │ └── jsonpb_test_proto │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bytes.go │ │ │ │ │ ├── more_test_objects.pb.go │ │ │ │ │ ├── more_test_objects.proto │ │ │ │ │ ├── test_objects.pb.go │ │ │ │ │ └── test_objects.proto │ │ │ │ ├── plugin │ │ │ │ ├── compare │ │ │ │ │ ├── compare.go │ │ │ │ │ └── comparetest.go │ │ │ │ ├── defaultcheck │ │ │ │ │ └── defaultcheck.go │ │ │ │ ├── description │ │ │ │ │ ├── description.go │ │ │ │ │ └── descriptiontest.go │ │ │ │ ├── embedcheck │ │ │ │ │ └── embedcheck.go │ │ │ │ ├── enumstringer │ │ │ │ │ └── enumstringer.go │ │ │ │ ├── equal │ │ │ │ │ ├── equal.go │ │ │ │ │ └── equaltest.go │ │ │ │ ├── face │ │ │ │ │ ├── face.go │ │ │ │ │ └── facetest.go │ │ │ │ ├── gostring │ │ │ │ │ ├── gostring.go │ │ │ │ │ └── gostringtest.go │ │ │ │ ├── marshalto │ │ │ │ │ └── marshalto.go │ │ │ │ ├── oneofcheck │ │ │ │ │ └── oneofcheck.go │ │ │ │ ├── populate │ │ │ │ │ └── populate.go │ │ │ │ ├── size │ │ │ │ │ ├── size.go │ │ │ │ │ └── sizetest.go │ │ │ │ ├── stringer │ │ │ │ │ ├── stringer.go │ │ │ │ │ └── stringertest.go │ │ │ │ ├── testgen │ │ │ │ │ └── testgen.go │ │ │ │ ├── union │ │ │ │ │ ├── union.go │ │ │ │ │ └── uniontest.go │ │ │ │ └── unmarshal │ │ │ │ │ └── unmarshal.go │ │ │ │ ├── proto │ │ │ │ ├── Makefile │ │ │ │ ├── all_test.go │ │ │ │ ├── any_test.go │ │ │ │ ├── clone.go │ │ │ │ ├── clone_test.go │ │ │ │ ├── decode.go │ │ │ │ ├── decode_gogo.go │ │ │ │ ├── decode_test.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration_gogo.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_gogo.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── equal.go │ │ │ │ ├── equal_test.go │ │ │ │ ├── extensions.go │ │ │ │ ├── extensions_gogo.go │ │ │ │ ├── extensions_test.go │ │ │ │ ├── lib.go │ │ │ │ ├── lib_gogo.go │ │ │ │ ├── map_test.go │ │ │ │ ├── message_set.go │ │ │ │ ├── message_set_test.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_reflect_gogo.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── pointer_unsafe_gogo.go │ │ │ │ ├── properties.go │ │ │ │ ├── properties_gogo.go │ │ │ │ ├── proto3_proto │ │ │ │ │ ├── proto3.pb.go │ │ │ │ │ └── proto3.proto │ │ │ │ ├── proto3_test.go │ │ │ │ ├── size2_test.go │ │ │ │ ├── size_test.go │ │ │ │ ├── skip_gogo.go │ │ │ │ ├── testdata │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── golden_test.go │ │ │ │ │ ├── test.pb.go │ │ │ │ │ ├── test.pb.go.golden │ │ │ │ │ └── test.proto │ │ │ │ ├── text.go │ │ │ │ ├── text_gogo.go │ │ │ │ ├── text_parser.go │ │ │ │ ├── text_parser_test.go │ │ │ │ ├── text_test.go │ │ │ │ ├── timestamp.go │ │ │ │ └── timestamp_gogo.go │ │ │ │ ├── protobuf │ │ │ │ ├── Makefile │ │ │ │ └── google │ │ │ │ │ └── protobuf │ │ │ │ │ ├── any.proto │ │ │ │ │ ├── compiler │ │ │ │ │ └── plugin.proto │ │ │ │ │ ├── descriptor.proto │ │ │ │ │ ├── duration.proto │ │ │ │ │ ├── empty.proto │ │ │ │ │ ├── field_mask.proto │ │ │ │ │ ├── struct.proto │ │ │ │ │ ├── timestamp.proto │ │ │ │ │ └── wrappers.proto │ │ │ │ ├── protoc-gen-combo │ │ │ │ └── combo.go │ │ │ │ ├── protoc-gen-gofast │ │ │ │ └── main.go │ │ │ │ ├── protoc-gen-gogo │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── descriptor.go │ │ │ │ │ ├── descriptor.pb.go │ │ │ │ │ ├── descriptor_gostring.gen.go │ │ │ │ │ ├── descriptor_test.go │ │ │ │ │ └── helper.go │ │ │ │ ├── doc.go │ │ │ │ ├── generator │ │ │ │ │ ├── generator.go │ │ │ │ │ ├── helper.go │ │ │ │ │ └── name_test.go │ │ │ │ ├── grpc │ │ │ │ │ └── grpc.go │ │ │ │ ├── main.go │ │ │ │ ├── plugin │ │ │ │ │ ├── Makefile │ │ │ │ │ └── plugin.pb.go │ │ │ │ └── testdata │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── extension_base.proto │ │ │ │ │ ├── extension_extra.proto │ │ │ │ │ ├── extension_test.go │ │ │ │ │ ├── extension_user.proto │ │ │ │ │ ├── grpc.proto │ │ │ │ │ ├── imp.pb.go.golden │ │ │ │ │ ├── imp.proto │ │ │ │ │ ├── imp2.proto │ │ │ │ │ ├── imp3.proto │ │ │ │ │ ├── main_test.go │ │ │ │ │ ├── multi │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── multi1.proto │ │ │ │ │ ├── multi2.proto │ │ │ │ │ └── multi3.proto │ │ │ │ │ ├── my_test │ │ │ │ │ ├── test.pb.go │ │ │ │ │ └── test.proto │ │ │ │ │ └── proto3.proto │ │ │ │ ├── protoc-gen-gogofast │ │ │ │ └── main.go │ │ │ │ ├── protoc-gen-gogofaster │ │ │ │ └── main.go │ │ │ │ ├── protoc-gen-gogoslick │ │ │ │ └── main.go │ │ │ │ ├── protoc-gen-gogotypes │ │ │ │ └── main.go │ │ │ │ ├── protoc-gen-gostring │ │ │ │ └── main.go │ │ │ │ ├── protoc-min-version │ │ │ │ └── minversion.go │ │ │ │ ├── sortkeys │ │ │ │ └── sortkeys.go │ │ │ │ ├── test │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── asymetric-issue125 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asym.pb.go │ │ │ │ │ ├── asym.proto │ │ │ │ │ ├── asym_test.go │ │ │ │ │ ├── asympb_test.go │ │ │ │ │ └── pop.go │ │ │ │ ├── bug_test.go │ │ │ │ ├── casttype │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── casttype.proto │ │ │ │ │ ├── combos │ │ │ │ │ │ ├── both │ │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ │ ├── marshaler │ │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ │ ├── neither │ │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ │ ├── unmarshaler │ │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ └── mytypes.go │ │ │ │ ├── castvalue │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ ├── combos │ │ │ │ │ │ ├── both │ │ │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ │ │ └── mytypes.go │ │ │ │ │ │ ├── marshaler │ │ │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ │ │ └── mytypes.go │ │ │ │ │ │ ├── unmarshaler │ │ │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ │ │ └── mytypes.go │ │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ │ │ └── mytypes.go │ │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ │ │ └── mytypes.go │ │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ │ │ └── mytypes.go │ │ │ │ │ └── mytypes.go │ │ │ │ ├── combos │ │ │ │ │ ├── both │ │ │ │ │ │ ├── bug_test.go │ │ │ │ │ │ ├── t.go │ │ │ │ │ │ ├── thetest.pb.go │ │ │ │ │ │ ├── thetest.proto │ │ │ │ │ │ ├── thetestpb_test.go │ │ │ │ │ │ └── uuid.go │ │ │ │ │ ├── marshaler │ │ │ │ │ │ ├── bug_test.go │ │ │ │ │ │ ├── t.go │ │ │ │ │ │ ├── thetest.pb.go │ │ │ │ │ │ ├── thetest.proto │ │ │ │ │ │ ├── thetestpb_test.go │ │ │ │ │ │ └── uuid.go │ │ │ │ │ ├── unmarshaler │ │ │ │ │ │ ├── bug_test.go │ │ │ │ │ │ ├── t.go │ │ │ │ │ │ ├── thetest.pb.go │ │ │ │ │ │ ├── thetest.proto │ │ │ │ │ │ ├── thetestpb_test.go │ │ │ │ │ │ └── uuid.go │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ ├── bug_test.go │ │ │ │ │ │ ├── t.go │ │ │ │ │ │ ├── thetest.pb.go │ │ │ │ │ │ ├── thetest.proto │ │ │ │ │ │ ├── thetestpb_test.go │ │ │ │ │ │ └── uuid.go │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ ├── bug_test.go │ │ │ │ │ │ ├── t.go │ │ │ │ │ │ ├── thetest.pb.go │ │ │ │ │ │ ├── thetest.proto │ │ │ │ │ │ ├── thetestpb_test.go │ │ │ │ │ │ └── uuid.go │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ ├── bug_test.go │ │ │ │ │ │ ├── t.go │ │ │ │ │ │ ├── thetest.pb.go │ │ │ │ │ │ ├── thetest.proto │ │ │ │ │ │ ├── thetestpb_test.go │ │ │ │ │ │ └── uuid.go │ │ │ │ ├── custom-dash-type │ │ │ │ │ └── customdash.go │ │ │ │ ├── custom │ │ │ │ │ ├── custom.go │ │ │ │ │ └── custom_test.go │ │ │ │ ├── custombytesnonstruct │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── custombytesnonstruct_test.go │ │ │ │ │ ├── customtype.go │ │ │ │ │ ├── proto.pb.go │ │ │ │ │ └── proto.proto │ │ │ │ ├── dashfilename │ │ │ │ │ ├── dash-filename.proto │ │ │ │ │ ├── df_test.go │ │ │ │ │ └── doc.go │ │ │ │ ├── data │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── data.pb.go │ │ │ │ │ ├── data.proto │ │ │ │ │ └── datapb_test.go │ │ │ │ ├── defaultconflict │ │ │ │ │ ├── df.proto │ │ │ │ │ ├── dg.proto │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── nc.proto │ │ │ │ │ ├── nc_test.go │ │ │ │ │ ├── ne.proto │ │ │ │ │ └── nx.proto │ │ │ │ ├── embedconflict │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── eb.proto │ │ │ │ │ ├── ec.proto │ │ │ │ │ ├── ec_test.go │ │ │ │ │ ├── ee.proto │ │ │ │ │ ├── em.proto │ │ │ │ │ ├── en.proto │ │ │ │ │ └── er.proto │ │ │ │ ├── empty-issue70 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── empty.pb.go │ │ │ │ │ ├── empty.proto │ │ │ │ │ └── empty_test.go │ │ │ │ ├── enumcustomname │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── enumcustomname.pb.go │ │ │ │ │ └── enumcustomname.proto │ │ │ │ ├── enumdecl │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── enumdecl.pb.go │ │ │ │ │ ├── enumdecl.proto │ │ │ │ │ ├── enumdeclpb_test.go │ │ │ │ │ └── models.go │ │ │ │ ├── enumdecl_all │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── enumdeclall.pb.go │ │ │ │ │ ├── enumdeclall.proto │ │ │ │ │ ├── enumdeclallpb_test.go │ │ │ │ │ └── models.go │ │ │ │ ├── enumprefix │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── enumprefix.pb.go │ │ │ │ │ └── enumprefix.proto │ │ │ │ ├── enumstringer │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── enumstringer.pb.go │ │ │ │ │ ├── enumstringer.proto │ │ │ │ │ ├── enumstringerpb_test.go │ │ │ │ │ └── string.go │ │ │ │ ├── example │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── example.pb.go │ │ │ │ │ ├── example.proto │ │ │ │ │ ├── example_test.go │ │ │ │ │ └── examplepb_test.go │ │ │ │ ├── extension_test.go │ │ │ │ ├── filedotname │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── file.dot.pb.go │ │ │ │ │ ├── file.dot.proto │ │ │ │ │ └── file.dotpb_test.go │ │ │ │ ├── fuzztests │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── fuzz.pb.go │ │ │ │ │ ├── fuzz.proto │ │ │ │ │ └── fuzz_test.go │ │ │ │ ├── group │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── group.pb.go │ │ │ │ │ ├── group.proto │ │ │ │ │ └── grouppb_test.go │ │ │ │ ├── importdedup │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── importdedup_test.go │ │ │ │ │ ├── proto.pb.go │ │ │ │ │ ├── proto.proto │ │ │ │ │ └── subpkg │ │ │ │ │ │ ├── customtype.go │ │ │ │ │ │ ├── subproto.pb.go │ │ │ │ │ │ └── subproto.proto │ │ │ │ ├── indeximport-issue72 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.pb.go │ │ │ │ │ │ ├── index.proto │ │ │ │ │ │ └── indexpb_test.go │ │ │ │ │ ├── indeximport.pb.go │ │ │ │ │ ├── indeximport.proto │ │ │ │ │ └── indeximportpb_test.go │ │ │ │ ├── issue260 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── issue260.pb.go │ │ │ │ │ ├── issue260.proto │ │ │ │ │ ├── issue260pb_test.go │ │ │ │ │ └── models.go │ │ │ │ ├── issue261 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── issue261.pb.go │ │ │ │ │ └── issue261.proto │ │ │ │ ├── issue262 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── timefail.pb.go │ │ │ │ │ └── timefail.proto │ │ │ │ ├── issue34 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── issue34_test.go │ │ │ │ │ ├── proto.pb.go │ │ │ │ │ └── proto.proto │ │ │ │ ├── issue42order │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── issue42.pb.go │ │ │ │ │ ├── issue42.proto │ │ │ │ │ └── order_test.go │ │ │ │ ├── issue8 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── proto.pb.go │ │ │ │ │ ├── proto.proto │ │ │ │ │ └── protopb_test.go │ │ │ │ ├── mapsproto2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── combos │ │ │ │ │ │ ├── both │ │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ │ ├── marshaler │ │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ │ ├── neither │ │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ │ ├── unmarshaler │ │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── header.proto │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ └── mapsproto2_test.go.in │ │ │ │ ├── mixbench │ │ │ │ │ ├── marshal.txt │ │ │ │ │ ├── marshaler.txt │ │ │ │ │ ├── mixbench.go │ │ │ │ │ ├── unmarshal.txt │ │ │ │ │ ├── unmarshaler.txt │ │ │ │ │ ├── unsafe_marshaler.txt │ │ │ │ │ └── unsafe_unmarshaler.txt │ │ │ │ ├── moredefaults │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── md.pb.go │ │ │ │ │ ├── md.proto │ │ │ │ │ ├── md_test.go │ │ │ │ │ └── mdpb_test.go │ │ │ │ ├── nopackage │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── nopackage.pb.go │ │ │ │ │ ├── nopackage.proto │ │ │ │ │ └── nopackage_test.go │ │ │ │ ├── oneof │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── combos │ │ │ │ │ │ ├── both │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ ├── marshaler │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ ├── neither │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ ├── unmarshaler │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── one.proto │ │ │ │ ├── oneof3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── combos │ │ │ │ │ │ ├── both │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ ├── marshaler │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ ├── neither │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ ├── unmarshaler │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── one.proto │ │ │ │ ├── oneofembed │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── oneofembed.pb.go │ │ │ │ │ ├── oneofembed.proto │ │ │ │ │ └── oneofembedpb_test.go │ │ │ │ ├── packed │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── packed.pb.go │ │ │ │ │ ├── packed.proto │ │ │ │ │ └── packed_test.go │ │ │ │ ├── proto3extension │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── proto3ext.pb.go │ │ │ │ │ └── proto3ext.proto │ │ │ │ ├── protosize │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── protosize.pb.go │ │ │ │ │ ├── protosize.proto │ │ │ │ │ ├── protosize_test.go │ │ │ │ │ └── protosizepb_test.go │ │ │ │ ├── registration │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── registration.proto │ │ │ │ │ └── registration_test.go.in │ │ │ │ ├── required │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── requiredexample.pb.go │ │ │ │ │ ├── requiredexample.proto │ │ │ │ │ └── requiredexamplepb_test.go │ │ │ │ ├── sizerconflict │ │ │ │ │ ├── sizerconflict.proto │ │ │ │ │ └── sizerconflict_test.go │ │ │ │ ├── sizeunderscore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── sizeunderscore.pb.go │ │ │ │ │ ├── sizeunderscore.proto │ │ │ │ │ └── sizeunderscorepb_test.go │ │ │ │ ├── stdtypes │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── stdtypes.pb.go │ │ │ │ │ ├── stdtypes.proto │ │ │ │ │ └── stdtypespb_test.go │ │ │ │ ├── t.go │ │ │ │ ├── tags │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── tags.pb.go │ │ │ │ │ ├── tags.proto │ │ │ │ │ └── tags_test.go │ │ │ │ ├── theproto3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── combos │ │ │ │ │ │ ├── both │ │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ │ ├── marshaler │ │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ │ ├── neither │ │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ │ ├── unmarshaler │ │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── footer.proto │ │ │ │ │ ├── header.proto │ │ │ │ │ ├── maps.proto │ │ │ │ │ ├── proto3_test.go.in │ │ │ │ │ └── theproto3.proto │ │ │ │ ├── thetest.pb.go │ │ │ │ ├── thetest.proto │ │ │ │ ├── thetestpb_test.go │ │ │ │ ├── typedecl │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── models.go │ │ │ │ │ ├── typedecl.pb.go │ │ │ │ │ ├── typedecl.proto │ │ │ │ │ └── typedeclpb_test.go │ │ │ │ ├── typedecl_all │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── models.go │ │ │ │ │ ├── typedeclall.pb.go │ │ │ │ │ ├── typedeclall.proto │ │ │ │ │ └── typedeclallpb_test.go │ │ │ │ ├── types │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── combos │ │ │ │ │ │ ├── both │ │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ │ ├── marshaler │ │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ │ ├── neither │ │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ │ ├── unmarshaler │ │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ ├── types.proto │ │ │ │ │ └── types_test.go.in │ │ │ │ ├── unmarshalmerge │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── unmarshalmerge.pb.go │ │ │ │ │ ├── unmarshalmerge.proto │ │ │ │ │ ├── unmarshalmerge_test.go │ │ │ │ │ └── unmarshalmergepb_test.go │ │ │ │ ├── unrecognized │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── oldnew_test.go │ │ │ │ │ ├── unrecognized.pb.go │ │ │ │ │ ├── unrecognized.proto │ │ │ │ │ └── unrecognizedpb_test.go │ │ │ │ ├── unrecognizedgroup │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── oldnew_test.go │ │ │ │ │ ├── unrecognizedgroup.pb.go │ │ │ │ │ ├── unrecognizedgroup.proto │ │ │ │ │ └── unrecognizedgrouppb_test.go │ │ │ │ ├── uuid.go │ │ │ │ └── uuid_test.go │ │ │ │ ├── types │ │ │ │ ├── Makefile │ │ │ │ ├── any.go │ │ │ │ ├── any.pb.go │ │ │ │ ├── any_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration.pb.go │ │ │ │ ├── duration_gogo.go │ │ │ │ ├── duration_test.go │ │ │ │ ├── empty.pb.go │ │ │ │ ├── field_mask.pb.go │ │ │ │ ├── struct.pb.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── timestamp.pb.go │ │ │ │ ├── timestamp_gogo.go │ │ │ │ ├── timestamp_test.go │ │ │ │ └── wrappers.pb.go │ │ │ │ ├── vanity │ │ │ │ ├── command │ │ │ │ │ └── command.go │ │ │ │ ├── enum.go │ │ │ │ ├── field.go │ │ │ │ ├── file.go │ │ │ │ ├── foreach.go │ │ │ │ ├── msg.go │ │ │ │ └── test │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fast │ │ │ │ │ ├── gogovanity.pb.go │ │ │ │ │ ├── proto3.pb.go │ │ │ │ │ └── vanity.pb.go │ │ │ │ │ ├── faster │ │ │ │ │ ├── gogovanity.pb.go │ │ │ │ │ ├── proto3.pb.go │ │ │ │ │ └── vanity.pb.go │ │ │ │ │ ├── gofast │ │ │ │ │ └── .gitignore │ │ │ │ │ ├── gogovanity.proto │ │ │ │ │ ├── proto3.proto │ │ │ │ │ ├── slick │ │ │ │ │ ├── gogovanity.pb.go │ │ │ │ │ ├── proto3.pb.go │ │ │ │ │ └── vanity.pb.go │ │ │ │ │ ├── vanity.proto │ │ │ │ │ └── vanity_test.go │ │ │ │ └── version │ │ │ │ └── version.go │ │ ├── golang │ │ │ ├── glog │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── glog.go │ │ │ │ ├── glog_file.go │ │ │ │ └── glog_test.go │ │ │ └── protobuf │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Make.protobuf │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── _conformance │ │ │ │ ├── Makefile │ │ │ │ ├── conformance.go │ │ │ │ └── conformance_proto │ │ │ │ │ ├── conformance.pb.go │ │ │ │ │ └── conformance.proto │ │ │ │ ├── descriptor │ │ │ │ ├── descriptor.go │ │ │ │ └── descriptor_test.go │ │ │ │ ├── jsonpb │ │ │ │ ├── jsonpb.go │ │ │ │ ├── jsonpb_test.go │ │ │ │ └── jsonpb_test_proto │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── more_test_objects.pb.go │ │ │ │ │ ├── more_test_objects.proto │ │ │ │ │ ├── test_objects.pb.go │ │ │ │ │ └── test_objects.proto │ │ │ │ ├── proto │ │ │ │ ├── Makefile │ │ │ │ ├── all_test.go │ │ │ │ ├── any_test.go │ │ │ │ ├── clone.go │ │ │ │ ├── clone_test.go │ │ │ │ ├── decode.go │ │ │ │ ├── decode_test.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── equal.go │ │ │ │ ├── equal_test.go │ │ │ │ ├── extensions.go │ │ │ │ ├── extensions_test.go │ │ │ │ ├── lib.go │ │ │ │ ├── map_test.go │ │ │ │ ├── message_set.go │ │ │ │ ├── message_set_test.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── properties.go │ │ │ │ ├── proto3_proto │ │ │ │ │ ├── proto3.pb.go │ │ │ │ │ └── proto3.proto │ │ │ │ ├── proto3_test.go │ │ │ │ ├── size2_test.go │ │ │ │ ├── size_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── golden_test.go │ │ │ │ │ ├── test.pb.go │ │ │ │ │ └── test.proto │ │ │ │ ├── text.go │ │ │ │ ├── text_parser.go │ │ │ │ ├── text_parser_test.go │ │ │ │ └── text_test.go │ │ │ │ ├── protoc-gen-go │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── descriptor.pb.go │ │ │ │ │ └── descriptor.proto │ │ │ │ ├── doc.go │ │ │ │ ├── generator │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── generator.go │ │ │ │ │ └── name_test.go │ │ │ │ ├── grpc │ │ │ │ │ └── grpc.go │ │ │ │ ├── link_grpc.go │ │ │ │ ├── main.go │ │ │ │ ├── plugin │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── plugin.pb.go │ │ │ │ │ ├── plugin.pb.golden │ │ │ │ │ └── plugin.proto │ │ │ │ └── testdata │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── extension_base.proto │ │ │ │ │ ├── extension_extra.proto │ │ │ │ │ ├── extension_test.go │ │ │ │ │ ├── extension_user.proto │ │ │ │ │ ├── grpc.proto │ │ │ │ │ ├── imp.pb.go.golden │ │ │ │ │ ├── imp.proto │ │ │ │ │ ├── imp2.proto │ │ │ │ │ ├── imp3.proto │ │ │ │ │ ├── main_test.go │ │ │ │ │ ├── multi │ │ │ │ │ ├── multi1.proto │ │ │ │ │ ├── multi2.proto │ │ │ │ │ └── multi3.proto │ │ │ │ │ ├── my_test │ │ │ │ │ ├── test.pb.go │ │ │ │ │ ├── test.pb.go.golden │ │ │ │ │ └── test.proto │ │ │ │ │ └── proto3.proto │ │ │ │ └── ptypes │ │ │ │ ├── any.go │ │ │ │ ├── any │ │ │ │ ├── any.pb.go │ │ │ │ └── any.proto │ │ │ │ ├── any_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration │ │ │ │ ├── duration.pb.go │ │ │ │ └── duration.proto │ │ │ │ ├── duration_test.go │ │ │ │ ├── empty │ │ │ │ ├── empty.pb.go │ │ │ │ └── empty.proto │ │ │ │ ├── regen.sh │ │ │ │ ├── struct │ │ │ │ ├── struct.pb.go │ │ │ │ └── struct.proto │ │ │ │ ├── timestamp.go │ │ │ │ ├── timestamp │ │ │ │ ├── timestamp.pb.go │ │ │ │ └── timestamp.proto │ │ │ │ ├── timestamp_test.go │ │ │ │ └── wrappers │ │ │ │ ├── wrappers.pb.go │ │ │ │ └── wrappers.proto │ │ ├── google │ │ │ └── gofuzz │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── example_test.go │ │ │ │ ├── fuzz.go │ │ │ │ └── fuzz_test.go │ │ ├── googleapis │ │ │ └── gnostic │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis-install.sh │ │ │ │ ├── .travis.yml │ │ │ │ ├── COMPILE-PROTOS.sh │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── OpenAPIv2 │ │ │ │ ├── OpenAPIv2.go │ │ │ │ ├── OpenAPIv2.pb.go │ │ │ │ ├── OpenAPIv2.proto │ │ │ │ ├── README.md │ │ │ │ └── openapi-2.0.json │ │ │ │ ├── OpenAPIv3 │ │ │ │ ├── OpenAPIv3.go │ │ │ │ ├── OpenAPIv3.pb.go │ │ │ │ ├── OpenAPIv3.proto │ │ │ │ ├── README.md │ │ │ │ ├── openapi-3.0.json │ │ │ │ └── schema-generator │ │ │ │ │ ├── 3.0.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── main.go │ │ │ │ ├── README.md │ │ │ │ ├── apps │ │ │ │ ├── petstore-builder │ │ │ │ │ ├── README.md │ │ │ │ │ ├── main.go │ │ │ │ │ ├── petstore-v2.go │ │ │ │ │ └── petstore-v3.go │ │ │ │ └── report │ │ │ │ │ ├── README.md │ │ │ │ │ └── main.go │ │ │ │ ├── compiler │ │ │ │ ├── README.md │ │ │ │ ├── context.go │ │ │ │ ├── error.go │ │ │ │ ├── extension-handler.go │ │ │ │ ├── helpers.go │ │ │ │ ├── main.go │ │ │ │ └── reader.go │ │ │ │ ├── examples │ │ │ │ ├── README.md │ │ │ │ ├── errors │ │ │ │ │ ├── petstore-badproperties.yaml │ │ │ │ │ ├── petstore-missingversion.yaml │ │ │ │ │ └── petstore-unresolvedrefs.yaml │ │ │ │ ├── v2.0 │ │ │ │ │ ├── json │ │ │ │ │ │ ├── api-with-examples.json │ │ │ │ │ │ ├── petstore-expanded.json │ │ │ │ │ │ ├── petstore-minimal.json │ │ │ │ │ │ ├── petstore-separate │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ └── Error.json │ │ │ │ │ │ │ └── spec │ │ │ │ │ │ │ │ ├── NewPet.json │ │ │ │ │ │ │ │ ├── Pet.json │ │ │ │ │ │ │ │ ├── parameters.json │ │ │ │ │ │ │ │ └── swagger.json │ │ │ │ │ │ ├── petstore-simple.json │ │ │ │ │ │ ├── petstore-with-external-docs.json │ │ │ │ │ │ ├── petstore.json │ │ │ │ │ │ └── uber.json │ │ │ │ │ └── yaml │ │ │ │ │ │ ├── api-with-examples.yaml │ │ │ │ │ │ ├── petstore-expanded.yaml │ │ │ │ │ │ ├── petstore-minimal.yaml │ │ │ │ │ │ ├── petstore-separate │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── Error.yaml │ │ │ │ │ │ └── spec │ │ │ │ │ │ │ ├── NewPet.yaml │ │ │ │ │ │ │ ├── Pet.yaml │ │ │ │ │ │ │ ├── parameters.yaml │ │ │ │ │ │ │ ├── swagger.text │ │ │ │ │ │ │ └── swagger.yaml │ │ │ │ │ │ ├── petstore-simple.yaml │ │ │ │ │ │ ├── petstore-with-external-docs.yaml │ │ │ │ │ │ ├── petstore.yaml │ │ │ │ │ │ └── uber.yaml │ │ │ │ └── v3.0 │ │ │ │ │ ├── json │ │ │ │ │ └── petstore.json │ │ │ │ │ └── yaml │ │ │ │ │ └── petstore.yaml │ │ │ │ ├── extensions │ │ │ │ ├── COMPILE-EXTENSION.sh │ │ │ │ ├── README.md │ │ │ │ ├── extension.pb.go │ │ │ │ ├── extension.proto │ │ │ │ ├── extensions.go │ │ │ │ └── sample │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── x-sampleone.json │ │ │ │ │ └── x-sampletwo.json │ │ │ │ ├── generate-gnostic │ │ │ │ ├── README.md │ │ │ │ ├── domain.go │ │ │ │ ├── generate-compiler.go │ │ │ │ ├── generate-extension.go │ │ │ │ ├── generate-extension_test.go │ │ │ │ ├── generate-proto.go │ │ │ │ ├── helpers.go │ │ │ │ ├── main.go │ │ │ │ ├── test │ │ │ │ │ ├── errors │ │ │ │ │ │ ├── x-extension-name-collision.errors │ │ │ │ │ │ └── x-unsupportedprimitives.errors │ │ │ │ │ ├── x-extension-name-collision.json │ │ │ │ │ └── x-unsupportedprimitives.json │ │ │ │ └── types.go │ │ │ │ ├── gnostic.go │ │ │ │ ├── gnostic_test.go │ │ │ │ ├── jsonschema │ │ │ │ ├── README.md │ │ │ │ ├── display.go │ │ │ │ ├── models.go │ │ │ │ ├── operations.go │ │ │ │ ├── reader.go │ │ │ │ ├── schema.json │ │ │ │ └── writer.go │ │ │ │ ├── jsonwriter │ │ │ │ ├── README.md │ │ │ │ └── writer.go │ │ │ │ ├── plugins │ │ │ │ ├── README.md │ │ │ │ ├── gnostic-analyze │ │ │ │ │ ├── README.md │ │ │ │ │ ├── main.go │ │ │ │ │ ├── statistics │ │ │ │ │ │ └── stats.go │ │ │ │ │ └── summarize │ │ │ │ │ │ └── main.go │ │ │ │ ├── gnostic-go-generator │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── encode-templates │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── examples │ │ │ │ │ │ └── v2.0 │ │ │ │ │ │ │ ├── apis_guru │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ └── swagger.yaml │ │ │ │ │ │ │ ├── bookstore │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── bookstore.json │ │ │ │ │ │ │ ├── bookstore_test.go │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ ├── app.yaml │ │ │ │ │ │ │ │ ├── init.go │ │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ │ └── service.go │ │ │ │ │ │ │ └── xkcd │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ └── swagger.json │ │ │ │ │ ├── funcmap.go │ │ │ │ │ ├── gofmt.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── renderer.go │ │ │ │ │ ├── templates.go │ │ │ │ │ └── templates │ │ │ │ │ │ ├── client.go.tmpl │ │ │ │ │ │ ├── provider.go.tmpl │ │ │ │ │ │ ├── server.go.tmpl │ │ │ │ │ │ └── types.go.tmpl │ │ │ │ ├── gnostic-go-sample │ │ │ │ │ └── main.go │ │ │ │ ├── gnostic-swift-generator │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Package.swift │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Sources │ │ │ │ │ │ ├── TemplateEncoder │ │ │ │ │ │ │ └── main.swift │ │ │ │ │ │ └── gnostic-swift-generator │ │ │ │ │ │ │ ├── OpenAPIv2.pb.swift │ │ │ │ │ │ │ ├── Renderer.swift │ │ │ │ │ │ │ ├── TemplateFunctions.swift │ │ │ │ │ │ │ ├── TemplateLoader.swift │ │ │ │ │ │ │ ├── Templates.swift │ │ │ │ │ │ │ ├── helpers.swift │ │ │ │ │ │ │ ├── io.swift │ │ │ │ │ │ │ ├── main.swift │ │ │ │ │ │ │ └── plugin.pb.swift │ │ │ │ │ ├── Templates │ │ │ │ │ │ ├── client.swift.tmpl │ │ │ │ │ │ ├── fetch.swift.tmpl │ │ │ │ │ │ ├── server.swift.tmpl │ │ │ │ │ │ └── types.swift.tmpl │ │ │ │ │ └── examples │ │ │ │ │ │ └── bookstore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Package.swift │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── Sources │ │ │ │ │ │ └── Server │ │ │ │ │ │ │ └── main.swift │ │ │ │ │ │ ├── Tests │ │ │ │ │ │ ├── BookstoreTests │ │ │ │ │ │ │ └── BookstoreTests.swift │ │ │ │ │ │ └── LinuxMain.swift │ │ │ │ │ │ └── bookstore.json │ │ │ │ ├── gnostic-swift-sample │ │ │ │ │ ├── Package.swift │ │ │ │ │ └── Sources │ │ │ │ │ │ ├── OpenAPIv2.pb.swift │ │ │ │ │ │ ├── io.swift │ │ │ │ │ │ ├── main.swift │ │ │ │ │ │ └── plugin.pb.swift │ │ │ │ ├── plugin.pb.go │ │ │ │ └── plugin.proto │ │ │ │ ├── printer │ │ │ │ ├── README.md │ │ │ │ └── code.go │ │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ ├── errors │ │ │ │ │ ├── invalid-plugin-invocation.errors │ │ │ │ │ ├── petstore-badproperties.errors │ │ │ │ │ ├── petstore-missingversion.errors │ │ │ │ │ └── petstore-unresolvedrefs.errors │ │ │ │ ├── library-example-with-ext.json │ │ │ │ ├── v2.0 │ │ │ │ │ ├── petstore.text │ │ │ │ │ └── yaml │ │ │ │ │ │ └── petstore-separate │ │ │ │ │ │ └── spec │ │ │ │ │ │ └── swagger.text │ │ │ │ └── v3.0 │ │ │ │ │ └── petstore.text │ │ │ │ └── tools │ │ │ │ ├── README.md │ │ │ │ ├── format-schema │ │ │ │ └── main.go │ │ │ │ └── j2y2j │ │ │ │ └── main.go │ │ ├── howeyc │ │ │ └── gopass │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── OPENSOLARIS.LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── pass.go │ │ │ │ ├── pass_test.go │ │ │ │ ├── terminal.go │ │ │ │ └── terminal_solaris.go │ │ ├── imdario │ │ │ └── mergo │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── map.go │ │ │ │ ├── merge.go │ │ │ │ ├── mergo.go │ │ │ │ ├── mergo_test.go │ │ │ │ └── testdata │ │ │ │ ├── license.yml │ │ │ │ └── thing.yml │ │ ├── json-iterator │ │ │ └── go │ │ │ │ ├── .codecov.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Gopkg.lock │ │ │ │ ├── Gopkg.toml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── build.sh │ │ │ │ ├── compatible_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── extra │ │ │ │ ├── fuzzy_decoder.go │ │ │ │ ├── fuzzy_decoder_test.go │ │ │ │ ├── naming_strategy.go │ │ │ │ ├── naming_strategy_test.go │ │ │ │ ├── privat_fields.go │ │ │ │ ├── private_fields_test.go │ │ │ │ ├── time_as_int64_codec.go │ │ │ │ └── time_as_int64_codec_test.go │ │ │ │ ├── feature_adapter.go │ │ │ │ ├── feature_any.go │ │ │ │ ├── feature_any_array.go │ │ │ │ ├── feature_any_bool.go │ │ │ │ ├── feature_any_float.go │ │ │ │ ├── feature_any_int32.go │ │ │ │ ├── feature_any_int64.go │ │ │ │ ├── feature_any_invalid.go │ │ │ │ ├── feature_any_nil.go │ │ │ │ ├── feature_any_number.go │ │ │ │ ├── feature_any_object.go │ │ │ │ ├── feature_any_string.go │ │ │ │ ├── feature_any_uint32.go │ │ │ │ ├── feature_any_uint64.go │ │ │ │ ├── feature_config.go │ │ │ │ ├── feature_iter.go │ │ │ │ ├── feature_iter_array.go │ │ │ │ ├── feature_iter_float.go │ │ │ │ ├── feature_iter_int.go │ │ │ │ ├── feature_iter_object.go │ │ │ │ ├── feature_iter_skip.go │ │ │ │ ├── feature_iter_skip_sloppy.go │ │ │ │ ├── feature_iter_skip_strict.go │ │ │ │ ├── feature_iter_string.go │ │ │ │ ├── feature_json_number.go │ │ │ │ ├── feature_pool.go │ │ │ │ ├── feature_reflect.go │ │ │ │ ├── feature_reflect_array.go │ │ │ │ ├── feature_reflect_extension.go │ │ │ │ ├── feature_reflect_map.go │ │ │ │ ├── feature_reflect_native.go │ │ │ │ ├── feature_reflect_object.go │ │ │ │ ├── feature_reflect_slice.go │ │ │ │ ├── feature_reflect_struct_decoder.go │ │ │ │ ├── feature_stream.go │ │ │ │ ├── feature_stream_float.go │ │ │ │ ├── feature_stream_int.go │ │ │ │ ├── feature_stream_string.go │ │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ │ ├── jsoniter.go │ │ │ │ ├── jsoniter_1dot8_only_test.go │ │ │ │ ├── jsoniter_adapter_test.go │ │ │ │ ├── jsoniter_alias_test.go │ │ │ │ ├── jsoniter_any_array_test.go │ │ │ │ ├── jsoniter_any_bool_test.go │ │ │ │ ├── jsoniter_any_float_test.go │ │ │ │ ├── jsoniter_any_int_test.go │ │ │ │ ├── jsoniter_any_map_test.go │ │ │ │ ├── jsoniter_any_null_test.go │ │ │ │ ├── jsoniter_any_object_test.go │ │ │ │ ├── jsoniter_any_string_test.go │ │ │ │ ├── jsoniter_array_test.go │ │ │ │ ├── jsoniter_bool_test.go │ │ │ │ ├── jsoniter_customize_test.go │ │ │ │ ├── jsoniter_demo_test.go │ │ │ │ ├── jsoniter_encode_interface_test.go │ │ │ │ ├── jsoniter_enum_marshaler_test.go │ │ │ │ ├── jsoniter_fixed_array_test.go │ │ │ │ ├── jsoniter_float_test.go │ │ │ │ ├── jsoniter_int_test.go │ │ │ │ ├── jsoniter_interface_test.go │ │ │ │ ├── jsoniter_invalid_test.go │ │ │ │ ├── jsoniter_io_test.go │ │ │ │ ├── jsoniter_iterator_test.go │ │ │ │ ├── jsoniter_large_file_test.go │ │ │ │ ├── jsoniter_map_test.go │ │ │ │ ├── jsoniter_must_be_valid_test.go │ │ │ │ ├── jsoniter_nested_test.go │ │ │ │ ├── jsoniter_null_test.go │ │ │ │ ├── jsoniter_object_test.go │ │ │ │ ├── jsoniter_optional_test.go │ │ │ │ ├── jsoniter_raw_message_test.go │ │ │ │ ├── jsoniter_reader_test.go │ │ │ │ ├── jsoniter_reflect_native_test.go │ │ │ │ ├── jsoniter_skip_test.go │ │ │ │ ├── jsoniter_sloppy_test.go │ │ │ │ ├── jsoniter_stream_test.go │ │ │ │ ├── jsoniter_string_test.go │ │ │ │ ├── jsoniter_struct_decoder_test.go │ │ │ │ ├── jsoniter_struct_encoder_test.go │ │ │ │ ├── jsoniter_wrap_test.go │ │ │ │ ├── output_tests │ │ │ │ ├── array │ │ │ │ │ ├── array │ │ │ │ │ │ ├── bool │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── byte │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── float64 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── int32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── uint8 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── map │ │ │ │ │ │ ├── int32_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── string_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_map │ │ │ │ │ │ ├── int32_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── string_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_slice │ │ │ │ │ │ ├── bool │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── byte │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── float64 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── int32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── uint8 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_struct_various │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── slice │ │ │ │ │ │ ├── bool │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── byte │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── float64 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── int32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── uint8 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_empty │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_empty_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_various │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── builtins │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── bool_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float32_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int16 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int16_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int8_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── uint16 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── uint16_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── uint32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── uint32_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── uint8_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uintptr │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── caseless_unmarshal │ │ │ │ │ ├── caseless_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── json_marshal │ │ │ │ │ ├── string_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_field │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── struct_field_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── map │ │ │ │ │ ├── int16 │ │ │ │ │ │ └── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ └── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int64 │ │ │ │ │ │ └── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int8 │ │ │ │ │ │ └── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── array_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── bool │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── byte │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── float64 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── int32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── map_string_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_array_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_bool │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_float64 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_int32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_map_string_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_slice_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_struct_various │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_uint8 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── slice_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string_alias │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── struct_empty │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── struct_empty_alias │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── struct_ptr_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── struct_various │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── uint8 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string_alias │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── string_alias │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── uint16 │ │ │ │ │ │ └── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── uint32 │ │ │ │ │ │ └── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ └── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── map_key_text_marshal │ │ │ │ │ ├── string_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── struct │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── marshal_fail_case.go │ │ │ │ ├── partial_unmarshal │ │ │ │ │ ├── partial_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── slice │ │ │ │ │ ├── array │ │ │ │ │ │ ├── bool │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── byte │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── float64 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── int32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── uint8 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── map │ │ │ │ │ │ ├── int32_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── string_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_array │ │ │ │ │ │ ├── bool │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── byte │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── float64 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── int32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── uint8 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_map │ │ │ │ │ │ ├── int32_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── string_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_slice │ │ │ │ │ │ ├── bool │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── byte │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── float64 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── int32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── uint8 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_struct_various │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── slice │ │ │ │ │ │ ├── bool │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── byte │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── float64 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── int32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── uint8 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_empty │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_empty_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_various │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── struct │ │ │ │ │ ├── alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── anonymous │ │ │ │ │ │ ├── no_overlap │ │ │ │ │ │ │ ├── float64 │ │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── int32 │ │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── json_marshal │ │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── map_string_string │ │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── ptr_float64 │ │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── ptr_int32 │ │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── ptr_map_string_string │ │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── ptr_slice_string │ │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── ptr_struct_various │ │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── slice_string │ │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── string_with_tag │ │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── struct_various │ │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ └── text_marshal │ │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── overlap │ │ │ │ │ │ │ ├── different_levels │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── ignore_deeper_level │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── same_level_1_both_tagged │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── same_level_1_no_tags │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── same_level_1_tagged │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── same_level_2_both_tagged │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ ├── same_level_2_no_tags │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ └── same_level_2_tagged │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── array │ │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string_alias │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── strings │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── struct_strings │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── empty │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── empty_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── everything │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64s │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64s_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32s │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32s_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── map │ │ │ │ │ │ ├── int32_ptr_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── int32_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── int32_struct_strings │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string_ptr_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── string_struct_strings │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_float64_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_int32_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_ptr_struct_empty │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_ptr_struct_strings │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_struct_empty │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_struct_strings │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptrs_float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptrs_int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptrs_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── slice │ │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string_alias │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── strings │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── struct_strings │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── strings │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── strings_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── struct │ │ │ │ │ │ ├── empties │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── empty │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── empty_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── float32s │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── float64_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── int32s │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── strings │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── strings_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── struct_tags │ │ │ │ │ ├── fieldname │ │ │ │ │ │ ├── embedded │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── struct │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── omitempty │ │ │ │ │ │ ├── bool │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── embedded │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── float32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── int32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── map_string_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_bool │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_float32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_int32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_map_string_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_slice_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_string_json_marshal │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_string_text_marshal │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_struct_json_marshal │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_struct_text_marshal │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_uint32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── slice_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string_json_marshal │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string_text_marshal │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── struct │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── struct_json_marshal │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── struct_text_marshal │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── uint32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ └── string │ │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── float32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── int16 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── int8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── uint16 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── uint32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ └── text_marshal │ │ │ │ │ ├── string_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_field │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ └── struct_field_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── skip_tests │ │ │ │ ├── array │ │ │ │ │ ├── inputs.go │ │ │ │ │ └── skip_test.go │ │ │ │ ├── number │ │ │ │ │ ├── inputs.go │ │ │ │ │ └── skip_test.go │ │ │ │ ├── object │ │ │ │ │ ├── inputs.go │ │ │ │ │ └── skip_test.go │ │ │ │ └── string │ │ │ │ │ ├── inputs.go │ │ │ │ │ └── skip_test.go │ │ │ │ ├── test.sh │ │ │ │ └── unmarshal_input_test.go │ │ └── spf13 │ │ │ └── pflag │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_slice.go │ │ │ ├── bool_slice_test.go │ │ │ ├── bool_test.go │ │ │ ├── count.go │ │ │ ├── count_test.go │ │ │ ├── duration.go │ │ │ ├── example_test.go │ │ │ ├── export_test.go │ │ │ ├── flag.go │ │ │ ├── flag_test.go │ │ │ ├── float32.go │ │ │ ├── float64.go │ │ │ ├── golangflag.go │ │ │ ├── golangflag_test.go │ │ │ ├── int.go │ │ │ ├── int16.go │ │ │ ├── int32.go │ │ │ ├── int64.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── int_slice_test.go │ │ │ ├── ip.go │ │ │ ├── ip_slice.go │ │ │ ├── ip_slice_test.go │ │ │ ├── ip_test.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── ipnet_test.go │ │ │ ├── string.go │ │ │ ├── string_array.go │ │ │ ├── string_array_test.go │ │ │ ├── string_slice.go │ │ │ ├── string_slice_test.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ ├── uint_slice.go │ │ │ ├── uint_slice_test.go │ │ │ └── verify │ │ │ ├── all.sh │ │ │ ├── gofmt.sh │ │ │ └── golint.sh │ │ ├── golang.org │ │ └── x │ │ │ ├── crypto │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README.md │ │ │ ├── acme │ │ │ │ ├── acme.go │ │ │ │ ├── acme_test.go │ │ │ │ ├── autocert │ │ │ │ │ ├── autocert.go │ │ │ │ │ ├── autocert_test.go │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── cache_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── listener.go │ │ │ │ │ ├── renewal.go │ │ │ │ │ └── renewal_test.go │ │ │ │ ├── jws.go │ │ │ │ ├── jws_test.go │ │ │ │ ├── types.go │ │ │ │ └── types_test.go │ │ │ ├── bcrypt │ │ │ │ ├── base64.go │ │ │ │ ├── bcrypt.go │ │ │ │ └── bcrypt_test.go │ │ │ ├── blake2b │ │ │ │ ├── blake2b.go │ │ │ │ ├── blake2bAVX2_amd64.go │ │ │ │ ├── blake2bAVX2_amd64.s │ │ │ │ ├── blake2b_amd64.go │ │ │ │ ├── blake2b_amd64.s │ │ │ │ ├── blake2b_generic.go │ │ │ │ ├── blake2b_ref.go │ │ │ │ ├── blake2b_test.go │ │ │ │ ├── blake2x.go │ │ │ │ └── register.go │ │ │ ├── blake2s │ │ │ │ ├── blake2s.go │ │ │ │ ├── blake2s_386.go │ │ │ │ ├── blake2s_386.s │ │ │ │ ├── blake2s_amd64.go │ │ │ │ ├── blake2s_amd64.s │ │ │ │ ├── blake2s_generic.go │ │ │ │ ├── blake2s_ref.go │ │ │ │ ├── blake2s_test.go │ │ │ │ ├── blake2x.go │ │ │ │ └── register.go │ │ │ ├── blowfish │ │ │ │ ├── block.go │ │ │ │ ├── blowfish_test.go │ │ │ │ ├── cipher.go │ │ │ │ └── const.go │ │ │ ├── bn256 │ │ │ │ ├── bn256.go │ │ │ │ ├── bn256_test.go │ │ │ │ ├── constants.go │ │ │ │ ├── curve.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gfp12.go │ │ │ │ ├── gfp2.go │ │ │ │ ├── gfp6.go │ │ │ │ ├── optate.go │ │ │ │ └── twist.go │ │ │ ├── cast5 │ │ │ │ ├── cast5.go │ │ │ │ └── cast5_test.go │ │ │ ├── chacha20poly1305 │ │ │ │ ├── chacha20poly1305.go │ │ │ │ ├── chacha20poly1305_amd64.go │ │ │ │ ├── chacha20poly1305_amd64.s │ │ │ │ ├── chacha20poly1305_generic.go │ │ │ │ ├── chacha20poly1305_noasm.go │ │ │ │ ├── chacha20poly1305_test.go │ │ │ │ ├── chacha20poly1305_vectors_test.go │ │ │ │ └── internal │ │ │ │ │ └── chacha20 │ │ │ │ │ ├── chacha_generic.go │ │ │ │ │ └── chacha_test.go │ │ │ ├── codereview.cfg │ │ │ ├── cryptobyte │ │ │ │ ├── asn1.go │ │ │ │ ├── asn1_test.go │ │ │ │ ├── builder.go │ │ │ │ ├── cryptobyte_test.go │ │ │ │ ├── example_test.go │ │ │ │ └── string.go │ │ │ ├── curve25519 │ │ │ │ ├── const_amd64.h │ │ │ │ ├── const_amd64.s │ │ │ │ ├── cswap_amd64.s │ │ │ │ ├── curve25519.go │ │ │ │ ├── curve25519_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── freeze_amd64.s │ │ │ │ ├── ladderstep_amd64.s │ │ │ │ ├── mont25519_amd64.go │ │ │ │ ├── mul_amd64.s │ │ │ │ └── square_amd64.s │ │ │ ├── ed25519 │ │ │ │ ├── ed25519.go │ │ │ │ ├── ed25519_test.go │ │ │ │ ├── internal │ │ │ │ │ └── edwards25519 │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ └── edwards25519.go │ │ │ │ └── testdata │ │ │ │ │ └── sign.input.gz │ │ │ ├── hkdf │ │ │ │ ├── example_test.go │ │ │ │ ├── hkdf.go │ │ │ │ └── hkdf_test.go │ │ │ ├── md4 │ │ │ │ ├── example_test.go │ │ │ │ ├── md4.go │ │ │ │ ├── md4_test.go │ │ │ │ └── md4block.go │ │ │ ├── nacl │ │ │ │ ├── auth │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── auth_test.go │ │ │ │ │ └── example_test.go │ │ │ │ ├── box │ │ │ │ │ ├── box.go │ │ │ │ │ ├── box_test.go │ │ │ │ │ └── example_test.go │ │ │ │ └── secretbox │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── secretbox.go │ │ │ │ │ └── secretbox_test.go │ │ │ ├── ocsp │ │ │ │ ├── ocsp.go │ │ │ │ └── ocsp_test.go │ │ │ ├── openpgp │ │ │ │ ├── armor │ │ │ │ │ ├── armor.go │ │ │ │ │ ├── armor_test.go │ │ │ │ │ └── encode.go │ │ │ │ ├── canonical_text.go │ │ │ │ ├── canonical_text_test.go │ │ │ │ ├── clearsign │ │ │ │ │ ├── clearsign.go │ │ │ │ │ └── clearsign_test.go │ │ │ │ ├── elgamal │ │ │ │ │ ├── elgamal.go │ │ │ │ │ └── elgamal_test.go │ │ │ │ ├── errors │ │ │ │ │ └── errors.go │ │ │ │ ├── keys.go │ │ │ │ ├── keys_test.go │ │ │ │ ├── packet │ │ │ │ │ ├── compressed.go │ │ │ │ │ ├── compressed_test.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── encrypted_key.go │ │ │ │ │ ├── encrypted_key_test.go │ │ │ │ │ ├── literal.go │ │ │ │ │ ├── ocfb.go │ │ │ │ │ ├── ocfb_test.go │ │ │ │ │ ├── one_pass_signature.go │ │ │ │ │ ├── opaque.go │ │ │ │ │ ├── opaque_test.go │ │ │ │ │ ├── packet.go │ │ │ │ │ ├── packet_test.go │ │ │ │ │ ├── private_key.go │ │ │ │ │ ├── private_key_test.go │ │ │ │ │ ├── public_key.go │ │ │ │ │ ├── public_key_test.go │ │ │ │ │ ├── public_key_v3.go │ │ │ │ │ ├── public_key_v3_test.go │ │ │ │ │ ├── reader.go │ │ │ │ │ ├── signature.go │ │ │ │ │ ├── signature_test.go │ │ │ │ │ ├── signature_v3.go │ │ │ │ │ ├── signature_v3_test.go │ │ │ │ │ ├── symmetric_key_encrypted.go │ │ │ │ │ ├── symmetric_key_encrypted_test.go │ │ │ │ │ ├── symmetrically_encrypted.go │ │ │ │ │ ├── symmetrically_encrypted_test.go │ │ │ │ │ ├── userattribute.go │ │ │ │ │ ├── userattribute_test.go │ │ │ │ │ ├── userid.go │ │ │ │ │ └── userid_test.go │ │ │ │ ├── read.go │ │ │ │ ├── read_test.go │ │ │ │ ├── s2k │ │ │ │ │ ├── s2k.go │ │ │ │ │ └── s2k_test.go │ │ │ │ ├── write.go │ │ │ │ └── write_test.go │ │ │ ├── otr │ │ │ │ ├── libotr_test_helper.c │ │ │ │ ├── otr.go │ │ │ │ ├── otr_test.go │ │ │ │ └── smp.go │ │ │ ├── pbkdf2 │ │ │ │ ├── pbkdf2.go │ │ │ │ └── pbkdf2_test.go │ │ │ ├── pkcs12 │ │ │ │ ├── bmp-string.go │ │ │ │ ├── bmp-string_test.go │ │ │ │ ├── crypto.go │ │ │ │ ├── crypto_test.go │ │ │ │ ├── errors.go │ │ │ │ ├── internal │ │ │ │ │ └── rc2 │ │ │ │ │ │ ├── bench_test.go │ │ │ │ │ │ ├── rc2.go │ │ │ │ │ │ └── rc2_test.go │ │ │ │ ├── mac.go │ │ │ │ ├── mac_test.go │ │ │ │ ├── pbkdf.go │ │ │ │ ├── pbkdf_test.go │ │ │ │ ├── pkcs12.go │ │ │ │ ├── pkcs12_test.go │ │ │ │ └── safebags.go │ │ │ ├── poly1305 │ │ │ │ ├── poly1305.go │ │ │ │ ├── poly1305_test.go │ │ │ │ ├── sum_amd64.go │ │ │ │ ├── sum_amd64.s │ │ │ │ ├── sum_arm.go │ │ │ │ ├── sum_arm.s │ │ │ │ └── sum_ref.go │ │ │ ├── ripemd160 │ │ │ │ ├── ripemd160.go │ │ │ │ ├── ripemd160_test.go │ │ │ │ └── ripemd160block.go │ │ │ ├── salsa20 │ │ │ │ ├── salsa │ │ │ │ │ ├── hsalsa20.go │ │ │ │ │ ├── salsa2020_amd64.s │ │ │ │ │ ├── salsa208.go │ │ │ │ │ ├── salsa20_amd64.go │ │ │ │ │ ├── salsa20_ref.go │ │ │ │ │ └── salsa_test.go │ │ │ │ ├── salsa20.go │ │ │ │ └── salsa20_test.go │ │ │ ├── scrypt │ │ │ │ ├── scrypt.go │ │ │ │ └── scrypt_test.go │ │ │ ├── sha3 │ │ │ │ ├── doc.go │ │ │ │ ├── hashes.go │ │ │ │ ├── keccakf.go │ │ │ │ ├── keccakf_amd64.go │ │ │ │ ├── keccakf_amd64.s │ │ │ │ ├── register.go │ │ │ │ ├── sha3.go │ │ │ │ ├── sha3_test.go │ │ │ │ ├── shake.go │ │ │ │ ├── testdata │ │ │ │ │ └── keccakKats.json.deflate │ │ │ │ ├── xor.go │ │ │ │ ├── xor_generic.go │ │ │ │ └── xor_unaligned.go │ │ │ ├── ssh │ │ │ │ ├── agent │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── forward.go │ │ │ │ │ ├── keyring.go │ │ │ │ │ ├── keyring_test.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── server_test.go │ │ │ │ │ └── testdata_test.go │ │ │ │ ├── benchmark_test.go │ │ │ │ ├── buffer.go │ │ │ │ ├── buffer_test.go │ │ │ │ ├── certs.go │ │ │ │ ├── certs_test.go │ │ │ │ ├── channel.go │ │ │ │ ├── cipher.go │ │ │ │ ├── cipher_test.go │ │ │ │ ├── client.go │ │ │ │ ├── client_auth.go │ │ │ │ ├── client_auth_test.go │ │ │ │ ├── client_test.go │ │ │ │ ├── common.go │ │ │ │ ├── connection.go │ │ │ │ ├── doc.go │ │ │ │ ├── example_test.go │ │ │ │ ├── handshake.go │ │ │ │ ├── handshake_test.go │ │ │ │ ├── kex.go │ │ │ │ ├── kex_test.go │ │ │ │ ├── keys.go │ │ │ │ ├── keys_test.go │ │ │ │ ├── knownhosts │ │ │ │ │ ├── knownhosts.go │ │ │ │ │ └── knownhosts_test.go │ │ │ │ ├── mac.go │ │ │ │ ├── mempipe_test.go │ │ │ │ ├── messages.go │ │ │ │ ├── messages_test.go │ │ │ │ ├── mux.go │ │ │ │ ├── mux_test.go │ │ │ │ ├── server.go │ │ │ │ ├── session.go │ │ │ │ ├── session_test.go │ │ │ │ ├── streamlocal.go │ │ │ │ ├── tcpip.go │ │ │ │ ├── tcpip_test.go │ │ │ │ ├── terminal │ │ │ │ │ ├── terminal.go │ │ │ │ │ ├── terminal_test.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── util_bsd.go │ │ │ │ │ ├── util_linux.go │ │ │ │ │ ├── util_plan9.go │ │ │ │ │ ├── util_solaris.go │ │ │ │ │ └── util_windows.go │ │ │ │ ├── test │ │ │ │ │ ├── agent_unix_test.go │ │ │ │ │ ├── cert_test.go │ │ │ │ │ ├── dial_unix_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── forward_unix_test.go │ │ │ │ │ ├── session_test.go │ │ │ │ │ ├── test_unix_test.go │ │ │ │ │ └── testdata_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── doc.go │ │ │ │ │ └── keys.go │ │ │ │ ├── testdata_test.go │ │ │ │ ├── transport.go │ │ │ │ └── transport_test.go │ │ │ ├── tea │ │ │ │ ├── cipher.go │ │ │ │ └── tea_test.go │ │ │ ├── twofish │ │ │ │ ├── twofish.go │ │ │ │ └── twofish_test.go │ │ │ ├── xtea │ │ │ │ ├── block.go │ │ │ │ ├── cipher.go │ │ │ │ └── xtea_test.go │ │ │ └── xts │ │ │ │ ├── xts.go │ │ │ │ └── xts_test.go │ │ │ ├── net │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README │ │ │ ├── bpf │ │ │ │ ├── asm.go │ │ │ │ ├── constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── instructions.go │ │ │ │ ├── instructions_test.go │ │ │ │ ├── setter.go │ │ │ │ ├── testdata │ │ │ │ │ ├── all_instructions.bpf │ │ │ │ │ └── all_instructions.txt │ │ │ │ ├── vm.go │ │ │ │ ├── vm_aluop_test.go │ │ │ │ ├── vm_bpf_test.go │ │ │ │ ├── vm_extension_test.go │ │ │ │ ├── vm_instructions.go │ │ │ │ ├── vm_jump_test.go │ │ │ │ ├── vm_load_test.go │ │ │ │ ├── vm_ret_test.go │ │ │ │ ├── vm_scratch_test.go │ │ │ │ └── vm_test.go │ │ │ ├── codereview.cfg │ │ │ ├── context │ │ │ │ ├── context.go │ │ │ │ ├── context_test.go │ │ │ │ ├── ctxhttp │ │ │ │ │ ├── ctxhttp.go │ │ │ │ │ ├── ctxhttp_17_test.go │ │ │ │ │ ├── ctxhttp_pre17.go │ │ │ │ │ ├── ctxhttp_pre17_test.go │ │ │ │ │ └── ctxhttp_test.go │ │ │ │ ├── go17.go │ │ │ │ ├── go19.go │ │ │ │ ├── pre_go17.go │ │ │ │ ├── pre_go19.go │ │ │ │ └── withtimeout_test.go │ │ │ ├── dict │ │ │ │ └── dict.go │ │ │ ├── dns │ │ │ │ └── dnsmessage │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── message.go │ │ │ │ │ └── message_test.go │ │ │ ├── html │ │ │ │ ├── atom │ │ │ │ │ ├── atom.go │ │ │ │ │ ├── atom_test.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── table.go │ │ │ │ │ └── table_test.go │ │ │ │ ├── charset │ │ │ │ │ ├── charset.go │ │ │ │ │ ├── charset_test.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── HTTP-charset.html │ │ │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ │ │ └── meta-content-attribute.html │ │ │ │ ├── const.go │ │ │ │ ├── doc.go │ │ │ │ ├── doctype.go │ │ │ │ ├── entity.go │ │ │ │ ├── entity_test.go │ │ │ │ ├── escape.go │ │ │ │ ├── escape_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── foreign.go │ │ │ │ ├── node.go │ │ │ │ ├── node_test.go │ │ │ │ ├── parse.go │ │ │ │ ├── parse_test.go │ │ │ │ ├── render.go │ │ │ │ ├── render_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── go1.html │ │ │ │ │ └── webkit │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ │ ├── adoption02.dat │ │ │ │ │ │ ├── comments01.dat │ │ │ │ │ │ ├── doctype01.dat │ │ │ │ │ │ ├── entities01.dat │ │ │ │ │ │ ├── entities02.dat │ │ │ │ │ │ ├── html5test-com.dat │ │ │ │ │ │ ├── inbody01.dat │ │ │ │ │ │ ├── isindex.dat │ │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ │ │ ├── scriptdata01.dat │ │ │ │ │ │ ├── scripted │ │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ │ └── webkit01.dat │ │ │ │ │ │ ├── tables01.dat │ │ │ │ │ │ ├── tests1.dat │ │ │ │ │ │ ├── tests10.dat │ │ │ │ │ │ ├── tests11.dat │ │ │ │ │ │ ├── tests12.dat │ │ │ │ │ │ ├── tests14.dat │ │ │ │ │ │ ├── tests15.dat │ │ │ │ │ │ ├── tests16.dat │ │ │ │ │ │ ├── tests17.dat │ │ │ │ │ │ ├── tests18.dat │ │ │ │ │ │ ├── tests19.dat │ │ │ │ │ │ ├── tests2.dat │ │ │ │ │ │ ├── tests20.dat │ │ │ │ │ │ ├── tests21.dat │ │ │ │ │ │ ├── tests22.dat │ │ │ │ │ │ ├── tests23.dat │ │ │ │ │ │ ├── tests24.dat │ │ │ │ │ │ ├── tests25.dat │ │ │ │ │ │ ├── tests26.dat │ │ │ │ │ │ ├── tests3.dat │ │ │ │ │ │ ├── tests4.dat │ │ │ │ │ │ ├── tests5.dat │ │ │ │ │ │ ├── tests6.dat │ │ │ │ │ │ ├── tests7.dat │ │ │ │ │ │ ├── tests8.dat │ │ │ │ │ │ ├── tests9.dat │ │ │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ │ │ ├── tricky01.dat │ │ │ │ │ │ ├── webkit01.dat │ │ │ │ │ │ └── webkit02.dat │ │ │ │ ├── token.go │ │ │ │ └── token_test.go │ │ │ ├── http2 │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ciphers.go │ │ │ │ ├── ciphers_test.go │ │ │ │ ├── client_conn_pool.go │ │ │ │ ├── configure_transport.go │ │ │ │ ├── databuffer.go │ │ │ │ ├── databuffer_test.go │ │ │ │ ├── errors.go │ │ │ │ ├── errors_test.go │ │ │ │ ├── flow.go │ │ │ │ ├── flow_test.go │ │ │ │ ├── frame.go │ │ │ │ ├── frame_test.go │ │ │ │ ├── go16.go │ │ │ │ ├── go17.go │ │ │ │ ├── go17_not18.go │ │ │ │ ├── go18.go │ │ │ │ ├── go18_test.go │ │ │ │ ├── go19.go │ │ │ │ ├── go19_test.go │ │ │ │ ├── gotrack.go │ │ │ │ ├── gotrack_test.go │ │ │ │ ├── h2demo │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── h2demo.go │ │ │ │ │ ├── launch.go │ │ │ │ │ ├── rootCA.key │ │ │ │ │ ├── rootCA.pem │ │ │ │ │ ├── rootCA.srl │ │ │ │ │ ├── server.crt │ │ │ │ │ ├── server.key │ │ │ │ │ └── tmpl.go │ │ │ │ ├── h2i │ │ │ │ │ ├── README.md │ │ │ │ │ └── h2i.go │ │ │ │ ├── headermap.go │ │ │ │ ├── hpack │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── encode_test.go │ │ │ │ │ ├── hpack.go │ │ │ │ │ ├── hpack_test.go │ │ │ │ │ ├── huffman.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tables_test.go │ │ │ │ ├── http2.go │ │ │ │ ├── http2_test.go │ │ │ │ ├── not_go16.go │ │ │ │ ├── not_go17.go │ │ │ │ ├── not_go18.go │ │ │ │ ├── not_go19.go │ │ │ │ ├── pipe.go │ │ │ │ ├── pipe_test.go │ │ │ │ ├── server.go │ │ │ │ ├── server_push_test.go │ │ │ │ ├── server_test.go │ │ │ │ ├── testdata │ │ │ │ │ └── draft-ietf-httpbis-http2.xml │ │ │ │ ├── transport.go │ │ │ │ ├── transport_test.go │ │ │ │ ├── write.go │ │ │ │ ├── writesched.go │ │ │ │ ├── writesched_priority.go │ │ │ │ ├── writesched_priority_test.go │ │ │ │ ├── writesched_random.go │ │ │ │ ├── writesched_random_test.go │ │ │ │ ├── writesched_test.go │ │ │ │ └── z_spec_test.go │ │ │ ├── icmp │ │ │ │ ├── dstunreach.go │ │ │ │ ├── echo.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── example_test.go │ │ │ │ ├── extension.go │ │ │ │ ├── extension_test.go │ │ │ │ ├── helper_posix.go │ │ │ │ ├── interface.go │ │ │ │ ├── ipv4.go │ │ │ │ ├── ipv4_test.go │ │ │ │ ├── ipv6.go │ │ │ │ ├── listen_posix.go │ │ │ │ ├── listen_stub.go │ │ │ │ ├── message.go │ │ │ │ ├── message_test.go │ │ │ │ ├── messagebody.go │ │ │ │ ├── mpls.go │ │ │ │ ├── multipart.go │ │ │ │ ├── multipart_test.go │ │ │ │ ├── packettoobig.go │ │ │ │ ├── paramprob.go │ │ │ │ ├── ping_test.go │ │ │ │ ├── sys_freebsd.go │ │ │ │ └── timeexceeded.go │ │ │ ├── idna │ │ │ │ ├── example_test.go │ │ │ │ ├── idna.go │ │ │ │ ├── idna_test.go │ │ │ │ ├── punycode.go │ │ │ │ ├── punycode_test.go │ │ │ │ ├── tables.go │ │ │ │ ├── trie.go │ │ │ │ └── trieval.go │ │ │ ├── internal │ │ │ │ ├── iana │ │ │ │ │ ├── const.go │ │ │ │ │ └── gen.go │ │ │ │ ├── nettest │ │ │ │ │ ├── helper_bsd.go │ │ │ │ │ ├── helper_nobsd.go │ │ │ │ │ ├── helper_posix.go │ │ │ │ │ ├── helper_stub.go │ │ │ │ │ ├── helper_unix.go │ │ │ │ │ ├── helper_windows.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── rlimit.go │ │ │ │ │ └── stack.go │ │ │ │ ├── socket │ │ │ │ │ ├── cmsghdr.go │ │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ │ │ ├── cmsghdr_stub.go │ │ │ │ │ ├── defs_darwin.go │ │ │ │ │ ├── defs_dragonfly.go │ │ │ │ │ ├── defs_freebsd.go │ │ │ │ │ ├── defs_linux.go │ │ │ │ │ ├── defs_netbsd.go │ │ │ │ │ ├── defs_openbsd.go │ │ │ │ │ ├── defs_solaris.go │ │ │ │ │ ├── error_unix.go │ │ │ │ │ ├── error_windows.go │ │ │ │ │ ├── iovec_32bit.go │ │ │ │ │ ├── iovec_64bit.go │ │ │ │ │ ├── iovec_solaris_64bit.go │ │ │ │ │ ├── iovec_stub.go │ │ │ │ │ ├── mmsghdr_stub.go │ │ │ │ │ ├── mmsghdr_unix.go │ │ │ │ │ ├── msghdr_bsd.go │ │ │ │ │ ├── msghdr_bsdvar.go │ │ │ │ │ ├── msghdr_linux.go │ │ │ │ │ ├── msghdr_linux_32bit.go │ │ │ │ │ ├── msghdr_linux_64bit.go │ │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ │ ├── msghdr_solaris_64bit.go │ │ │ │ │ ├── msghdr_stub.go │ │ │ │ │ ├── rawconn.go │ │ │ │ │ ├── rawconn_mmsg.go │ │ │ │ │ ├── rawconn_msg.go │ │ │ │ │ ├── rawconn_nommsg.go │ │ │ │ │ ├── rawconn_nomsg.go │ │ │ │ │ ├── rawconn_stub.go │ │ │ │ │ ├── reflect.go │ │ │ │ │ ├── socket.go │ │ │ │ │ ├── socket_go1_9_test.go │ │ │ │ │ ├── socket_test.go │ │ │ │ │ ├── sys.go │ │ │ │ │ ├── sys_bsd.go │ │ │ │ │ ├── sys_bsdvar.go │ │ │ │ │ ├── sys_darwin.go │ │ │ │ │ ├── sys_dragonfly.go │ │ │ │ │ ├── sys_linux.go │ │ │ │ │ ├── sys_linux_386.go │ │ │ │ │ ├── sys_linux_386.s │ │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ │ ├── sys_linux_arm.go │ │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ │ ├── sys_linux_mips.go │ │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ │ ├── sys_linux_s390x.go │ │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ │ ├── sys_netbsd.go │ │ │ │ │ ├── sys_posix.go │ │ │ │ │ ├── sys_solaris.go │ │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ │ ├── sys_stub.go │ │ │ │ │ ├── sys_unix.go │ │ │ │ │ ├── sys_windows.go │ │ │ │ │ ├── zsys_darwin_386.go │ │ │ │ │ ├── zsys_darwin_amd64.go │ │ │ │ │ ├── zsys_darwin_arm.go │ │ │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ │ ├── zsys_linux_386.go │ │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ │ ├── zsys_netbsd_386.go │ │ │ │ │ ├── zsys_netbsd_amd64.go │ │ │ │ │ ├── zsys_netbsd_arm.go │ │ │ │ │ ├── zsys_openbsd_386.go │ │ │ │ │ ├── zsys_openbsd_amd64.go │ │ │ │ │ ├── zsys_openbsd_arm.go │ │ │ │ │ └── zsys_solaris_amd64.go │ │ │ │ └── timeseries │ │ │ │ │ ├── timeseries.go │ │ │ │ │ └── timeseries_test.go │ │ │ ├── ipv4 │ │ │ │ ├── batch.go │ │ │ │ ├── bpf_test.go │ │ │ │ ├── control.go │ │ │ │ ├── control_bsd.go │ │ │ │ ├── control_pktinfo.go │ │ │ │ ├── control_stub.go │ │ │ │ ├── control_test.go │ │ │ │ ├── control_unix.go │ │ │ │ ├── control_windows.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_linux.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── dgramopt.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── genericopt.go │ │ │ │ ├── header.go │ │ │ │ ├── header_test.go │ │ │ │ ├── helper.go │ │ │ │ ├── iana.go │ │ │ │ ├── icmp.go │ │ │ │ ├── icmp_linux.go │ │ │ │ ├── icmp_stub.go │ │ │ │ ├── icmp_test.go │ │ │ │ ├── multicast_test.go │ │ │ │ ├── multicastlistener_test.go │ │ │ │ ├── multicastsockopt_test.go │ │ │ │ ├── packet.go │ │ │ │ ├── packet_go1_8.go │ │ │ │ ├── packet_go1_9.go │ │ │ │ ├── payload.go │ │ │ │ ├── payload_cmsg.go │ │ │ │ ├── payload_cmsg_go1_8.go │ │ │ │ ├── payload_cmsg_go1_9.go │ │ │ │ ├── payload_nocmsg.go │ │ │ │ ├── readwrite_go1_8_test.go │ │ │ │ ├── readwrite_go1_9_test.go │ │ │ │ ├── readwrite_test.go │ │ │ │ ├── sockopt.go │ │ │ │ ├── sockopt_posix.go │ │ │ │ ├── sockopt_stub.go │ │ │ │ ├── sys_asmreq.go │ │ │ │ ├── sys_asmreq_stub.go │ │ │ │ ├── sys_asmreqn.go │ │ │ │ ├── sys_asmreqn_stub.go │ │ │ │ ├── sys_bpf.go │ │ │ │ ├── sys_bpf_stub.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_freebsd.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_solaris.go │ │ │ │ ├── sys_ssmreq.go │ │ │ │ ├── sys_ssmreq_stub.go │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── unicast_test.go │ │ │ │ ├── unicastsockopt_test.go │ │ │ │ ├── zsys_darwin.go │ │ │ │ ├── zsys_dragonfly.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd.go │ │ │ │ ├── zsys_openbsd.go │ │ │ │ └── zsys_solaris.go │ │ │ ├── ipv6 │ │ │ │ ├── batch.go │ │ │ │ ├── bpf_test.go │ │ │ │ ├── control.go │ │ │ │ ├── control_rfc2292_unix.go │ │ │ │ ├── control_rfc3542_unix.go │ │ │ │ ├── control_stub.go │ │ │ │ ├── control_test.go │ │ │ │ ├── control_unix.go │ │ │ │ ├── control_windows.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_linux.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── dgramopt.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── genericopt.go │ │ │ │ ├── header.go │ │ │ │ ├── header_test.go │ │ │ │ ├── helper.go │ │ │ │ ├── iana.go │ │ │ │ ├── icmp.go │ │ │ │ ├── icmp_bsd.go │ │ │ │ ├── icmp_linux.go │ │ │ │ ├── icmp_solaris.go │ │ │ │ ├── icmp_stub.go │ │ │ │ ├── icmp_test.go │ │ │ │ ├── icmp_windows.go │ │ │ │ ├── mocktransponder_test.go │ │ │ │ ├── multicast_test.go │ │ │ │ ├── multicastlistener_test.go │ │ │ │ ├── multicastsockopt_test.go │ │ │ │ ├── payload.go │ │ │ │ ├── payload_cmsg.go │ │ │ │ ├── payload_cmsg_go1_8.go │ │ │ │ ├── payload_cmsg_go1_9.go │ │ │ │ ├── payload_nocmsg.go │ │ │ │ ├── readwrite_go1_8_test.go │ │ │ │ ├── readwrite_go1_9_test.go │ │ │ │ ├── readwrite_test.go │ │ │ │ ├── sockopt.go │ │ │ │ ├── sockopt_posix.go │ │ │ │ ├── sockopt_stub.go │ │ │ │ ├── sockopt_test.go │ │ │ │ ├── sys_asmreq.go │ │ │ │ ├── sys_asmreq_stub.go │ │ │ │ ├── sys_bpf.go │ │ │ │ ├── sys_bpf_stub.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_freebsd.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_solaris.go │ │ │ │ ├── sys_ssmreq.go │ │ │ │ ├── sys_ssmreq_stub.go │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── unicast_test.go │ │ │ │ ├── unicastsockopt_test.go │ │ │ │ ├── zsys_darwin.go │ │ │ │ ├── zsys_dragonfly.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd.go │ │ │ │ ├── zsys_openbsd.go │ │ │ │ └── zsys_solaris.go │ │ │ ├── lex │ │ │ │ └── httplex │ │ │ │ │ ├── httplex.go │ │ │ │ │ └── httplex_test.go │ │ │ ├── lif │ │ │ │ ├── address.go │ │ │ │ ├── address_test.go │ │ │ │ ├── binary.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── lif.go │ │ │ │ ├── link.go │ │ │ │ ├── link_test.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ ├── syscall.go │ │ │ │ └── zsys_solaris_amd64.go │ │ │ ├── nettest │ │ │ │ ├── conntest.go │ │ │ │ ├── conntest_go16.go │ │ │ │ ├── conntest_go17.go │ │ │ │ └── conntest_test.go │ │ │ ├── netutil │ │ │ │ ├── listen.go │ │ │ │ └── listen_test.go │ │ │ ├── proxy │ │ │ │ ├── direct.go │ │ │ │ ├── per_host.go │ │ │ │ ├── per_host_test.go │ │ │ │ ├── proxy.go │ │ │ │ ├── proxy_test.go │ │ │ │ └── socks5.go │ │ │ ├── publicsuffix │ │ │ │ ├── gen.go │ │ │ │ ├── list.go │ │ │ │ ├── list_test.go │ │ │ │ ├── table.go │ │ │ │ └── table_test.go │ │ │ ├── route │ │ │ │ ├── address.go │ │ │ │ ├── address_darwin_test.go │ │ │ │ ├── address_test.go │ │ │ │ ├── binary.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── interface.go │ │ │ │ ├── interface_announce.go │ │ │ │ ├── interface_classic.go │ │ │ │ ├── interface_freebsd.go │ │ │ │ ├── interface_multicast.go │ │ │ │ ├── interface_openbsd.go │ │ │ │ ├── message.go │ │ │ │ ├── message_darwin_test.go │ │ │ │ ├── message_freebsd_test.go │ │ │ │ ├── message_test.go │ │ │ │ ├── route.go │ │ │ │ ├── route_classic.go │ │ │ │ ├── route_openbsd.go │ │ │ │ ├── route_test.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_freebsd.go │ │ │ │ ├── sys_netbsd.go │ │ │ │ ├── sys_openbsd.go │ │ │ │ ├── syscall.go │ │ │ │ ├── zsys_darwin.go │ │ │ │ ├── zsys_dragonfly.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_netbsd.go │ │ │ │ └── zsys_openbsd.go │ │ │ ├── trace │ │ │ │ ├── events.go │ │ │ │ ├── histogram.go │ │ │ │ ├── histogram_test.go │ │ │ │ ├── trace.go │ │ │ │ ├── trace_go16.go │ │ │ │ ├── trace_go17.go │ │ │ │ └── trace_test.go │ │ │ ├── webdav │ │ │ │ ├── file.go │ │ │ │ ├── file_go1.6.go │ │ │ │ ├── file_go1.7.go │ │ │ │ ├── file_test.go │ │ │ │ ├── if.go │ │ │ │ ├── if_test.go │ │ │ │ ├── internal │ │ │ │ │ └── xml │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── atom_test.go │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ ├── marshal.go │ │ │ │ │ │ ├── marshal_test.go │ │ │ │ │ │ ├── read.go │ │ │ │ │ │ ├── read_test.go │ │ │ │ │ │ ├── typeinfo.go │ │ │ │ │ │ ├── xml.go │ │ │ │ │ │ └── xml_test.go │ │ │ │ ├── litmus_test_server.go │ │ │ │ ├── lock.go │ │ │ │ ├── lock_test.go │ │ │ │ ├── prop.go │ │ │ │ ├── prop_test.go │ │ │ │ ├── webdav.go │ │ │ │ ├── webdav_test.go │ │ │ │ ├── xml.go │ │ │ │ └── xml_test.go │ │ │ ├── websocket │ │ │ │ ├── client.go │ │ │ │ ├── dial.go │ │ │ │ ├── dial_test.go │ │ │ │ ├── exampledial_test.go │ │ │ │ ├── examplehandler_test.go │ │ │ │ ├── hybi.go │ │ │ │ ├── hybi_test.go │ │ │ │ ├── server.go │ │ │ │ ├── websocket.go │ │ │ │ └── websocket_test.go │ │ │ └── xsrftoken │ │ │ │ ├── xsrf.go │ │ │ │ └── xsrf_test.go │ │ │ ├── oauth2 │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── amazon │ │ │ │ └── amazon.go │ │ │ ├── bitbucket │ │ │ │ └── bitbucket.go │ │ │ ├── client_appengine.go │ │ │ ├── clientcredentials │ │ │ │ ├── clientcredentials.go │ │ │ │ └── clientcredentials_test.go │ │ │ ├── example_test.go │ │ │ ├── facebook │ │ │ │ └── facebook.go │ │ │ ├── fitbit │ │ │ │ └── fitbit.go │ │ │ ├── foursquare │ │ │ │ └── foursquare.go │ │ │ ├── github │ │ │ │ └── github.go │ │ │ ├── google │ │ │ │ ├── appengine.go │ │ │ │ ├── appengine_hook.go │ │ │ │ ├── appengineflex_hook.go │ │ │ │ ├── default.go │ │ │ │ ├── example_test.go │ │ │ │ ├── google.go │ │ │ │ ├── google_test.go │ │ │ │ ├── jwt.go │ │ │ │ ├── jwt_test.go │ │ │ │ ├── sdk.go │ │ │ │ ├── sdk_test.go │ │ │ │ └── testdata │ │ │ │ │ └── gcloud │ │ │ │ │ ├── credentials │ │ │ │ │ └── properties │ │ │ ├── heroku │ │ │ │ └── heroku.go │ │ │ ├── hipchat │ │ │ │ └── hipchat.go │ │ │ ├── internal │ │ │ │ ├── oauth2.go │ │ │ │ ├── oauth2_test.go │ │ │ │ ├── token.go │ │ │ │ ├── token_test.go │ │ │ │ ├── transport.go │ │ │ │ └── transport_test.go │ │ │ ├── jws │ │ │ │ ├── jws.go │ │ │ │ └── jws_test.go │ │ │ ├── jwt │ │ │ │ ├── example_test.go │ │ │ │ ├── jwt.go │ │ │ │ └── jwt_test.go │ │ │ ├── linkedin │ │ │ │ └── linkedin.go │ │ │ ├── mediamath │ │ │ │ └── mediamath.go │ │ │ ├── microsoft │ │ │ │ └── microsoft.go │ │ │ ├── oauth2.go │ │ │ ├── oauth2_test.go │ │ │ ├── odnoklassniki │ │ │ │ └── odnoklassniki.go │ │ │ ├── paypal │ │ │ │ └── paypal.go │ │ │ ├── slack │ │ │ │ └── slack.go │ │ │ ├── token.go │ │ │ ├── token_test.go │ │ │ ├── transport.go │ │ │ ├── transport_test.go │ │ │ ├── uber │ │ │ │ └── uber.go │ │ │ ├── vk │ │ │ │ └── vk.go │ │ │ └── yandex │ │ │ │ └── yandex.go │ │ │ ├── sys │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README.md │ │ │ ├── codereview.cfg │ │ │ ├── plan9 │ │ │ │ ├── asm.s │ │ │ │ ├── asm_plan9_386.s │ │ │ │ ├── asm_plan9_amd64.s │ │ │ │ ├── const_plan9.go │ │ │ │ ├── dir_plan9.go │ │ │ │ ├── env_plan9.go │ │ │ │ ├── env_unset.go │ │ │ │ ├── errors_plan9.go │ │ │ │ ├── mkall.sh │ │ │ │ ├── mkerrors.sh │ │ │ │ ├── mksyscall.pl │ │ │ │ ├── mksysnum_plan9.sh │ │ │ │ ├── pwd_go15_plan9.go │ │ │ │ ├── pwd_plan9.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_plan9.go │ │ │ │ ├── syscall_test.go │ │ │ │ ├── zsyscall_plan9_386.go │ │ │ │ ├── zsyscall_plan9_amd64.go │ │ │ │ └── zsysnum_plan9.go │ │ │ ├── unix │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── asm_darwin_386.s │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ ├── asm_linux_386.s │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ ├── asm_linux_arm.s │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ ├── asm_openbsd_arm.s │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ ├── bluetooth_linux.go │ │ │ │ ├── cap_freebsd.go │ │ │ │ ├── constants.go │ │ │ │ ├── creds_test.go │ │ │ │ ├── dev_darwin.go │ │ │ │ ├── dev_darwin_test.go │ │ │ │ ├── dev_dragonfly.go │ │ │ │ ├── dev_dragonfly_test.go │ │ │ │ ├── dev_freebsd.go │ │ │ │ ├── dev_linux.go │ │ │ │ ├── dev_linux_test.go │ │ │ │ ├── dev_netbsd.go │ │ │ │ ├── dev_netbsd_test.go │ │ │ │ ├── dev_openbsd.go │ │ │ │ ├── dev_openbsd_test.go │ │ │ │ ├── dev_solaris_test.go │ │ │ │ ├── dirent.go │ │ │ │ ├── endian_big.go │ │ │ │ ├── endian_little.go │ │ │ │ ├── env_unix.go │ │ │ │ ├── env_unset.go │ │ │ │ ├── errors_freebsd_386.go │ │ │ │ ├── errors_freebsd_amd64.go │ │ │ │ ├── errors_freebsd_arm.go │ │ │ │ ├── export_test.go │ │ │ │ ├── file_unix.go │ │ │ │ ├── flock.go │ │ │ │ ├── flock_linux_32bit.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── gccgo_c.c │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ ├── linux │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── mkall.go │ │ │ │ │ ├── mksysnum.pl │ │ │ │ │ └── types.go │ │ │ │ ├── mkall.sh │ │ │ │ ├── mkerrors.sh │ │ │ │ ├── mkpost.go │ │ │ │ ├── mksyscall.pl │ │ │ │ ├── mksyscall_solaris.pl │ │ │ │ ├── mksysctl_openbsd.pl │ │ │ │ ├── mksysnum_darwin.pl │ │ │ │ ├── mksysnum_dragonfly.pl │ │ │ │ ├── mksysnum_freebsd.pl │ │ │ │ ├── mksysnum_netbsd.pl │ │ │ │ ├── mksysnum_openbsd.pl │ │ │ │ ├── mmap_unix_test.go │ │ │ │ ├── openbsd_pledge.go │ │ │ │ ├── openbsd_test.go │ │ │ │ ├── pagesize_unix.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_bsd.go │ │ │ │ ├── syscall_bsd_test.go │ │ │ │ ├── syscall_darwin.go │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ ├── syscall_freebsd.go │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ ├── syscall_freebsd_test.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_linux_386.go │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ ├── syscall_linux_test.go │ │ │ │ ├── syscall_netbsd.go │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ ├── syscall_no_getwd.go │ │ │ │ ├── syscall_openbsd.go │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ ├── syscall_solaris.go │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ ├── syscall_solaris_test.go │ │ │ │ ├── syscall_test.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ ├── syscall_unix_test.go │ │ │ │ ├── timestruct.go │ │ │ │ ├── types_darwin.go │ │ │ │ ├── types_dragonfly.go │ │ │ │ ├── types_freebsd.go │ │ │ │ ├── types_netbsd.go │ │ │ │ ├── types_openbsd.go │ │ │ │ ├── types_solaris.go │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ ├── zptrace386_linux.go │ │ │ │ ├── zptracearm_linux.go │ │ │ │ ├── zptracemips_linux.go │ │ │ │ ├── zptracemipsle_linux.go │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ ├── zsysctl_openbsd_386.go │ │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ └── windows │ │ │ │ ├── asm_windows_386.s │ │ │ │ ├── asm_windows_amd64.s │ │ │ │ ├── dll_windows.go │ │ │ │ ├── env_unset.go │ │ │ │ ├── env_windows.go │ │ │ │ ├── eventlog.go │ │ │ │ ├── exec_windows.go │ │ │ │ ├── memory_windows.go │ │ │ │ ├── mksyscall.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── registry │ │ │ │ ├── export_test.go │ │ │ │ ├── key.go │ │ │ │ ├── mksyscall.go │ │ │ │ ├── registry_test.go │ │ │ │ ├── syscall.go │ │ │ │ ├── value.go │ │ │ │ └── zsyscall_windows.go │ │ │ │ ├── security_windows.go │ │ │ │ ├── service.go │ │ │ │ ├── str.go │ │ │ │ ├── svc │ │ │ │ ├── debug │ │ │ │ │ ├── log.go │ │ │ │ │ └── service.go │ │ │ │ ├── event.go │ │ │ │ ├── eventlog │ │ │ │ │ ├── install.go │ │ │ │ │ ├── log.go │ │ │ │ │ └── log_test.go │ │ │ │ ├── example │ │ │ │ │ ├── beep.go │ │ │ │ │ ├── install.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── manage.go │ │ │ │ │ └── service.go │ │ │ │ ├── go12.c │ │ │ │ ├── go12.go │ │ │ │ ├── go13.go │ │ │ │ ├── mgr │ │ │ │ │ ├── config.go │ │ │ │ │ ├── mgr.go │ │ │ │ │ ├── mgr_test.go │ │ │ │ │ └── service.go │ │ │ │ ├── security.go │ │ │ │ ├── service.go │ │ │ │ ├── svc_test.go │ │ │ │ ├── sys_386.s │ │ │ │ └── sys_amd64.s │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_test.go │ │ │ │ ├── syscall_windows.go │ │ │ │ ├── syscall_windows_test.go │ │ │ │ ├── types_windows.go │ │ │ │ ├── types_windows_386.go │ │ │ │ ├── types_windows_amd64.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── text │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README │ │ │ ├── cases │ │ │ │ ├── cases.go │ │ │ │ ├── context.go │ │ │ │ ├── context_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── fold.go │ │ │ │ ├── fold_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── icu.go │ │ │ │ ├── icu_test.go │ │ │ │ ├── info.go │ │ │ │ ├── map.go │ │ │ │ ├── map_test.go │ │ │ │ ├── tables.go │ │ │ │ ├── tables_test.go │ │ │ │ └── trieval.go │ │ │ ├── cmd │ │ │ │ └── gotext │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── extract.go │ │ │ │ │ ├── main.go │ │ │ │ │ └── message.go │ │ │ ├── codereview.cfg │ │ │ ├── collate │ │ │ │ ├── collate.go │ │ │ │ ├── collate_test.go │ │ │ │ ├── export_test.go │ │ │ │ ├── index.go │ │ │ │ ├── maketables.go │ │ │ │ ├── option.go │ │ │ │ ├── option_test.go │ │ │ │ ├── reg_test.go │ │ │ │ ├── sort.go │ │ │ │ ├── sort_test.go │ │ │ │ ├── table_test.go │ │ │ │ ├── tables.go │ │ │ │ └── tools │ │ │ │ │ └── colcmp │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── chars.go │ │ │ │ │ ├── col.go │ │ │ │ │ ├── colcmp.go │ │ │ │ │ ├── darwin.go │ │ │ │ │ ├── gen.go │ │ │ │ │ └── icu.go │ │ │ ├── currency │ │ │ │ ├── common.go │ │ │ │ ├── currency.go │ │ │ │ ├── currency_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── format.go │ │ │ │ ├── format_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── query.go │ │ │ │ ├── query_test.go │ │ │ │ ├── tables.go │ │ │ │ └── tables_test.go │ │ │ ├── doc.go │ │ │ ├── encoding │ │ │ │ ├── charmap │ │ │ │ │ ├── charmap.go │ │ │ │ │ ├── charmap_test.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ └── tables.go │ │ │ │ ├── encoding.go │ │ │ │ ├── encoding_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── htmlindex │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── htmlindex.go │ │ │ │ │ ├── htmlindex_test.go │ │ │ │ │ ├── map.go │ │ │ │ │ └── tables.go │ │ │ │ ├── ianaindex │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── ianaindex.go │ │ │ │ │ ├── ianaindex_test.go │ │ │ │ │ └── tables.go │ │ │ │ ├── internal │ │ │ │ │ ├── enctest │ │ │ │ │ │ └── enctest.go │ │ │ │ │ ├── identifier │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── identifier.go │ │ │ │ │ │ └── mib.go │ │ │ │ │ └── internal.go │ │ │ │ ├── japanese │ │ │ │ │ ├── all.go │ │ │ │ │ ├── all_test.go │ │ │ │ │ ├── eucjp.go │ │ │ │ │ ├── iso2022jp.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ ├── shiftjis.go │ │ │ │ │ └── tables.go │ │ │ │ ├── korean │ │ │ │ │ ├── all_test.go │ │ │ │ │ ├── euckr.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ └── tables.go │ │ │ │ ├── simplifiedchinese │ │ │ │ │ ├── all.go │ │ │ │ │ ├── all_test.go │ │ │ │ │ ├── gbk.go │ │ │ │ │ ├── hzgb2312.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ └── tables.go │ │ │ │ ├── testdata │ │ │ │ │ ├── candide-gb18030.txt │ │ │ │ │ ├── candide-utf-16le.txt │ │ │ │ │ ├── candide-utf-32be.txt │ │ │ │ │ ├── candide-utf-8.txt │ │ │ │ │ ├── candide-windows-1252.txt │ │ │ │ │ ├── rashomon-euc-jp.txt │ │ │ │ │ ├── rashomon-iso-2022-jp.txt │ │ │ │ │ ├── rashomon-shift-jis.txt │ │ │ │ │ ├── rashomon-utf-8.txt │ │ │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt │ │ │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-utf-8.txt │ │ │ │ │ ├── sunzi-bingfa-simplified-gbk.txt │ │ │ │ │ ├── sunzi-bingfa-simplified-utf-8.txt │ │ │ │ │ ├── sunzi-bingfa-traditional-big5.txt │ │ │ │ │ ├── sunzi-bingfa-traditional-utf-8.txt │ │ │ │ │ ├── unsu-joh-eun-nal-euc-kr.txt │ │ │ │ │ └── unsu-joh-eun-nal-utf-8.txt │ │ │ │ ├── traditionalchinese │ │ │ │ │ ├── all_test.go │ │ │ │ │ ├── big5.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ └── tables.go │ │ │ │ └── unicode │ │ │ │ │ ├── override.go │ │ │ │ │ ├── unicode.go │ │ │ │ │ ├── unicode_test.go │ │ │ │ │ └── utf32 │ │ │ │ │ ├── utf32.go │ │ │ │ │ └── utf32_test.go │ │ │ ├── feature │ │ │ │ └── plural │ │ │ │ │ ├── common.go │ │ │ │ │ ├── data_test.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_common.go │ │ │ │ │ ├── plural.go │ │ │ │ │ ├── plural_test.go │ │ │ │ │ └── tables.go │ │ │ ├── gen.go │ │ │ ├── internal │ │ │ │ ├── catmsg │ │ │ │ │ ├── catmsg.go │ │ │ │ │ ├── catmsg_test.go │ │ │ │ │ ├── codec.go │ │ │ │ │ ├── varint.go │ │ │ │ │ └── varint_test.go │ │ │ │ ├── colltab │ │ │ │ │ ├── collate_test.go │ │ │ │ │ ├── collelem.go │ │ │ │ │ ├── collelem_test.go │ │ │ │ │ ├── colltab.go │ │ │ │ │ ├── colltab_test.go │ │ │ │ │ ├── contract.go │ │ │ │ │ ├── contract_test.go │ │ │ │ │ ├── iter.go │ │ │ │ │ ├── iter_test.go │ │ │ │ │ ├── numeric.go │ │ │ │ │ ├── numeric_test.go │ │ │ │ │ ├── table.go │ │ │ │ │ ├── trie.go │ │ │ │ │ ├── trie_test.go │ │ │ │ │ ├── weighter.go │ │ │ │ │ └── weighter_test.go │ │ │ │ ├── export │ │ │ │ │ ├── README │ │ │ │ │ └── idna │ │ │ │ │ │ ├── common_test.go │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── gen_common.go │ │ │ │ │ │ ├── gen_test.go │ │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ │ ├── idna.go │ │ │ │ │ │ ├── idna_test.go │ │ │ │ │ │ ├── punycode.go │ │ │ │ │ │ ├── punycode_test.go │ │ │ │ │ │ ├── tables.go │ │ │ │ │ │ ├── trie.go │ │ │ │ │ │ └── trieval.go │ │ │ │ ├── format │ │ │ │ │ └── format.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen │ │ │ │ │ ├── code.go │ │ │ │ │ └── gen.go │ │ │ │ ├── gen_test.go │ │ │ │ ├── internal.go │ │ │ │ ├── internal_test.go │ │ │ │ ├── match.go │ │ │ │ ├── match_test.go │ │ │ │ ├── number │ │ │ │ │ ├── common.go │ │ │ │ │ ├── decimal.go │ │ │ │ │ ├── decimal_test.go │ │ │ │ │ ├── format.go │ │ │ │ │ ├── format_test.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_common.go │ │ │ │ │ ├── number.go │ │ │ │ │ ├── number_test.go │ │ │ │ │ ├── pattern.go │ │ │ │ │ ├── pattern_test.go │ │ │ │ │ ├── roundingmode_string.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tables_test.go │ │ │ │ ├── stringset │ │ │ │ │ ├── set.go │ │ │ │ │ └── set_test.go │ │ │ │ ├── tables.go │ │ │ │ ├── tag │ │ │ │ │ ├── tag.go │ │ │ │ │ └── tag_test.go │ │ │ │ ├── testtext │ │ │ │ │ ├── codesize.go │ │ │ │ │ ├── flag.go │ │ │ │ │ ├── gc.go │ │ │ │ │ ├── gccgo.go │ │ │ │ │ ├── go1_6.go │ │ │ │ │ ├── go1_7.go │ │ │ │ │ └── text.go │ │ │ │ ├── triegen │ │ │ │ │ ├── compact.go │ │ │ │ │ ├── data_test.go │ │ │ │ │ ├── example_compact_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── gen_test.go │ │ │ │ │ ├── print.go │ │ │ │ │ └── triegen.go │ │ │ │ ├── ucd │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── ucd.go │ │ │ │ │ └── ucd_test.go │ │ │ │ └── utf8internal │ │ │ │ │ └── utf8internal.go │ │ │ ├── language │ │ │ │ ├── Makefile │ │ │ │ ├── common.go │ │ │ │ ├── coverage.go │ │ │ │ ├── coverage_test.go │ │ │ │ ├── data_test.go │ │ │ │ ├── display │ │ │ │ │ ├── dict.go │ │ │ │ │ ├── dict_test.go │ │ │ │ │ ├── display.go │ │ │ │ │ ├── display_test.go │ │ │ │ │ ├── examples_test.go │ │ │ │ │ ├── lookup.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ └── tables.go │ │ │ │ ├── examples_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── gen_index.go │ │ │ │ ├── go1_1.go │ │ │ │ ├── go1_2.go │ │ │ │ ├── httpexample_test.go │ │ │ │ ├── index.go │ │ │ │ ├── language.go │ │ │ │ ├── language_test.go │ │ │ │ ├── lookup.go │ │ │ │ ├── lookup_test.go │ │ │ │ ├── match.go │ │ │ │ ├── match_test.go │ │ │ │ ├── parse.go │ │ │ │ ├── parse_test.go │ │ │ │ ├── tables.go │ │ │ │ ├── tags.go │ │ │ │ └── testdata │ │ │ │ │ └── localeMatcherTest.txt │ │ │ ├── message │ │ │ │ ├── catalog.go │ │ │ │ ├── catalog │ │ │ │ │ ├── catalog.go │ │ │ │ │ ├── catalog_test.go │ │ │ │ │ └── dict.go │ │ │ │ ├── fmt_test.go │ │ │ │ ├── format.go │ │ │ │ ├── message.go │ │ │ │ ├── message_test.go │ │ │ │ └── print.go │ │ │ ├── runes │ │ │ │ ├── cond.go │ │ │ │ ├── cond_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── runes.go │ │ │ │ └── runes_test.go │ │ │ ├── search │ │ │ │ ├── index.go │ │ │ │ ├── pattern.go │ │ │ │ ├── pattern_test.go │ │ │ │ ├── search.go │ │ │ │ └── tables.go │ │ │ ├── secure │ │ │ │ ├── bidirule │ │ │ │ │ ├── bench_test.go │ │ │ │ │ ├── bidirule.go │ │ │ │ │ └── bidirule_test.go │ │ │ │ ├── doc.go │ │ │ │ └── precis │ │ │ │ │ ├── benchmark_test.go │ │ │ │ │ ├── class.go │ │ │ │ │ ├── class_test.go │ │ │ │ │ ├── context.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── enforce_test.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ ├── nickname.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── profile.go │ │ │ │ │ ├── profile_test.go │ │ │ │ │ ├── profiles.go │ │ │ │ │ ├── tables.go │ │ │ │ │ ├── tables_test.go │ │ │ │ │ ├── transformer.go │ │ │ │ │ └── trieval.go │ │ │ ├── transform │ │ │ │ ├── examples_test.go │ │ │ │ ├── transform.go │ │ │ │ └── transform_test.go │ │ │ ├── unicode │ │ │ │ ├── bidi │ │ │ │ │ ├── bidi.go │ │ │ │ │ ├── bracket.go │ │ │ │ │ ├── core.go │ │ │ │ │ ├── core_test.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_ranges.go │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ ├── prop.go │ │ │ │ │ ├── ranges_test.go │ │ │ │ │ ├── tables.go │ │ │ │ │ ├── tables_test.go │ │ │ │ │ └── trieval.go │ │ │ │ ├── cldr │ │ │ │ │ ├── base.go │ │ │ │ │ ├── cldr.go │ │ │ │ │ ├── cldr_test.go │ │ │ │ │ ├── collate.go │ │ │ │ │ ├── collate_test.go │ │ │ │ │ ├── data_test.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── examples_test.go │ │ │ │ │ ├── makexml.go │ │ │ │ │ ├── resolve.go │ │ │ │ │ ├── resolve_test.go │ │ │ │ │ ├── slice.go │ │ │ │ │ ├── slice_test.go │ │ │ │ │ └── xml.go │ │ │ │ ├── doc.go │ │ │ │ ├── norm │ │ │ │ │ ├── composition.go │ │ │ │ │ ├── composition_test.go │ │ │ │ │ ├── example_iter_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── forminfo.go │ │ │ │ │ ├── forminfo_test.go │ │ │ │ │ ├── input.go │ │ │ │ │ ├── iter.go │ │ │ │ │ ├── iter_test.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ ├── norm_test.go │ │ │ │ │ ├── normalize.go │ │ │ │ │ ├── normalize_test.go │ │ │ │ │ ├── readwriter.go │ │ │ │ │ ├── readwriter_test.go │ │ │ │ │ ├── tables.go │ │ │ │ │ ├── transform.go │ │ │ │ │ ├── transform_test.go │ │ │ │ │ ├── trie.go │ │ │ │ │ ├── triegen.go │ │ │ │ │ └── ucd_test.go │ │ │ │ ├── rangetable │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── merge.go │ │ │ │ │ ├── merge_test.go │ │ │ │ │ ├── rangetable.go │ │ │ │ │ ├── rangetable_test.go │ │ │ │ │ └── tables.go │ │ │ │ └── runenames │ │ │ │ │ ├── bits.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_bits.go │ │ │ │ │ ├── runenames.go │ │ │ │ │ ├── runenames_test.go │ │ │ │ │ └── tables.go │ │ │ └── width │ │ │ │ ├── common_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── kind_string.go │ │ │ │ ├── runes_test.go │ │ │ │ ├── tables.go │ │ │ │ ├── tables_test.go │ │ │ │ ├── transform.go │ │ │ │ ├── transform_test.go │ │ │ │ ├── trieval.go │ │ │ │ └── width.go │ │ │ └── time │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README │ │ │ └── rate │ │ │ ├── rate.go │ │ │ └── rate_test.go │ │ ├── google.golang.org │ │ └── appengine │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── aetest │ │ │ ├── doc.go │ │ │ ├── instance.go │ │ │ ├── instance_classic.go │ │ │ ├── instance_test.go │ │ │ ├── instance_vm.go │ │ │ └── user.go │ │ │ ├── appengine.go │ │ │ ├── appengine_test.go │ │ │ ├── appengine_vm.go │ │ │ ├── blobstore │ │ │ ├── blobstore.go │ │ │ ├── blobstore_test.go │ │ │ └── read.go │ │ │ ├── capability │ │ │ └── capability.go │ │ │ ├── channel │ │ │ ├── channel.go │ │ │ └── channel_test.go │ │ │ ├── cloudsql │ │ │ ├── cloudsql.go │ │ │ ├── cloudsql_classic.go │ │ │ └── cloudsql_vm.go │ │ │ ├── cmd │ │ │ ├── aebundler │ │ │ │ └── aebundler.go │ │ │ ├── aedeploy │ │ │ │ └── aedeploy.go │ │ │ └── aefix │ │ │ │ ├── ae.go │ │ │ │ ├── ae_test.go │ │ │ │ ├── fix.go │ │ │ │ ├── main.go │ │ │ │ ├── main_test.go │ │ │ │ └── typecheck.go │ │ │ ├── datastore │ │ │ ├── datastore.go │ │ │ ├── datastore_test.go │ │ │ ├── doc.go │ │ │ ├── key.go │ │ │ ├── key_test.go │ │ │ ├── load.go │ │ │ ├── load_test.go │ │ │ ├── metadata.go │ │ │ ├── prop.go │ │ │ ├── prop_test.go │ │ │ ├── query.go │ │ │ ├── query_test.go │ │ │ ├── save.go │ │ │ ├── time_test.go │ │ │ └── transaction.go │ │ │ ├── delay │ │ │ ├── delay.go │ │ │ ├── delay_go17.go │ │ │ ├── delay_go17_test.go │ │ │ ├── delay_pre17.go │ │ │ └── delay_test.go │ │ │ ├── demos │ │ │ ├── guestbook │ │ │ │ ├── app.yaml │ │ │ │ ├── favicon.ico │ │ │ │ ├── guestbook.go │ │ │ │ ├── index.yaml │ │ │ │ └── templates │ │ │ │ │ └── guestbook.html │ │ │ └── helloworld │ │ │ │ ├── app.yaml │ │ │ │ ├── favicon.ico │ │ │ │ └── helloworld.go │ │ │ ├── errors.go │ │ │ ├── file │ │ │ └── file.go │ │ │ ├── identity.go │ │ │ ├── image │ │ │ └── image.go │ │ │ ├── internal │ │ │ ├── aetesting │ │ │ │ └── fake.go │ │ │ ├── api.go │ │ │ ├── api_classic.go │ │ │ ├── api_common.go │ │ │ ├── api_pre17.go │ │ │ ├── api_race_test.go │ │ │ ├── api_test.go │ │ │ ├── app_id.go │ │ │ ├── app_id_test.go │ │ │ ├── app_identity │ │ │ │ ├── app_identity_service.pb.go │ │ │ │ └── app_identity_service.proto │ │ │ ├── base │ │ │ │ ├── api_base.pb.go │ │ │ │ └── api_base.proto │ │ │ ├── blobstore │ │ │ │ ├── blobstore_service.pb.go │ │ │ │ └── blobstore_service.proto │ │ │ ├── capability │ │ │ │ ├── capability_service.pb.go │ │ │ │ └── capability_service.proto │ │ │ ├── channel │ │ │ │ ├── channel_service.pb.go │ │ │ │ └── channel_service.proto │ │ │ ├── datastore │ │ │ │ ├── datastore_v3.pb.go │ │ │ │ └── datastore_v3.proto │ │ │ ├── identity.go │ │ │ ├── identity_classic.go │ │ │ ├── identity_vm.go │ │ │ ├── image │ │ │ │ ├── images_service.pb.go │ │ │ │ └── images_service.proto │ │ │ ├── internal.go │ │ │ ├── internal_vm_test.go │ │ │ ├── log │ │ │ │ ├── log_service.pb.go │ │ │ │ └── log_service.proto │ │ │ ├── mail │ │ │ │ ├── mail_service.pb.go │ │ │ │ └── mail_service.proto │ │ │ ├── main.go │ │ │ ├── main_vm.go │ │ │ ├── memcache │ │ │ │ ├── memcache_service.pb.go │ │ │ │ └── memcache_service.proto │ │ │ ├── metadata.go │ │ │ ├── modules │ │ │ │ ├── modules_service.pb.go │ │ │ │ └── modules_service.proto │ │ │ ├── net.go │ │ │ ├── net_test.go │ │ │ ├── regen.sh │ │ │ ├── remote_api │ │ │ │ ├── remote_api.pb.go │ │ │ │ └── remote_api.proto │ │ │ ├── search │ │ │ │ ├── search.pb.go │ │ │ │ └── search.proto │ │ │ ├── socket │ │ │ │ ├── socket_service.pb.go │ │ │ │ └── socket_service.proto │ │ │ ├── system │ │ │ │ ├── system_service.pb.go │ │ │ │ └── system_service.proto │ │ │ ├── taskqueue │ │ │ │ ├── taskqueue_service.pb.go │ │ │ │ └── taskqueue_service.proto │ │ │ ├── transaction.go │ │ │ ├── urlfetch │ │ │ │ ├── urlfetch_service.pb.go │ │ │ │ └── urlfetch_service.proto │ │ │ ├── user │ │ │ │ ├── user_service.pb.go │ │ │ │ └── user_service.proto │ │ │ └── xmpp │ │ │ │ ├── xmpp_service.pb.go │ │ │ │ └── xmpp_service.proto │ │ │ ├── log │ │ │ ├── api.go │ │ │ ├── log.go │ │ │ └── log_test.go │ │ │ ├── mail │ │ │ ├── mail.go │ │ │ └── mail_test.go │ │ │ ├── memcache │ │ │ ├── memcache.go │ │ │ └── memcache_test.go │ │ │ ├── module │ │ │ ├── module.go │ │ │ └── module_test.go │ │ │ ├── namespace.go │ │ │ ├── namespace_test.go │ │ │ ├── remote_api │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ └── remote_api.go │ │ │ ├── runtime │ │ │ ├── runtime.go │ │ │ └── runtime_test.go │ │ │ ├── search │ │ │ ├── doc.go │ │ │ ├── field.go │ │ │ ├── search.go │ │ │ ├── search_test.go │ │ │ ├── struct.go │ │ │ └── struct_test.go │ │ │ ├── socket │ │ │ ├── doc.go │ │ │ ├── socket_classic.go │ │ │ └── socket_vm.go │ │ │ ├── taskqueue │ │ │ ├── taskqueue.go │ │ │ └── taskqueue_test.go │ │ │ ├── timeout.go │ │ │ ├── urlfetch │ │ │ └── urlfetch.go │ │ │ ├── user │ │ │ ├── oauth.go │ │ │ ├── user.go │ │ │ ├── user_classic.go │ │ │ ├── user_test.go │ │ │ └── user_vm.go │ │ │ └── xmpp │ │ │ ├── xmpp.go │ │ │ └── xmpp_test.go │ │ ├── gopkg.in │ │ ├── inf.v0 │ │ │ ├── LICENSE │ │ │ ├── benchmark_test.go │ │ │ ├── dec.go │ │ │ ├── dec_go1_2_test.go │ │ │ ├── dec_internal_test.go │ │ │ ├── dec_test.go │ │ │ ├── example_test.go │ │ │ ├── rounder.go │ │ │ ├── rounder_example_test.go │ │ │ └── rounder_test.go │ │ └── yaml.v2 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── LICENSE.libyaml │ │ │ ├── README.md │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── example_embedded_test.go │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── suite_test.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ └── yamlprivateh.go │ │ └── k8s.io │ │ ├── api │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── CONTRIBUTING.md │ │ ├── Godeps │ │ │ ├── Godeps.json │ │ │ ├── OWNERS │ │ │ └── Readme │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── admission │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── admissionregistration │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── apps │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta2 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── authentication │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── authorization │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── autoscaling │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v2beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── batch │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v2alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── certificates │ │ │ ├── OWNERS │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── code-of-conduct.md │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── annotation_key_constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── meta.go │ │ │ │ ├── objectreference.go │ │ │ │ ├── register.go │ │ │ │ ├── resource.go │ │ │ │ ├── taint.go │ │ │ │ ├── taint_test.go │ │ │ │ ├── toleration.go │ │ │ │ ├── toleration_test.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── events │ │ │ ├── OWNERS │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── extensions │ │ │ ├── OWNERS │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── imagepolicy │ │ │ ├── OWNERS │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── networking │ │ │ ├── OWNERS │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── policy │ │ │ ├── OWNERS │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── rbac │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── scheduling │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── settings │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── storage │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── apimachinery │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── CONTRIBUTING.md │ │ ├── Godeps │ │ │ ├── Godeps.json │ │ │ ├── OWNERS │ │ │ └── Readme │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── code-of-conduct.md │ │ ├── pkg │ │ │ ├── OWNERS │ │ │ ├── api │ │ │ │ ├── equality │ │ │ │ │ ├── BUILD │ │ │ │ │ └── semantic.go │ │ │ │ ├── errors │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── errors_test.go │ │ │ │ ├── meta │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ │ ├── help.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── lazy.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── meta_test.go │ │ │ │ │ ├── multirestmapper.go │ │ │ │ │ ├── multirestmapper_test.go │ │ │ │ │ ├── priority.go │ │ │ │ │ ├── priority_test.go │ │ │ │ │ ├── restmapper.go │ │ │ │ │ ├── restmapper_test.go │ │ │ │ │ ├── table │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── table.go │ │ │ │ │ └── unstructured.go │ │ │ │ ├── resource │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── amount.go │ │ │ │ │ ├── amount_test.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── math.go │ │ │ │ │ ├── math_test.go │ │ │ │ │ ├── quantity.go │ │ │ │ │ ├── quantity_example_test.go │ │ │ │ │ ├── quantity_proto.go │ │ │ │ │ ├── quantity_proto_test.go │ │ │ │ │ ├── quantity_test.go │ │ │ │ │ ├── scale_int.go │ │ │ │ │ ├── scale_int_test.go │ │ │ │ │ ├── suffix.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── testing │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── codec.go │ │ │ │ │ ├── fuzzer │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── fuzzer.go │ │ │ │ │ │ ├── valuefuzz.go │ │ │ │ │ │ └── valuefuzz_test.go │ │ │ │ │ └── roundtrip │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── roundtrip.go │ │ │ │ └── validation │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── objectmeta.go │ │ │ │ │ ├── objectmeta_test.go │ │ │ │ │ └── path │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── name.go │ │ │ │ │ └── name_test.go │ │ │ ├── apimachinery │ │ │ │ ├── BUILD │ │ │ │ ├── announced │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── announced.go │ │ │ │ │ ├── announced_test.go │ │ │ │ │ └── group_factory.go │ │ │ │ ├── doc.go │ │ │ │ ├── registered │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── registered.go │ │ │ │ │ └── registered_test.go │ │ │ │ ├── types.go │ │ │ │ └── types_test.go │ │ │ ├── apis │ │ │ │ ├── meta │ │ │ │ │ ├── fuzzer │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── fuzzer.go │ │ │ │ │ ├── internalversion │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── register_test.go │ │ │ │ │ │ ├── roundtrip_test.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── controller_ref.go │ │ │ │ │ │ ├── controller_ref_test.go │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── conversion_test.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── duration.go │ │ │ │ │ │ ├── duration_test.go │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ ├── group_version.go │ │ │ │ │ │ ├── group_version_test.go │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ │ ├── labels.go │ │ │ │ │ │ ├── labels_test.go │ │ │ │ │ │ ├── meta.go │ │ │ │ │ │ ├── micro_time.go │ │ │ │ │ │ ├── micro_time_proto.go │ │ │ │ │ │ ├── micro_time_test.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ ├── time_proto.go │ │ │ │ │ │ ├── time_test.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ ├── unstructured │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ │ │ ├── unstructured.go │ │ │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ │ │ ├── unstructured_list_test.go │ │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ │ ├── validation │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ ├── validation.go │ │ │ │ │ │ │ └── validation_test.go │ │ │ │ │ │ ├── watch.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── testapigroup │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fuzzer │ │ │ │ │ ├── BUILD │ │ │ │ │ └── fuzzer.go │ │ │ │ │ ├── install │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── install.go │ │ │ │ │ └── roundtrip_test.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── conversion │ │ │ │ ├── BUILD │ │ │ │ ├── converter.go │ │ │ │ ├── converter_test.go │ │ │ │ ├── deep_equal.go │ │ │ │ ├── doc.go │ │ │ │ ├── helper.go │ │ │ │ ├── helper_test.go │ │ │ │ └── queryparams │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── convert.go │ │ │ │ │ ├── convert_test.go │ │ │ │ │ └── doc.go │ │ │ ├── fields │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fields.go │ │ │ │ ├── fields_test.go │ │ │ │ ├── requirements.go │ │ │ │ ├── selector.go │ │ │ │ └── selector_test.go │ │ │ ├── labels │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── labels.go │ │ │ │ ├── labels_test.go │ │ │ │ ├── selector.go │ │ │ │ ├── selector_test.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── runtime │ │ │ │ ├── BUILD │ │ │ │ ├── codec.go │ │ │ │ ├── codec_check.go │ │ │ │ ├── conversion.go │ │ │ │ ├── conversion_test.go │ │ │ │ ├── converter.go │ │ │ │ ├── converter_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── embedded.go │ │ │ │ ├── embedded_test.go │ │ │ │ ├── error.go │ │ │ │ ├── extension.go │ │ │ │ ├── extension_test.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── helper.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── register.go │ │ │ │ ├── schema │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── group_version.go │ │ │ │ │ ├── group_version_test.go │ │ │ │ │ └── interfaces.go │ │ │ │ ├── scheme.go │ │ │ │ ├── scheme_builder.go │ │ │ │ ├── scheme_test.go │ │ │ │ ├── serializer │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── codec_factory.go │ │ │ │ │ ├── codec_test.go │ │ │ │ │ ├── json │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── json.go │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ ├── meta.go │ │ │ │ │ │ └── meta_test.go │ │ │ │ │ ├── negotiated_codec.go │ │ │ │ │ ├── protobuf │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── protobuf.go │ │ │ │ │ ├── protobuf_extension.go │ │ │ │ │ ├── recognizer │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── recognizer.go │ │ │ │ │ │ └── testing │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ └── recognizer_test.go │ │ │ │ │ ├── streaming │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── streaming.go │ │ │ │ │ │ └── streaming_test.go │ │ │ │ │ ├── testing │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── versioning │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── versioning.go │ │ │ │ │ │ └── versioning_test.go │ │ │ │ │ └── yaml │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── yaml.go │ │ │ │ ├── swagger_doc_generator.go │ │ │ │ ├── swagger_doc_generator_test.go │ │ │ │ ├── testing │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── types.go │ │ │ │ ├── types_proto.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── selection │ │ │ │ ├── BUILD │ │ │ │ └── operator.go │ │ │ ├── test │ │ │ │ ├── BUILD │ │ │ │ ├── api_meta_help_test.go │ │ │ │ ├── api_meta_meta_test.go │ │ │ │ ├── apis_meta_v1_unstructed_unstructure_test.go │ │ │ │ ├── runtime_helper_test.go │ │ │ │ ├── runtime_serializer_protobuf_protobuf_test.go │ │ │ │ ├── runtime_unversioned_test.go │ │ │ │ ├── util.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── types │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── namespacedname.go │ │ │ │ ├── nodename.go │ │ │ │ ├── patch.go │ │ │ │ └── uid.go │ │ │ ├── util │ │ │ │ ├── cache │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── cache_test.go │ │ │ │ │ ├── lruexpirecache.go │ │ │ │ │ └── lruexpirecache_test.go │ │ │ │ ├── clock │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clock.go │ │ │ │ │ └── clock_test.go │ │ │ │ ├── diff │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── diff.go │ │ │ │ │ └── diff_test.go │ │ │ │ ├── duration │ │ │ │ │ ├── BUILD │ │ │ │ │ └── duration.go │ │ │ │ ├── errors │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── errors_test.go │ │ │ │ ├── framer │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── framer.go │ │ │ │ │ └── framer_test.go │ │ │ │ ├── httpstream │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── httpstream.go │ │ │ │ │ ├── httpstream_test.go │ │ │ │ │ └── spdy │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── connection.go │ │ │ │ │ │ ├── connection_test.go │ │ │ │ │ │ ├── roundtripper.go │ │ │ │ │ │ ├── roundtripper_test.go │ │ │ │ │ │ ├── upgrade.go │ │ │ │ │ │ └── upgrade_test.go │ │ │ │ ├── initialization │ │ │ │ │ ├── BUILD │ │ │ │ │ └── initialization.go │ │ │ │ ├── intstr │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── intstr.go │ │ │ │ │ └── intstr_test.go │ │ │ │ ├── json │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── json.go │ │ │ │ │ └── json_test.go │ │ │ │ ├── jsonmergepatch │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── patch.go │ │ │ │ │ └── patch_test.go │ │ │ │ ├── mergepatch │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── util_test.go │ │ │ │ ├── net │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── http.go │ │ │ │ │ ├── http_test.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── interface_test.go │ │ │ │ │ ├── port_range.go │ │ │ │ │ ├── port_range_test.go │ │ │ │ │ ├── port_split.go │ │ │ │ │ ├── port_split_test.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── util_test.go │ │ │ │ ├── proxy │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── dial.go │ │ │ │ │ ├── dial_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── transport.go │ │ │ │ │ ├── transport_test.go │ │ │ │ │ ├── upgradeaware.go │ │ │ │ │ └── upgradeaware_test.go │ │ │ │ ├── rand │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── rand.go │ │ │ │ │ └── rand_test.go │ │ │ │ ├── remotecommand │ │ │ │ │ ├── BUILD │ │ │ │ │ └── constants.go │ │ │ │ ├── runtime │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── runtime.go │ │ │ │ │ └── runtime_test.go │ │ │ │ ├── sets │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── byte.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── empty.go │ │ │ │ │ ├── int.go │ │ │ │ │ ├── int64.go │ │ │ │ │ ├── set_test.go │ │ │ │ │ ├── string.go │ │ │ │ │ └── types │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── types.go │ │ │ │ ├── strategicpatch │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── patch.go │ │ │ │ │ ├── patch_test.go │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── swagger-merge-item.json │ │ │ │ │ │ └── swagger-precision-item.json │ │ │ │ │ ├── testing │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── openapi.go │ │ │ │ │ └── types.go │ │ │ │ ├── uuid │ │ │ │ │ ├── BUILD │ │ │ │ │ └── uuid.go │ │ │ │ ├── validation │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── field │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── errors_test.go │ │ │ │ │ │ ├── path.go │ │ │ │ │ │ └── path_test.go │ │ │ │ │ ├── validation.go │ │ │ │ │ └── validation_test.go │ │ │ │ ├── wait │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── wait.go │ │ │ │ │ └── wait_test.go │ │ │ │ ├── waitgroup │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── waitgroup.go │ │ │ │ │ └── waitgroup_test.go │ │ │ │ └── yaml │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── decoder.go │ │ │ │ │ └── decoder_test.go │ │ │ ├── version │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ └── types.go │ │ │ └── watch │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── filter.go │ │ │ │ ├── filter_test.go │ │ │ │ ├── mux.go │ │ │ │ ├── mux_test.go │ │ │ │ ├── streamwatcher.go │ │ │ │ ├── streamwatcher_test.go │ │ │ │ ├── until.go │ │ │ │ ├── until_test.go │ │ │ │ ├── watch.go │ │ │ │ ├── watch_test.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── third_party │ │ │ └── forked │ │ │ └── golang │ │ │ ├── json │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── fields.go │ │ │ └── fields_test.go │ │ │ ├── netutil │ │ │ ├── BUILD │ │ │ └── addr.go │ │ │ └── reflect │ │ │ ├── BUILD │ │ │ ├── deep_equal.go │ │ │ └── deep_equal_test.go │ │ └── client-go │ │ ├── .github │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Godeps │ │ ├── Godeps.json │ │ ├── OWNERS │ │ └── Readme │ │ ├── INSTALL.md │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── code-of-conduct.md │ │ ├── discovery │ │ ├── BUILD │ │ ├── cached │ │ │ ├── BUILD │ │ │ ├── memcache.go │ │ │ └── memcache_test.go │ │ ├── discovery_client.go │ │ ├── discovery_client_test.go │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── discovery.go │ │ │ └── discovery_test.go │ │ ├── helper.go │ │ ├── helper_blackbox_test.go │ │ ├── restmapper.go │ │ ├── restmapper_test.go │ │ └── unstructured.go │ │ ├── dynamic │ │ ├── BUILD │ │ ├── client.go │ │ ├── client_pool.go │ │ ├── client_test.go │ │ ├── dynamic_util.go │ │ ├── dynamic_util_test.go │ │ └── fake │ │ │ ├── BUILD │ │ │ ├── client.go │ │ │ └── client_pool.go │ │ ├── examples │ │ ├── README.md │ │ ├── create-update-delete-deployment │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ └── main.go │ │ ├── in-cluster-client-configuration │ │ │ ├── BUILD │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ └── main.go │ │ ├── out-of-cluster-client-configuration │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ └── main.go │ │ └── workqueue │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ └── main.go │ │ ├── informers │ │ ├── BUILD │ │ ├── admissionregistration │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── initializerconfiguration.go │ │ │ │ └── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ ├── apps │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── interface.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── interface.go │ │ │ │ └── statefulset.go │ │ │ └── v1beta2 │ │ │ │ ├── BUILD │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── interface.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ ├── autoscaling │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ │ └── v2beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ └── interface.go │ │ ├── batch │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── job.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── cronjob.go │ │ │ │ └── interface.go │ │ │ └── v2alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── cronjob.go │ │ │ │ └── interface.go │ │ ├── certificates │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ └── interface.go │ │ ├── core │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── interface.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── node.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ └── serviceaccount.go │ │ ├── events │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── event.go │ │ │ │ └── interface.go │ │ ├── extensions │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── ingress.go │ │ │ │ ├── interface.go │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ └── replicaset.go │ │ ├── factory.go │ │ ├── generic.go │ │ ├── internalinterfaces │ │ │ ├── BUILD │ │ │ └── factory_interfaces.go │ │ ├── networking │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── networkpolicy.go │ │ ├── policy │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ └── podsecuritypolicy.go │ │ ├── rbac │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── interface.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── interface.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── interface.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ ├── scheduling │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── priorityclass.go │ │ ├── settings │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── podpreset.go │ │ └── storage │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── storageclass.go │ │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── volumeattachment.go │ │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ ├── storageclass.go │ │ │ └── volumeattachment.go │ │ ├── kubernetes │ │ ├── BUILD │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ ├── import.go │ │ ├── scheme │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ └── register.go │ │ └── typed │ │ │ ├── admissionregistration │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ └── fake_initializerconfiguration.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── initializerconfiguration.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── admissionregistration_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ └── fake_statefulset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ └── statefulset.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_scale.go │ │ │ │ │ └── fake_statefulset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── scale.go │ │ │ │ └── statefulset.go │ │ │ └── v1beta2 │ │ │ │ ├── BUILD │ │ │ │ ├── apps_client.go │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apps_client.go │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ ├── fake_daemonset.go │ │ │ │ ├── fake_deployment.go │ │ │ │ ├── fake_replicaset.go │ │ │ │ ├── fake_scale.go │ │ │ │ └── fake_statefulset.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── scale.go │ │ │ │ └── statefulset.go │ │ │ ├── authentication │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ ├── fake_tokenreview.go │ │ │ │ │ └── fake_tokenreview_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── tokenreview.go │ │ │ │ └── tokenreview_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── authentication_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_authentication_client.go │ │ │ │ ├── fake_tokenreview.go │ │ │ │ └── fake_tokenreview_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── tokenreview.go │ │ │ │ └── tokenreview_expansion.go │ │ │ ├── authorization │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ ├── fake_localsubjectaccessreview_expansion.go │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectaccessreview_expansion.go │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ ├── fake_selfsubjectrulesreview_expansion.go │ │ │ │ │ ├── fake_subjectaccessreview.go │ │ │ │ │ └── fake_subjectaccessreview_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ │ ├── subjectaccessreview.go │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── authorization_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_authorization_client.go │ │ │ │ ├── fake_generated_expansion.go │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ ├── fake_localsubjectaccessreview_expansion.go │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ ├── fake_selfsubjectaccessreview_expansion.go │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ ├── fake_selfsubjectrulesreview_expansion.go │ │ │ │ ├── fake_subjectaccessreview.go │ │ │ │ └── fake_subjectaccessreview_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ │ ├── subjectaccessreview.go │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── autoscaling_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── batch_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ └── fake_job.go │ │ │ │ ├── generated_expansion.go │ │ │ │ └── job.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ └── fake_cronjob.go │ │ │ │ └── generated_expansion.go │ │ │ └── v2alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── batch_client.go │ │ │ │ ├── cronjob.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_batch_client.go │ │ │ │ └── fake_cronjob.go │ │ │ │ └── generated_expansion.go │ │ │ ├── certificates │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── certificates_client.go │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_certificates_client.go │ │ │ │ ├── fake_certificatesigningrequest.go │ │ │ │ └── fake_certificatesigningrequest_expansion.go │ │ │ │ └── generated_expansion.go │ │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── core_client.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── event_expansion.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_componentstatus.go │ │ │ │ ├── fake_configmap.go │ │ │ │ ├── fake_core_client.go │ │ │ │ ├── fake_endpoints.go │ │ │ │ ├── fake_event.go │ │ │ │ ├── fake_event_expansion.go │ │ │ │ ├── fake_limitrange.go │ │ │ │ ├── fake_namespace.go │ │ │ │ ├── fake_namespace_expansion.go │ │ │ │ ├── fake_node.go │ │ │ │ ├── fake_node_expansion.go │ │ │ │ ├── fake_persistentvolume.go │ │ │ │ ├── fake_persistentvolumeclaim.go │ │ │ │ ├── fake_pod.go │ │ │ │ ├── fake_pod_expansion.go │ │ │ │ ├── fake_podtemplate.go │ │ │ │ ├── fake_replicationcontroller.go │ │ │ │ ├── fake_resourcequota.go │ │ │ │ ├── fake_secret.go │ │ │ │ ├── fake_service.go │ │ │ │ ├── fake_service_expansion.go │ │ │ │ ├── fake_serviceaccount.go │ │ │ │ └── fake_serviceaccount_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── namespace_expansion.go │ │ │ │ ├── node.go │ │ │ │ ├── node_expansion.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── pod_expansion.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ ├── service_expansion.go │ │ │ │ ├── serviceaccount.go │ │ │ │ └── serviceaccount_expansion.go │ │ │ ├── events │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── events_client.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_event.go │ │ │ │ └── fake_events_client.go │ │ │ │ └── generated_expansion.go │ │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── daemonset.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── doc.go │ │ │ │ ├── extensions_client.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_daemonset.go │ │ │ │ ├── fake_deployment.go │ │ │ │ ├── fake_deployment_expansion.go │ │ │ │ ├── fake_extensions_client.go │ │ │ │ ├── fake_ingress.go │ │ │ │ ├── fake_podsecuritypolicy.go │ │ │ │ ├── fake_replicaset.go │ │ │ │ ├── fake_scale.go │ │ │ │ └── fake_scale_expansion.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── ingress.go │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── scale.go │ │ │ │ └── scale_expansion.go │ │ │ ├── networking │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_networking_client.go │ │ │ │ └── fake_networkpolicy.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── networking_client.go │ │ │ │ └── networkpolicy.go │ │ │ ├── policy │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── eviction.go │ │ │ │ ├── eviction_expansion.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_eviction.go │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ ├── fake_podsecuritypolicy.go │ │ │ │ └── fake_policy_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ └── policy_client.go │ │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ ├── fake_role.go │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ ├── fake_role.go │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_clusterrole.go │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ ├── fake_rbac_client.go │ │ │ │ ├── fake_role.go │ │ │ │ └── fake_rolebinding.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── rbac_client.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── scheduling │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_priorityclass.go │ │ │ │ └── fake_scheduling_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── priorityclass.go │ │ │ │ └── scheduling_client.go │ │ │ ├── settings │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_podpreset.go │ │ │ │ └── fake_settings_client.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── podpreset.go │ │ │ │ └── settings_client.go │ │ │ └── storage │ │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_storage_client.go │ │ │ │ └── fake_storageclass.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ └── storageclass.go │ │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_storage_client.go │ │ │ │ └── fake_volumeattachment.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ └── volumeattachment.go │ │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_storage_client.go │ │ │ ├── fake_storageclass.go │ │ │ └── fake_volumeattachment.go │ │ │ ├── generated_expansion.go │ │ │ ├── storage_client.go │ │ │ ├── storageclass.go │ │ │ └── volumeattachment.go │ │ ├── listers │ │ ├── admissionregistration │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── initializerconfiguration.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ └── validatingwebhookconfiguration.go │ │ ├── apps │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicaset_expansion.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── deployment.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── scale.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ │ └── v1beta2 │ │ │ │ ├── BUILD │ │ │ │ ├── controllerrevision.go │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicaset_expansion.go │ │ │ │ ├── scale.go │ │ │ │ ├── statefulset.go │ │ │ │ └── statefulset_expansion.go │ │ ├── authentication │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── tokenreview.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── tokenreview.go │ │ ├── authorization │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ └── subjectaccessreview.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ └── subjectaccessreview.go │ │ ├── autoscaling │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ │ └── v2beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── horizontalpodautoscaler.go │ │ ├── batch │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── job.go │ │ │ │ └── job_expansion.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── cronjob.go │ │ │ │ └── expansion_generated.go │ │ │ └── v2alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── cronjob.go │ │ │ │ └── expansion_generated.go │ │ ├── certificates │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ └── expansion_generated.go │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── componentstatus.go │ │ │ │ ├── configmap.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── event.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── limitrange.go │ │ │ │ ├── namespace.go │ │ │ │ ├── node.go │ │ │ │ ├── node_expansion.go │ │ │ │ ├── persistentvolume.go │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ ├── pod.go │ │ │ │ ├── podtemplate.go │ │ │ │ ├── replicationcontroller.go │ │ │ │ ├── replicationcontroller_expansion.go │ │ │ │ ├── resourcequota.go │ │ │ │ ├── secret.go │ │ │ │ ├── service.go │ │ │ │ ├── service_expansion.go │ │ │ │ └── serviceaccount.go │ │ ├── events │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── event.go │ │ │ │ └── expansion_generated.go │ │ ├── extensions │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── daemonset.go │ │ │ │ ├── daemonset_expansion.go │ │ │ │ ├── daemonset_expansion_test.go │ │ │ │ ├── deployment.go │ │ │ │ ├── deployment_expansion.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── ingress.go │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ ├── replicaset.go │ │ │ │ ├── replicaset_expansion.go │ │ │ │ └── scale.go │ │ ├── imagepolicy │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── imagereview.go │ │ ├── networking │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── networkpolicy.go │ │ ├── policy │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── eviction.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ ├── poddisruptionbudget_expansion.go │ │ │ │ └── podsecuritypolicy.go │ │ ├── rbac │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── clusterrole.go │ │ │ │ ├── clusterrolebinding.go │ │ │ │ ├── expansion_generated.go │ │ │ │ ├── role.go │ │ │ │ └── rolebinding.go │ │ ├── scheduling │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── priorityclass.go │ │ ├── settings │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── podpreset.go │ │ └── storage │ │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ └── storageclass.go │ │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ └── volumeattachment.go │ │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ ├── storageclass.go │ │ │ └── volumeattachment.go │ │ ├── pkg │ │ ├── apis │ │ │ └── clientauthentication │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── install │ │ │ │ ├── BUILD │ │ │ │ └── install.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── version │ │ │ ├── .gitattributes │ │ │ ├── BUILD │ │ │ ├── base.go │ │ │ ├── def.bzl │ │ │ ├── doc.go │ │ │ └── version.go │ │ ├── plugin │ │ └── pkg │ │ │ └── client │ │ │ └── auth │ │ │ ├── BUILD │ │ │ ├── azure │ │ │ ├── BUILD │ │ │ ├── README.md │ │ │ ├── azure.go │ │ │ └── azure_test.go │ │ │ ├── exec │ │ │ ├── BUILD │ │ │ ├── exec.go │ │ │ ├── exec_test.go │ │ │ └── testdata │ │ │ │ └── test-plugin.sh │ │ │ ├── gcp │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── gcp.go │ │ │ └── gcp_test.go │ │ │ ├── oidc │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── oidc.go │ │ │ └── oidc_test.go │ │ │ ├── openstack │ │ │ ├── BUILD │ │ │ ├── openstack.go │ │ │ └── openstack_test.go │ │ │ └── plugins.go │ │ ├── rest │ │ ├── BUILD │ │ ├── OWNERS │ │ ├── client.go │ │ ├── client_test.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── fake │ │ │ ├── BUILD │ │ │ └── fake.go │ │ ├── plugin.go │ │ ├── plugin_test.go │ │ ├── request.go │ │ ├── request_test.go │ │ ├── transport.go │ │ ├── url_utils.go │ │ ├── url_utils_test.go │ │ ├── urlbackoff.go │ │ ├── urlbackoff_test.go │ │ ├── watch │ │ │ ├── BUILD │ │ │ ├── decoder.go │ │ │ ├── decoder_test.go │ │ │ ├── encoder.go │ │ │ └── encoder_test.go │ │ └── zz_generated.deepcopy.go │ │ ├── scale │ │ ├── BUILD │ │ ├── client.go │ │ ├── client_test.go │ │ ├── doc.go │ │ ├── fake │ │ │ ├── BUILD │ │ │ └── client.go │ │ ├── interfaces.go │ │ ├── roundtrip_test.go │ │ ├── scheme │ │ │ ├── BUILD │ │ │ ├── appsint │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ ├── appsv1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── appsv1beta2 │ │ │ │ ├── BUILD │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── autoscalingv1 │ │ │ │ ├── BUILD │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── doc.go │ │ │ ├── extensionsint │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ ├── extensionsv1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ └── zz_generated.conversion.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ └── zz_generated.deepcopy.go │ │ └── util.go │ │ ├── testing │ │ ├── BUILD │ │ ├── actions.go │ │ ├── fake.go │ │ ├── fixture.go │ │ └── fixture_test.go │ │ ├── third_party │ │ └── forked │ │ │ └── golang │ │ │ └── template │ │ │ ├── BUILD │ │ │ ├── exec.go │ │ │ └── funcs.go │ │ ├── tools │ │ ├── auth │ │ │ ├── BUILD │ │ │ ├── clientauth.go │ │ │ └── clientauth_test.go │ │ ├── bootstrap │ │ │ └── token │ │ │ │ ├── api │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ └── types.go │ │ │ │ └── util │ │ │ │ ├── BUILD │ │ │ │ ├── helpers.go │ │ │ │ └── helpers_test.go │ │ ├── cache │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── controller.go │ │ │ ├── controller_test.go │ │ │ ├── delta_fifo.go │ │ │ ├── delta_fifo_test.go │ │ │ ├── doc.go │ │ │ ├── expiration_cache.go │ │ │ ├── expiration_cache_fakes.go │ │ │ ├── expiration_cache_test.go │ │ │ ├── fake_custom_store.go │ │ │ ├── fifo.go │ │ │ ├── fifo_test.go │ │ │ ├── heap.go │ │ │ ├── heap_test.go │ │ │ ├── index.go │ │ │ ├── index_test.go │ │ │ ├── listers.go │ │ │ ├── listwatch.go │ │ │ ├── mutation_cache.go │ │ │ ├── mutation_detector.go │ │ │ ├── mutation_detector_test.go │ │ │ ├── processor_listener_test.go │ │ │ ├── reflector.go │ │ │ ├── reflector_metrics.go │ │ │ ├── reflector_test.go │ │ │ ├── shared_informer.go │ │ │ ├── shared_informer_test.go │ │ │ ├── store.go │ │ │ ├── store_test.go │ │ │ ├── testing │ │ │ │ ├── BUILD │ │ │ │ ├── fake_controller_source.go │ │ │ │ └── fake_controller_source_test.go │ │ │ ├── thread_safe_store.go │ │ │ ├── undelta_store.go │ │ │ └── undelta_store_test.go │ │ ├── clientcmd │ │ │ ├── BUILD │ │ │ ├── api │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── helpers.go │ │ │ │ ├── helpers_test.go │ │ │ │ ├── latest │ │ │ │ │ ├── BUILD │ │ │ │ │ └── latest.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_test.go │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── auth_loaders.go │ │ │ ├── client_config.go │ │ │ ├── client_config_test.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── flag.go │ │ │ ├── helpers.go │ │ │ ├── loader.go │ │ │ ├── loader_test.go │ │ │ ├── merged_client_builder.go │ │ │ ├── merged_client_builder_test.go │ │ │ ├── overrides.go │ │ │ ├── overrides_test.go │ │ │ ├── validation.go │ │ │ └── validation_test.go │ │ ├── leaderelection │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── leaderelection.go │ │ │ ├── leaderelection_test.go │ │ │ └── resourcelock │ │ │ │ ├── BUILD │ │ │ │ ├── configmaplock.go │ │ │ │ ├── endpointslock.go │ │ │ │ └── interface.go │ │ ├── metrics │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ └── metrics.go │ │ ├── pager │ │ │ ├── BUILD │ │ │ ├── pager.go │ │ │ └── pager_test.go │ │ ├── portforward │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── portforward.go │ │ │ └── portforward_test.go │ │ ├── record │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── event_test.go │ │ │ ├── events_cache.go │ │ │ ├── events_cache_test.go │ │ │ └── fake.go │ │ ├── reference │ │ │ ├── BUILD │ │ │ └── ref.go │ │ └── remotecommand │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── errorstream.go │ │ │ ├── remotecommand.go │ │ │ ├── resize.go │ │ │ ├── v1.go │ │ │ ├── v2.go │ │ │ ├── v2_test.go │ │ │ ├── v3.go │ │ │ ├── v4.go │ │ │ └── v4_test.go │ │ ├── transport │ │ ├── BUILD │ │ ├── OWNERS │ │ ├── cache.go │ │ ├── cache_test.go │ │ ├── config.go │ │ ├── round_trippers.go │ │ ├── round_trippers_test.go │ │ ├── spdy │ │ │ ├── BUILD │ │ │ └── spdy.go │ │ ├── transport.go │ │ └── transport_test.go │ │ └── util │ │ ├── buffer │ │ ├── BUILD │ │ ├── ring_growing.go │ │ └── ring_growing_test.go │ │ ├── cert │ │ ├── BUILD │ │ ├── cert.go │ │ ├── csr.go │ │ ├── csr_test.go │ │ ├── io.go │ │ ├── pem.go │ │ ├── pem_test.go │ │ ├── testdata │ │ │ └── dontUseThisKey.pem │ │ └── triple │ │ │ ├── BUILD │ │ │ └── triple.go │ │ ├── certificate │ │ ├── BUILD │ │ ├── OWNERS │ │ ├── certificate_manager.go │ │ ├── certificate_manager_test.go │ │ ├── certificate_store.go │ │ ├── certificate_store_test.go │ │ └── csr │ │ │ ├── BUILD │ │ │ ├── csr.go │ │ │ └── csr_test.go │ │ ├── exec │ │ ├── BUILD │ │ └── exec.go │ │ ├── flowcontrol │ │ ├── BUILD │ │ ├── backoff.go │ │ ├── backoff_test.go │ │ ├── throttle.go │ │ └── throttle_test.go │ │ ├── homedir │ │ ├── BUILD │ │ └── homedir.go │ │ ├── integer │ │ ├── BUILD │ │ ├── integer.go │ │ └── integer_test.go │ │ ├── jsonpath │ │ ├── BUILD │ │ ├── doc.go │ │ ├── jsonpath.go │ │ ├── jsonpath_test.go │ │ ├── node.go │ │ ├── parser.go │ │ └── parser_test.go │ │ ├── retry │ │ ├── BUILD │ │ ├── OWNERS │ │ ├── util.go │ │ └── util_test.go │ │ ├── testing │ │ ├── BUILD │ │ ├── fake_handler.go │ │ ├── fake_handler_test.go │ │ └── tmpdir.go │ │ └── workqueue │ │ ├── BUILD │ │ ├── default_rate_limiters.go │ │ ├── default_rate_limiters_test.go │ │ ├── delaying_queue.go │ │ ├── delaying_queue_test.go │ │ ├── doc.go │ │ ├── metrics.go │ │ ├── parallelizer.go │ │ ├── queue.go │ │ ├── queue_test.go │ │ ├── rate_limitting_queue.go │ │ └── rate_limitting_queue_test.go └── python │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ └── client.py ├── Lesson03 ├── README.md ├── k8s-operator-example │ ├── .gitignore │ ├── Gopkg.lock │ ├── Gopkg.toml │ ├── README.md │ ├── cmd │ │ └── k8s-operator-example │ │ │ └── main.go │ ├── config │ │ └── config.yaml │ ├── deploy │ │ ├── cr.yaml │ │ ├── crd.yaml │ │ └── operator.yaml │ ├── pkg │ │ ├── apis │ │ │ └── k8s │ │ │ │ └── v1 │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── stub │ │ │ └── handler.go │ ├── tmp │ │ ├── build │ │ │ ├── Dockerfile │ │ │ ├── build.sh │ │ │ └── docker_build.sh │ │ └── codegen │ │ │ ├── boilerplate.go.txt │ │ │ └── update-generated.sh │ └── vendor │ │ ├── github.com │ │ ├── PuerkitoBio │ │ │ ├── purell │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bench_test.go │ │ │ │ ├── benchmarks │ │ │ │ │ └── v0.1.0 │ │ │ │ ├── example_test.go │ │ │ │ ├── purell.go │ │ │ │ ├── purell_test.go │ │ │ │ └── urlnorm_test.go │ │ │ └── urlesc │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── urlesc.go │ │ │ │ └── urlesc_test.go │ │ ├── davecgh │ │ │ └── go-spew │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── cov_report.sh │ │ │ │ ├── spew │ │ │ │ ├── bypass.go │ │ │ │ ├── bypasssafe.go │ │ │ │ ├── common.go │ │ │ │ ├── common_test.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── dump.go │ │ │ │ ├── dump_test.go │ │ │ │ ├── dumpcgo_test.go │ │ │ │ ├── dumpnocgo_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── format.go │ │ │ │ ├── format_test.go │ │ │ │ ├── internal_test.go │ │ │ │ ├── internalunsafe_test.go │ │ │ │ ├── spew.go │ │ │ │ ├── spew_test.go │ │ │ │ └── testdata │ │ │ │ │ └── dumpcgo.go │ │ │ │ └── test_coverage.txt │ │ ├── emicklei │ │ │ └── go-restful │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── Srcfile │ │ │ │ ├── bench_curly_test.go │ │ │ │ ├── bench_test.go │ │ │ │ ├── bench_test.sh │ │ │ │ ├── compress.go │ │ │ │ ├── compress_test.go │ │ │ │ ├── compressor_cache.go │ │ │ │ ├── compressor_pools.go │ │ │ │ ├── compressors.go │ │ │ │ ├── constants.go │ │ │ │ ├── container.go │ │ │ │ ├── container_test.go │ │ │ │ ├── cors_filter.go │ │ │ │ ├── cors_filter_test.go │ │ │ │ ├── coverage.sh │ │ │ │ ├── curly.go │ │ │ │ ├── curly_route.go │ │ │ │ ├── curly_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── doc_examples_test.go │ │ │ │ ├── entity_accessors.go │ │ │ │ ├── entity_accessors_test.go │ │ │ │ ├── examples │ │ │ │ ├── .goconvey │ │ │ │ ├── google_app_engine │ │ │ │ │ ├── .goconvey │ │ │ │ │ ├── app.yaml │ │ │ │ │ ├── datastore │ │ │ │ │ │ ├── .goconvey │ │ │ │ │ │ ├── app.yaml │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── restful-appstats-integration.go │ │ │ │ │ └── restful-user-service.go │ │ │ │ ├── home.html │ │ │ │ ├── msgpack │ │ │ │ │ ├── msgpack_entity.go │ │ │ │ │ └── msgpack_entity_test.go │ │ │ │ ├── restful-CORS-filter.go │ │ │ │ ├── restful-NCSA-logging.go │ │ │ │ ├── restful-basic-authentication.go │ │ │ │ ├── restful-cpuprofiler-service.go │ │ │ │ ├── restful-curly-router.go │ │ │ │ ├── restful-curly-router_test.go │ │ │ │ ├── restful-encoding-filter.go │ │ │ │ ├── restful-filters.go │ │ │ │ ├── restful-form-handling.go │ │ │ │ ├── restful-hello-world.go │ │ │ │ ├── restful-html-template.go │ │ │ │ ├── restful-multi-containers.go │ │ │ │ ├── restful-no-cache-filter.go │ │ │ │ ├── restful-openapi.go │ │ │ │ ├── restful-options-filter.go │ │ │ │ ├── restful-path-tail.go │ │ │ │ ├── restful-pre-post-filters.go │ │ │ │ ├── restful-resource-functions.go │ │ │ │ ├── restful-route_test.go │ │ │ │ ├── restful-routefunction_test.go │ │ │ │ ├── restful-serve-static.go │ │ │ │ ├── restful-swagger.go │ │ │ │ └── restful-user-resource.go │ │ │ │ ├── filter.go │ │ │ │ ├── filter_test.go │ │ │ │ ├── jsr311.go │ │ │ │ ├── jsr311_test.go │ │ │ │ ├── log │ │ │ │ └── log.go │ │ │ │ ├── logger.go │ │ │ │ ├── mime.go │ │ │ │ ├── mime_test.go │ │ │ │ ├── options_filter.go │ │ │ │ ├── options_filter_test.go │ │ │ │ ├── parameter.go │ │ │ │ ├── path_expression.go │ │ │ │ ├── path_expression_test.go │ │ │ │ ├── path_processor.go │ │ │ │ ├── path_processor_test.go │ │ │ │ ├── request.go │ │ │ │ ├── request_test.go │ │ │ │ ├── response.go │ │ │ │ ├── response_test.go │ │ │ │ ├── route.go │ │ │ │ ├── route_builder.go │ │ │ │ ├── route_builder_test.go │ │ │ │ ├── route_test.go │ │ │ │ ├── router.go │ │ │ │ ├── service_error.go │ │ │ │ ├── tracer_test.go │ │ │ │ ├── web_service.go │ │ │ │ ├── web_service_container.go │ │ │ │ └── web_service_test.go │ │ ├── ghodss │ │ │ └── yaml │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── fields.go │ │ │ │ ├── yaml.go │ │ │ │ └── yaml_test.go │ │ ├── go-openapi │ │ │ ├── jsonpointer │ │ │ │ ├── .editorconfig │ │ │ │ ├── .github │ │ │ │ │ └── CONTRIBUTING.md │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── pointer.go │ │ │ │ └── pointer_test.go │ │ │ ├── jsonreference │ │ │ │ ├── .github │ │ │ │ │ └── CONTRIBUTING.md │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── reference.go │ │ │ │ └── reference_test.go │ │ │ ├── spec │ │ │ │ ├── .editorconfig │ │ │ │ ├── .github │ │ │ │ │ └── CONTRIBUTING.md │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── auth_test.go │ │ │ │ ├── bindata.go │ │ │ │ ├── contact_info.go │ │ │ │ ├── contact_info_test.go │ │ │ │ ├── expander.go │ │ │ │ ├── expander_test.go │ │ │ │ ├── external_docs.go │ │ │ │ ├── external_docs_test.go │ │ │ │ ├── fixtures │ │ │ │ │ ├── expansion │ │ │ │ │ │ ├── all-the-things.json │ │ │ │ │ │ ├── circularRefs.json │ │ │ │ │ │ ├── circularSpec.json │ │ │ │ │ │ ├── circularSpec.yaml │ │ │ │ │ │ ├── clickmeter.json │ │ │ │ │ │ ├── clickmeter.yaml │ │ │ │ │ │ ├── invalid-refs.json │ │ │ │ │ │ ├── missingItemRef.json │ │ │ │ │ │ ├── missingRef.json │ │ │ │ │ │ ├── overflow.json │ │ │ │ │ │ ├── params.json │ │ │ │ │ │ ├── schemas1.json │ │ │ │ │ │ └── schemas2.json │ │ │ │ │ ├── local_expansion │ │ │ │ │ │ ├── item.json │ │ │ │ │ │ └── spec.json │ │ │ │ │ ├── remote │ │ │ │ │ │ ├── all-the-things.json │ │ │ │ │ │ └── pet │ │ │ │ │ │ │ └── pet.json │ │ │ │ │ └── specs │ │ │ │ │ │ ├── deeper │ │ │ │ │ │ ├── arrayProp.json │ │ │ │ │ │ └── stringProp.json │ │ │ │ │ │ ├── refed.json │ │ │ │ │ │ ├── resolution.json │ │ │ │ │ │ ├── resolution2.json │ │ │ │ │ │ ├── todos.common.json │ │ │ │ │ │ └── todos.json │ │ │ │ ├── header.go │ │ │ │ ├── header_test.go │ │ │ │ ├── info.go │ │ │ │ ├── info_test.go │ │ │ │ ├── items.go │ │ │ │ ├── items_test.go │ │ │ │ ├── license.go │ │ │ │ ├── license_test.go │ │ │ │ ├── operation.go │ │ │ │ ├── operation_test.go │ │ │ │ ├── parameter.go │ │ │ │ ├── parameters_test.go │ │ │ │ ├── path_item.go │ │ │ │ ├── path_item_test.go │ │ │ │ ├── paths.go │ │ │ │ ├── paths_test.go │ │ │ │ ├── properties_test.go │ │ │ │ ├── ref.go │ │ │ │ ├── response.go │ │ │ │ ├── response_test.go │ │ │ │ ├── responses.go │ │ │ │ ├── schema.go │ │ │ │ ├── schema_test.go │ │ │ │ ├── schemas │ │ │ │ │ ├── jsonschema-draft-04.json │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── schema.json │ │ │ │ ├── security_scheme.go │ │ │ │ ├── spec.go │ │ │ │ ├── structs_test.go │ │ │ │ ├── swagger.go │ │ │ │ ├── swagger_test.go │ │ │ │ ├── tag.go │ │ │ │ ├── xml_object.go │ │ │ │ └── xml_object_test.go │ │ │ └── swag │ │ │ │ ├── .editorconfig │ │ │ │ ├── .github │ │ │ │ └── CONTRIBUTING.md │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── convert.go │ │ │ │ ├── convert_test.go │ │ │ │ ├── convert_types.go │ │ │ │ ├── convert_types_test.go │ │ │ │ ├── json.go │ │ │ │ ├── json_test.go │ │ │ │ ├── loading.go │ │ │ │ ├── loading_test.go │ │ │ │ ├── net.go │ │ │ │ ├── net_test.go │ │ │ │ ├── path.go │ │ │ │ ├── path_test.go │ │ │ │ ├── post_go18.go │ │ │ │ ├── pre_go18.go │ │ │ │ ├── util.go │ │ │ │ ├── util_test.go │ │ │ │ ├── yaml.go │ │ │ │ └── yaml_test.go │ │ ├── gogo │ │ │ └── protobuf │ │ │ │ ├── .gitignore │ │ │ │ ├── .mailmap │ │ │ │ ├── .travis.yml │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── GOLANG_CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── Readme.md │ │ │ │ ├── _conformance │ │ │ │ ├── Makefile │ │ │ │ ├── conformance.go │ │ │ │ └── conformance_proto │ │ │ │ │ ├── conformance.pb.go │ │ │ │ │ └── conformance.proto │ │ │ │ ├── bench.md │ │ │ │ ├── codec │ │ │ │ ├── codec.go │ │ │ │ └── codec_test.go │ │ │ │ ├── custom_types.md │ │ │ │ ├── extensions.md │ │ │ │ ├── gogoproto │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── gogo.pb.go │ │ │ │ ├── gogo.pb.golden │ │ │ │ ├── gogo.proto │ │ │ │ └── helper.go │ │ │ │ ├── gogoreplace │ │ │ │ └── main.go │ │ │ │ ├── install-protobuf.sh │ │ │ │ ├── io │ │ │ │ ├── full.go │ │ │ │ ├── io.go │ │ │ │ ├── io_test.go │ │ │ │ ├── uint32.go │ │ │ │ ├── uint32_test.go │ │ │ │ └── varint.go │ │ │ │ ├── jsonpb │ │ │ │ ├── jsonpb.go │ │ │ │ ├── jsonpb_test.go │ │ │ │ └── jsonpb_test_proto │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── bytes.go │ │ │ │ │ ├── more_test_objects.pb.go │ │ │ │ │ ├── more_test_objects.proto │ │ │ │ │ ├── test_objects.pb.go │ │ │ │ │ └── test_objects.proto │ │ │ │ ├── plugin │ │ │ │ ├── compare │ │ │ │ │ ├── compare.go │ │ │ │ │ └── comparetest.go │ │ │ │ ├── defaultcheck │ │ │ │ │ └── defaultcheck.go │ │ │ │ ├── description │ │ │ │ │ ├── description.go │ │ │ │ │ └── descriptiontest.go │ │ │ │ ├── embedcheck │ │ │ │ │ └── embedcheck.go │ │ │ │ ├── enumstringer │ │ │ │ │ └── enumstringer.go │ │ │ │ ├── equal │ │ │ │ │ ├── equal.go │ │ │ │ │ └── equaltest.go │ │ │ │ ├── face │ │ │ │ │ ├── face.go │ │ │ │ │ └── facetest.go │ │ │ │ ├── gostring │ │ │ │ │ ├── gostring.go │ │ │ │ │ └── gostringtest.go │ │ │ │ ├── marshalto │ │ │ │ │ └── marshalto.go │ │ │ │ ├── oneofcheck │ │ │ │ │ └── oneofcheck.go │ │ │ │ ├── populate │ │ │ │ │ └── populate.go │ │ │ │ ├── size │ │ │ │ │ ├── size.go │ │ │ │ │ └── sizetest.go │ │ │ │ ├── stringer │ │ │ │ │ ├── stringer.go │ │ │ │ │ └── stringertest.go │ │ │ │ ├── testgen │ │ │ │ │ └── testgen.go │ │ │ │ ├── union │ │ │ │ │ ├── union.go │ │ │ │ │ └── uniontest.go │ │ │ │ └── unmarshal │ │ │ │ │ └── unmarshal.go │ │ │ │ ├── proto │ │ │ │ ├── Makefile │ │ │ │ ├── all_test.go │ │ │ │ ├── any_test.go │ │ │ │ ├── clone.go │ │ │ │ ├── clone_test.go │ │ │ │ ├── decode.go │ │ │ │ ├── decode_gogo.go │ │ │ │ ├── decode_test.go │ │ │ │ ├── discard.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration_gogo.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_gogo.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── equal.go │ │ │ │ ├── equal_test.go │ │ │ │ ├── extensions.go │ │ │ │ ├── extensions_gogo.go │ │ │ │ ├── extensions_test.go │ │ │ │ ├── lib.go │ │ │ │ ├── lib_gogo.go │ │ │ │ ├── map_test.go │ │ │ │ ├── message_set.go │ │ │ │ ├── message_set_test.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_reflect_gogo.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── pointer_unsafe_gogo.go │ │ │ │ ├── properties.go │ │ │ │ ├── properties_gogo.go │ │ │ │ ├── proto3_proto │ │ │ │ │ ├── proto3.pb.go │ │ │ │ │ └── proto3.proto │ │ │ │ ├── proto3_test.go │ │ │ │ ├── size2_test.go │ │ │ │ ├── size_test.go │ │ │ │ ├── skip_gogo.go │ │ │ │ ├── testdata │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── golden_test.go │ │ │ │ │ ├── test.pb.go │ │ │ │ │ ├── test.pb.go.golden │ │ │ │ │ └── test.proto │ │ │ │ ├── text.go │ │ │ │ ├── text_gogo.go │ │ │ │ ├── text_parser.go │ │ │ │ ├── text_parser_test.go │ │ │ │ ├── text_test.go │ │ │ │ ├── timestamp.go │ │ │ │ └── timestamp_gogo.go │ │ │ │ ├── protobuf │ │ │ │ ├── Makefile │ │ │ │ └── google │ │ │ │ │ └── protobuf │ │ │ │ │ ├── any.proto │ │ │ │ │ ├── compiler │ │ │ │ │ └── plugin.proto │ │ │ │ │ ├── descriptor.proto │ │ │ │ │ ├── duration.proto │ │ │ │ │ ├── empty.proto │ │ │ │ │ ├── field_mask.proto │ │ │ │ │ ├── struct.proto │ │ │ │ │ ├── timestamp.proto │ │ │ │ │ └── wrappers.proto │ │ │ │ ├── protoc-gen-combo │ │ │ │ └── combo.go │ │ │ │ ├── protoc-gen-gofast │ │ │ │ └── main.go │ │ │ │ ├── protoc-gen-gogo │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── descriptor.go │ │ │ │ │ ├── descriptor.pb.go │ │ │ │ │ ├── descriptor_gostring.gen.go │ │ │ │ │ ├── descriptor_test.go │ │ │ │ │ └── helper.go │ │ │ │ ├── doc.go │ │ │ │ ├── generator │ │ │ │ │ ├── generator.go │ │ │ │ │ ├── helper.go │ │ │ │ │ └── name_test.go │ │ │ │ ├── grpc │ │ │ │ │ └── grpc.go │ │ │ │ ├── main.go │ │ │ │ ├── plugin │ │ │ │ │ ├── Makefile │ │ │ │ │ └── plugin.pb.go │ │ │ │ └── testdata │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── extension_base.proto │ │ │ │ │ ├── extension_extra.proto │ │ │ │ │ ├── extension_test.go │ │ │ │ │ ├── extension_user.proto │ │ │ │ │ ├── grpc.proto │ │ │ │ │ ├── imp.pb.go.golden │ │ │ │ │ ├── imp.proto │ │ │ │ │ ├── imp2.proto │ │ │ │ │ ├── imp3.proto │ │ │ │ │ ├── main_test.go │ │ │ │ │ ├── multi │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── multi1.proto │ │ │ │ │ ├── multi2.proto │ │ │ │ │ └── multi3.proto │ │ │ │ │ ├── my_test │ │ │ │ │ ├── test.pb.go │ │ │ │ │ └── test.proto │ │ │ │ │ └── proto3.proto │ │ │ │ ├── protoc-gen-gogofast │ │ │ │ └── main.go │ │ │ │ ├── protoc-gen-gogofaster │ │ │ │ └── main.go │ │ │ │ ├── protoc-gen-gogoslick │ │ │ │ └── main.go │ │ │ │ ├── protoc-gen-gogotypes │ │ │ │ └── main.go │ │ │ │ ├── protoc-gen-gostring │ │ │ │ └── main.go │ │ │ │ ├── protoc-min-version │ │ │ │ └── minversion.go │ │ │ │ ├── sortkeys │ │ │ │ └── sortkeys.go │ │ │ │ ├── test │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── asymetric-issue125 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asym.pb.go │ │ │ │ │ ├── asym.proto │ │ │ │ │ ├── asym_test.go │ │ │ │ │ ├── asympb_test.go │ │ │ │ │ └── pop.go │ │ │ │ ├── bug_test.go │ │ │ │ ├── casttype │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── casttype.proto │ │ │ │ │ ├── combos │ │ │ │ │ │ ├── both │ │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ │ ├── marshaler │ │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ │ ├── neither │ │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ │ └── unmarshaler │ │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ └── mytypes.go │ │ │ │ ├── castvalue │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ ├── combos │ │ │ │ │ │ ├── both │ │ │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ │ │ └── mytypes.go │ │ │ │ │ │ ├── marshaler │ │ │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ │ │ └── mytypes.go │ │ │ │ │ │ └── unmarshaler │ │ │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ │ │ └── mytypes.go │ │ │ │ │ └── mytypes.go │ │ │ │ ├── combos │ │ │ │ │ ├── both │ │ │ │ │ │ ├── bug_test.go │ │ │ │ │ │ ├── t.go │ │ │ │ │ │ ├── thetest.pb.go │ │ │ │ │ │ ├── thetest.proto │ │ │ │ │ │ ├── thetestpb_test.go │ │ │ │ │ │ └── uuid.go │ │ │ │ │ ├── marshaler │ │ │ │ │ │ ├── bug_test.go │ │ │ │ │ │ ├── t.go │ │ │ │ │ │ ├── thetest.pb.go │ │ │ │ │ │ ├── thetest.proto │ │ │ │ │ │ ├── thetestpb_test.go │ │ │ │ │ │ └── uuid.go │ │ │ │ │ └── unmarshaler │ │ │ │ │ │ ├── bug_test.go │ │ │ │ │ │ ├── t.go │ │ │ │ │ │ ├── thetest.pb.go │ │ │ │ │ │ ├── thetest.proto │ │ │ │ │ │ ├── thetestpb_test.go │ │ │ │ │ │ └── uuid.go │ │ │ │ ├── custom-dash-type │ │ │ │ │ └── customdash.go │ │ │ │ ├── custom │ │ │ │ │ ├── custom.go │ │ │ │ │ └── custom_test.go │ │ │ │ ├── custombytesnonstruct │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── custombytesnonstruct_test.go │ │ │ │ │ ├── customtype.go │ │ │ │ │ ├── proto.pb.go │ │ │ │ │ └── proto.proto │ │ │ │ ├── dashfilename │ │ │ │ │ ├── dash-filename.proto │ │ │ │ │ ├── df_test.go │ │ │ │ │ └── doc.go │ │ │ │ ├── data │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── data.pb.go │ │ │ │ │ ├── data.proto │ │ │ │ │ └── datapb_test.go │ │ │ │ ├── defaultconflict │ │ │ │ │ ├── df.proto │ │ │ │ │ ├── dg.proto │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── nc.proto │ │ │ │ │ ├── nc_test.go │ │ │ │ │ ├── ne.proto │ │ │ │ │ └── nx.proto │ │ │ │ ├── embedconflict │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── eb.proto │ │ │ │ │ ├── ec.proto │ │ │ │ │ ├── ec_test.go │ │ │ │ │ ├── ee.proto │ │ │ │ │ ├── em.proto │ │ │ │ │ ├── en.proto │ │ │ │ │ └── er.proto │ │ │ │ ├── empty-issue70 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── empty.pb.go │ │ │ │ │ ├── empty.proto │ │ │ │ │ └── empty_test.go │ │ │ │ ├── enumcustomname │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── enumcustomname.pb.go │ │ │ │ │ └── enumcustomname.proto │ │ │ │ ├── enumdecl │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── enumdecl.pb.go │ │ │ │ │ ├── enumdecl.proto │ │ │ │ │ ├── enumdeclpb_test.go │ │ │ │ │ └── models.go │ │ │ │ ├── enumdecl_all │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── enumdeclall.pb.go │ │ │ │ │ ├── enumdeclall.proto │ │ │ │ │ ├── enumdeclallpb_test.go │ │ │ │ │ └── models.go │ │ │ │ ├── enumprefix │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── enumprefix.pb.go │ │ │ │ │ └── enumprefix.proto │ │ │ │ ├── enumstringer │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── enumstringer.pb.go │ │ │ │ │ ├── enumstringer.proto │ │ │ │ │ ├── enumstringerpb_test.go │ │ │ │ │ └── string.go │ │ │ │ ├── example │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── example.pb.go │ │ │ │ │ ├── example.proto │ │ │ │ │ ├── example_test.go │ │ │ │ │ └── examplepb_test.go │ │ │ │ ├── extension_test.go │ │ │ │ ├── filedotname │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── file.dot.pb.go │ │ │ │ │ ├── file.dot.proto │ │ │ │ │ └── file.dotpb_test.go │ │ │ │ ├── fuzztests │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── fuzz.pb.go │ │ │ │ │ ├── fuzz.proto │ │ │ │ │ └── fuzz_test.go │ │ │ │ ├── group │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── group.pb.go │ │ │ │ │ ├── group.proto │ │ │ │ │ └── grouppb_test.go │ │ │ │ ├── importdedup │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── importdedup_test.go │ │ │ │ │ ├── proto.pb.go │ │ │ │ │ ├── proto.proto │ │ │ │ │ └── subpkg │ │ │ │ │ │ ├── customtype.go │ │ │ │ │ │ ├── subproto.pb.go │ │ │ │ │ │ └── subproto.proto │ │ │ │ ├── importduplicate │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── importduplicate.pb.go │ │ │ │ │ ├── importduplicate.proto │ │ │ │ │ ├── importduplicate_test.go │ │ │ │ │ ├── importduplicatepb_test.go │ │ │ │ │ ├── proto │ │ │ │ │ │ ├── proto.pb.go │ │ │ │ │ │ ├── proto.proto │ │ │ │ │ │ └── protopb_test.go │ │ │ │ │ └── sortkeys │ │ │ │ │ │ ├── sortable.pb.go │ │ │ │ │ │ ├── sortable.proto │ │ │ │ │ │ └── sortablepb_test.go │ │ │ │ ├── indeximport-issue72 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── index │ │ │ │ │ │ ├── index.pb.go │ │ │ │ │ │ ├── index.proto │ │ │ │ │ │ └── indexpb_test.go │ │ │ │ │ ├── indeximport.pb.go │ │ │ │ │ ├── indeximport.proto │ │ │ │ │ └── indeximportpb_test.go │ │ │ │ ├── int64support │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── object.pb.go │ │ │ │ │ ├── object.proto │ │ │ │ │ ├── object_js.go │ │ │ │ │ ├── object_js_test.go │ │ │ │ │ └── objectpb_test.go │ │ │ │ ├── issue260 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── issue260.pb.go │ │ │ │ │ ├── issue260.proto │ │ │ │ │ ├── issue260pb_test.go │ │ │ │ │ └── models.go │ │ │ │ ├── issue261 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── issue261.pb.go │ │ │ │ │ └── issue261.proto │ │ │ │ ├── issue262 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── timefail.pb.go │ │ │ │ │ └── timefail.proto │ │ │ │ ├── issue270 │ │ │ │ │ ├── a │ │ │ │ │ │ ├── a1.proto │ │ │ │ │ │ └── a2.proto │ │ │ │ │ ├── b │ │ │ │ │ │ └── b.proto │ │ │ │ │ ├── doc.go │ │ │ │ │ └── issue270_test.go │ │ │ │ ├── issue312 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── events │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── events.pb.go │ │ │ │ │ │ ├── events.proto │ │ │ │ │ │ └── eventspb_test.go │ │ │ │ │ ├── issue312.pb.go │ │ │ │ │ └── issue312.proto │ │ │ │ ├── issue322 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── issue322.pb.go │ │ │ │ │ ├── issue322.proto │ │ │ │ │ └── issue322pb_test.go │ │ │ │ ├── issue330 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── issue330.pb.go │ │ │ │ │ ├── issue330.proto │ │ │ │ │ ├── issue330pb_test.go │ │ │ │ │ └── type.go │ │ │ │ ├── issue34 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── issue34_test.go │ │ │ │ │ ├── proto.pb.go │ │ │ │ │ └── proto.proto │ │ │ │ ├── issue42order │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── issue42.pb.go │ │ │ │ │ ├── issue42.proto │ │ │ │ │ └── order_test.go │ │ │ │ ├── issue8 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── proto.pb.go │ │ │ │ │ ├── proto.proto │ │ │ │ │ └── protopb_test.go │ │ │ │ ├── jsonpb-gogo │ │ │ │ │ ├── jsonpb_gogo.go │ │ │ │ │ └── jsonpb_gogo_test.go │ │ │ │ ├── mapdefaults │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── combos │ │ │ │ │ │ ├── both │ │ │ │ │ │ │ ├── map.pb.go │ │ │ │ │ │ │ ├── map.proto │ │ │ │ │ │ │ ├── map_test.go │ │ │ │ │ │ │ └── mappb_test.go │ │ │ │ │ │ ├── marshaler │ │ │ │ │ │ │ ├── map.pb.go │ │ │ │ │ │ │ ├── map.proto │ │ │ │ │ │ │ ├── map_test.go │ │ │ │ │ │ │ └── mappb_test.go │ │ │ │ │ │ ├── neither │ │ │ │ │ │ │ ├── map.pb.go │ │ │ │ │ │ │ ├── map.proto │ │ │ │ │ │ │ ├── map_test.go │ │ │ │ │ │ │ └── mappb_test.go │ │ │ │ │ │ └── unmarshaler │ │ │ │ │ │ │ ├── map.pb.go │ │ │ │ │ │ │ ├── map.proto │ │ │ │ │ │ │ ├── map_test.go │ │ │ │ │ │ │ └── mappb_test.go │ │ │ │ │ ├── map.pb.go │ │ │ │ │ ├── map.proto │ │ │ │ │ └── map_test.go.in │ │ │ │ ├── mapsproto2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── combos │ │ │ │ │ │ ├── both │ │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ │ ├── marshaler │ │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ │ ├── neither │ │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ │ └── unmarshaler │ │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── header.proto │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ └── mapsproto2_test.go.in │ │ │ │ ├── mixbench │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── marshal.txt │ │ │ │ │ ├── marshaler.txt │ │ │ │ │ ├── mixbench.go │ │ │ │ │ ├── oldmarshaler.txt │ │ │ │ │ ├── oldunmarshaler.txt │ │ │ │ │ ├── unmarshal.txt │ │ │ │ │ ├── unmarshaler.txt │ │ │ │ │ ├── unsafe_marshaler.txt │ │ │ │ │ └── unsafe_unmarshaler.txt │ │ │ │ ├── moredefaults │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── md.pb.go │ │ │ │ │ ├── md.proto │ │ │ │ │ ├── md_test.go │ │ │ │ │ └── mdpb_test.go │ │ │ │ ├── nopackage │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── nopackage.pb.go │ │ │ │ │ ├── nopackage.proto │ │ │ │ │ └── nopackage_test.go │ │ │ │ ├── oneof │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── combos │ │ │ │ │ │ ├── both │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ ├── marshaler │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ ├── neither │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ └── unmarshaler │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── one.proto │ │ │ │ ├── oneof3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── combos │ │ │ │ │ │ ├── both │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ ├── marshaler │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ ├── neither │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ │ └── unmarshaler │ │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── one.proto │ │ │ │ ├── oneofembed │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── oneofembed.pb.go │ │ │ │ │ ├── oneofembed.proto │ │ │ │ │ └── oneofembedpb_test.go │ │ │ │ ├── packed │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── packed.pb.go │ │ │ │ │ ├── packed.proto │ │ │ │ │ └── packed_test.go │ │ │ │ ├── proto3extension │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── proto3ext.pb.go │ │ │ │ │ └── proto3ext.proto │ │ │ │ ├── protosize │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── protosize.pb.go │ │ │ │ │ ├── protosize.proto │ │ │ │ │ ├── protosize_test.go │ │ │ │ │ └── protosizepb_test.go │ │ │ │ ├── registration │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── registration.proto │ │ │ │ │ └── registration_test.go.in │ │ │ │ ├── required │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── requiredexample.pb.go │ │ │ │ │ ├── requiredexample.proto │ │ │ │ │ └── requiredexamplepb_test.go │ │ │ │ ├── sizerconflict │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── sizerconflict.proto │ │ │ │ │ └── sizerconflict_test.go │ │ │ │ ├── sizeunderscore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── sizeunderscore.pb.go │ │ │ │ │ ├── sizeunderscore.proto │ │ │ │ │ └── sizeunderscorepb_test.go │ │ │ │ ├── stdtypes │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── concurrency_test.go │ │ │ │ │ ├── stdtypes.pb.go │ │ │ │ │ ├── stdtypes.proto │ │ │ │ │ └── stdtypespb_test.go │ │ │ │ ├── t.go │ │ │ │ ├── tags │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── tags.pb.go │ │ │ │ │ ├── tags.proto │ │ │ │ │ └── tags_test.go │ │ │ │ ├── theproto3 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── combos │ │ │ │ │ │ ├── both │ │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ │ ├── marshaler │ │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ │ ├── neither │ │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ │ └── unmarshaler │ │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── footer.proto │ │ │ │ │ ├── header.proto │ │ │ │ │ ├── maps.proto │ │ │ │ │ ├── proto3_test.go.in │ │ │ │ │ └── theproto3.proto │ │ │ │ ├── thetest.pb.go │ │ │ │ ├── thetest.proto │ │ │ │ ├── thetestpb_test.go │ │ │ │ ├── typedecl │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── models.go │ │ │ │ │ ├── typedecl.pb.go │ │ │ │ │ ├── typedecl.proto │ │ │ │ │ └── typedeclpb_test.go │ │ │ │ ├── typedecl_all │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── models.go │ │ │ │ │ ├── typedeclall.pb.go │ │ │ │ │ ├── typedeclall.proto │ │ │ │ │ └── typedeclallpb_test.go │ │ │ │ ├── typedeclimport │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── models.go │ │ │ │ │ ├── subpkg │ │ │ │ │ │ ├── subpkg.pb.go │ │ │ │ │ │ └── subpkg.proto │ │ │ │ │ ├── typedeclimport.pb.go │ │ │ │ │ ├── typedeclimport.proto │ │ │ │ │ └── typedeclimport_test.go │ │ │ │ ├── types │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── combos │ │ │ │ │ │ ├── both │ │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ │ ├── marshaler │ │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ │ ├── neither │ │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ │ └── unmarshaler │ │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ ├── types.proto │ │ │ │ │ └── types_test.go.in │ │ │ │ ├── unmarshalmerge │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── unmarshalmerge.pb.go │ │ │ │ │ ├── unmarshalmerge.proto │ │ │ │ │ ├── unmarshalmerge_test.go │ │ │ │ │ └── unmarshalmergepb_test.go │ │ │ │ ├── unrecognized │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── oldnew_test.go │ │ │ │ │ ├── unrecognized.pb.go │ │ │ │ │ ├── unrecognized.proto │ │ │ │ │ └── unrecognizedpb_test.go │ │ │ │ ├── unrecognizedgroup │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── oldnew_test.go │ │ │ │ │ ├── unrecognizedgroup.pb.go │ │ │ │ │ ├── unrecognizedgroup.proto │ │ │ │ │ └── unrecognizedgrouppb_test.go │ │ │ │ ├── uuid.go │ │ │ │ └── uuid_test.go │ │ │ │ ├── types │ │ │ │ ├── Makefile │ │ │ │ ├── any.go │ │ │ │ ├── any.pb.go │ │ │ │ ├── any_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration.pb.go │ │ │ │ ├── duration_gogo.go │ │ │ │ ├── duration_test.go │ │ │ │ ├── empty.pb.go │ │ │ │ ├── field_mask.pb.go │ │ │ │ ├── struct.pb.go │ │ │ │ ├── timestamp.go │ │ │ │ ├── timestamp.pb.go │ │ │ │ ├── timestamp_gogo.go │ │ │ │ ├── timestamp_test.go │ │ │ │ └── wrappers.pb.go │ │ │ │ ├── vanity │ │ │ │ ├── command │ │ │ │ │ └── command.go │ │ │ │ ├── enum.go │ │ │ │ ├── field.go │ │ │ │ ├── file.go │ │ │ │ ├── foreach.go │ │ │ │ ├── msg.go │ │ │ │ └── test │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fast │ │ │ │ │ ├── gogovanity.pb.go │ │ │ │ │ ├── proto3.pb.go │ │ │ │ │ └── vanity.pb.go │ │ │ │ │ ├── faster │ │ │ │ │ ├── gogovanity.pb.go │ │ │ │ │ ├── proto3.pb.go │ │ │ │ │ └── vanity.pb.go │ │ │ │ │ ├── gofast │ │ │ │ │ └── .gitignore │ │ │ │ │ ├── gogovanity.proto │ │ │ │ │ ├── proto3.proto │ │ │ │ │ ├── slick │ │ │ │ │ ├── gogovanity.pb.go │ │ │ │ │ ├── proto3.pb.go │ │ │ │ │ └── vanity.pb.go │ │ │ │ │ ├── vanity.proto │ │ │ │ │ └── vanity_test.go │ │ │ │ └── version │ │ │ │ └── version.go │ │ ├── golang │ │ │ ├── glog │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── glog.go │ │ │ │ ├── glog_file.go │ │ │ │ └── glog_test.go │ │ │ └── protobuf │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── conformance │ │ │ │ ├── Makefile │ │ │ │ ├── conformance.go │ │ │ │ ├── conformance.sh │ │ │ │ ├── failure_list_go.txt │ │ │ │ ├── internal │ │ │ │ │ └── conformance_proto │ │ │ │ │ │ ├── conformance.pb.go │ │ │ │ │ │ └── conformance.proto │ │ │ │ └── test.sh │ │ │ │ ├── descriptor │ │ │ │ ├── descriptor.go │ │ │ │ └── descriptor_test.go │ │ │ │ ├── jsonpb │ │ │ │ ├── jsonpb.go │ │ │ │ ├── jsonpb_test.go │ │ │ │ └── jsonpb_test_proto │ │ │ │ │ ├── more_test_objects.pb.go │ │ │ │ │ ├── more_test_objects.proto │ │ │ │ │ ├── test_objects.pb.go │ │ │ │ │ └── test_objects.proto │ │ │ │ ├── proto │ │ │ │ ├── all_test.go │ │ │ │ ├── any_test.go │ │ │ │ ├── clone.go │ │ │ │ ├── clone_test.go │ │ │ │ ├── decode.go │ │ │ │ ├── decode_test.go │ │ │ │ ├── discard.go │ │ │ │ ├── discard_test.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── equal.go │ │ │ │ ├── equal_test.go │ │ │ │ ├── extensions.go │ │ │ │ ├── extensions_test.go │ │ │ │ ├── lib.go │ │ │ │ ├── map_test.go │ │ │ │ ├── message_set.go │ │ │ │ ├── message_set_test.go │ │ │ │ ├── pointer_reflect.go │ │ │ │ ├── pointer_unsafe.go │ │ │ │ ├── properties.go │ │ │ │ ├── proto3_proto │ │ │ │ │ ├── proto3.pb.go │ │ │ │ │ └── proto3.proto │ │ │ │ ├── proto3_test.go │ │ │ │ ├── size2_test.go │ │ │ │ ├── size_test.go │ │ │ │ ├── table_marshal.go │ │ │ │ ├── table_merge.go │ │ │ │ ├── table_unmarshal.go │ │ │ │ ├── test_proto │ │ │ │ │ ├── test.pb.go │ │ │ │ │ └── test.proto │ │ │ │ ├── text.go │ │ │ │ ├── text_parser.go │ │ │ │ ├── text_parser_test.go │ │ │ │ └── text_test.go │ │ │ │ ├── protoc-gen-go │ │ │ │ ├── descriptor │ │ │ │ │ ├── descriptor.pb.go │ │ │ │ │ └── descriptor.proto │ │ │ │ ├── doc.go │ │ │ │ ├── generator │ │ │ │ │ ├── generator.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── remap │ │ │ │ │ │ │ ├── remap.go │ │ │ │ │ │ │ └── remap_test.go │ │ │ │ │ └── name_test.go │ │ │ │ ├── golden_test.go │ │ │ │ ├── grpc │ │ │ │ │ └── grpc.go │ │ │ │ ├── link_grpc.go │ │ │ │ ├── main.go │ │ │ │ ├── plugin │ │ │ │ │ ├── plugin.pb.go │ │ │ │ │ ├── plugin.pb.golden │ │ │ │ │ └── plugin.proto │ │ │ │ └── testdata │ │ │ │ │ ├── deprecated │ │ │ │ │ ├── deprecated.pb.go │ │ │ │ │ └── deprecated.proto │ │ │ │ │ ├── extension_base │ │ │ │ │ ├── extension_base.pb.go │ │ │ │ │ └── extension_base.proto │ │ │ │ │ ├── extension_extra │ │ │ │ │ ├── extension_extra.pb.go │ │ │ │ │ └── extension_extra.proto │ │ │ │ │ ├── extension_test.go │ │ │ │ │ ├── extension_user │ │ │ │ │ ├── extension_user.pb.go │ │ │ │ │ └── extension_user.proto │ │ │ │ │ ├── grpc │ │ │ │ │ ├── grpc.pb.go │ │ │ │ │ └── grpc.proto │ │ │ │ │ ├── import_public │ │ │ │ │ ├── a.pb.go │ │ │ │ │ ├── a.proto │ │ │ │ │ ├── b.pb.go │ │ │ │ │ ├── b.proto │ │ │ │ │ └── sub │ │ │ │ │ │ ├── a.pb.go │ │ │ │ │ │ ├── a.proto │ │ │ │ │ │ ├── b.pb.go │ │ │ │ │ │ └── b.proto │ │ │ │ │ ├── import_public_test.go │ │ │ │ │ ├── imports │ │ │ │ │ ├── fmt │ │ │ │ │ │ ├── m.pb.go │ │ │ │ │ │ └── m.proto │ │ │ │ │ ├── test_a_1 │ │ │ │ │ │ ├── m1.pb.go │ │ │ │ │ │ ├── m1.proto │ │ │ │ │ │ ├── m2.pb.go │ │ │ │ │ │ └── m2.proto │ │ │ │ │ ├── test_a_2 │ │ │ │ │ │ ├── m3.pb.go │ │ │ │ │ │ ├── m3.proto │ │ │ │ │ │ ├── m4.pb.go │ │ │ │ │ │ └── m4.proto │ │ │ │ │ ├── test_b_1 │ │ │ │ │ │ ├── m1.pb.go │ │ │ │ │ │ ├── m1.proto │ │ │ │ │ │ ├── m2.pb.go │ │ │ │ │ │ └── m2.proto │ │ │ │ │ ├── test_import_a1m1.pb.go │ │ │ │ │ ├── test_import_a1m1.proto │ │ │ │ │ ├── test_import_a1m2.pb.go │ │ │ │ │ ├── test_import_a1m2.proto │ │ │ │ │ ├── test_import_all.pb.go │ │ │ │ │ └── test_import_all.proto │ │ │ │ │ ├── main_test.go │ │ │ │ │ ├── multi │ │ │ │ │ ├── multi1.pb.go │ │ │ │ │ ├── multi1.proto │ │ │ │ │ ├── multi2.pb.go │ │ │ │ │ ├── multi2.proto │ │ │ │ │ ├── multi3.pb.go │ │ │ │ │ └── multi3.proto │ │ │ │ │ ├── my_test │ │ │ │ │ ├── test.pb.go │ │ │ │ │ └── test.proto │ │ │ │ │ └── proto3 │ │ │ │ │ ├── proto3.pb.go │ │ │ │ │ └── proto3.proto │ │ │ │ ├── ptypes │ │ │ │ ├── any.go │ │ │ │ ├── any │ │ │ │ │ ├── any.pb.go │ │ │ │ │ └── any.proto │ │ │ │ ├── any_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── duration.go │ │ │ │ ├── duration │ │ │ │ │ ├── duration.pb.go │ │ │ │ │ └── duration.proto │ │ │ │ ├── duration_test.go │ │ │ │ ├── empty │ │ │ │ │ ├── empty.pb.go │ │ │ │ │ └── empty.proto │ │ │ │ ├── struct │ │ │ │ │ ├── struct.pb.go │ │ │ │ │ └── struct.proto │ │ │ │ ├── timestamp.go │ │ │ │ ├── timestamp │ │ │ │ │ ├── timestamp.pb.go │ │ │ │ │ └── timestamp.proto │ │ │ │ ├── timestamp_test.go │ │ │ │ └── wrappers │ │ │ │ │ ├── wrappers.pb.go │ │ │ │ │ └── wrappers.proto │ │ │ │ └── regenerate.sh │ │ ├── google │ │ │ ├── btree │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── btree.go │ │ │ │ ├── btree_mem.go │ │ │ │ └── btree_test.go │ │ │ └── gofuzz │ │ │ │ ├── .travis.yml │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── example_test.go │ │ │ │ ├── fuzz.go │ │ │ │ └── fuzz_test.go │ │ ├── googleapis │ │ │ └── gnostic │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis-install.sh │ │ │ │ ├── .travis.yml │ │ │ │ ├── COMPILE-PROTOS.sh │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── OpenAPIv2 │ │ │ │ ├── OpenAPIv2.go │ │ │ │ ├── OpenAPIv2.pb.go │ │ │ │ ├── OpenAPIv2.proto │ │ │ │ ├── README.md │ │ │ │ └── openapi-2.0.json │ │ │ │ ├── OpenAPIv3 │ │ │ │ ├── OpenAPIv3.go │ │ │ │ ├── OpenAPIv3.pb.go │ │ │ │ ├── OpenAPIv3.proto │ │ │ │ ├── README.md │ │ │ │ ├── openapi-3.0.json │ │ │ │ └── schema-generator │ │ │ │ │ ├── 3.0.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── main.go │ │ │ │ ├── README.md │ │ │ │ ├── apps │ │ │ │ ├── disco │ │ │ │ │ ├── README.md │ │ │ │ │ ├── list.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── openapiv2.go │ │ │ │ │ └── openapiv3.go │ │ │ │ ├── petstore-builder │ │ │ │ │ ├── README.md │ │ │ │ │ ├── main.go │ │ │ │ │ ├── petstore-v2.go │ │ │ │ │ └── petstore-v3.go │ │ │ │ └── report │ │ │ │ │ ├── README.md │ │ │ │ │ └── main.go │ │ │ │ ├── compiler │ │ │ │ ├── README.md │ │ │ │ ├── context.go │ │ │ │ ├── error.go │ │ │ │ ├── extension-handler.go │ │ │ │ ├── helpers.go │ │ │ │ ├── main.go │ │ │ │ └── reader.go │ │ │ │ ├── discovery │ │ │ │ ├── README.md │ │ │ │ ├── discovery.go │ │ │ │ ├── discovery.json │ │ │ │ ├── discovery.pb.go │ │ │ │ ├── discovery.proto │ │ │ │ └── discovery.yaml │ │ │ │ ├── examples │ │ │ │ ├── README.md │ │ │ │ ├── errors │ │ │ │ │ ├── petstore-badproperties.yaml │ │ │ │ │ ├── petstore-missingversion.yaml │ │ │ │ │ └── petstore-unresolvedrefs.yaml │ │ │ │ ├── v2.0 │ │ │ │ │ ├── json │ │ │ │ │ │ ├── api-with-examples.json │ │ │ │ │ │ ├── petstore-expanded.json │ │ │ │ │ │ ├── petstore-minimal.json │ │ │ │ │ │ ├── petstore-separate │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ └── Error.json │ │ │ │ │ │ │ └── spec │ │ │ │ │ │ │ │ ├── NewPet.json │ │ │ │ │ │ │ │ ├── Pet.json │ │ │ │ │ │ │ │ ├── parameters.json │ │ │ │ │ │ │ │ └── swagger.json │ │ │ │ │ │ ├── petstore-simple.json │ │ │ │ │ │ ├── petstore-with-external-docs.json │ │ │ │ │ │ ├── petstore.json │ │ │ │ │ │ └── uber.json │ │ │ │ │ └── yaml │ │ │ │ │ │ ├── api-with-examples.yaml │ │ │ │ │ │ ├── petstore-expanded.yaml │ │ │ │ │ │ ├── petstore-minimal.yaml │ │ │ │ │ │ ├── petstore-separate │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── Error.yaml │ │ │ │ │ │ └── spec │ │ │ │ │ │ │ ├── NewPet.yaml │ │ │ │ │ │ │ ├── Pet.yaml │ │ │ │ │ │ │ ├── parameters.yaml │ │ │ │ │ │ │ ├── swagger.text │ │ │ │ │ │ │ └── swagger.yaml │ │ │ │ │ │ ├── petstore-simple.yaml │ │ │ │ │ │ ├── petstore-with-external-docs.yaml │ │ │ │ │ │ ├── petstore.yaml │ │ │ │ │ │ └── uber.yaml │ │ │ │ └── v3.0 │ │ │ │ │ ├── json │ │ │ │ │ └── petstore.json │ │ │ │ │ └── yaml │ │ │ │ │ └── petstore.yaml │ │ │ │ ├── extensions │ │ │ │ ├── COMPILE-EXTENSION.sh │ │ │ │ ├── README.md │ │ │ │ ├── extension.pb.go │ │ │ │ ├── extension.proto │ │ │ │ ├── extensions.go │ │ │ │ └── sample │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── x-sampleone.json │ │ │ │ │ └── x-sampletwo.json │ │ │ │ ├── generate-gnostic │ │ │ │ ├── README.md │ │ │ │ ├── domain.go │ │ │ │ ├── generate-compiler.go │ │ │ │ ├── generate-extension.go │ │ │ │ ├── generate-extension_test.go │ │ │ │ ├── generate-proto.go │ │ │ │ ├── helpers.go │ │ │ │ ├── main.go │ │ │ │ ├── test │ │ │ │ │ ├── errors │ │ │ │ │ │ ├── x-extension-name-collision.errors │ │ │ │ │ │ └── x-unsupportedprimitives.errors │ │ │ │ │ ├── x-extension-name-collision.json │ │ │ │ │ └── x-unsupportedprimitives.json │ │ │ │ └── types.go │ │ │ │ ├── gnostic.go │ │ │ │ ├── gnostic_test.go │ │ │ │ ├── jsonschema │ │ │ │ ├── README.md │ │ │ │ ├── display.go │ │ │ │ ├── models.go │ │ │ │ ├── operations.go │ │ │ │ ├── reader.go │ │ │ │ ├── schema.json │ │ │ │ └── writer.go │ │ │ │ ├── jsonwriter │ │ │ │ ├── README.md │ │ │ │ └── writer.go │ │ │ │ ├── plugins │ │ │ │ ├── README.md │ │ │ │ ├── environment.go │ │ │ │ ├── gnostic-analyze │ │ │ │ │ ├── README.md │ │ │ │ │ ├── main.go │ │ │ │ │ ├── statistics │ │ │ │ │ │ ├── statsv2.go │ │ │ │ │ │ └── statsv3.go │ │ │ │ │ └── summarize │ │ │ │ │ │ └── main.go │ │ │ │ ├── gnostic-go-generator │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── googleauth │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── googleauth.go │ │ │ │ │ │ ├── v2.0 │ │ │ │ │ │ │ ├── apis_guru │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ │ └── swagger.yaml │ │ │ │ │ │ │ ├── bookstore │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── bookstore.json │ │ │ │ │ │ │ │ ├── bookstore_test.go │ │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ │ ├── app.yaml │ │ │ │ │ │ │ │ │ ├── init.go │ │ │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ │ │ └── service.go │ │ │ │ │ │ │ └── xkcd │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ │ └── swagger.json │ │ │ │ │ │ └── v3.0 │ │ │ │ │ │ │ ├── bookstore │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── bookstore.json │ │ │ │ │ │ │ ├── bookstore_test.go │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ │ ├── app.yaml │ │ │ │ │ │ │ │ ├── init.go │ │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ │ └── service.go │ │ │ │ │ │ │ └── urlshortener │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ └── main.go │ │ │ │ │ ├── goimports.go │ │ │ │ │ ├── language.go │ │ │ │ │ ├── linewriter.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── render_client.go │ │ │ │ │ ├── render_constants.go │ │ │ │ │ ├── render_provider.go │ │ │ │ │ ├── render_server.go │ │ │ │ │ ├── render_types.go │ │ │ │ │ └── renderer.go │ │ │ │ ├── gnostic-summary │ │ │ │ │ ├── README.md │ │ │ │ │ └── main.go │ │ │ │ ├── gnostic-swift-generator │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Package.swift │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Sources │ │ │ │ │ │ ├── Gnostic │ │ │ │ │ │ │ ├── OpenAPIv2.pb.swift │ │ │ │ │ │ │ ├── OpenAPIv3.pb.swift │ │ │ │ │ │ │ ├── discovery.pb.swift │ │ │ │ │ │ │ ├── plugin.pb.swift │ │ │ │ │ │ │ └── surface.pb.swift │ │ │ │ │ │ └── gnostic-swift-generator │ │ │ │ │ │ │ ├── RenderClient.swift │ │ │ │ │ │ │ ├── RenderFetch.swift │ │ │ │ │ │ │ ├── RenderServer.swift │ │ │ │ │ │ │ ├── RenderTypes.swift │ │ │ │ │ │ │ ├── Renderer.swift │ │ │ │ │ │ │ ├── helpers.swift │ │ │ │ │ │ │ ├── io.swift │ │ │ │ │ │ │ └── main.swift │ │ │ │ │ ├── compile-protos │ │ │ │ │ └── examples │ │ │ │ │ │ └── bookstore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Package.swift │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── Sources │ │ │ │ │ │ └── Server │ │ │ │ │ │ │ └── main.swift │ │ │ │ │ │ ├── Tests │ │ │ │ │ │ ├── BookstoreTests │ │ │ │ │ │ │ └── BookstoreTests.swift │ │ │ │ │ │ └── LinuxMain.swift │ │ │ │ │ │ └── bookstore.json │ │ │ │ ├── gnostic-swift-sample │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Package.swift │ │ │ │ │ ├── Sources │ │ │ │ │ │ ├── Gnostic │ │ │ │ │ │ │ ├── OpenAPIv2.pb.swift │ │ │ │ │ │ │ ├── OpenAPIv3.pb.swift │ │ │ │ │ │ │ ├── discovery.pb.swift │ │ │ │ │ │ │ ├── plugin.pb.swift │ │ │ │ │ │ │ └── surface.pb.swift │ │ │ │ │ │ └── gnostic-swift-sample │ │ │ │ │ │ │ ├── io.swift │ │ │ │ │ │ │ └── main.swift │ │ │ │ │ └── compile-protos │ │ │ │ ├── plugin.pb.go │ │ │ │ └── plugin.proto │ │ │ │ ├── printer │ │ │ │ ├── README.md │ │ │ │ └── code.go │ │ │ │ ├── surface │ │ │ │ ├── README.md │ │ │ │ ├── field.go │ │ │ │ ├── model.go │ │ │ │ ├── model_openapiv2.go │ │ │ │ ├── model_openapiv3.go │ │ │ │ ├── surface.pb.go │ │ │ │ ├── surface.proto │ │ │ │ └── type.go │ │ │ │ ├── test │ │ │ │ ├── README.md │ │ │ │ ├── errors │ │ │ │ │ ├── invalid-plugin-invocation.errors │ │ │ │ │ ├── petstore-badproperties.errors │ │ │ │ │ ├── petstore-missingversion.errors │ │ │ │ │ └── petstore-unresolvedrefs.errors │ │ │ │ ├── library-example-with-ext.json │ │ │ │ ├── v2.0 │ │ │ │ │ ├── petstore.text │ │ │ │ │ └── yaml │ │ │ │ │ │ └── petstore-separate │ │ │ │ │ │ └── spec │ │ │ │ │ │ └── swagger.text │ │ │ │ └── v3.0 │ │ │ │ │ └── petstore.text │ │ │ │ └── tools │ │ │ │ ├── README.md │ │ │ │ ├── format-schema │ │ │ │ └── main.go │ │ │ │ └── j2y2j │ │ │ │ └── main.go │ │ ├── gregjones │ │ │ └── httpcache │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── diskcache │ │ │ │ ├── diskcache.go │ │ │ │ └── diskcache_test.go │ │ │ │ ├── httpcache.go │ │ │ │ ├── httpcache_test.go │ │ │ │ ├── leveldbcache │ │ │ │ ├── leveldbcache.go │ │ │ │ └── leveldbcache_test.go │ │ │ │ ├── memcache │ │ │ │ ├── appengine.go │ │ │ │ ├── appengine_test.go │ │ │ │ ├── memcache.go │ │ │ │ └── memcache_test.go │ │ │ │ └── redis │ │ │ │ ├── redis.go │ │ │ │ └── redis_test.go │ │ ├── hashicorp │ │ │ └── golang-lru │ │ │ │ ├── .gitignore │ │ │ │ ├── 2q.go │ │ │ │ ├── 2q_test.go │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── arc.go │ │ │ │ ├── arc_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── lru.go │ │ │ │ ├── lru_test.go │ │ │ │ └── simplelru │ │ │ │ ├── lru.go │ │ │ │ ├── lru_interface.go │ │ │ │ └── lru_test.go │ │ ├── json-iterator │ │ │ └── go │ │ │ │ ├── .codecov.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Gopkg.lock │ │ │ │ ├── Gopkg.toml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── adapter.go │ │ │ │ ├── any.go │ │ │ │ ├── any_array.go │ │ │ │ ├── any_bool.go │ │ │ │ ├── any_float.go │ │ │ │ ├── any_int32.go │ │ │ │ ├── any_int64.go │ │ │ │ ├── any_invalid.go │ │ │ │ ├── any_nil.go │ │ │ │ ├── any_number.go │ │ │ │ ├── any_object.go │ │ │ │ ├── any_str.go │ │ │ │ ├── any_tests │ │ │ │ ├── jsoniter_any_array_test.go │ │ │ │ ├── jsoniter_any_bool_test.go │ │ │ │ ├── jsoniter_any_float_test.go │ │ │ │ ├── jsoniter_any_int_test.go │ │ │ │ ├── jsoniter_any_map_test.go │ │ │ │ ├── jsoniter_any_null_test.go │ │ │ │ ├── jsoniter_any_object_test.go │ │ │ │ ├── jsoniter_any_string_test.go │ │ │ │ ├── jsoniter_must_be_valid_test.go │ │ │ │ └── jsoniter_wrap_test.go │ │ │ │ ├── any_uint32.go │ │ │ │ ├── any_uint64.go │ │ │ │ ├── api_tests │ │ │ │ ├── config_test.go │ │ │ │ ├── decoder_test.go │ │ │ │ ├── encoder_18_test.go │ │ │ │ ├── encoder_test.go │ │ │ │ └── marshal_indent_test.go │ │ │ │ ├── benchmarks │ │ │ │ ├── encode_string_test.go │ │ │ │ └── jsoniter_large_file_test.go │ │ │ │ ├── build.sh │ │ │ │ ├── config.go │ │ │ │ ├── example_test.go │ │ │ │ ├── extension_tests │ │ │ │ ├── decoder_test.go │ │ │ │ └── extension_test.go │ │ │ │ ├── extra │ │ │ │ ├── binary_as_string_codec.go │ │ │ │ ├── binary_as_string_codec_test.go │ │ │ │ ├── fuzzy_decoder.go │ │ │ │ ├── fuzzy_decoder_test.go │ │ │ │ ├── naming_strategy.go │ │ │ │ ├── naming_strategy_test.go │ │ │ │ ├── privat_fields.go │ │ │ │ ├── private_fields_test.go │ │ │ │ ├── time_as_int64_codec.go │ │ │ │ └── time_as_int64_codec_test.go │ │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ │ ├── iter.go │ │ │ │ ├── iter_array.go │ │ │ │ ├── iter_float.go │ │ │ │ ├── iter_int.go │ │ │ │ ├── iter_object.go │ │ │ │ ├── iter_skip.go │ │ │ │ ├── iter_skip_sloppy.go │ │ │ │ ├── iter_skip_sloppy_test.go │ │ │ │ ├── iter_skip_strict.go │ │ │ │ ├── iter_str.go │ │ │ │ ├── jsoniter.go │ │ │ │ ├── misc_tests │ │ │ │ ├── jsoniter_array_test.go │ │ │ │ ├── jsoniter_bool_test.go │ │ │ │ ├── jsoniter_float_test.go │ │ │ │ ├── jsoniter_int_test.go │ │ │ │ ├── jsoniter_interface_test.go │ │ │ │ ├── jsoniter_iterator_test.go │ │ │ │ ├── jsoniter_map_test.go │ │ │ │ ├── jsoniter_nested_test.go │ │ │ │ ├── jsoniter_null_test.go │ │ │ │ ├── jsoniter_object_test.go │ │ │ │ └── jsoniter_raw_message_test.go │ │ │ │ ├── pool.go │ │ │ │ ├── reflect.go │ │ │ │ ├── reflect_array.go │ │ │ │ ├── reflect_dynamic.go │ │ │ │ ├── reflect_extension.go │ │ │ │ ├── reflect_json_number.go │ │ │ │ ├── reflect_json_raw_message.go │ │ │ │ ├── reflect_map.go │ │ │ │ ├── reflect_marshaler.go │ │ │ │ ├── reflect_native.go │ │ │ │ ├── reflect_optional.go │ │ │ │ ├── reflect_slice.go │ │ │ │ ├── reflect_struct_decoder.go │ │ │ │ ├── reflect_struct_encoder.go │ │ │ │ ├── skip_tests │ │ │ │ ├── array_test.go │ │ │ │ ├── float64_test.go │ │ │ │ ├── jsoniter_skip_test.go │ │ │ │ ├── skip_test.go │ │ │ │ ├── string_test.go │ │ │ │ └── struct_test.go │ │ │ │ ├── stream.go │ │ │ │ ├── stream_float.go │ │ │ │ ├── stream_int.go │ │ │ │ ├── stream_str.go │ │ │ │ ├── stream_test.go │ │ │ │ ├── test.sh │ │ │ │ ├── type_tests │ │ │ │ ├── array_test.go │ │ │ │ ├── builtin_test.go │ │ │ │ ├── map_key_test.go │ │ │ │ ├── map_test.go │ │ │ │ ├── marshaler_string_test.go │ │ │ │ ├── marshaler_struct_test.go │ │ │ │ ├── slice_test.go │ │ │ │ ├── struct_embedded_test.go │ │ │ │ ├── struct_field_case_test.go │ │ │ │ ├── struct_tags_test.go │ │ │ │ ├── struct_test.go │ │ │ │ ├── text_marshaler_string_test.go │ │ │ │ ├── text_marshaler_struct_test.go │ │ │ │ └── type_test.go │ │ │ │ └── value_tests │ │ │ │ ├── array_test.go │ │ │ │ ├── bool_test.go │ │ │ │ ├── eface_test.go │ │ │ │ ├── float_test.go │ │ │ │ ├── iface_test.go │ │ │ │ ├── int_test.go │ │ │ │ ├── invalid_test.go │ │ │ │ ├── map_test.go │ │ │ │ ├── marshaler_test.go │ │ │ │ ├── number_test.go │ │ │ │ ├── ptr_test.go │ │ │ │ ├── raw_message_test.go │ │ │ │ ├── slice_test.go │ │ │ │ ├── string_test.go │ │ │ │ ├── struct_test.go │ │ │ │ └── value_test.go │ │ ├── juju │ │ │ └── ratelimit │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── ratelimit.go │ │ │ │ ├── ratelimit_test.go │ │ │ │ └── reader.go │ │ ├── mailru │ │ │ └── easyjson │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── benchmark │ │ │ │ ├── codec_test.go │ │ │ │ ├── data.go │ │ │ │ ├── data_codec.go │ │ │ │ ├── data_ffjson.go │ │ │ │ ├── data_var.go │ │ │ │ ├── default_test.go │ │ │ │ ├── dummy_test.go │ │ │ │ ├── easyjson_test.go │ │ │ │ ├── example.json │ │ │ │ ├── ffjson_test.go │ │ │ │ ├── jsoniter_test.go │ │ │ │ └── ujson.sh │ │ │ │ ├── bootstrap │ │ │ │ └── bootstrap.go │ │ │ │ ├── buffer │ │ │ │ ├── pool.go │ │ │ │ └── pool_test.go │ │ │ │ ├── easyjson │ │ │ │ └── main.go │ │ │ │ ├── gen │ │ │ │ ├── decoder.go │ │ │ │ ├── encoder.go │ │ │ │ ├── generator.go │ │ │ │ └── generator_test.go │ │ │ │ ├── helpers.go │ │ │ │ ├── jlexer │ │ │ │ ├── bytestostr.go │ │ │ │ ├── bytestostr_nounsafe.go │ │ │ │ ├── error.go │ │ │ │ ├── lexer.go │ │ │ │ └── lexer_test.go │ │ │ │ ├── jwriter │ │ │ │ └── writer.go │ │ │ │ ├── opt │ │ │ │ ├── gotemplate_Bool.go │ │ │ │ ├── gotemplate_Float32.go │ │ │ │ ├── gotemplate_Float64.go │ │ │ │ ├── gotemplate_Int.go │ │ │ │ ├── gotemplate_Int16.go │ │ │ │ ├── gotemplate_Int32.go │ │ │ │ ├── gotemplate_Int64.go │ │ │ │ ├── gotemplate_Int8.go │ │ │ │ ├── gotemplate_String.go │ │ │ │ ├── gotemplate_Uint.go │ │ │ │ ├── gotemplate_Uint16.go │ │ │ │ ├── gotemplate_Uint32.go │ │ │ │ ├── gotemplate_Uint64.go │ │ │ │ ├── gotemplate_Uint8.go │ │ │ │ ├── optional │ │ │ │ │ └── opt.go │ │ │ │ └── opts.go │ │ │ │ ├── parser │ │ │ │ ├── parser.go │ │ │ │ ├── parser_unix.go │ │ │ │ └── parser_windows.go │ │ │ │ ├── raw.go │ │ │ │ └── tests │ │ │ │ ├── basic_test.go │ │ │ │ ├── custom_map_key_type.go │ │ │ │ ├── data.go │ │ │ │ ├── embedded_type.go │ │ │ │ ├── errors.go │ │ │ │ ├── errors_test.go │ │ │ │ ├── named_type.go │ │ │ │ ├── nested_easy.go │ │ │ │ ├── nothing.go │ │ │ │ ├── omitempty.go │ │ │ │ ├── opt_test.go │ │ │ │ ├── required_test.go │ │ │ │ └── snake.go │ │ ├── modern-go │ │ │ ├── concurrent │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── executor.go │ │ │ │ ├── go_above_19.go │ │ │ │ ├── go_below_19.go │ │ │ │ ├── log.go │ │ │ │ ├── map_test.go │ │ │ │ ├── test.sh │ │ │ │ ├── unbounded_executor.go │ │ │ │ └── unbounded_executor_test.go │ │ │ └── reflect2 │ │ │ │ ├── .gitignore │ │ │ │ ├── Gopkg.lock │ │ │ │ ├── Gopkg.toml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── go_above_17.go │ │ │ │ ├── go_above_19.go │ │ │ │ ├── go_below_17.go │ │ │ │ ├── go_below_19.go │ │ │ │ ├── reflect2.go │ │ │ │ ├── reflect2_amd64.s │ │ │ │ ├── reflect2_kind.go │ │ │ │ ├── relfect2_386.s │ │ │ │ ├── relfect2_amd64p32.s │ │ │ │ ├── relfect2_arm.s │ │ │ │ ├── relfect2_arm64.s │ │ │ │ ├── relfect2_mips64x.s │ │ │ │ ├── relfect2_mipsx.s │ │ │ │ ├── relfect2_ppc64x.s │ │ │ │ ├── relfect2_s390x.s │ │ │ │ ├── safe_field.go │ │ │ │ ├── safe_map.go │ │ │ │ ├── safe_slice.go │ │ │ │ ├── safe_struct.go │ │ │ │ ├── safe_type.go │ │ │ │ ├── test15 │ │ │ │ └── map_test.go │ │ │ │ ├── tests │ │ │ │ ├── array_test.go │ │ │ │ ├── int_test.go │ │ │ │ ├── map_elem_array_test.go │ │ │ │ ├── map_elem_bytes_test.go │ │ │ │ ├── map_elem_eface_test.go │ │ │ │ ├── map_elem_map_test.go │ │ │ │ ├── map_elem_struct_test.go │ │ │ │ ├── map_key_eface_test.go │ │ │ │ ├── map_key_iface_test.go │ │ │ │ ├── map_key_ptr_test.go │ │ │ │ ├── map_test.go │ │ │ │ ├── op_test.go │ │ │ │ ├── slice_array_test.go │ │ │ │ ├── slice_bytes_test.go │ │ │ │ ├── slice_eface_test.go │ │ │ │ ├── slice_iface_test.go │ │ │ │ ├── slice_map_test.go │ │ │ │ ├── slice_ptr_test.go │ │ │ │ ├── slice_string_test.go │ │ │ │ ├── slice_struct_test.go │ │ │ │ ├── slice_test.go │ │ │ │ ├── struct_eface_test.go │ │ │ │ ├── struct_ptr_test.go │ │ │ │ └── struct_test.go │ │ │ │ ├── type_map.go │ │ │ │ ├── unsafe_array.go │ │ │ │ ├── unsafe_eface.go │ │ │ │ ├── unsafe_field.go │ │ │ │ ├── unsafe_iface.go │ │ │ │ ├── unsafe_link.go │ │ │ │ ├── unsafe_map.go │ │ │ │ ├── unsafe_ptr.go │ │ │ │ ├── unsafe_slice.go │ │ │ │ ├── unsafe_struct.go │ │ │ │ └── unsafe_type.go │ │ ├── operator-framework │ │ │ └── operator-sdk │ │ │ │ ├── .gitignore │ │ │ │ ├── CONTRIBUTING.MD │ │ │ │ ├── Gopkg.lock │ │ │ │ ├── Gopkg.toml │ │ │ │ ├── LICENSE │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── README.md │ │ │ │ ├── bill-of-materials.json │ │ │ │ ├── bill-of-materials.override.json │ │ │ │ ├── code-of-conduct.md │ │ │ │ ├── commands │ │ │ │ └── operator-sdk │ │ │ │ │ ├── cmd │ │ │ │ │ ├── build.go │ │ │ │ │ ├── generate.go │ │ │ │ │ ├── generate │ │ │ │ │ │ ├── alm_catalog.go │ │ │ │ │ │ └── k8s.go │ │ │ │ │ ├── new.go │ │ │ │ │ └── root.go │ │ │ │ │ ├── error │ │ │ │ │ └── error.go │ │ │ │ │ └── main.go │ │ │ │ ├── doc │ │ │ │ ├── design │ │ │ │ │ ├── long-term │ │ │ │ │ │ ├── norms-to-follow.md │ │ │ │ │ │ ├── simple-extensions.md │ │ │ │ │ │ └── testing-operators.md │ │ │ │ │ └── milestone-0.0.2 │ │ │ │ │ │ ├── action-api.md │ │ │ │ │ │ └── query-api.md │ │ │ │ ├── dev │ │ │ │ │ ├── developer_guide.md │ │ │ │ │ └── reporting_bugs.md │ │ │ │ ├── images │ │ │ │ │ ├── Operator-Maturity-Model.png │ │ │ │ │ └── architecture.png │ │ │ │ ├── project_layout.md │ │ │ │ └── user-guide.md │ │ │ │ ├── example │ │ │ │ └── memcached-operator │ │ │ │ │ └── handler.go.tmpl │ │ │ │ ├── hack │ │ │ │ └── test │ │ │ │ ├── pkg │ │ │ │ ├── generator │ │ │ │ │ ├── alm_catalog_tmpl.go │ │ │ │ │ ├── api_tmpls.go │ │ │ │ │ ├── build_tmpls.go │ │ │ │ │ ├── codegen_tmpls.go │ │ │ │ │ ├── deploy_tmpl.go │ │ │ │ │ ├── gen_alm_catalog.go │ │ │ │ │ ├── gen_api_doc.go │ │ │ │ │ ├── gen_api_register.go │ │ │ │ │ ├── gen_api_types.go │ │ │ │ │ ├── gen_build.go │ │ │ │ │ ├── gen_codegen.go │ │ │ │ │ ├── gen_config.go │ │ │ │ │ ├── gen_deploy.go │ │ │ │ │ ├── gen_deps.go │ │ │ │ │ ├── gen_handler.go │ │ │ │ │ ├── gen_main.go │ │ │ │ │ ├── generator.go │ │ │ │ │ ├── generator_test.go │ │ │ │ │ ├── gopkg_tmpls.go │ │ │ │ │ ├── handler_tmpl.go │ │ │ │ │ └── main_tmpl.go │ │ │ │ ├── k8sclient │ │ │ │ │ └── client.go │ │ │ │ ├── sdk │ │ │ │ │ ├── action │ │ │ │ │ │ ├── action.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── op.go │ │ │ │ │ ├── api.go │ │ │ │ │ ├── handler │ │ │ │ │ │ └── handler.go │ │ │ │ │ ├── informer │ │ │ │ │ │ ├── informer.go │ │ │ │ │ │ └── sync.go │ │ │ │ │ ├── query │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── op.go │ │ │ │ │ │ └── query.go │ │ │ │ │ └── types │ │ │ │ │ │ └── types.go │ │ │ │ └── util │ │ │ │ │ └── k8sutil │ │ │ │ │ └── k8sutil.go │ │ │ │ └── version │ │ │ │ └── version.go │ │ ├── petar │ │ │ └── GoLLRB │ │ │ │ ├── .gitignore │ │ │ │ ├── AUTHORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── doc │ │ │ │ ├── Sedgewick-LLRB.pdf │ │ │ │ ├── Sedgewick-RedBlackBST.java │ │ │ │ └── Sedgewick-Talk-Penn2008.pdf │ │ │ │ ├── example │ │ │ │ └── ex1.go │ │ │ │ └── llrb │ │ │ │ ├── avgvar.go │ │ │ │ ├── iterator.go │ │ │ │ ├── iterator_test.go │ │ │ │ ├── llrb-stats.go │ │ │ │ ├── llrb.go │ │ │ │ ├── llrb_test.go │ │ │ │ └── util.go │ │ ├── peterbourgon │ │ │ └── diskv │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── basic_test.go │ │ │ │ ├── compression.go │ │ │ │ ├── compression_test.go │ │ │ │ ├── diskv.go │ │ │ │ ├── examples │ │ │ │ ├── content-addressable-store │ │ │ │ │ └── cas.go │ │ │ │ └── super-simple-store │ │ │ │ │ └── super-simple-store.go │ │ │ │ ├── import_test.go │ │ │ │ ├── index.go │ │ │ │ ├── index_test.go │ │ │ │ ├── issues_test.go │ │ │ │ ├── keys_test.go │ │ │ │ ├── speed_test.go │ │ │ │ └── stream_test.go │ │ ├── sirupsen │ │ │ └── logrus │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── alt_exit.go │ │ │ │ ├── alt_exit_test.go │ │ │ │ ├── appveyor.yml │ │ │ │ ├── doc.go │ │ │ │ ├── entry.go │ │ │ │ ├── entry_test.go │ │ │ │ ├── example_basic_test.go │ │ │ │ ├── example_hook_test.go │ │ │ │ ├── exported.go │ │ │ │ ├── formatter.go │ │ │ │ ├── formatter_bench_test.go │ │ │ │ ├── hook_test.go │ │ │ │ ├── hooks.go │ │ │ │ ├── hooks │ │ │ │ ├── syslog │ │ │ │ │ ├── README.md │ │ │ │ │ ├── syslog.go │ │ │ │ │ └── syslog_test.go │ │ │ │ └── test │ │ │ │ │ ├── test.go │ │ │ │ │ └── test_test.go │ │ │ │ ├── json_formatter.go │ │ │ │ ├── json_formatter_test.go │ │ │ │ ├── logger.go │ │ │ │ ├── logger_bench_test.go │ │ │ │ ├── logrus.go │ │ │ │ ├── logrus_test.go │ │ │ │ ├── terminal_bsd.go │ │ │ │ ├── terminal_check_appengine.go │ │ │ │ ├── terminal_check_notappengine.go │ │ │ │ ├── terminal_linux.go │ │ │ │ ├── text_formatter.go │ │ │ │ ├── text_formatter_test.go │ │ │ │ └── writer.go │ │ └── spf13 │ │ │ └── pflag │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_slice.go │ │ │ ├── bool_slice_test.go │ │ │ ├── bool_test.go │ │ │ ├── bytes.go │ │ │ ├── bytes_test.go │ │ │ ├── count.go │ │ │ ├── count_test.go │ │ │ ├── duration.go │ │ │ ├── duration_slice.go │ │ │ ├── duration_slice_test.go │ │ │ ├── example_test.go │ │ │ ├── export_test.go │ │ │ ├── flag.go │ │ │ ├── flag_test.go │ │ │ ├── float32.go │ │ │ ├── float64.go │ │ │ ├── golangflag.go │ │ │ ├── golangflag_test.go │ │ │ ├── int.go │ │ │ ├── int16.go │ │ │ ├── int32.go │ │ │ ├── int64.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── int_slice_test.go │ │ │ ├── ip.go │ │ │ ├── ip_slice.go │ │ │ ├── ip_slice_test.go │ │ │ ├── ip_test.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── ipnet_test.go │ │ │ ├── printusage_test.go │ │ │ ├── string.go │ │ │ ├── string_array.go │ │ │ ├── string_array_test.go │ │ │ ├── string_slice.go │ │ │ ├── string_slice_test.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ ├── uint_slice.go │ │ │ ├── uint_slice_test.go │ │ │ └── verify │ │ │ ├── all.sh │ │ │ ├── gofmt.sh │ │ │ └── golint.sh │ │ ├── golang.org │ │ └── x │ │ │ ├── crypto │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README.md │ │ │ ├── acme │ │ │ │ ├── acme.go │ │ │ │ ├── acme_test.go │ │ │ │ ├── autocert │ │ │ │ │ ├── autocert.go │ │ │ │ │ ├── autocert_test.go │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── cache_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── listener.go │ │ │ │ │ ├── renewal.go │ │ │ │ │ └── renewal_test.go │ │ │ │ ├── jws.go │ │ │ │ ├── jws_test.go │ │ │ │ ├── types.go │ │ │ │ └── types_test.go │ │ │ ├── argon2 │ │ │ │ ├── argon2.go │ │ │ │ ├── argon2_test.go │ │ │ │ ├── blake2b.go │ │ │ │ ├── blamka_amd64.go │ │ │ │ ├── blamka_amd64.s │ │ │ │ ├── blamka_generic.go │ │ │ │ └── blamka_ref.go │ │ │ ├── bcrypt │ │ │ │ ├── base64.go │ │ │ │ ├── bcrypt.go │ │ │ │ └── bcrypt_test.go │ │ │ ├── blake2b │ │ │ │ ├── blake2b.go │ │ │ │ ├── blake2bAVX2_amd64.go │ │ │ │ ├── blake2bAVX2_amd64.s │ │ │ │ ├── blake2b_amd64.go │ │ │ │ ├── blake2b_amd64.s │ │ │ │ ├── blake2b_generic.go │ │ │ │ ├── blake2b_ref.go │ │ │ │ ├── blake2b_test.go │ │ │ │ ├── blake2x.go │ │ │ │ └── register.go │ │ │ ├── blake2s │ │ │ │ ├── blake2s.go │ │ │ │ ├── blake2s_386.go │ │ │ │ ├── blake2s_386.s │ │ │ │ ├── blake2s_amd64.go │ │ │ │ ├── blake2s_amd64.s │ │ │ │ ├── blake2s_generic.go │ │ │ │ ├── blake2s_ref.go │ │ │ │ ├── blake2s_test.go │ │ │ │ ├── blake2x.go │ │ │ │ └── register.go │ │ │ ├── blowfish │ │ │ │ ├── block.go │ │ │ │ ├── blowfish_test.go │ │ │ │ ├── cipher.go │ │ │ │ └── const.go │ │ │ ├── bn256 │ │ │ │ ├── bn256.go │ │ │ │ ├── bn256_test.go │ │ │ │ ├── constants.go │ │ │ │ ├── curve.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gfp12.go │ │ │ │ ├── gfp2.go │ │ │ │ ├── gfp6.go │ │ │ │ ├── optate.go │ │ │ │ └── twist.go │ │ │ ├── cast5 │ │ │ │ ├── cast5.go │ │ │ │ └── cast5_test.go │ │ │ ├── chacha20poly1305 │ │ │ │ ├── chacha20poly1305.go │ │ │ │ ├── chacha20poly1305_amd64.go │ │ │ │ ├── chacha20poly1305_amd64.s │ │ │ │ ├── chacha20poly1305_generic.go │ │ │ │ ├── chacha20poly1305_noasm.go │ │ │ │ ├── chacha20poly1305_test.go │ │ │ │ └── chacha20poly1305_vectors_test.go │ │ │ ├── codereview.cfg │ │ │ ├── cryptobyte │ │ │ │ ├── asn1.go │ │ │ │ ├── asn1 │ │ │ │ │ └── asn1.go │ │ │ │ ├── asn1_test.go │ │ │ │ ├── builder.go │ │ │ │ ├── cryptobyte_test.go │ │ │ │ ├── example_test.go │ │ │ │ └── string.go │ │ │ ├── curve25519 │ │ │ │ ├── const_amd64.h │ │ │ │ ├── const_amd64.s │ │ │ │ ├── cswap_amd64.s │ │ │ │ ├── curve25519.go │ │ │ │ ├── curve25519_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── freeze_amd64.s │ │ │ │ ├── ladderstep_amd64.s │ │ │ │ ├── mont25519_amd64.go │ │ │ │ ├── mul_amd64.s │ │ │ │ └── square_amd64.s │ │ │ ├── ed25519 │ │ │ │ ├── ed25519.go │ │ │ │ ├── ed25519_test.go │ │ │ │ ├── internal │ │ │ │ │ └── edwards25519 │ │ │ │ │ │ ├── const.go │ │ │ │ │ │ └── edwards25519.go │ │ │ │ └── testdata │ │ │ │ │ └── sign.input.gz │ │ │ ├── hkdf │ │ │ │ ├── example_test.go │ │ │ │ ├── hkdf.go │ │ │ │ └── hkdf_test.go │ │ │ ├── internal │ │ │ │ └── chacha20 │ │ │ │ │ ├── asm_s390x.s │ │ │ │ │ ├── chacha_generic.go │ │ │ │ │ ├── chacha_noasm.go │ │ │ │ │ ├── chacha_s390x.go │ │ │ │ │ ├── chacha_test.go │ │ │ │ │ ├── vectors_test.go │ │ │ │ │ └── xor.go │ │ │ ├── md4 │ │ │ │ ├── example_test.go │ │ │ │ ├── md4.go │ │ │ │ ├── md4_test.go │ │ │ │ └── md4block.go │ │ │ ├── nacl │ │ │ │ ├── auth │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── auth_test.go │ │ │ │ │ └── example_test.go │ │ │ │ ├── box │ │ │ │ │ ├── box.go │ │ │ │ │ ├── box_test.go │ │ │ │ │ └── example_test.go │ │ │ │ ├── secretbox │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── secretbox.go │ │ │ │ │ └── secretbox_test.go │ │ │ │ └── sign │ │ │ │ │ ├── sign.go │ │ │ │ │ └── sign_test.go │ │ │ ├── ocsp │ │ │ │ ├── ocsp.go │ │ │ │ └── ocsp_test.go │ │ │ ├── openpgp │ │ │ │ ├── armor │ │ │ │ │ ├── armor.go │ │ │ │ │ ├── armor_test.go │ │ │ │ │ └── encode.go │ │ │ │ ├── canonical_text.go │ │ │ │ ├── canonical_text_test.go │ │ │ │ ├── clearsign │ │ │ │ │ ├── clearsign.go │ │ │ │ │ └── clearsign_test.go │ │ │ │ ├── elgamal │ │ │ │ │ ├── elgamal.go │ │ │ │ │ └── elgamal_test.go │ │ │ │ ├── errors │ │ │ │ │ └── errors.go │ │ │ │ ├── keys.go │ │ │ │ ├── keys_test.go │ │ │ │ ├── packet │ │ │ │ │ ├── compressed.go │ │ │ │ │ ├── compressed_test.go │ │ │ │ │ ├── config.go │ │ │ │ │ ├── encrypted_key.go │ │ │ │ │ ├── encrypted_key_test.go │ │ │ │ │ ├── literal.go │ │ │ │ │ ├── ocfb.go │ │ │ │ │ ├── ocfb_test.go │ │ │ │ │ ├── one_pass_signature.go │ │ │ │ │ ├── opaque.go │ │ │ │ │ ├── opaque_test.go │ │ │ │ │ ├── packet.go │ │ │ │ │ ├── packet_test.go │ │ │ │ │ ├── private_key.go │ │ │ │ │ ├── private_key_test.go │ │ │ │ │ ├── public_key.go │ │ │ │ │ ├── public_key_test.go │ │ │ │ │ ├── public_key_v3.go │ │ │ │ │ ├── public_key_v3_test.go │ │ │ │ │ ├── reader.go │ │ │ │ │ ├── signature.go │ │ │ │ │ ├── signature_test.go │ │ │ │ │ ├── signature_v3.go │ │ │ │ │ ├── signature_v3_test.go │ │ │ │ │ ├── symmetric_key_encrypted.go │ │ │ │ │ ├── symmetric_key_encrypted_test.go │ │ │ │ │ ├── symmetrically_encrypted.go │ │ │ │ │ ├── symmetrically_encrypted_test.go │ │ │ │ │ ├── userattribute.go │ │ │ │ │ ├── userattribute_test.go │ │ │ │ │ ├── userid.go │ │ │ │ │ └── userid_test.go │ │ │ │ ├── read.go │ │ │ │ ├── read_test.go │ │ │ │ ├── s2k │ │ │ │ │ ├── s2k.go │ │ │ │ │ └── s2k_test.go │ │ │ │ ├── write.go │ │ │ │ └── write_test.go │ │ │ ├── otr │ │ │ │ ├── libotr_test_helper.c │ │ │ │ ├── otr.go │ │ │ │ ├── otr_test.go │ │ │ │ └── smp.go │ │ │ ├── pbkdf2 │ │ │ │ ├── pbkdf2.go │ │ │ │ └── pbkdf2_test.go │ │ │ ├── pkcs12 │ │ │ │ ├── bmp-string.go │ │ │ │ ├── bmp-string_test.go │ │ │ │ ├── crypto.go │ │ │ │ ├── crypto_test.go │ │ │ │ ├── errors.go │ │ │ │ ├── internal │ │ │ │ │ └── rc2 │ │ │ │ │ │ ├── bench_test.go │ │ │ │ │ │ ├── rc2.go │ │ │ │ │ │ └── rc2_test.go │ │ │ │ ├── mac.go │ │ │ │ ├── mac_test.go │ │ │ │ ├── pbkdf.go │ │ │ │ ├── pbkdf_test.go │ │ │ │ ├── pkcs12.go │ │ │ │ ├── pkcs12_test.go │ │ │ │ └── safebags.go │ │ │ ├── poly1305 │ │ │ │ ├── poly1305.go │ │ │ │ ├── poly1305_test.go │ │ │ │ ├── sum_amd64.go │ │ │ │ ├── sum_amd64.s │ │ │ │ ├── sum_arm.go │ │ │ │ ├── sum_arm.s │ │ │ │ └── sum_ref.go │ │ │ ├── ripemd160 │ │ │ │ ├── ripemd160.go │ │ │ │ ├── ripemd160_test.go │ │ │ │ └── ripemd160block.go │ │ │ ├── salsa20 │ │ │ │ ├── salsa │ │ │ │ │ ├── hsalsa20.go │ │ │ │ │ ├── salsa2020_amd64.s │ │ │ │ │ ├── salsa208.go │ │ │ │ │ ├── salsa20_amd64.go │ │ │ │ │ ├── salsa20_ref.go │ │ │ │ │ └── salsa_test.go │ │ │ │ ├── salsa20.go │ │ │ │ └── salsa20_test.go │ │ │ ├── scrypt │ │ │ │ ├── example_test.go │ │ │ │ ├── scrypt.go │ │ │ │ └── scrypt_test.go │ │ │ ├── sha3 │ │ │ │ ├── doc.go │ │ │ │ ├── hashes.go │ │ │ │ ├── hashes_generic.go │ │ │ │ ├── keccakf.go │ │ │ │ ├── keccakf_amd64.go │ │ │ │ ├── keccakf_amd64.s │ │ │ │ ├── register.go │ │ │ │ ├── sha3.go │ │ │ │ ├── sha3_s390x.go │ │ │ │ ├── sha3_s390x.s │ │ │ │ ├── sha3_test.go │ │ │ │ ├── shake.go │ │ │ │ ├── shake_generic.go │ │ │ │ ├── testdata │ │ │ │ │ └── keccakKats.json.deflate │ │ │ │ ├── xor.go │ │ │ │ ├── xor_generic.go │ │ │ │ └── xor_unaligned.go │ │ │ ├── ssh │ │ │ │ ├── agent │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── forward.go │ │ │ │ │ ├── keyring.go │ │ │ │ │ ├── keyring_test.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── server_test.go │ │ │ │ │ └── testdata_test.go │ │ │ │ ├── benchmark_test.go │ │ │ │ ├── buffer.go │ │ │ │ ├── buffer_test.go │ │ │ │ ├── certs.go │ │ │ │ ├── certs_test.go │ │ │ │ ├── channel.go │ │ │ │ ├── cipher.go │ │ │ │ ├── cipher_test.go │ │ │ │ ├── client.go │ │ │ │ ├── client_auth.go │ │ │ │ ├── client_auth_test.go │ │ │ │ ├── client_test.go │ │ │ │ ├── common.go │ │ │ │ ├── connection.go │ │ │ │ ├── doc.go │ │ │ │ ├── example_test.go │ │ │ │ ├── handshake.go │ │ │ │ ├── handshake_test.go │ │ │ │ ├── kex.go │ │ │ │ ├── kex_test.go │ │ │ │ ├── keys.go │ │ │ │ ├── keys_test.go │ │ │ │ ├── knownhosts │ │ │ │ │ ├── knownhosts.go │ │ │ │ │ └── knownhosts_test.go │ │ │ │ ├── mac.go │ │ │ │ ├── mempipe_test.go │ │ │ │ ├── messages.go │ │ │ │ ├── messages_test.go │ │ │ │ ├── mux.go │ │ │ │ ├── mux_test.go │ │ │ │ ├── server.go │ │ │ │ ├── session.go │ │ │ │ ├── session_test.go │ │ │ │ ├── streamlocal.go │ │ │ │ ├── tcpip.go │ │ │ │ ├── tcpip_test.go │ │ │ │ ├── terminal │ │ │ │ │ ├── terminal.go │ │ │ │ │ ├── terminal_test.go │ │ │ │ │ ├── util.go │ │ │ │ │ ├── util_bsd.go │ │ │ │ │ ├── util_linux.go │ │ │ │ │ ├── util_plan9.go │ │ │ │ │ ├── util_solaris.go │ │ │ │ │ └── util_windows.go │ │ │ │ ├── test │ │ │ │ │ ├── agent_unix_test.go │ │ │ │ │ ├── banner_test.go │ │ │ │ │ ├── cert_test.go │ │ │ │ │ ├── dial_unix_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── forward_unix_test.go │ │ │ │ │ ├── multi_auth_test.go │ │ │ │ │ ├── session_test.go │ │ │ │ │ ├── sshd_test_pw.c │ │ │ │ │ ├── test_unix_test.go │ │ │ │ │ └── testdata_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── doc.go │ │ │ │ │ └── keys.go │ │ │ │ ├── testdata_test.go │ │ │ │ ├── transport.go │ │ │ │ └── transport_test.go │ │ │ ├── tea │ │ │ │ ├── cipher.go │ │ │ │ └── tea_test.go │ │ │ ├── twofish │ │ │ │ ├── twofish.go │ │ │ │ └── twofish_test.go │ │ │ ├── xtea │ │ │ │ ├── block.go │ │ │ │ ├── cipher.go │ │ │ │ └── xtea_test.go │ │ │ └── xts │ │ │ │ ├── xts.go │ │ │ │ └── xts_test.go │ │ │ ├── net │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README.md │ │ │ ├── bpf │ │ │ │ ├── asm.go │ │ │ │ ├── constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── instructions.go │ │ │ │ ├── instructions_test.go │ │ │ │ ├── setter.go │ │ │ │ ├── testdata │ │ │ │ │ ├── all_instructions.bpf │ │ │ │ │ └── all_instructions.txt │ │ │ │ ├── vm.go │ │ │ │ ├── vm_aluop_test.go │ │ │ │ ├── vm_bpf_test.go │ │ │ │ ├── vm_extension_test.go │ │ │ │ ├── vm_instructions.go │ │ │ │ ├── vm_jump_test.go │ │ │ │ ├── vm_load_test.go │ │ │ │ ├── vm_ret_test.go │ │ │ │ ├── vm_scratch_test.go │ │ │ │ └── vm_test.go │ │ │ ├── codereview.cfg │ │ │ ├── context │ │ │ │ ├── context.go │ │ │ │ ├── context_test.go │ │ │ │ ├── ctxhttp │ │ │ │ │ ├── ctxhttp.go │ │ │ │ │ ├── ctxhttp_17_test.go │ │ │ │ │ ├── ctxhttp_pre17.go │ │ │ │ │ ├── ctxhttp_pre17_test.go │ │ │ │ │ └── ctxhttp_test.go │ │ │ │ ├── go17.go │ │ │ │ ├── go19.go │ │ │ │ ├── pre_go17.go │ │ │ │ ├── pre_go19.go │ │ │ │ └── withtimeout_test.go │ │ │ ├── dict │ │ │ │ └── dict.go │ │ │ ├── dns │ │ │ │ └── dnsmessage │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── message.go │ │ │ │ │ └── message_test.go │ │ │ ├── html │ │ │ │ ├── atom │ │ │ │ │ ├── atom.go │ │ │ │ │ ├── atom_test.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── table.go │ │ │ │ │ └── table_test.go │ │ │ │ ├── charset │ │ │ │ │ ├── charset.go │ │ │ │ │ ├── charset_test.go │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── HTTP-charset.html │ │ │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ │ │ └── meta-content-attribute.html │ │ │ │ ├── const.go │ │ │ │ ├── doc.go │ │ │ │ ├── doctype.go │ │ │ │ ├── entity.go │ │ │ │ ├── entity_test.go │ │ │ │ ├── escape.go │ │ │ │ ├── escape_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── foreign.go │ │ │ │ ├── node.go │ │ │ │ ├── node_test.go │ │ │ │ ├── parse.go │ │ │ │ ├── parse_test.go │ │ │ │ ├── render.go │ │ │ │ ├── render_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── go1.html │ │ │ │ │ └── webkit │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ │ ├── adoption02.dat │ │ │ │ │ │ ├── comments01.dat │ │ │ │ │ │ ├── doctype01.dat │ │ │ │ │ │ ├── entities01.dat │ │ │ │ │ │ ├── entities02.dat │ │ │ │ │ │ ├── html5test-com.dat │ │ │ │ │ │ ├── inbody01.dat │ │ │ │ │ │ ├── isindex.dat │ │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ │ │ ├── ruby.dat │ │ │ │ │ │ ├── scriptdata01.dat │ │ │ │ │ │ ├── scripted │ │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ │ └── webkit01.dat │ │ │ │ │ │ ├── tables01.dat │ │ │ │ │ │ ├── template.dat │ │ │ │ │ │ ├── tests1.dat │ │ │ │ │ │ ├── tests10.dat │ │ │ │ │ │ ├── tests11.dat │ │ │ │ │ │ ├── tests12.dat │ │ │ │ │ │ ├── tests14.dat │ │ │ │ │ │ ├── tests15.dat │ │ │ │ │ │ ├── tests16.dat │ │ │ │ │ │ ├── tests17.dat │ │ │ │ │ │ ├── tests18.dat │ │ │ │ │ │ ├── tests19.dat │ │ │ │ │ │ ├── tests2.dat │ │ │ │ │ │ ├── tests20.dat │ │ │ │ │ │ ├── tests21.dat │ │ │ │ │ │ ├── tests22.dat │ │ │ │ │ │ ├── tests23.dat │ │ │ │ │ │ ├── tests24.dat │ │ │ │ │ │ ├── tests25.dat │ │ │ │ │ │ ├── tests26.dat │ │ │ │ │ │ ├── tests3.dat │ │ │ │ │ │ ├── tests4.dat │ │ │ │ │ │ ├── tests5.dat │ │ │ │ │ │ ├── tests6.dat │ │ │ │ │ │ ├── tests7.dat │ │ │ │ │ │ ├── tests8.dat │ │ │ │ │ │ ├── tests9.dat │ │ │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ │ │ ├── tricky01.dat │ │ │ │ │ │ ├── webkit01.dat │ │ │ │ │ │ └── webkit02.dat │ │ │ │ ├── token.go │ │ │ │ └── token_test.go │ │ │ ├── http │ │ │ │ ├── httpguts │ │ │ │ │ ├── guts.go │ │ │ │ │ ├── httplex.go │ │ │ │ │ └── httplex_test.go │ │ │ │ └── httpproxy │ │ │ │ │ ├── export_test.go │ │ │ │ │ ├── go19_test.go │ │ │ │ │ ├── proxy.go │ │ │ │ │ └── proxy_test.go │ │ │ ├── http2 │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── ciphers.go │ │ │ │ ├── ciphers_test.go │ │ │ │ ├── client_conn_pool.go │ │ │ │ ├── configure_transport.go │ │ │ │ ├── databuffer.go │ │ │ │ ├── databuffer_test.go │ │ │ │ ├── errors.go │ │ │ │ ├── errors_test.go │ │ │ │ ├── flow.go │ │ │ │ ├── flow_test.go │ │ │ │ ├── frame.go │ │ │ │ ├── frame_test.go │ │ │ │ ├── go16.go │ │ │ │ ├── go17.go │ │ │ │ ├── go17_not18.go │ │ │ │ ├── go18.go │ │ │ │ ├── go18_test.go │ │ │ │ ├── go19.go │ │ │ │ ├── go19_test.go │ │ │ │ ├── gotrack.go │ │ │ │ ├── gotrack_test.go │ │ │ │ ├── h2demo │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Dockerfile.0 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── deployment-prod.yaml │ │ │ │ │ ├── h2demo.go │ │ │ │ │ ├── launch.go │ │ │ │ │ ├── rootCA.key │ │ │ │ │ ├── rootCA.pem │ │ │ │ │ ├── rootCA.srl │ │ │ │ │ ├── server.crt │ │ │ │ │ ├── server.key │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── tmpl.go │ │ │ │ ├── h2i │ │ │ │ │ ├── README.md │ │ │ │ │ └── h2i.go │ │ │ │ ├── headermap.go │ │ │ │ ├── hpack │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── encode_test.go │ │ │ │ │ ├── hpack.go │ │ │ │ │ ├── hpack_test.go │ │ │ │ │ ├── huffman.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tables_test.go │ │ │ │ ├── http2.go │ │ │ │ ├── http2_test.go │ │ │ │ ├── not_go16.go │ │ │ │ ├── not_go17.go │ │ │ │ ├── not_go18.go │ │ │ │ ├── not_go19.go │ │ │ │ ├── pipe.go │ │ │ │ ├── pipe_test.go │ │ │ │ ├── server.go │ │ │ │ ├── server_push_test.go │ │ │ │ ├── server_test.go │ │ │ │ ├── testdata │ │ │ │ │ └── draft-ietf-httpbis-http2.xml │ │ │ │ ├── transport.go │ │ │ │ ├── transport_test.go │ │ │ │ ├── write.go │ │ │ │ ├── writesched.go │ │ │ │ ├── writesched_priority.go │ │ │ │ ├── writesched_priority_test.go │ │ │ │ ├── writesched_random.go │ │ │ │ ├── writesched_random_test.go │ │ │ │ ├── writesched_test.go │ │ │ │ └── z_spec_test.go │ │ │ ├── icmp │ │ │ │ ├── diag_test.go │ │ │ │ ├── dstunreach.go │ │ │ │ ├── echo.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── example_test.go │ │ │ │ ├── extension.go │ │ │ │ ├── extension_test.go │ │ │ │ ├── helper_posix.go │ │ │ │ ├── interface.go │ │ │ │ ├── ipv4.go │ │ │ │ ├── ipv4_test.go │ │ │ │ ├── ipv6.go │ │ │ │ ├── listen_posix.go │ │ │ │ ├── listen_stub.go │ │ │ │ ├── message.go │ │ │ │ ├── message_test.go │ │ │ │ ├── messagebody.go │ │ │ │ ├── mpls.go │ │ │ │ ├── multipart.go │ │ │ │ ├── multipart_test.go │ │ │ │ ├── packettoobig.go │ │ │ │ ├── paramprob.go │ │ │ │ ├── sys_freebsd.go │ │ │ │ └── timeexceeded.go │ │ │ ├── idna │ │ │ │ ├── example_test.go │ │ │ │ ├── idna.go │ │ │ │ ├── idna_test.go │ │ │ │ ├── punycode.go │ │ │ │ ├── punycode_test.go │ │ │ │ ├── tables.go │ │ │ │ ├── trie.go │ │ │ │ └── trieval.go │ │ │ ├── internal │ │ │ │ ├── iana │ │ │ │ │ ├── const.go │ │ │ │ │ └── gen.go │ │ │ │ ├── nettest │ │ │ │ │ ├── helper_bsd.go │ │ │ │ │ ├── helper_nobsd.go │ │ │ │ │ ├── helper_posix.go │ │ │ │ │ ├── helper_stub.go │ │ │ │ │ ├── helper_unix.go │ │ │ │ │ ├── helper_windows.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── rlimit.go │ │ │ │ │ └── stack.go │ │ │ │ ├── socket │ │ │ │ │ ├── cmsghdr.go │ │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ │ │ ├── cmsghdr_stub.go │ │ │ │ │ ├── defs_darwin.go │ │ │ │ │ ├── defs_dragonfly.go │ │ │ │ │ ├── defs_freebsd.go │ │ │ │ │ ├── defs_linux.go │ │ │ │ │ ├── defs_netbsd.go │ │ │ │ │ ├── defs_openbsd.go │ │ │ │ │ ├── defs_solaris.go │ │ │ │ │ ├── error_unix.go │ │ │ │ │ ├── error_windows.go │ │ │ │ │ ├── iovec_32bit.go │ │ │ │ │ ├── iovec_64bit.go │ │ │ │ │ ├── iovec_solaris_64bit.go │ │ │ │ │ ├── iovec_stub.go │ │ │ │ │ ├── mmsghdr_stub.go │ │ │ │ │ ├── mmsghdr_unix.go │ │ │ │ │ ├── msghdr_bsd.go │ │ │ │ │ ├── msghdr_bsdvar.go │ │ │ │ │ ├── msghdr_linux.go │ │ │ │ │ ├── msghdr_linux_32bit.go │ │ │ │ │ ├── msghdr_linux_64bit.go │ │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ │ ├── msghdr_solaris_64bit.go │ │ │ │ │ ├── msghdr_stub.go │ │ │ │ │ ├── rawconn.go │ │ │ │ │ ├── rawconn_mmsg.go │ │ │ │ │ ├── rawconn_msg.go │ │ │ │ │ ├── rawconn_nommsg.go │ │ │ │ │ ├── rawconn_nomsg.go │ │ │ │ │ ├── rawconn_stub.go │ │ │ │ │ ├── reflect.go │ │ │ │ │ ├── socket.go │ │ │ │ │ ├── socket_go1_9_test.go │ │ │ │ │ ├── socket_test.go │ │ │ │ │ ├── sys.go │ │ │ │ │ ├── sys_bsd.go │ │ │ │ │ ├── sys_bsdvar.go │ │ │ │ │ ├── sys_darwin.go │ │ │ │ │ ├── sys_dragonfly.go │ │ │ │ │ ├── sys_linux.go │ │ │ │ │ ├── sys_linux_386.go │ │ │ │ │ ├── sys_linux_386.s │ │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ │ ├── sys_linux_arm.go │ │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ │ ├── sys_linux_mips.go │ │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ │ ├── sys_linux_s390x.go │ │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ │ ├── sys_netbsd.go │ │ │ │ │ ├── sys_posix.go │ │ │ │ │ ├── sys_solaris.go │ │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ │ ├── sys_stub.go │ │ │ │ │ ├── sys_unix.go │ │ │ │ │ ├── sys_windows.go │ │ │ │ │ ├── zsys_darwin_386.go │ │ │ │ │ ├── zsys_darwin_amd64.go │ │ │ │ │ ├── zsys_darwin_arm.go │ │ │ │ │ ├── zsys_darwin_arm64.go │ │ │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ │ ├── zsys_linux_386.go │ │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ │ ├── zsys_netbsd_386.go │ │ │ │ │ ├── zsys_netbsd_amd64.go │ │ │ │ │ ├── zsys_netbsd_arm.go │ │ │ │ │ ├── zsys_openbsd_386.go │ │ │ │ │ ├── zsys_openbsd_amd64.go │ │ │ │ │ ├── zsys_openbsd_arm.go │ │ │ │ │ └── zsys_solaris_amd64.go │ │ │ │ ├── socks │ │ │ │ │ ├── client.go │ │ │ │ │ ├── dial_test.go │ │ │ │ │ └── socks.go │ │ │ │ ├── sockstest │ │ │ │ │ ├── server.go │ │ │ │ │ └── server_test.go │ │ │ │ └── timeseries │ │ │ │ │ ├── timeseries.go │ │ │ │ │ └── timeseries_test.go │ │ │ ├── ipv4 │ │ │ │ ├── batch.go │ │ │ │ ├── bpf_test.go │ │ │ │ ├── control.go │ │ │ │ ├── control_bsd.go │ │ │ │ ├── control_pktinfo.go │ │ │ │ ├── control_stub.go │ │ │ │ ├── control_test.go │ │ │ │ ├── control_unix.go │ │ │ │ ├── control_windows.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_linux.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── dgramopt.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── genericopt.go │ │ │ │ ├── header.go │ │ │ │ ├── header_test.go │ │ │ │ ├── helper.go │ │ │ │ ├── iana.go │ │ │ │ ├── icmp.go │ │ │ │ ├── icmp_linux.go │ │ │ │ ├── icmp_stub.go │ │ │ │ ├── icmp_test.go │ │ │ │ ├── multicast_test.go │ │ │ │ ├── multicastlistener_test.go │ │ │ │ ├── multicastsockopt_test.go │ │ │ │ ├── packet.go │ │ │ │ ├── packet_go1_8.go │ │ │ │ ├── packet_go1_9.go │ │ │ │ ├── payload.go │ │ │ │ ├── payload_cmsg.go │ │ │ │ ├── payload_cmsg_go1_8.go │ │ │ │ ├── payload_cmsg_go1_9.go │ │ │ │ ├── payload_nocmsg.go │ │ │ │ ├── readwrite_go1_8_test.go │ │ │ │ ├── readwrite_go1_9_test.go │ │ │ │ ├── readwrite_test.go │ │ │ │ ├── sockopt.go │ │ │ │ ├── sockopt_posix.go │ │ │ │ ├── sockopt_stub.go │ │ │ │ ├── sys_asmreq.go │ │ │ │ ├── sys_asmreq_stub.go │ │ │ │ ├── sys_asmreqn.go │ │ │ │ ├── sys_asmreqn_stub.go │ │ │ │ ├── sys_bpf.go │ │ │ │ ├── sys_bpf_stub.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_freebsd.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_solaris.go │ │ │ │ ├── sys_ssmreq.go │ │ │ │ ├── sys_ssmreq_stub.go │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── unicast_test.go │ │ │ │ ├── unicastsockopt_test.go │ │ │ │ ├── zsys_darwin.go │ │ │ │ ├── zsys_dragonfly.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd.go │ │ │ │ ├── zsys_openbsd.go │ │ │ │ └── zsys_solaris.go │ │ │ ├── ipv6 │ │ │ │ ├── batch.go │ │ │ │ ├── bpf_test.go │ │ │ │ ├── control.go │ │ │ │ ├── control_rfc2292_unix.go │ │ │ │ ├── control_rfc3542_unix.go │ │ │ │ ├── control_stub.go │ │ │ │ ├── control_test.go │ │ │ │ ├── control_unix.go │ │ │ │ ├── control_windows.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_linux.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── dgramopt.go │ │ │ │ ├── doc.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── genericopt.go │ │ │ │ ├── header.go │ │ │ │ ├── header_test.go │ │ │ │ ├── helper.go │ │ │ │ ├── iana.go │ │ │ │ ├── icmp.go │ │ │ │ ├── icmp_bsd.go │ │ │ │ ├── icmp_linux.go │ │ │ │ ├── icmp_solaris.go │ │ │ │ ├── icmp_stub.go │ │ │ │ ├── icmp_test.go │ │ │ │ ├── icmp_windows.go │ │ │ │ ├── mocktransponder_test.go │ │ │ │ ├── multicast_test.go │ │ │ │ ├── multicastlistener_test.go │ │ │ │ ├── multicastsockopt_test.go │ │ │ │ ├── payload.go │ │ │ │ ├── payload_cmsg.go │ │ │ │ ├── payload_cmsg_go1_8.go │ │ │ │ ├── payload_cmsg_go1_9.go │ │ │ │ ├── payload_nocmsg.go │ │ │ │ ├── readwrite_go1_8_test.go │ │ │ │ ├── readwrite_go1_9_test.go │ │ │ │ ├── readwrite_test.go │ │ │ │ ├── sockopt.go │ │ │ │ ├── sockopt_posix.go │ │ │ │ ├── sockopt_stub.go │ │ │ │ ├── sockopt_test.go │ │ │ │ ├── sys_asmreq.go │ │ │ │ ├── sys_asmreq_stub.go │ │ │ │ ├── sys_bpf.go │ │ │ │ ├── sys_bpf_stub.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_freebsd.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_solaris.go │ │ │ │ ├── sys_ssmreq.go │ │ │ │ ├── sys_ssmreq_stub.go │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── unicast_test.go │ │ │ │ ├── unicastsockopt_test.go │ │ │ │ ├── zsys_darwin.go │ │ │ │ ├── zsys_dragonfly.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd.go │ │ │ │ ├── zsys_openbsd.go │ │ │ │ └── zsys_solaris.go │ │ │ ├── lif │ │ │ │ ├── address.go │ │ │ │ ├── address_test.go │ │ │ │ ├── binary.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── lif.go │ │ │ │ ├── link.go │ │ │ │ ├── link_test.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ ├── syscall.go │ │ │ │ └── zsys_solaris_amd64.go │ │ │ ├── nettest │ │ │ │ ├── conntest.go │ │ │ │ ├── conntest_go16.go │ │ │ │ ├── conntest_go17.go │ │ │ │ └── conntest_test.go │ │ │ ├── netutil │ │ │ │ ├── listen.go │ │ │ │ └── listen_test.go │ │ │ ├── proxy │ │ │ │ ├── direct.go │ │ │ │ ├── per_host.go │ │ │ │ ├── per_host_test.go │ │ │ │ ├── proxy.go │ │ │ │ ├── proxy_test.go │ │ │ │ └── socks5.go │ │ │ ├── publicsuffix │ │ │ │ ├── gen.go │ │ │ │ ├── list.go │ │ │ │ ├── list_test.go │ │ │ │ ├── table.go │ │ │ │ └── table_test.go │ │ │ ├── route │ │ │ │ ├── address.go │ │ │ │ ├── address_darwin_test.go │ │ │ │ ├── address_test.go │ │ │ │ ├── binary.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── interface.go │ │ │ │ ├── interface_announce.go │ │ │ │ ├── interface_classic.go │ │ │ │ ├── interface_freebsd.go │ │ │ │ ├── interface_multicast.go │ │ │ │ ├── interface_openbsd.go │ │ │ │ ├── message.go │ │ │ │ ├── message_darwin_test.go │ │ │ │ ├── message_freebsd_test.go │ │ │ │ ├── message_test.go │ │ │ │ ├── route.go │ │ │ │ ├── route_classic.go │ │ │ │ ├── route_openbsd.go │ │ │ │ ├── route_test.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_freebsd.go │ │ │ │ ├── sys_netbsd.go │ │ │ │ ├── sys_openbsd.go │ │ │ │ ├── syscall.go │ │ │ │ ├── zsys_darwin.go │ │ │ │ ├── zsys_dragonfly.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_netbsd.go │ │ │ │ └── zsys_openbsd.go │ │ │ ├── trace │ │ │ │ ├── events.go │ │ │ │ ├── histogram.go │ │ │ │ ├── histogram_test.go │ │ │ │ ├── trace.go │ │ │ │ ├── trace_go16.go │ │ │ │ ├── trace_go17.go │ │ │ │ └── trace_test.go │ │ │ ├── webdav │ │ │ │ ├── file.go │ │ │ │ ├── file_go1.6.go │ │ │ │ ├── file_go1.7.go │ │ │ │ ├── file_test.go │ │ │ │ ├── if.go │ │ │ │ ├── if_test.go │ │ │ │ ├── internal │ │ │ │ │ └── xml │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── atom_test.go │ │ │ │ │ │ ├── example_test.go │ │ │ │ │ │ ├── marshal.go │ │ │ │ │ │ ├── marshal_test.go │ │ │ │ │ │ ├── read.go │ │ │ │ │ │ ├── read_test.go │ │ │ │ │ │ ├── typeinfo.go │ │ │ │ │ │ ├── xml.go │ │ │ │ │ │ └── xml_test.go │ │ │ │ ├── litmus_test_server.go │ │ │ │ ├── lock.go │ │ │ │ ├── lock_test.go │ │ │ │ ├── prop.go │ │ │ │ ├── prop_test.go │ │ │ │ ├── webdav.go │ │ │ │ ├── webdav_test.go │ │ │ │ ├── xml.go │ │ │ │ └── xml_test.go │ │ │ ├── websocket │ │ │ │ ├── client.go │ │ │ │ ├── dial.go │ │ │ │ ├── dial_test.go │ │ │ │ ├── exampledial_test.go │ │ │ │ ├── examplehandler_test.go │ │ │ │ ├── hybi.go │ │ │ │ ├── hybi_test.go │ │ │ │ ├── server.go │ │ │ │ ├── websocket.go │ │ │ │ └── websocket_test.go │ │ │ └── xsrftoken │ │ │ │ ├── xsrf.go │ │ │ │ └── xsrf_test.go │ │ │ ├── sys │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README.md │ │ │ ├── codereview.cfg │ │ │ ├── cpu │ │ │ │ ├── cpu.go │ │ │ │ ├── cpu_arm.go │ │ │ │ ├── cpu_arm64.go │ │ │ │ ├── cpu_mips64x.go │ │ │ │ ├── cpu_mipsx.go │ │ │ │ ├── cpu_ppc64x.go │ │ │ │ ├── cpu_s390x.go │ │ │ │ ├── cpu_test.go │ │ │ │ ├── cpu_x86.go │ │ │ │ └── cpu_x86.s │ │ │ ├── plan9 │ │ │ │ ├── asm.s │ │ │ │ ├── asm_plan9_386.s │ │ │ │ ├── asm_plan9_amd64.s │ │ │ │ ├── asm_plan9_arm.s │ │ │ │ ├── const_plan9.go │ │ │ │ ├── dir_plan9.go │ │ │ │ ├── env_plan9.go │ │ │ │ ├── errors_plan9.go │ │ │ │ ├── mkall.sh │ │ │ │ ├── mkerrors.sh │ │ │ │ ├── mksyscall.pl │ │ │ │ ├── mksysnum_plan9.sh │ │ │ │ ├── pwd_go15_plan9.go │ │ │ │ ├── pwd_plan9.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_plan9.go │ │ │ │ ├── syscall_test.go │ │ │ │ ├── zsyscall_plan9_386.go │ │ │ │ ├── zsyscall_plan9_amd64.go │ │ │ │ ├── zsyscall_plan9_arm.go │ │ │ │ └── zsysnum_plan9.go │ │ │ ├── unix │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── affinity_linux.go │ │ │ │ ├── asm_darwin_386.s │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ ├── asm_linux_386.s │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ ├── asm_linux_arm.s │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ ├── asm_openbsd_arm.s │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ ├── bluetooth_linux.go │ │ │ │ ├── cap_freebsd.go │ │ │ │ ├── constants.go │ │ │ │ ├── creds_test.go │ │ │ │ ├── dev_darwin.go │ │ │ │ ├── dev_darwin_test.go │ │ │ │ ├── dev_dragonfly.go │ │ │ │ ├── dev_dragonfly_test.go │ │ │ │ ├── dev_freebsd.go │ │ │ │ ├── dev_linux.go │ │ │ │ ├── dev_linux_test.go │ │ │ │ ├── dev_netbsd.go │ │ │ │ ├── dev_netbsd_test.go │ │ │ │ ├── dev_openbsd.go │ │ │ │ ├── dev_openbsd_test.go │ │ │ │ ├── dev_solaris_test.go │ │ │ │ ├── dirent.go │ │ │ │ ├── endian_big.go │ │ │ │ ├── endian_little.go │ │ │ │ ├── env_unix.go │ │ │ │ ├── errors_freebsd_386.go │ │ │ │ ├── errors_freebsd_amd64.go │ │ │ │ ├── errors_freebsd_arm.go │ │ │ │ ├── example_test.go │ │ │ │ ├── export_test.go │ │ │ │ ├── fcntl.go │ │ │ │ ├── fcntl_linux_32bit.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── gccgo_c.c │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ ├── linux │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── mkall.go │ │ │ │ │ ├── mksysnum.pl │ │ │ │ │ └── types.go │ │ │ │ ├── mkall.sh │ │ │ │ ├── mkerrors.sh │ │ │ │ ├── mkpost.go │ │ │ │ ├── mksyscall.pl │ │ │ │ ├── mksyscall_solaris.pl │ │ │ │ ├── mksysctl_openbsd.pl │ │ │ │ ├── mksysnum_darwin.pl │ │ │ │ ├── mksysnum_dragonfly.pl │ │ │ │ ├── mksysnum_freebsd.pl │ │ │ │ ├── mksysnum_netbsd.pl │ │ │ │ ├── mksysnum_openbsd.pl │ │ │ │ ├── mmap_unix_test.go │ │ │ │ ├── openbsd_pledge.go │ │ │ │ ├── openbsd_test.go │ │ │ │ ├── pagesize_unix.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ ├── str.go │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_bsd.go │ │ │ │ ├── syscall_bsd_test.go │ │ │ │ ├── syscall_darwin.go │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ ├── syscall_freebsd.go │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ ├── syscall_freebsd_test.go │ │ │ │ ├── syscall_linux.go │ │ │ │ ├── syscall_linux_386.go │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ ├── syscall_linux_gc.go │ │ │ │ ├── syscall_linux_gccgo.go │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ ├── syscall_linux_test.go │ │ │ │ ├── syscall_netbsd.go │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ ├── syscall_openbsd.go │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ ├── syscall_solaris.go │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ ├── syscall_solaris_test.go │ │ │ │ ├── syscall_test.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ ├── syscall_unix_test.go │ │ │ │ ├── timestruct.go │ │ │ │ ├── timestruct_test.go │ │ │ │ ├── types_darwin.go │ │ │ │ ├── types_dragonfly.go │ │ │ │ ├── types_freebsd.go │ │ │ │ ├── types_netbsd.go │ │ │ │ ├── types_openbsd.go │ │ │ │ ├── types_solaris.go │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ ├── zptrace386_linux.go │ │ │ │ ├── zptracearm_linux.go │ │ │ │ ├── zptracemips_linux.go │ │ │ │ ├── zptracemipsle_linux.go │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ ├── zsysctl_openbsd_386.go │ │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ └── windows │ │ │ │ ├── asm_windows_386.s │ │ │ │ ├── asm_windows_amd64.s │ │ │ │ ├── dll_windows.go │ │ │ │ ├── env_windows.go │ │ │ │ ├── eventlog.go │ │ │ │ ├── exec_windows.go │ │ │ │ ├── memory_windows.go │ │ │ │ ├── mksyscall.go │ │ │ │ ├── race.go │ │ │ │ ├── race0.go │ │ │ │ ├── registry │ │ │ │ ├── export_test.go │ │ │ │ ├── key.go │ │ │ │ ├── mksyscall.go │ │ │ │ ├── registry_test.go │ │ │ │ ├── syscall.go │ │ │ │ ├── value.go │ │ │ │ └── zsyscall_windows.go │ │ │ │ ├── security_windows.go │ │ │ │ ├── service.go │ │ │ │ ├── str.go │ │ │ │ ├── svc │ │ │ │ ├── debug │ │ │ │ │ ├── log.go │ │ │ │ │ └── service.go │ │ │ │ ├── event.go │ │ │ │ ├── eventlog │ │ │ │ │ ├── install.go │ │ │ │ │ ├── log.go │ │ │ │ │ └── log_test.go │ │ │ │ ├── example │ │ │ │ │ ├── beep.go │ │ │ │ │ ├── install.go │ │ │ │ │ ├── main.go │ │ │ │ │ ├── manage.go │ │ │ │ │ └── service.go │ │ │ │ ├── go12.c │ │ │ │ ├── go12.go │ │ │ │ ├── go13.go │ │ │ │ ├── mgr │ │ │ │ │ ├── config.go │ │ │ │ │ ├── mgr.go │ │ │ │ │ ├── mgr_test.go │ │ │ │ │ └── service.go │ │ │ │ ├── security.go │ │ │ │ ├── service.go │ │ │ │ ├── svc_test.go │ │ │ │ ├── sys_386.s │ │ │ │ └── sys_amd64.s │ │ │ │ ├── syscall.go │ │ │ │ ├── syscall_test.go │ │ │ │ ├── syscall_windows.go │ │ │ │ ├── syscall_windows_test.go │ │ │ │ ├── types_windows.go │ │ │ │ ├── types_windows_386.go │ │ │ │ ├── types_windows_amd64.go │ │ │ │ └── zsyscall_windows.go │ │ │ └── text │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ ├── README.md │ │ │ ├── cases │ │ │ ├── cases.go │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── example_test.go │ │ │ ├── fold.go │ │ │ ├── fold_test.go │ │ │ ├── gen.go │ │ │ ├── gen_trieval.go │ │ │ ├── icu.go │ │ │ ├── icu_test.go │ │ │ ├── info.go │ │ │ ├── map.go │ │ │ ├── map_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables10.0.0_test.go │ │ │ ├── tables9.0.0.go │ │ │ ├── tables9.0.0_test.go │ │ │ └── trieval.go │ │ │ ├── cmd │ │ │ └── gotext │ │ │ │ ├── common.go │ │ │ │ ├── doc.go │ │ │ │ ├── examples │ │ │ │ ├── extract │ │ │ │ │ ├── catalog.go │ │ │ │ │ ├── locales │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ │ ├── en-US │ │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ │ ├── extracted.gotext.json │ │ │ │ │ │ └── zh │ │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ └── main.go │ │ │ │ ├── extract_http │ │ │ │ │ ├── locales │ │ │ │ │ │ ├── de │ │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ │ ├── en-US │ │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ │ ├── extracted.gotext.json │ │ │ │ │ │ └── zh │ │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── main.go │ │ │ │ │ └── pkg │ │ │ │ │ │ └── pkg.go │ │ │ │ └── rewrite │ │ │ │ │ ├── main.go │ │ │ │ │ └── printer.go │ │ │ │ ├── extract.go │ │ │ │ ├── generate.go │ │ │ │ ├── main.go │ │ │ │ └── rewrite.go │ │ │ ├── codereview.cfg │ │ │ ├── collate │ │ │ ├── build │ │ │ │ ├── builder.go │ │ │ │ ├── builder_test.go │ │ │ │ ├── colelem.go │ │ │ │ ├── colelem_test.go │ │ │ │ ├── contract.go │ │ │ │ ├── contract_test.go │ │ │ │ ├── order.go │ │ │ │ ├── order_test.go │ │ │ │ ├── table.go │ │ │ │ ├── trie.go │ │ │ │ └── trie_test.go │ │ │ ├── collate.go │ │ │ ├── collate_test.go │ │ │ ├── export_test.go │ │ │ ├── index.go │ │ │ ├── maketables.go │ │ │ ├── option.go │ │ │ ├── option_test.go │ │ │ ├── reg_test.go │ │ │ ├── sort.go │ │ │ ├── sort_test.go │ │ │ ├── table_test.go │ │ │ ├── tables.go │ │ │ └── tools │ │ │ │ └── colcmp │ │ │ │ ├── Makefile │ │ │ │ ├── chars.go │ │ │ │ ├── col.go │ │ │ │ ├── colcmp.go │ │ │ │ ├── darwin.go │ │ │ │ ├── gen.go │ │ │ │ └── icu.go │ │ │ ├── currency │ │ │ ├── common.go │ │ │ ├── currency.go │ │ │ ├── currency_test.go │ │ │ ├── example_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── query.go │ │ │ ├── query_test.go │ │ │ ├── tables.go │ │ │ └── tables_test.go │ │ │ ├── date │ │ │ ├── data_test.go │ │ │ ├── gen.go │ │ │ ├── gen_test.go │ │ │ └── tables.go │ │ │ ├── doc.go │ │ │ ├── encoding │ │ │ ├── charmap │ │ │ │ ├── charmap.go │ │ │ │ ├── charmap_test.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── encoding.go │ │ │ ├── encoding_test.go │ │ │ ├── example_test.go │ │ │ ├── htmlindex │ │ │ │ ├── gen.go │ │ │ │ ├── htmlindex.go │ │ │ │ ├── htmlindex_test.go │ │ │ │ ├── map.go │ │ │ │ └── tables.go │ │ │ ├── ianaindex │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── ianaindex.go │ │ │ │ ├── ianaindex_test.go │ │ │ │ └── tables.go │ │ │ ├── internal │ │ │ │ ├── enctest │ │ │ │ │ └── enctest.go │ │ │ │ ├── identifier │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── identifier.go │ │ │ │ │ └── mib.go │ │ │ │ └── internal.go │ │ │ ├── japanese │ │ │ │ ├── all.go │ │ │ │ ├── all_test.go │ │ │ │ ├── eucjp.go │ │ │ │ ├── iso2022jp.go │ │ │ │ ├── maketables.go │ │ │ │ ├── shiftjis.go │ │ │ │ └── tables.go │ │ │ ├── korean │ │ │ │ ├── all_test.go │ │ │ │ ├── euckr.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── simplifiedchinese │ │ │ │ ├── all.go │ │ │ │ ├── all_test.go │ │ │ │ ├── gbk.go │ │ │ │ ├── hzgb2312.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── testdata │ │ │ │ ├── candide-gb18030.txt │ │ │ │ ├── candide-utf-16le.txt │ │ │ │ ├── candide-utf-32be.txt │ │ │ │ ├── candide-utf-8.txt │ │ │ │ ├── candide-windows-1252.txt │ │ │ │ ├── rashomon-euc-jp.txt │ │ │ │ ├── rashomon-iso-2022-jp.txt │ │ │ │ ├── rashomon-shift-jis.txt │ │ │ │ ├── rashomon-utf-8.txt │ │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt │ │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-utf-8.txt │ │ │ │ ├── sunzi-bingfa-simplified-gbk.txt │ │ │ │ ├── sunzi-bingfa-simplified-utf-8.txt │ │ │ │ ├── sunzi-bingfa-traditional-big5.txt │ │ │ │ ├── sunzi-bingfa-traditional-utf-8.txt │ │ │ │ ├── unsu-joh-eun-nal-euc-kr.txt │ │ │ │ └── unsu-joh-eun-nal-utf-8.txt │ │ │ ├── traditionalchinese │ │ │ │ ├── all_test.go │ │ │ │ ├── big5.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ └── unicode │ │ │ │ ├── override.go │ │ │ │ ├── unicode.go │ │ │ │ ├── unicode_test.go │ │ │ │ └── utf32 │ │ │ │ ├── utf32.go │ │ │ │ └── utf32_test.go │ │ │ ├── feature │ │ │ └── plural │ │ │ │ ├── common.go │ │ │ │ ├── data_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── message.go │ │ │ │ ├── message_test.go │ │ │ │ ├── plural.go │ │ │ │ ├── plural_test.go │ │ │ │ └── tables.go │ │ │ ├── gen.go │ │ │ ├── internal │ │ │ ├── catmsg │ │ │ │ ├── catmsg.go │ │ │ │ ├── catmsg_test.go │ │ │ │ ├── codec.go │ │ │ │ ├── varint.go │ │ │ │ └── varint_test.go │ │ │ ├── cldrtree │ │ │ │ ├── cldrtree.go │ │ │ │ ├── cldrtree_test.go │ │ │ │ ├── generate.go │ │ │ │ ├── option.go │ │ │ │ ├── testdata │ │ │ │ │ ├── test1 │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ │ └── root.xml │ │ │ │ │ │ └── output.go │ │ │ │ │ └── test2 │ │ │ │ │ │ ├── common │ │ │ │ │ │ └── main │ │ │ │ │ │ │ ├── en.xml │ │ │ │ │ │ │ ├── en_001.xml │ │ │ │ │ │ │ ├── en_GB.xml │ │ │ │ │ │ │ └── root.xml │ │ │ │ │ │ └── output.go │ │ │ │ ├── tree.go │ │ │ │ └── type.go │ │ │ ├── colltab │ │ │ │ ├── collate_test.go │ │ │ │ ├── collelem.go │ │ │ │ ├── collelem_test.go │ │ │ │ ├── colltab.go │ │ │ │ ├── colltab_test.go │ │ │ │ ├── contract.go │ │ │ │ ├── contract_test.go │ │ │ │ ├── iter.go │ │ │ │ ├── iter_test.go │ │ │ │ ├── numeric.go │ │ │ │ ├── numeric_test.go │ │ │ │ ├── table.go │ │ │ │ ├── trie.go │ │ │ │ ├── trie_test.go │ │ │ │ ├── weighter.go │ │ │ │ └── weighter_test.go │ │ │ ├── export │ │ │ │ ├── README │ │ │ │ └── idna │ │ │ │ │ ├── common_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen10.0.0_test.go │ │ │ │ │ ├── gen9.0.0_test.go │ │ │ │ │ ├── gen_common.go │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ ├── idna10.0.0.go │ │ │ │ │ ├── idna10.0.0_test.go │ │ │ │ │ ├── idna9.0.0.go │ │ │ │ │ ├── idna9.0.0_test.go │ │ │ │ │ ├── idna_test.go │ │ │ │ │ ├── punycode.go │ │ │ │ │ ├── punycode_test.go │ │ │ │ │ ├── tables10.0.0.go │ │ │ │ │ ├── tables9.0.0.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── trieval.go │ │ │ ├── format │ │ │ │ ├── format.go │ │ │ │ ├── parser.go │ │ │ │ └── parser_test.go │ │ │ ├── gen.go │ │ │ ├── gen │ │ │ │ ├── code.go │ │ │ │ └── gen.go │ │ │ ├── gen_test.go │ │ │ ├── internal.go │ │ │ ├── internal_test.go │ │ │ ├── match.go │ │ │ ├── match_test.go │ │ │ ├── number │ │ │ │ ├── common.go │ │ │ │ ├── decimal.go │ │ │ │ ├── decimal_test.go │ │ │ │ ├── format.go │ │ │ │ ├── format_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── number.go │ │ │ │ ├── number_test.go │ │ │ │ ├── pattern.go │ │ │ │ ├── pattern_test.go │ │ │ │ ├── roundingmode_string.go │ │ │ │ ├── tables.go │ │ │ │ └── tables_test.go │ │ │ ├── stringset │ │ │ │ ├── set.go │ │ │ │ └── set_test.go │ │ │ ├── tables.go │ │ │ ├── tag │ │ │ │ ├── tag.go │ │ │ │ └── tag_test.go │ │ │ ├── testtext │ │ │ │ ├── codesize.go │ │ │ │ ├── flag.go │ │ │ │ ├── gc.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── go1_6.go │ │ │ │ ├── go1_7.go │ │ │ │ └── text.go │ │ │ ├── triegen │ │ │ │ ├── compact.go │ │ │ │ ├── data_test.go │ │ │ │ ├── example_compact_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen_test.go │ │ │ │ ├── print.go │ │ │ │ └── triegen.go │ │ │ ├── ucd │ │ │ │ ├── example_test.go │ │ │ │ ├── ucd.go │ │ │ │ └── ucd_test.go │ │ │ └── utf8internal │ │ │ │ └── utf8internal.go │ │ │ ├── language │ │ │ ├── Makefile │ │ │ ├── common.go │ │ │ ├── coverage.go │ │ │ ├── coverage_test.go │ │ │ ├── display │ │ │ │ ├── dict.go │ │ │ │ ├── dict_test.go │ │ │ │ ├── display.go │ │ │ │ ├── display_test.go │ │ │ │ ├── examples_test.go │ │ │ │ ├── lookup.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── doc.go │ │ │ ├── examples_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── gen_index.go │ │ │ ├── go1_1.go │ │ │ ├── go1_2.go │ │ │ ├── httpexample_test.go │ │ │ ├── index.go │ │ │ ├── language.go │ │ │ ├── language_test.go │ │ │ ├── lookup.go │ │ │ ├── lookup_test.go │ │ │ ├── match.go │ │ │ ├── match_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── tables.go │ │ │ ├── tags.go │ │ │ └── testdata │ │ │ │ ├── CLDRLocaleMatcherTest.txt │ │ │ │ └── GoLocaleMatcherTest.txt │ │ │ ├── message │ │ │ ├── catalog.go │ │ │ ├── catalog │ │ │ │ ├── catalog.go │ │ │ │ ├── catalog_test.go │ │ │ │ ├── dict.go │ │ │ │ ├── go19.go │ │ │ │ └── gopre19.go │ │ │ ├── catalog_test.go │ │ │ ├── doc.go │ │ │ ├── examples_test.go │ │ │ ├── fmt_test.go │ │ │ ├── format.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── pipeline │ │ │ │ ├── extract.go │ │ │ │ ├── generate.go │ │ │ │ ├── message.go │ │ │ │ ├── pipeline.go │ │ │ │ └── rewrite.go │ │ │ └── print.go │ │ │ ├── number │ │ │ ├── doc.go │ │ │ ├── examples_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── number.go │ │ │ ├── number_test.go │ │ │ └── option.go │ │ │ ├── runes │ │ │ ├── cond.go │ │ │ ├── cond_test.go │ │ │ ├── example_test.go │ │ │ ├── runes.go │ │ │ └── runes_test.go │ │ │ ├── search │ │ │ ├── index.go │ │ │ ├── pattern.go │ │ │ ├── pattern_test.go │ │ │ ├── search.go │ │ │ └── tables.go │ │ │ ├── secure │ │ │ ├── bidirule │ │ │ │ ├── bench_test.go │ │ │ │ ├── bidirule.go │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ ├── bidirule10.0.0_test.go │ │ │ │ ├── bidirule9.0.0.go │ │ │ │ ├── bidirule9.0.0_test.go │ │ │ │ └── bidirule_test.go │ │ │ ├── doc.go │ │ │ └── precis │ │ │ │ ├── benchmark_test.go │ │ │ │ ├── class.go │ │ │ │ ├── class_test.go │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── enforce10.0.0_test.go │ │ │ │ ├── enforce9.0.0_test.go │ │ │ │ ├── enforce_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── nickname.go │ │ │ │ ├── options.go │ │ │ │ ├── profile.go │ │ │ │ ├── profile_test.go │ │ │ │ ├── profiles.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── tables_test.go │ │ │ │ ├── transformer.go │ │ │ │ └── trieval.go │ │ │ ├── transform │ │ │ ├── examples_test.go │ │ │ ├── transform.go │ │ │ └── transform_test.go │ │ │ ├── unicode │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── core_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_ranges.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── prop.go │ │ │ │ ├── ranges_test.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── tables_test.go │ │ │ │ └── trieval.go │ │ │ ├── cldr │ │ │ │ ├── base.go │ │ │ │ ├── cldr.go │ │ │ │ ├── cldr_test.go │ │ │ │ ├── collate.go │ │ │ │ ├── collate_test.go │ │ │ │ ├── data_test.go │ │ │ │ ├── decode.go │ │ │ │ ├── examples_test.go │ │ │ │ ├── makexml.go │ │ │ │ ├── resolve.go │ │ │ │ ├── resolve_test.go │ │ │ │ ├── slice.go │ │ │ │ ├── slice_test.go │ │ │ │ └── xml.go │ │ │ ├── doc.go │ │ │ ├── norm │ │ │ │ ├── composition.go │ │ │ │ ├── composition_test.go │ │ │ │ ├── data10.0.0_test.go │ │ │ │ ├── data9.0.0_test.go │ │ │ │ ├── example_iter_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── forminfo_test.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── iter_test.go │ │ │ │ ├── maketables.go │ │ │ │ ├── normalize.go │ │ │ │ ├── normalize_test.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── readwriter_test.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transform.go │ │ │ │ ├── transform_test.go │ │ │ │ ├── trie.go │ │ │ │ ├── triegen.go │ │ │ │ └── ucd_test.go │ │ │ ├── rangetable │ │ │ │ ├── gen.go │ │ │ │ ├── merge.go │ │ │ │ ├── merge_test.go │ │ │ │ ├── rangetable.go │ │ │ │ ├── rangetable_test.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ └── tables9.0.0.go │ │ │ └── runenames │ │ │ │ ├── bits.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_bits.go │ │ │ │ ├── runenames.go │ │ │ │ ├── runenames_test.go │ │ │ │ └── tables.go │ │ │ └── width │ │ │ ├── common_test.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── gen_trieval.go │ │ │ ├── kind_string.go │ │ │ ├── runes_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── tables_test.go │ │ │ ├── transform.go │ │ │ ├── transform_test.go │ │ │ ├── trieval.go │ │ │ └── width.go │ │ ├── gopkg.in │ │ ├── inf.v0 │ │ │ ├── LICENSE │ │ │ ├── benchmark_test.go │ │ │ ├── dec.go │ │ │ ├── dec_go1_2_test.go │ │ │ ├── dec_internal_test.go │ │ │ ├── dec_test.go │ │ │ ├── example_test.go │ │ │ ├── rounder.go │ │ │ ├── rounder_example_test.go │ │ │ └── rounder_test.go │ │ └── yaml.v2 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── LICENSE.libyaml │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── example_embedded_test.go │ │ │ ├── go.mod │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── suite_test.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ └── yamlprivateh.go │ │ └── k8s.io │ │ ├── api │ │ ├── Godeps │ │ │ ├── Godeps.json │ │ │ └── Readme │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── admission │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── admissionregistration │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── apps │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta2 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── authentication │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── authorization │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── autoscaling │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v2beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── batch │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v2alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── certificates │ │ │ ├── OWNERS │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── core │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── annotation_key_constants.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── meta.go │ │ │ │ ├── objectreference.go │ │ │ │ ├── register.go │ │ │ │ ├── resource.go │ │ │ │ ├── taint.go │ │ │ │ ├── taint_test.go │ │ │ │ ├── toleration.go │ │ │ │ ├── toleration_test.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── events │ │ │ ├── OWNERS │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── extensions │ │ │ ├── OWNERS │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── imagepolicy │ │ │ ├── OWNERS │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── networking │ │ │ ├── OWNERS │ │ │ └── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── policy │ │ │ ├── OWNERS │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── rbac │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── scheduling │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── settings │ │ │ └── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── storage │ │ │ ├── OWNERS │ │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── apimachinery │ │ ├── Godeps │ │ │ ├── Godeps.json │ │ │ └── Readme │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── hack │ │ │ ├── godep-deps.sh │ │ │ └── sync-from-kubernetes.sh │ │ ├── pkg │ │ │ ├── OWNERS │ │ │ ├── api │ │ │ │ ├── equality │ │ │ │ │ ├── BUILD │ │ │ │ │ └── semantic.go │ │ │ │ ├── errors │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── errors_test.go │ │ │ │ ├── meta │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ │ ├── help.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── lazy.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── meta_test.go │ │ │ │ │ ├── multirestmapper.go │ │ │ │ │ ├── multirestmapper_test.go │ │ │ │ │ ├── priority.go │ │ │ │ │ ├── priority_test.go │ │ │ │ │ ├── restmapper.go │ │ │ │ │ ├── restmapper_test.go │ │ │ │ │ └── unstructured.go │ │ │ │ ├── resource │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── amount.go │ │ │ │ │ ├── amount_test.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── math.go │ │ │ │ │ ├── math_test.go │ │ │ │ │ ├── quantity.go │ │ │ │ │ ├── quantity_example_test.go │ │ │ │ │ ├── quantity_proto.go │ │ │ │ │ ├── quantity_proto_test.go │ │ │ │ │ ├── quantity_test.go │ │ │ │ │ ├── scale_int.go │ │ │ │ │ ├── scale_int_test.go │ │ │ │ │ ├── suffix.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── testing │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── codec.go │ │ │ │ │ ├── fuzzer │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── fuzzer.go │ │ │ │ │ │ ├── valuefuzz.go │ │ │ │ │ │ └── valuefuzz_test.go │ │ │ │ │ └── roundtrip │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── roundtrip.go │ │ │ │ └── validation │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generic.go │ │ │ │ │ ├── objectmeta.go │ │ │ │ │ ├── objectmeta_test.go │ │ │ │ │ └── path │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── name.go │ │ │ │ │ └── name_test.go │ │ │ ├── apimachinery │ │ │ │ ├── BUILD │ │ │ │ ├── announced │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── announced.go │ │ │ │ │ ├── announced_test.go │ │ │ │ │ └── group_factory.go │ │ │ │ ├── doc.go │ │ │ │ ├── registered │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── registered.go │ │ │ │ │ └── registered_test.go │ │ │ │ ├── types.go │ │ │ │ └── types_test.go │ │ │ ├── apis │ │ │ │ ├── meta │ │ │ │ │ ├── fuzzer │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── fuzzer.go │ │ │ │ │ ├── internalversion │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── register_test.go │ │ │ │ │ │ ├── roundtrip_test.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── OWNERS │ │ │ │ │ │ ├── controller_ref.go │ │ │ │ │ │ ├── controller_ref_test.go │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── conversion_test.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── duration.go │ │ │ │ │ │ ├── duration_test.go │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ ├── group_version.go │ │ │ │ │ │ ├── group_version_test.go │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ │ ├── labels.go │ │ │ │ │ │ ├── labels_test.go │ │ │ │ │ │ ├── meta.go │ │ │ │ │ │ ├── micro_time.go │ │ │ │ │ │ ├── micro_time_proto.go │ │ │ │ │ │ ├── micro_time_test.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── time.go │ │ │ │ │ │ ├── time_proto.go │ │ │ │ │ │ ├── time_test.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ ├── unstructured │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ │ │ ├── unstructured.go │ │ │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ │ │ ├── unstructured_list_test.go │ │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ │ ├── validation │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ ├── validation.go │ │ │ │ │ │ │ └── validation_test.go │ │ │ │ │ │ ├── watch.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ │ ├── generated.proto │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── testapigroup │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fuzzer │ │ │ │ │ ├── BUILD │ │ │ │ │ └── fuzzer.go │ │ │ │ │ ├── install │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── install.go │ │ │ │ │ └── roundtrip_test.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── conversion │ │ │ │ ├── BUILD │ │ │ │ ├── converter.go │ │ │ │ ├── converter_test.go │ │ │ │ ├── deep_equal.go │ │ │ │ ├── doc.go │ │ │ │ ├── helper.go │ │ │ │ ├── helper_test.go │ │ │ │ └── queryparams │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── convert.go │ │ │ │ │ ├── convert_test.go │ │ │ │ │ └── doc.go │ │ │ ├── fields │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fields.go │ │ │ │ ├── fields_test.go │ │ │ │ ├── requirements.go │ │ │ │ ├── selector.go │ │ │ │ └── selector_test.go │ │ │ ├── labels │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── labels.go │ │ │ │ ├── labels_test.go │ │ │ │ ├── selector.go │ │ │ │ ├── selector_test.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── runtime │ │ │ │ ├── BUILD │ │ │ │ ├── codec.go │ │ │ │ ├── codec_check.go │ │ │ │ ├── conversion.go │ │ │ │ ├── conversion_test.go │ │ │ │ ├── converter.go │ │ │ │ ├── converter_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── embedded.go │ │ │ │ ├── embedded_test.go │ │ │ │ ├── error.go │ │ │ │ ├── extension.go │ │ │ │ ├── extension_test.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── helper.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── register.go │ │ │ │ ├── schema │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── group_version.go │ │ │ │ │ ├── group_version_test.go │ │ │ │ │ └── interfaces.go │ │ │ │ ├── scheme.go │ │ │ │ ├── scheme_builder.go │ │ │ │ ├── scheme_test.go │ │ │ │ ├── serializer │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── codec_factory.go │ │ │ │ │ ├── codec_test.go │ │ │ │ │ ├── json │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── json.go │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ ├── meta.go │ │ │ │ │ │ └── meta_test.go │ │ │ │ │ ├── negotiated_codec.go │ │ │ │ │ ├── protobuf │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── protobuf.go │ │ │ │ │ ├── protobuf_extension.go │ │ │ │ │ ├── recognizer │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── recognizer.go │ │ │ │ │ │ └── testing │ │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ │ └── recognizer_test.go │ │ │ │ │ ├── streaming │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── streaming.go │ │ │ │ │ │ └── streaming_test.go │ │ │ │ │ ├── testing │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── versioning │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── versioning.go │ │ │ │ │ │ └── versioning_test.go │ │ │ │ │ └── yaml │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── yaml.go │ │ │ │ ├── swagger_doc_generator.go │ │ │ │ ├── swagger_doc_generator_test.go │ │ │ │ ├── testing │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── types.go │ │ │ │ ├── types_proto.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── selection │ │ │ │ ├── BUILD │ │ │ │ └── operator.go │ │ │ ├── test │ │ │ │ ├── BUILD │ │ │ │ ├── api_meta_help_test.go │ │ │ │ ├── api_meta_meta_test.go │ │ │ │ ├── apis_meta_v1_unstructed_unstructure_test.go │ │ │ │ ├── runtime_helper_test.go │ │ │ │ ├── runtime_serializer_protobuf_protobuf_test.go │ │ │ │ ├── runtime_unversioned_test.go │ │ │ │ ├── util.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── types │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── namespacedname.go │ │ │ │ ├── nodename.go │ │ │ │ ├── patch.go │ │ │ │ └── uid.go │ │ │ ├── util │ │ │ │ ├── cache │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── cache_test.go │ │ │ │ │ ├── lruexpirecache.go │ │ │ │ │ └── lruexpirecache_test.go │ │ │ │ ├── clock │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clock.go │ │ │ │ │ └── clock_test.go │ │ │ │ ├── diff │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── diff.go │ │ │ │ │ └── diff_test.go │ │ │ │ ├── errors │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ └── errors_test.go │ │ │ │ ├── framer │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── framer.go │ │ │ │ │ └── framer_test.go │ │ │ │ ├── httpstream │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── httpstream.go │ │ │ │ │ ├── httpstream_test.go │ │ │ │ │ └── spdy │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── connection.go │ │ │ │ │ │ ├── connection_test.go │ │ │ │ │ │ ├── roundtripper.go │ │ │ │ │ │ ├── roundtripper_test.go │ │ │ │ │ │ ├── upgrade.go │ │ │ │ │ │ └── upgrade_test.go │ │ │ │ ├── initialization │ │ │ │ │ ├── BUILD │ │ │ │ │ └── initialization.go │ │ │ │ ├── intstr │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── intstr.go │ │ │ │ │ └── intstr_test.go │ │ │ │ ├── json │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── json.go │ │ │ │ │ └── json_test.go │ │ │ │ ├── jsonmergepatch │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── patch.go │ │ │ │ │ └── patch_test.go │ │ │ │ ├── mergepatch │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── util_test.go │ │ │ │ ├── net │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── http.go │ │ │ │ │ ├── http_test.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── interface_test.go │ │ │ │ │ ├── port_range.go │ │ │ │ │ ├── port_range_test.go │ │ │ │ │ ├── port_split.go │ │ │ │ │ ├── port_split_test.go │ │ │ │ │ ├── util.go │ │ │ │ │ └── util_test.go │ │ │ │ ├── proxy │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── dial.go │ │ │ │ │ ├── dial_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── transport.go │ │ │ │ │ ├── transport_test.go │ │ │ │ │ ├── upgradeaware.go │ │ │ │ │ └── upgradeaware_test.go │ │ │ │ ├── rand │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── rand.go │ │ │ │ │ └── rand_test.go │ │ │ │ ├── remotecommand │ │ │ │ │ ├── BUILD │ │ │ │ │ └── constants.go │ │ │ │ ├── runtime │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── runtime.go │ │ │ │ │ └── runtime_test.go │ │ │ │ ├── sets │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── byte.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── empty.go │ │ │ │ │ ├── int.go │ │ │ │ │ ├── int64.go │ │ │ │ │ ├── set_test.go │ │ │ │ │ ├── string.go │ │ │ │ │ └── types │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── types.go │ │ │ │ ├── strategicpatch │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── patch.go │ │ │ │ │ ├── patch_test.go │ │ │ │ │ ├── testdata │ │ │ │ │ │ ├── swagger-merge-item.json │ │ │ │ │ │ └── swagger-precision-item.json │ │ │ │ │ ├── testing │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── openapi.go │ │ │ │ │ └── types.go │ │ │ │ ├── uuid │ │ │ │ │ ├── BUILD │ │ │ │ │ └── uuid.go │ │ │ │ ├── validation │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── field │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── errors_test.go │ │ │ │ │ │ ├── path.go │ │ │ │ │ │ └── path_test.go │ │ │ │ │ ├── validation.go │ │ │ │ │ └── validation_test.go │ │ │ │ ├── wait │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── wait.go │ │ │ │ │ └── wait_test.go │ │ │ │ ├── waitgroup │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── waitgroup.go │ │ │ │ │ └── waitgroup_test.go │ │ │ │ └── yaml │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── decoder.go │ │ │ │ │ └── decoder_test.go │ │ │ ├── version │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ └── types.go │ │ │ └── watch │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── filter.go │ │ │ │ ├── filter_test.go │ │ │ │ ├── mux.go │ │ │ │ ├── mux_test.go │ │ │ │ ├── streamwatcher.go │ │ │ │ ├── streamwatcher_test.go │ │ │ │ ├── until.go │ │ │ │ ├── until_test.go │ │ │ │ ├── watch.go │ │ │ │ ├── watch_test.go │ │ │ │ └── zz_generated.deepcopy.go │ │ └── third_party │ │ │ └── forked │ │ │ └── golang │ │ │ ├── json │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── fields.go │ │ │ └── fields_test.go │ │ │ ├── netutil │ │ │ ├── BUILD │ │ │ └── addr.go │ │ │ └── reflect │ │ │ ├── BUILD │ │ │ ├── deep_equal.go │ │ │ └── deep_equal_test.go │ │ ├── client-go │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── Godeps │ │ │ ├── Godeps.json │ │ │ └── Readme │ │ ├── INSTALL.md │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── discovery │ │ │ ├── BUILD │ │ │ ├── cached │ │ │ │ ├── BUILD │ │ │ │ ├── memcache.go │ │ │ │ └── memcache_test.go │ │ │ ├── discovery_client.go │ │ │ ├── discovery_client_test.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── discovery.go │ │ │ │ └── discovery_test.go │ │ │ ├── helper.go │ │ │ ├── helper_blackbox_test.go │ │ │ ├── restmapper.go │ │ │ ├── restmapper_test.go │ │ │ └── unstructured.go │ │ ├── dynamic │ │ │ ├── BUILD │ │ │ ├── client.go │ │ │ ├── client_pool.go │ │ │ ├── client_test.go │ │ │ ├── dynamic_util.go │ │ │ ├── dynamic_util_test.go │ │ │ └── fake │ │ │ │ ├── BUILD │ │ │ │ ├── client.go │ │ │ │ └── client_pool.go │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── create-update-delete-deployment │ │ │ │ ├── BUILD │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── in-cluster-client-configuration │ │ │ │ ├── BUILD │ │ │ │ ├── Dockerfile │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── out-of-cluster-client-configuration │ │ │ │ ├── BUILD │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ └── workqueue │ │ │ │ ├── BUILD │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ ├── informers │ │ │ ├── BUILD │ │ │ ├── admissionregistration │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── initializerconfiguration.go │ │ │ │ │ └── interface.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── apps │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── interface.go │ │ │ │ │ └── statefulset.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ ├── autoscaling │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ └── interface.go │ │ │ │ └── v2beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── horizontalpodautoscaler.go │ │ │ │ │ └── interface.go │ │ │ ├── batch │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── interface.go │ │ │ │ │ └── job.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── cronjob.go │ │ │ │ │ └── interface.go │ │ │ │ └── v2alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── cronjob.go │ │ │ │ │ └── interface.go │ │ │ ├── certificates │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ └── interface.go │ │ │ ├── core │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── limitrange.go │ │ │ │ │ ├── namespace.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ │ ├── pod.go │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ └── serviceaccount.go │ │ │ ├── events │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── event.go │ │ │ │ │ └── interface.go │ │ │ ├── extensions │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ └── replicaset.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ ├── internalinterfaces │ │ │ │ ├── BUILD │ │ │ │ └── factory_interfaces.go │ │ │ ├── networking │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── interface.go │ │ │ │ │ └── networkpolicy.go │ │ │ ├── policy │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── interface.go │ │ │ │ │ └── poddisruptionbudget.go │ │ │ ├── rbac │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ ├── scheduling │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── interface.go │ │ │ │ │ └── priorityclass.go │ │ │ ├── settings │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── interface.go │ │ │ │ │ └── podpreset.go │ │ │ └── storage │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── storageclass.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── volumeattachment.go │ │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── interface.go │ │ │ │ └── storageclass.go │ │ ├── kubernetes │ │ │ ├── BUILD │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── clientset_generated.go │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ ├── import.go │ │ │ ├── scheme │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ └── register.go │ │ │ └── typed │ │ │ │ ├── admissionregistration │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ │ └── fake_initializerconfiguration.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── initializerconfiguration.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── admissionregistration_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ │ ├── apps │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ │ └── fake_statefulset.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ │ ├── fake_scale.go │ │ │ │ │ │ └── fake_statefulset.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── scale.go │ │ │ │ │ └── statefulset.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── apps_client.go │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_apps_client.go │ │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ ├── fake_scale.go │ │ │ │ │ └── fake_statefulset.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── scale.go │ │ │ │ │ └── statefulset.go │ │ │ │ ├── authentication │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ │ ├── fake_tokenreview.go │ │ │ │ │ │ └── fake_tokenreview_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── tokenreview.go │ │ │ │ │ └── tokenreview_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── authentication_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authentication_client.go │ │ │ │ │ ├── fake_tokenreview.go │ │ │ │ │ └── fake_tokenreview_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── tokenreview.go │ │ │ │ │ └── tokenreview_expansion.go │ │ │ │ ├── authorization │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ │ ├── fake_localsubjectaccessreview_expansion.go │ │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ │ ├── fake_selfsubjectaccessreview_expansion.go │ │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ │ ├── fake_selfsubjectrulesreview_expansion.go │ │ │ │ │ │ ├── fake_subjectaccessreview.go │ │ │ │ │ │ └── fake_subjectaccessreview_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ │ │ ├── subjectaccessreview.go │ │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── authorization_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_authorization_client.go │ │ │ │ │ ├── fake_generated_expansion.go │ │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ │ ├── fake_localsubjectaccessreview_expansion.go │ │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ │ ├── fake_selfsubjectaccessreview_expansion.go │ │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ │ ├── fake_selfsubjectrulesreview_expansion.go │ │ │ │ │ ├── fake_subjectaccessreview.go │ │ │ │ │ └── fake_subjectaccessreview_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ │ │ ├── subjectaccessreview.go │ │ │ │ │ └── subjectaccessreview_expansion.go │ │ │ │ ├── autoscaling │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ └── v2beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── autoscaling_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ ├── batch │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ │ └── fake_job.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ └── job.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ │ └── fake_cronjob.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ └── v2alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── batch_client.go │ │ │ │ │ ├── cronjob.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_batch_client.go │ │ │ │ │ └── fake_cronjob.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── certificates │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── certificates_client.go │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_certificates_client.go │ │ │ │ │ ├── fake_certificatesigningrequest.go │ │ │ │ │ └── fake_certificatesigningrequest_expansion.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── core │ │ │ │ └── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── core_client.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── event_expansion.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_componentstatus.go │ │ │ │ │ ├── fake_configmap.go │ │ │ │ │ ├── fake_core_client.go │ │ │ │ │ ├── fake_endpoints.go │ │ │ │ │ ├── fake_event.go │ │ │ │ │ ├── fake_event_expansion.go │ │ │ │ │ ├── fake_limitrange.go │ │ │ │ │ ├── fake_namespace.go │ │ │ │ │ ├── fake_namespace_expansion.go │ │ │ │ │ ├── fake_node.go │ │ │ │ │ ├── fake_node_expansion.go │ │ │ │ │ ├── fake_persistentvolume.go │ │ │ │ │ ├── fake_persistentvolumeclaim.go │ │ │ │ │ ├── fake_pod.go │ │ │ │ │ ├── fake_pod_expansion.go │ │ │ │ │ ├── fake_podtemplate.go │ │ │ │ │ ├── fake_replicationcontroller.go │ │ │ │ │ ├── fake_resourcequota.go │ │ │ │ │ ├── fake_secret.go │ │ │ │ │ ├── fake_service.go │ │ │ │ │ ├── fake_service_expansion.go │ │ │ │ │ └── fake_serviceaccount.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── limitrange.go │ │ │ │ │ ├── namespace.go │ │ │ │ │ ├── namespace_expansion.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── node_expansion.go │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ │ ├── pod.go │ │ │ │ │ ├── pod_expansion.go │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── service_expansion.go │ │ │ │ │ └── serviceaccount.go │ │ │ │ ├── events │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── events_client.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_event.go │ │ │ │ │ └── fake_events_client.go │ │ │ │ │ └── generated_expansion.go │ │ │ │ ├── extensions │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── extensions_client.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_daemonset.go │ │ │ │ │ ├── fake_deployment.go │ │ │ │ │ ├── fake_deployment_expansion.go │ │ │ │ │ ├── fake_extensions_client.go │ │ │ │ │ ├── fake_ingress.go │ │ │ │ │ ├── fake_podsecuritypolicy.go │ │ │ │ │ ├── fake_replicaset.go │ │ │ │ │ ├── fake_scale.go │ │ │ │ │ └── fake_scale_expansion.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── scale.go │ │ │ │ │ └── scale_expansion.go │ │ │ │ ├── networking │ │ │ │ └── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_networking_client.go │ │ │ │ │ └── fake_networkpolicy.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── networking_client.go │ │ │ │ │ └── networkpolicy.go │ │ │ │ ├── policy │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── eviction_expansion.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_eviction.go │ │ │ │ │ ├── fake_eviction_expansion.go │ │ │ │ │ ├── fake_poddisruptionbudget.go │ │ │ │ │ └── fake_policy_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ └── policy_client.go │ │ │ │ ├── rbac │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ │ ├── fake_role.go │ │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ │ ├── fake_role.go │ │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_clusterrole.go │ │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ │ ├── fake_rbac_client.go │ │ │ │ │ ├── fake_role.go │ │ │ │ │ └── fake_rolebinding.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── rbac_client.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── scheduling │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_priorityclass.go │ │ │ │ │ └── fake_scheduling_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── priorityclass.go │ │ │ │ │ └── scheduling_client.go │ │ │ │ ├── settings │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_podpreset.go │ │ │ │ │ └── fake_settings_client.go │ │ │ │ │ ├── generated_expansion.go │ │ │ │ │ ├── podpreset.go │ │ │ │ │ └── settings_client.go │ │ │ │ └── storage │ │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ └── fake_storageclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ └── storageclass.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fake_storage_client.go │ │ │ │ │ └── fake_volumeattachment.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ └── volumeattachment.go │ │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_storage_client.go │ │ │ │ └── fake_storageclass.go │ │ │ │ ├── generated_expansion.go │ │ │ │ ├── storage_client.go │ │ │ │ └── storageclass.go │ │ ├── listers │ │ │ ├── admissionregistration │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── initializerconfiguration.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ │ │ └── validatingwebhookconfiguration.go │ │ │ ├── apps │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── daemonset_expansion.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── replicaset_expansion.go │ │ │ │ │ ├── statefulset.go │ │ │ │ │ └── statefulset_expansion.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── scale.go │ │ │ │ │ ├── statefulset.go │ │ │ │ │ └── statefulset_expansion.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── controllerrevision.go │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── daemonset_expansion.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── replicaset_expansion.go │ │ │ │ │ ├── scale.go │ │ │ │ │ ├── statefulset.go │ │ │ │ │ └── statefulset_expansion.go │ │ │ ├── authentication │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── tokenreview.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── tokenreview.go │ │ │ ├── authorization │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ └── subjectaccessreview.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── localsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectaccessreview.go │ │ │ │ │ ├── selfsubjectrulesreview.go │ │ │ │ │ └── subjectaccessreview.go │ │ │ ├── autoscaling │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ │ └── v2beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── horizontalpodautoscaler.go │ │ │ ├── batch │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── job.go │ │ │ │ │ └── job_expansion.go │ │ │ │ ├── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── cronjob.go │ │ │ │ │ └── expansion_generated.go │ │ │ │ └── v2alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── cronjob.go │ │ │ │ │ └── expansion_generated.go │ │ │ ├── certificates │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── certificatesigningrequest.go │ │ │ │ │ └── expansion_generated.go │ │ │ ├── core │ │ │ │ └── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── componentstatus.go │ │ │ │ │ ├── configmap.go │ │ │ │ │ ├── endpoints.go │ │ │ │ │ ├── event.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── limitrange.go │ │ │ │ │ ├── namespace.go │ │ │ │ │ ├── node.go │ │ │ │ │ ├── node_expansion.go │ │ │ │ │ ├── persistentvolume.go │ │ │ │ │ ├── persistentvolumeclaim.go │ │ │ │ │ ├── pod.go │ │ │ │ │ ├── podtemplate.go │ │ │ │ │ ├── replicationcontroller.go │ │ │ │ │ ├── replicationcontroller_expansion.go │ │ │ │ │ ├── resourcequota.go │ │ │ │ │ ├── secret.go │ │ │ │ │ ├── service.go │ │ │ │ │ ├── service_expansion.go │ │ │ │ │ └── serviceaccount.go │ │ │ ├── events │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── event.go │ │ │ │ │ └── expansion_generated.go │ │ │ ├── extensions │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── daemonset.go │ │ │ │ │ ├── daemonset_expansion.go │ │ │ │ │ ├── daemonset_expansion_test.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── deployment_expansion.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── ingress.go │ │ │ │ │ ├── podsecuritypolicy.go │ │ │ │ │ ├── replicaset.go │ │ │ │ │ ├── replicaset_expansion.go │ │ │ │ │ └── scale.go │ │ │ ├── imagepolicy │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── imagereview.go │ │ │ ├── networking │ │ │ │ └── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── networkpolicy.go │ │ │ ├── policy │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── eviction.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── poddisruptionbudget.go │ │ │ │ │ └── poddisruptionbudget_expansion.go │ │ │ ├── rbac │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── clusterrole.go │ │ │ │ │ ├── clusterrolebinding.go │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ ├── role.go │ │ │ │ │ └── rolebinding.go │ │ │ ├── scheduling │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── priorityclass.go │ │ │ ├── settings │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── expansion_generated.go │ │ │ │ │ └── podpreset.go │ │ │ └── storage │ │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── storageclass.go │ │ │ │ ├── v1alpha1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── volumeattachment.go │ │ │ │ └── v1beta1 │ │ │ │ ├── BUILD │ │ │ │ ├── expansion_generated.go │ │ │ │ └── storageclass.go │ │ ├── pkg │ │ │ └── version │ │ │ │ ├── .gitattributes │ │ │ │ ├── BUILD │ │ │ │ ├── base.go │ │ │ │ ├── def.bzl │ │ │ │ ├── doc.go │ │ │ │ └── version.go │ │ ├── plugin │ │ │ └── pkg │ │ │ │ ├── auth │ │ │ │ └── authenticator │ │ │ │ │ └── token │ │ │ │ │ └── oidc │ │ │ │ │ └── testing │ │ │ │ │ ├── BUILD │ │ │ │ │ └── provider.go │ │ │ │ └── client │ │ │ │ └── auth │ │ │ │ ├── BUILD │ │ │ │ ├── azure │ │ │ │ ├── BUILD │ │ │ │ ├── README.md │ │ │ │ ├── azure.go │ │ │ │ └── azure_test.go │ │ │ │ ├── gcp │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── gcp.go │ │ │ │ └── gcp_test.go │ │ │ │ ├── oidc │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── oidc.go │ │ │ │ └── oidc_test.go │ │ │ │ ├── openstack │ │ │ │ ├── BUILD │ │ │ │ ├── openstack.go │ │ │ │ └── openstack_test.go │ │ │ │ └── plugins.go │ │ ├── rest │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ └── fake.go │ │ │ ├── plugin.go │ │ │ ├── plugin_test.go │ │ │ ├── request.go │ │ │ ├── request_test.go │ │ │ ├── transport.go │ │ │ ├── url_utils.go │ │ │ ├── url_utils_test.go │ │ │ ├── urlbackoff.go │ │ │ ├── urlbackoff_test.go │ │ │ ├── versions.go │ │ │ ├── watch │ │ │ │ ├── BUILD │ │ │ │ ├── decoder.go │ │ │ │ ├── decoder_test.go │ │ │ │ ├── encoder.go │ │ │ │ └── encoder_test.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── scale │ │ │ ├── BUILD │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ └── client.go │ │ │ ├── interfaces.go │ │ │ ├── roundtrip_test.go │ │ │ ├── scheme │ │ │ │ ├── BUILD │ │ │ │ ├── appsint │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ ├── appsv1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── zz_generated.conversion.go │ │ │ │ ├── appsv1beta2 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── zz_generated.conversion.go │ │ │ │ ├── autoscalingv1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── zz_generated.conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── extensionsint │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ └── register.go │ │ │ │ ├── extensionsv1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ └── zz_generated.conversion.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── util.go │ │ ├── testing │ │ │ ├── BUILD │ │ │ ├── actions.go │ │ │ ├── fake.go │ │ │ └── fixture.go │ │ ├── third_party │ │ │ └── forked │ │ │ │ └── golang │ │ │ │ └── template │ │ │ │ ├── BUILD │ │ │ │ ├── exec.go │ │ │ │ └── funcs.go │ │ ├── tools │ │ │ ├── auth │ │ │ │ ├── BUILD │ │ │ │ ├── clientauth.go │ │ │ │ └── clientauth_test.go │ │ │ ├── cache │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── controller.go │ │ │ │ ├── controller_test.go │ │ │ │ ├── delta_fifo.go │ │ │ │ ├── delta_fifo_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── expiration_cache.go │ │ │ │ ├── expiration_cache_fakes.go │ │ │ │ ├── expiration_cache_test.go │ │ │ │ ├── fake_custom_store.go │ │ │ │ ├── fifo.go │ │ │ │ ├── fifo_test.go │ │ │ │ ├── heap.go │ │ │ │ ├── heap_test.go │ │ │ │ ├── index.go │ │ │ │ ├── index_test.go │ │ │ │ ├── listers.go │ │ │ │ ├── listwatch.go │ │ │ │ ├── mutation_cache.go │ │ │ │ ├── mutation_detector.go │ │ │ │ ├── mutation_detector_test.go │ │ │ │ ├── processor_listener_test.go │ │ │ │ ├── reflector.go │ │ │ │ ├── reflector_metrics.go │ │ │ │ ├── reflector_test.go │ │ │ │ ├── shared_informer.go │ │ │ │ ├── shared_informer_test.go │ │ │ │ ├── store.go │ │ │ │ ├── store_test.go │ │ │ │ ├── testing │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── fake_controller_source.go │ │ │ │ │ └── fake_controller_source_test.go │ │ │ │ ├── thread_safe_store.go │ │ │ │ ├── undelta_store.go │ │ │ │ └── undelta_store_test.go │ │ │ ├── clientcmd │ │ │ │ ├── BUILD │ │ │ │ ├── api │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ ├── latest │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── latest.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_test.go │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── conversion.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── register.go │ │ │ │ │ │ ├── types.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── auth_loaders.go │ │ │ │ ├── client_config.go │ │ │ │ ├── client_config_test.go │ │ │ │ ├── config.go │ │ │ │ ├── doc.go │ │ │ │ ├── flag.go │ │ │ │ ├── helpers.go │ │ │ │ ├── loader.go │ │ │ │ ├── loader_test.go │ │ │ │ ├── merged_client_builder.go │ │ │ │ ├── merged_client_builder_test.go │ │ │ │ ├── overrides.go │ │ │ │ ├── overrides_test.go │ │ │ │ ├── validation.go │ │ │ │ └── validation_test.go │ │ │ ├── leaderelection │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── leaderelection.go │ │ │ │ ├── leaderelection_test.go │ │ │ │ └── resourcelock │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── configmaplock.go │ │ │ │ │ ├── endpointslock.go │ │ │ │ │ └── interface.go │ │ │ ├── metrics │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ └── metrics.go │ │ │ ├── pager │ │ │ │ ├── BUILD │ │ │ │ ├── pager.go │ │ │ │ └── pager_test.go │ │ │ ├── portforward │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── portforward.go │ │ │ │ └── portforward_test.go │ │ │ ├── record │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── event.go │ │ │ │ ├── event_test.go │ │ │ │ ├── events_cache.go │ │ │ │ ├── events_cache_test.go │ │ │ │ └── fake.go │ │ │ ├── reference │ │ │ │ ├── BUILD │ │ │ │ └── ref.go │ │ │ └── remotecommand │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── errorstream.go │ │ │ │ ├── remotecommand.go │ │ │ │ ├── resize.go │ │ │ │ ├── v1.go │ │ │ │ ├── v2.go │ │ │ │ ├── v2_test.go │ │ │ │ ├── v3.go │ │ │ │ ├── v4.go │ │ │ │ └── v4_test.go │ │ ├── transport │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── cache.go │ │ │ ├── cache_test.go │ │ │ ├── config.go │ │ │ ├── round_trippers.go │ │ │ ├── round_trippers_test.go │ │ │ ├── spdy │ │ │ │ ├── BUILD │ │ │ │ └── spdy.go │ │ │ ├── transport.go │ │ │ └── transport_test.go │ │ └── util │ │ │ ├── buffer │ │ │ ├── BUILD │ │ │ ├── ring_growing.go │ │ │ └── ring_growing_test.go │ │ │ ├── cert │ │ │ ├── BUILD │ │ │ ├── cert.go │ │ │ ├── csr.go │ │ │ ├── csr_test.go │ │ │ ├── io.go │ │ │ ├── pem.go │ │ │ ├── pem_test.go │ │ │ ├── testdata │ │ │ │ └── dontUseThisKey.pem │ │ │ └── triple │ │ │ │ ├── BUILD │ │ │ │ └── triple.go │ │ │ ├── certificate │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── certificate_manager.go │ │ │ ├── certificate_manager_test.go │ │ │ ├── certificate_store.go │ │ │ ├── certificate_store_test.go │ │ │ └── csr │ │ │ │ ├── BUILD │ │ │ │ ├── csr.go │ │ │ │ └── csr_test.go │ │ │ ├── exec │ │ │ ├── BUILD │ │ │ └── exec.go │ │ │ ├── flowcontrol │ │ │ ├── BUILD │ │ │ ├── backoff.go │ │ │ ├── backoff_test.go │ │ │ ├── throttle.go │ │ │ └── throttle_test.go │ │ │ ├── homedir │ │ │ ├── BUILD │ │ │ └── homedir.go │ │ │ ├── integer │ │ │ ├── BUILD │ │ │ ├── integer.go │ │ │ └── integer_test.go │ │ │ ├── jsonpath │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── jsonpath.go │ │ │ ├── jsonpath_test.go │ │ │ ├── node.go │ │ │ ├── parser.go │ │ │ └── parser_test.go │ │ │ ├── retry │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── util.go │ │ │ └── util_test.go │ │ │ ├── testing │ │ │ ├── BUILD │ │ │ ├── fake_handler.go │ │ │ ├── fake_handler_test.go │ │ │ └── tmpdir.go │ │ │ └── workqueue │ │ │ ├── BUILD │ │ │ ├── default_rate_limiters.go │ │ │ ├── default_rate_limiters_test.go │ │ │ ├── delaying_queue.go │ │ │ ├── delaying_queue_test.go │ │ │ ├── doc.go │ │ │ ├── metrics.go │ │ │ ├── parallelizer.go │ │ │ ├── queue.go │ │ │ ├── queue_test.go │ │ │ ├── rate_limitting_queue.go │ │ │ └── rate_limitting_queue_test.go │ │ └── kube-openapi │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Godeps │ │ ├── Godeps.json │ │ └── Readme │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── code-of-conduct.md │ │ ├── example │ │ └── openapi-gen │ │ │ └── main.go │ │ └── pkg │ │ ├── aggregator │ │ ├── aggregator.go │ │ └── aggregator_test.go │ │ ├── builder │ │ ├── doc.go │ │ ├── openapi.go │ │ ├── openapi_test.go │ │ └── util.go │ │ ├── common │ │ ├── common.go │ │ └── doc.go │ │ ├── generators │ │ ├── README │ │ ├── extension.go │ │ ├── extension_test.go │ │ ├── openapi.go │ │ └── openapi_test.go │ │ ├── handler │ │ ├── handler.go │ │ └── handler_test.go │ │ ├── idl │ │ ├── doc.go │ │ ├── listtype_test.go │ │ ├── maptype_test.go │ │ └── structtype_test.go │ │ └── util │ │ ├── proto │ │ ├── doc.go │ │ ├── document.go │ │ ├── openapi.go │ │ ├── openapi_suite_test.go │ │ ├── openapi_test.go │ │ ├── testing │ │ │ ├── openapi.go │ │ │ └── swagger.json │ │ └── validation │ │ │ ├── errors.go │ │ │ ├── types.go │ │ │ └── validation.go │ │ ├── trie.go │ │ ├── util.go │ │ └── util_test.go └── k8s-scheduler-example │ ├── .gitignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── deploy │ ├── pod.yaml │ └── scheduler.yaml │ ├── glide.lock │ ├── glide.yaml │ ├── main.go │ └── vendor │ ├── cloud.google.com │ └── go │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── authexample_test.go │ │ ├── bigquery │ │ ├── bigquery.go │ │ ├── copy_op.go │ │ ├── copy_test.go │ │ ├── create_table_test.go │ │ ├── dataset.go │ │ ├── dataset_test.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── error_test.go │ │ ├── extract_op.go │ │ ├── extract_test.go │ │ ├── gcs.go │ │ ├── integration_test.go │ │ ├── iterator.go │ │ ├── iterator_test.go │ │ ├── job.go │ │ ├── legacy.go │ │ ├── load_op.go │ │ ├── load_test.go │ │ ├── query.go │ │ ├── query_op.go │ │ ├── query_test.go │ │ ├── read_op.go │ │ ├── read_test.go │ │ ├── schema.go │ │ ├── schema_test.go │ │ ├── service.go │ │ ├── table.go │ │ ├── uploader.go │ │ ├── uploader_test.go │ │ ├── utils_test.go │ │ ├── value.go │ │ └── value_test.go │ │ ├── bigtable │ │ ├── admin.go │ │ ├── admin_test.go │ │ ├── bigtable.go │ │ ├── bigtable_test.go │ │ ├── bttest │ │ │ ├── example_test.go │ │ │ ├── inmem.go │ │ │ └── inmem_test.go │ │ ├── cmd │ │ │ ├── cbt │ │ │ │ ├── cbt.go │ │ │ │ ├── cbt_test.go │ │ │ │ └── cbtdoc.go │ │ │ ├── emulator │ │ │ │ └── cbtemulator.go │ │ │ ├── loadtest │ │ │ │ └── loadtest.go │ │ │ └── scantest │ │ │ │ └── scantest.go │ │ ├── doc.go │ │ ├── filter.go │ │ ├── gc.go │ │ ├── internal │ │ │ ├── cbtrc │ │ │ │ └── cbtrc.go │ │ │ ├── gax │ │ │ │ ├── call_option.go │ │ │ │ ├── invoke.go │ │ │ │ └── invoke_test.go │ │ │ ├── option │ │ │ │ └── option.go │ │ │ └── stat │ │ │ │ └── stats.go │ │ ├── reader.go │ │ ├── reader_test.go │ │ ├── retry_test.go │ │ └── testdata │ │ │ └── read-rows-acceptance-test.json │ │ ├── cloud.go │ │ ├── compute │ │ └── metadata │ │ │ ├── metadata.go │ │ │ └── metadata_test.go │ │ ├── container │ │ └── container.go │ │ ├── datastore │ │ ├── datastore.go │ │ ├── datastore_test.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── example_test.go │ │ ├── examples_test.go │ │ ├── integration_test.go │ │ ├── key.go │ │ ├── key_test.go │ │ ├── load.go │ │ ├── load_test.go │ │ ├── prop.go │ │ ├── query.go │ │ ├── query_test.go │ │ ├── save.go │ │ ├── save_test.go │ │ ├── testdata │ │ │ └── index.yaml │ │ ├── time.go │ │ ├── time_test.go │ │ └── transaction.go │ │ ├── errors │ │ ├── errors.go │ │ ├── errors_test.go │ │ └── stack_test.go │ │ ├── examples │ │ ├── bigquery │ │ │ ├── concat_table │ │ │ │ └── main.go │ │ │ ├── load │ │ │ │ └── main.go │ │ │ ├── query │ │ │ │ └── main.go │ │ │ └── read │ │ │ │ └── main.go │ │ ├── bigtable │ │ │ ├── helloworld │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── search │ │ │ │ └── search.go │ │ │ └── usercounter │ │ │ │ ├── README.md │ │ │ │ ├── app.yaml │ │ │ │ └── main.go │ │ └── storage │ │ │ ├── appengine │ │ │ ├── app.go │ │ │ └── app.yaml │ │ │ └── appenginevm │ │ │ ├── app.go │ │ │ └── app.yaml │ │ ├── internal │ │ ├── bundler │ │ │ ├── bundler.go │ │ │ └── bundler_test.go │ │ ├── cloud.go │ │ └── testutil │ │ │ ├── context.go │ │ │ ├── iterators.go │ │ │ ├── server.go │ │ │ └── server_test.go │ │ ├── key.json.enc │ │ ├── language │ │ └── apiv1beta1 │ │ │ ├── doc.go │ │ │ ├── language.go │ │ │ ├── language_client.go │ │ │ └── language_client_example_test.go │ │ ├── license_test.go │ │ ├── logging │ │ ├── apiv2 │ │ │ ├── README.md │ │ │ ├── config_client.go │ │ │ ├── config_client_example_test.go │ │ │ ├── doc.go │ │ │ ├── logging.go │ │ │ ├── logging_client.go │ │ │ ├── logging_client_example_test.go │ │ │ ├── metrics_client.go │ │ │ └── metrics_client_example_test.go │ │ ├── logging.go │ │ └── logging_test.go │ │ ├── preview │ │ └── logging │ │ │ ├── example_entry_iterator_test.go │ │ │ ├── example_metric_iterator_test.go │ │ │ ├── example_paging_test.go │ │ │ ├── example_resource_iterator_test.go │ │ │ ├── example_sink_iterator_test.go │ │ │ ├── examples_test.go │ │ │ ├── internal │ │ │ └── testing │ │ │ │ ├── fake.go │ │ │ │ └── fake_test.go │ │ │ ├── logging.go │ │ │ ├── logging_test.go │ │ │ ├── metrics.go │ │ │ ├── metrics_test.go │ │ │ ├── resources.go │ │ │ ├── resources_test.go │ │ │ ├── sinks.go │ │ │ ├── sinks_test.go │ │ │ └── unique_test.go │ │ ├── pubsub │ │ ├── acker.go │ │ ├── acker_test.go │ │ ├── apiv1 │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── publisher_client.go │ │ │ ├── publisher_client_example_test.go │ │ │ ├── pubsub.go │ │ │ ├── subscriber_client.go │ │ │ └── subscriber_client_example_test.go │ │ ├── doc.go │ │ ├── endtoend_test.go │ │ ├── example_subscription_iterator_test.go │ │ ├── example_test.go │ │ ├── example_topic_iterator_test.go │ │ ├── integration_test.go │ │ ├── iterator.go │ │ ├── iterator_test.go │ │ ├── keepalive.go │ │ ├── keepalive_test.go │ │ ├── message.go │ │ ├── pubsub.go │ │ ├── puller.go │ │ ├── puller_test.go │ │ ├── service.go │ │ ├── subscription.go │ │ ├── subscription_test.go │ │ ├── topic.go │ │ ├── topic_test.go │ │ └── utils_test.go │ │ ├── speech │ │ └── apiv1beta1 │ │ │ ├── doc.go │ │ │ ├── speech.go │ │ │ ├── speech_client.go │ │ │ └── speech_client_example_test.go │ │ ├── storage │ │ ├── acl.go │ │ ├── bucket.go │ │ ├── example_test.go │ │ ├── integration_test.go │ │ ├── reader.go │ │ ├── storage.go │ │ ├── storage_test.go │ │ ├── testdata │ │ │ ├── dummy_pem │ │ │ └── dummy_rsa │ │ ├── writer.go │ │ └── writer_test.go │ │ ├── trace │ │ ├── sampling.go │ │ ├── trace.go │ │ └── trace_test.go │ │ └── vision │ │ ├── annotations.go │ │ ├── apiv1 │ │ ├── doc.go │ │ ├── image_annotator_client.go │ │ ├── image_annotator_client_example_test.go │ │ └── vision.go │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── face.go │ │ ├── geometry.go │ │ ├── image.go │ │ ├── latlng.go │ │ ├── testdata │ │ ├── README.md │ │ ├── cat.jpg │ │ ├── eiffel-tower.jpg │ │ ├── face.jpg │ │ ├── faulkner.jpg │ │ ├── google.png │ │ ├── mountain.jpg │ │ └── no-text.jpg │ │ ├── vision.go │ │ └── vision_test.go │ ├── github.com │ ├── ghodss │ │ └── yaml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fields.go │ │ │ ├── yaml.go │ │ │ └── yaml_test.go │ ├── gogo │ │ └── protobuf │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── GOLANG_CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── Readme.md │ │ │ ├── _conformance │ │ │ ├── Makefile │ │ │ ├── conformance.go │ │ │ └── conformance_proto │ │ │ │ ├── conformance.pb.go │ │ │ │ └── conformance.proto │ │ │ ├── bench.md │ │ │ ├── codec │ │ │ ├── codec.go │ │ │ └── codec_test.go │ │ │ ├── custom_types.md │ │ │ ├── extensions.md │ │ │ ├── gogoproto │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── gogo.pb.go │ │ │ ├── gogo.pb.golden │ │ │ ├── gogo.proto │ │ │ └── helper.go │ │ │ ├── gogoreplace │ │ │ └── main.go │ │ │ ├── install-protobuf.sh │ │ │ ├── io │ │ │ ├── full.go │ │ │ ├── io.go │ │ │ ├── io_test.go │ │ │ ├── uint32.go │ │ │ └── varint.go │ │ │ ├── jsonpb │ │ │ ├── jsonpb.go │ │ │ ├── jsonpb_test.go │ │ │ └── jsonpb_test_proto │ │ │ │ ├── Makefile │ │ │ │ ├── bytes.go │ │ │ │ ├── more_test_objects.pb.go │ │ │ │ ├── more_test_objects.proto │ │ │ │ ├── test_objects.pb.go │ │ │ │ └── test_objects.proto │ │ │ ├── plugin │ │ │ ├── compare │ │ │ │ ├── compare.go │ │ │ │ └── comparetest.go │ │ │ ├── defaultcheck │ │ │ │ └── defaultcheck.go │ │ │ ├── description │ │ │ │ ├── description.go │ │ │ │ └── descriptiontest.go │ │ │ ├── embedcheck │ │ │ │ └── embedcheck.go │ │ │ ├── enumstringer │ │ │ │ └── enumstringer.go │ │ │ ├── equal │ │ │ │ ├── equal.go │ │ │ │ └── equaltest.go │ │ │ ├── face │ │ │ │ ├── face.go │ │ │ │ └── facetest.go │ │ │ ├── gostring │ │ │ │ ├── gostring.go │ │ │ │ └── gostringtest.go │ │ │ ├── marshalto │ │ │ │ └── marshalto.go │ │ │ ├── oneofcheck │ │ │ │ └── oneofcheck.go │ │ │ ├── populate │ │ │ │ └── populate.go │ │ │ ├── size │ │ │ │ ├── size.go │ │ │ │ └── sizetest.go │ │ │ ├── stringer │ │ │ │ ├── stringer.go │ │ │ │ └── stringertest.go │ │ │ ├── testgen │ │ │ │ └── testgen.go │ │ │ ├── union │ │ │ │ ├── union.go │ │ │ │ └── uniontest.go │ │ │ └── unmarshal │ │ │ │ └── unmarshal.go │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── all_test.go │ │ │ ├── any_test.go │ │ │ ├── clone.go │ │ │ ├── clone_test.go │ │ │ ├── decode.go │ │ │ ├── decode_gogo.go │ │ │ ├── decode_test.go │ │ │ ├── duration.go │ │ │ ├── duration_gogo.go │ │ │ ├── encode.go │ │ │ ├── encode_gogo.go │ │ │ ├── encode_test.go │ │ │ ├── equal.go │ │ │ ├── equal_test.go │ │ │ ├── extensions.go │ │ │ ├── extensions_gogo.go │ │ │ ├── extensions_test.go │ │ │ ├── lib.go │ │ │ ├── lib_gogo.go │ │ │ ├── map_test.go │ │ │ ├── message_set.go │ │ │ ├── message_set_test.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_reflect_gogo.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_gogo.go │ │ │ ├── properties.go │ │ │ ├── properties_gogo.go │ │ │ ├── proto3_proto │ │ │ │ ├── proto3.pb.go │ │ │ │ └── proto3.proto │ │ │ ├── proto3_test.go │ │ │ ├── size2_test.go │ │ │ ├── size_test.go │ │ │ ├── skip_gogo.go │ │ │ ├── testdata │ │ │ │ ├── Makefile │ │ │ │ ├── golden_test.go │ │ │ │ ├── test.pb.go │ │ │ │ ├── test.pb.go.golden │ │ │ │ └── test.proto │ │ │ ├── text.go │ │ │ ├── text_gogo.go │ │ │ ├── text_parser.go │ │ │ ├── text_parser_test.go │ │ │ ├── text_test.go │ │ │ ├── timestamp.go │ │ │ └── timestamp_gogo.go │ │ │ ├── protobuf │ │ │ ├── Makefile │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── any.proto │ │ │ │ ├── compiler │ │ │ │ └── plugin.proto │ │ │ │ ├── descriptor.proto │ │ │ │ ├── duration.proto │ │ │ │ ├── empty.proto │ │ │ │ ├── field_mask.proto │ │ │ │ ├── struct.proto │ │ │ │ ├── timestamp.proto │ │ │ │ └── wrappers.proto │ │ │ ├── protoc-gen-combo │ │ │ └── combo.go │ │ │ ├── protoc-gen-gofast │ │ │ └── main.go │ │ │ ├── protoc-gen-gogo │ │ │ ├── Makefile │ │ │ ├── descriptor │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor.go │ │ │ │ ├── descriptor.pb.go │ │ │ │ ├── descriptor_gostring.gen.go │ │ │ │ ├── descriptor_test.go │ │ │ │ └── helper.go │ │ │ ├── doc.go │ │ │ ├── generator │ │ │ │ ├── generator.go │ │ │ │ ├── helper.go │ │ │ │ └── name_test.go │ │ │ ├── grpc │ │ │ │ └── grpc.go │ │ │ ├── main.go │ │ │ ├── plugin │ │ │ │ ├── Makefile │ │ │ │ └── plugin.pb.go │ │ │ └── testdata │ │ │ │ ├── Makefile │ │ │ │ ├── extension_base.proto │ │ │ │ ├── extension_extra.proto │ │ │ │ ├── extension_test.go │ │ │ │ ├── extension_user.proto │ │ │ │ ├── grpc.proto │ │ │ │ ├── imp.pb.go.golden │ │ │ │ ├── imp.proto │ │ │ │ ├── imp2.proto │ │ │ │ ├── imp3.proto │ │ │ │ ├── main_test.go │ │ │ │ ├── multi │ │ │ │ ├── .gitignore │ │ │ │ ├── multi1.proto │ │ │ │ ├── multi2.proto │ │ │ │ └── multi3.proto │ │ │ │ ├── my_test │ │ │ │ ├── test.pb.go │ │ │ │ └── test.proto │ │ │ │ └── proto3.proto │ │ │ ├── protoc-gen-gogofast │ │ │ └── main.go │ │ │ ├── protoc-gen-gogofaster │ │ │ └── main.go │ │ │ ├── protoc-gen-gogoslick │ │ │ └── main.go │ │ │ ├── protoc-gen-gogotypes │ │ │ └── main.go │ │ │ ├── protoc-gen-gostring │ │ │ └── main.go │ │ │ ├── protoc-min-version │ │ │ └── minversion.go │ │ │ ├── sortkeys │ │ │ └── sortkeys.go │ │ │ ├── test │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── asymetric-issue125 │ │ │ │ ├── Makefile │ │ │ │ ├── asym.pb.go │ │ │ │ ├── asym.proto │ │ │ │ ├── asym_test.go │ │ │ │ ├── asympb_test.go │ │ │ │ └── pop.go │ │ │ ├── bug_test.go │ │ │ ├── casttype │ │ │ │ ├── Makefile │ │ │ │ ├── casttype.proto │ │ │ │ ├── combos │ │ │ │ │ ├── both │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ ├── marshaler │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ ├── neither │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ ├── unmarshaler │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ ├── casttype.pb.go │ │ │ │ │ │ ├── casttype.proto │ │ │ │ │ │ └── casttypepb_test.go │ │ │ │ └── mytypes.go │ │ │ ├── castvalue │ │ │ │ ├── Makefile │ │ │ │ ├── castvalue.pb.go │ │ │ │ ├── castvalue.proto │ │ │ │ ├── castvaluepb_test.go │ │ │ │ ├── combos │ │ │ │ │ ├── both │ │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ │ └── mytypes.go │ │ │ │ │ ├── marshaler │ │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ │ └── mytypes.go │ │ │ │ │ ├── unmarshaler │ │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ │ └── mytypes.go │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ │ └── mytypes.go │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ │ └── mytypes.go │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ ├── castvalue.pb.go │ │ │ │ │ │ ├── castvalue.proto │ │ │ │ │ │ ├── castvaluepb_test.go │ │ │ │ │ │ └── mytypes.go │ │ │ │ └── mytypes.go │ │ │ ├── combos │ │ │ │ ├── both │ │ │ │ │ ├── bug_test.go │ │ │ │ │ ├── t.go │ │ │ │ │ ├── thetest.pb.go │ │ │ │ │ ├── thetest.proto │ │ │ │ │ ├── thetestpb_test.go │ │ │ │ │ └── uuid.go │ │ │ │ ├── marshaler │ │ │ │ │ ├── bug_test.go │ │ │ │ │ ├── t.go │ │ │ │ │ ├── thetest.pb.go │ │ │ │ │ ├── thetest.proto │ │ │ │ │ ├── thetestpb_test.go │ │ │ │ │ └── uuid.go │ │ │ │ ├── unmarshaler │ │ │ │ │ ├── bug_test.go │ │ │ │ │ ├── t.go │ │ │ │ │ ├── thetest.pb.go │ │ │ │ │ ├── thetest.proto │ │ │ │ │ ├── thetestpb_test.go │ │ │ │ │ └── uuid.go │ │ │ │ ├── unsafeboth │ │ │ │ │ ├── bug_test.go │ │ │ │ │ ├── t.go │ │ │ │ │ ├── thetest.pb.go │ │ │ │ │ ├── thetest.proto │ │ │ │ │ ├── thetestpb_test.go │ │ │ │ │ └── uuid.go │ │ │ │ ├── unsafemarshaler │ │ │ │ │ ├── bug_test.go │ │ │ │ │ ├── t.go │ │ │ │ │ ├── thetest.pb.go │ │ │ │ │ ├── thetest.proto │ │ │ │ │ ├── thetestpb_test.go │ │ │ │ │ └── uuid.go │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ ├── bug_test.go │ │ │ │ │ ├── t.go │ │ │ │ │ ├── thetest.pb.go │ │ │ │ │ ├── thetest.proto │ │ │ │ │ ├── thetestpb_test.go │ │ │ │ │ └── uuid.go │ │ │ ├── custom-dash-type │ │ │ │ └── customdash.go │ │ │ ├── custom │ │ │ │ ├── custom.go │ │ │ │ └── custom_test.go │ │ │ ├── custombytesnonstruct │ │ │ │ ├── Makefile │ │ │ │ ├── custombytesnonstruct_test.go │ │ │ │ ├── customtype.go │ │ │ │ ├── proto.pb.go │ │ │ │ └── proto.proto │ │ │ ├── dashfilename │ │ │ │ ├── dash-filename.proto │ │ │ │ ├── df_test.go │ │ │ │ └── doc.go │ │ │ ├── data │ │ │ │ ├── Makefile │ │ │ │ ├── data.pb.go │ │ │ │ ├── data.proto │ │ │ │ └── datapb_test.go │ │ │ ├── defaultconflict │ │ │ │ ├── df.proto │ │ │ │ ├── dg.proto │ │ │ │ ├── doc.go │ │ │ │ ├── nc.proto │ │ │ │ ├── nc_test.go │ │ │ │ ├── ne.proto │ │ │ │ └── nx.proto │ │ │ ├── embedconflict │ │ │ │ ├── .gitignore │ │ │ │ ├── doc.go │ │ │ │ ├── eb.proto │ │ │ │ ├── ec.proto │ │ │ │ ├── ec_test.go │ │ │ │ ├── ee.proto │ │ │ │ ├── em.proto │ │ │ │ ├── en.proto │ │ │ │ └── er.proto │ │ │ ├── empty-issue70 │ │ │ │ ├── Makefile │ │ │ │ ├── empty.pb.go │ │ │ │ ├── empty.proto │ │ │ │ └── empty_test.go │ │ │ ├── enumcustomname │ │ │ │ ├── Makefile │ │ │ │ ├── enumcustomname.pb.go │ │ │ │ └── enumcustomname.proto │ │ │ ├── enumdecl │ │ │ │ ├── Makefile │ │ │ │ ├── enumdecl.pb.go │ │ │ │ ├── enumdecl.proto │ │ │ │ ├── enumdeclpb_test.go │ │ │ │ └── models.go │ │ │ ├── enumdecl_all │ │ │ │ ├── Makefile │ │ │ │ ├── enumdeclall.pb.go │ │ │ │ ├── enumdeclall.proto │ │ │ │ ├── enumdeclallpb_test.go │ │ │ │ └── models.go │ │ │ ├── enumprefix │ │ │ │ ├── Makefile │ │ │ │ ├── enumprefix.pb.go │ │ │ │ └── enumprefix.proto │ │ │ ├── enumstringer │ │ │ │ ├── Makefile │ │ │ │ ├── enumstringer.pb.go │ │ │ │ ├── enumstringer.proto │ │ │ │ ├── enumstringerpb_test.go │ │ │ │ └── string.go │ │ │ ├── example │ │ │ │ ├── Makefile │ │ │ │ ├── example.pb.go │ │ │ │ ├── example.proto │ │ │ │ ├── example_test.go │ │ │ │ └── examplepb_test.go │ │ │ ├── extension_test.go │ │ │ ├── filedotname │ │ │ │ ├── Makefile │ │ │ │ ├── file.dot.pb.go │ │ │ │ ├── file.dot.proto │ │ │ │ └── file.dotpb_test.go │ │ │ ├── fuzztests │ │ │ │ ├── Makefile │ │ │ │ ├── fuzz.pb.go │ │ │ │ ├── fuzz.proto │ │ │ │ └── fuzz_test.go │ │ │ ├── group │ │ │ │ ├── Makefile │ │ │ │ ├── group.pb.go │ │ │ │ ├── group.proto │ │ │ │ └── grouppb_test.go │ │ │ ├── importdedup │ │ │ │ ├── Makefile │ │ │ │ ├── importdedup_test.go │ │ │ │ ├── proto.pb.go │ │ │ │ ├── proto.proto │ │ │ │ └── subpkg │ │ │ │ │ ├── customtype.go │ │ │ │ │ ├── subproto.pb.go │ │ │ │ │ └── subproto.proto │ │ │ ├── indeximport-issue72 │ │ │ │ ├── Makefile │ │ │ │ ├── index │ │ │ │ │ ├── index.pb.go │ │ │ │ │ ├── index.proto │ │ │ │ │ └── indexpb_test.go │ │ │ │ ├── indeximport.pb.go │ │ │ │ ├── indeximport.proto │ │ │ │ └── indeximportpb_test.go │ │ │ ├── issue260 │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── issue260.pb.go │ │ │ │ ├── issue260.proto │ │ │ │ ├── issue260pb_test.go │ │ │ │ └── models.go │ │ │ ├── issue261 │ │ │ │ ├── Makefile │ │ │ │ ├── issue261.pb.go │ │ │ │ └── issue261.proto │ │ │ ├── issue262 │ │ │ │ ├── Makefile │ │ │ │ ├── timefail.pb.go │ │ │ │ └── timefail.proto │ │ │ ├── issue34 │ │ │ │ ├── Makefile │ │ │ │ ├── issue34_test.go │ │ │ │ ├── proto.pb.go │ │ │ │ └── proto.proto │ │ │ ├── issue42order │ │ │ │ ├── Makefile │ │ │ │ ├── issue42.pb.go │ │ │ │ ├── issue42.proto │ │ │ │ └── order_test.go │ │ │ ├── issue8 │ │ │ │ ├── Makefile │ │ │ │ ├── proto.pb.go │ │ │ │ ├── proto.proto │ │ │ │ └── protopb_test.go │ │ │ ├── mapsproto2 │ │ │ │ ├── Makefile │ │ │ │ ├── combos │ │ │ │ │ ├── both │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ ├── marshaler │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ ├── neither │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ ├── unmarshaler │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ ├── mapsproto2.pb.go │ │ │ │ │ │ ├── mapsproto2.proto │ │ │ │ │ │ ├── mapsproto2_test.go │ │ │ │ │ │ └── mapsproto2pb_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── header.proto │ │ │ │ ├── mapsproto2.proto │ │ │ │ └── mapsproto2_test.go.in │ │ │ ├── mixbench │ │ │ │ ├── marshal.txt │ │ │ │ ├── marshaler.txt │ │ │ │ ├── mixbench.go │ │ │ │ ├── unmarshal.txt │ │ │ │ ├── unmarshaler.txt │ │ │ │ ├── unsafe_marshaler.txt │ │ │ │ └── unsafe_unmarshaler.txt │ │ │ ├── moredefaults │ │ │ │ ├── Makefile │ │ │ │ ├── md.pb.go │ │ │ │ ├── md.proto │ │ │ │ ├── md_test.go │ │ │ │ └── mdpb_test.go │ │ │ ├── nopackage │ │ │ │ ├── Makefile │ │ │ │ ├── nopackage.pb.go │ │ │ │ ├── nopackage.proto │ │ │ │ └── nopackage_test.go │ │ │ ├── oneof │ │ │ │ ├── Makefile │ │ │ │ ├── combos │ │ │ │ │ ├── both │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ ├── marshaler │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ ├── neither │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ ├── unmarshaler │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── doc.go │ │ │ │ └── one.proto │ │ │ ├── oneof3 │ │ │ │ ├── Makefile │ │ │ │ ├── combos │ │ │ │ │ ├── both │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ ├── marshaler │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ ├── neither │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ ├── unmarshaler │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ ├── one.pb.go │ │ │ │ │ │ ├── one.proto │ │ │ │ │ │ └── onepb_test.go │ │ │ │ ├── doc.go │ │ │ │ └── one.proto │ │ │ ├── oneofembed │ │ │ │ ├── Makefile │ │ │ │ ├── oneofembed.pb.go │ │ │ │ ├── oneofembed.proto │ │ │ │ └── oneofembedpb_test.go │ │ │ ├── packed │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── packed.pb.go │ │ │ │ ├── packed.proto │ │ │ │ └── packed_test.go │ │ │ ├── proto3extension │ │ │ │ ├── Makefile │ │ │ │ ├── proto3ext.pb.go │ │ │ │ └── proto3ext.proto │ │ │ ├── protosize │ │ │ │ ├── Makefile │ │ │ │ ├── protosize.pb.go │ │ │ │ ├── protosize.proto │ │ │ │ ├── protosize_test.go │ │ │ │ └── protosizepb_test.go │ │ │ ├── registration │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── registration.proto │ │ │ │ └── registration_test.go.in │ │ │ ├── required │ │ │ │ ├── Makefile │ │ │ │ ├── requiredexample.pb.go │ │ │ │ ├── requiredexample.proto │ │ │ │ └── requiredexamplepb_test.go │ │ │ ├── sizerconflict │ │ │ │ ├── sizerconflict.proto │ │ │ │ └── sizerconflict_test.go │ │ │ ├── sizeunderscore │ │ │ │ ├── Makefile │ │ │ │ ├── sizeunderscore.pb.go │ │ │ │ ├── sizeunderscore.proto │ │ │ │ └── sizeunderscorepb_test.go │ │ │ ├── stdtypes │ │ │ │ ├── Makefile │ │ │ │ ├── stdtypes.pb.go │ │ │ │ ├── stdtypes.proto │ │ │ │ └── stdtypespb_test.go │ │ │ ├── t.go │ │ │ ├── tags │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── tags.pb.go │ │ │ │ ├── tags.proto │ │ │ │ └── tags_test.go │ │ │ ├── theproto3 │ │ │ │ ├── Makefile │ │ │ │ ├── combos │ │ │ │ │ ├── both │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ ├── marshaler │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ ├── neither │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ ├── unmarshaler │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ ├── proto3_test.go │ │ │ │ │ │ ├── theproto3.pb.go │ │ │ │ │ │ ├── theproto3.proto │ │ │ │ │ │ └── theproto3pb_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── footer.proto │ │ │ │ ├── header.proto │ │ │ │ ├── maps.proto │ │ │ │ ├── proto3_test.go.in │ │ │ │ └── theproto3.proto │ │ │ ├── thetest.pb.go │ │ │ ├── thetest.proto │ │ │ ├── thetestpb_test.go │ │ │ ├── typedecl │ │ │ │ ├── Makefile │ │ │ │ ├── models.go │ │ │ │ ├── typedecl.pb.go │ │ │ │ ├── typedecl.proto │ │ │ │ └── typedeclpb_test.go │ │ │ ├── typedecl_all │ │ │ │ ├── Makefile │ │ │ │ ├── models.go │ │ │ │ ├── typedeclall.pb.go │ │ │ │ ├── typedeclall.proto │ │ │ │ └── typedeclallpb_test.go │ │ │ ├── types │ │ │ │ ├── Makefile │ │ │ │ ├── combos │ │ │ │ │ ├── both │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ ├── marshaler │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ ├── neither │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ ├── unmarshaler │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ ├── unsafeboth │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ ├── unsafemarshaler │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ └── typespb_test.go │ │ │ │ │ └── unsafeunmarshaler │ │ │ │ │ │ ├── types.pb.go │ │ │ │ │ │ ├── types.proto │ │ │ │ │ │ ├── types_test.go │ │ │ │ │ │ └── typespb_test.go │ │ │ │ ├── types.proto │ │ │ │ └── types_test.go.in │ │ │ ├── unmarshalmerge │ │ │ │ ├── Makefile │ │ │ │ ├── unmarshalmerge.pb.go │ │ │ │ ├── unmarshalmerge.proto │ │ │ │ ├── unmarshalmerge_test.go │ │ │ │ └── unmarshalmergepb_test.go │ │ │ ├── unrecognized │ │ │ │ ├── Makefile │ │ │ │ ├── oldnew_test.go │ │ │ │ ├── unrecognized.pb.go │ │ │ │ ├── unrecognized.proto │ │ │ │ └── unrecognizedpb_test.go │ │ │ ├── unrecognizedgroup │ │ │ │ ├── Makefile │ │ │ │ ├── oldnew_test.go │ │ │ │ ├── unrecognizedgroup.pb.go │ │ │ │ ├── unrecognizedgroup.proto │ │ │ │ └── unrecognizedgrouppb_test.go │ │ │ ├── uuid.go │ │ │ └── uuid_test.go │ │ │ ├── types │ │ │ ├── Makefile │ │ │ ├── any.go │ │ │ ├── any.pb.go │ │ │ ├── any_test.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration.pb.go │ │ │ ├── duration_gogo.go │ │ │ ├── duration_test.go │ │ │ ├── empty.pb.go │ │ │ ├── field_mask.pb.go │ │ │ ├── struct.pb.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp.pb.go │ │ │ ├── timestamp_gogo.go │ │ │ ├── timestamp_test.go │ │ │ └── wrappers.pb.go │ │ │ ├── vanity │ │ │ ├── command │ │ │ │ └── command.go │ │ │ ├── enum.go │ │ │ ├── field.go │ │ │ ├── file.go │ │ │ ├── foreach.go │ │ │ ├── msg.go │ │ │ └── test │ │ │ │ ├── Makefile │ │ │ │ ├── doc.go │ │ │ │ ├── fast │ │ │ │ ├── gogovanity.pb.go │ │ │ │ ├── proto3.pb.go │ │ │ │ └── vanity.pb.go │ │ │ │ ├── faster │ │ │ │ ├── gogovanity.pb.go │ │ │ │ ├── proto3.pb.go │ │ │ │ └── vanity.pb.go │ │ │ │ ├── gofast │ │ │ │ └── .gitignore │ │ │ │ ├── gogovanity.proto │ │ │ │ ├── proto3.proto │ │ │ │ ├── slick │ │ │ │ ├── gogovanity.pb.go │ │ │ │ ├── proto3.pb.go │ │ │ │ └── vanity.pb.go │ │ │ │ ├── vanity.proto │ │ │ │ └── vanity_test.go │ │ │ └── version │ │ │ └── version.go │ ├── golang │ │ ├── glog │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── glog.go │ │ │ ├── glog_file.go │ │ │ └── glog_test.go │ │ └── protobuf │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Make.protobuf │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── _conformance │ │ │ ├── Makefile │ │ │ ├── conformance.go │ │ │ └── conformance_proto │ │ │ │ ├── conformance.pb.go │ │ │ │ └── conformance.proto │ │ │ ├── descriptor │ │ │ ├── descriptor.go │ │ │ └── descriptor_test.go │ │ │ ├── jsonpb │ │ │ ├── jsonpb.go │ │ │ ├── jsonpb_test.go │ │ │ └── jsonpb_test_proto │ │ │ │ ├── Makefile │ │ │ │ ├── more_test_objects.pb.go │ │ │ │ ├── more_test_objects.proto │ │ │ │ ├── test_objects.pb.go │ │ │ │ └── test_objects.proto │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── all_test.go │ │ │ ├── any_test.go │ │ │ ├── clone.go │ │ │ ├── clone_test.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── equal.go │ │ │ ├── equal_test.go │ │ │ ├── extensions.go │ │ │ ├── extensions_test.go │ │ │ ├── lib.go │ │ │ ├── map_test.go │ │ │ ├── message_set.go │ │ │ ├── message_set_test.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── proto3_proto │ │ │ │ ├── proto3.pb.go │ │ │ │ └── proto3.proto │ │ │ ├── proto3_test.go │ │ │ ├── size2_test.go │ │ │ ├── size_test.go │ │ │ ├── testdata │ │ │ │ ├── Makefile │ │ │ │ ├── golden_test.go │ │ │ │ ├── test.pb.go │ │ │ │ └── test.proto │ │ │ ├── text.go │ │ │ ├── text_parser.go │ │ │ ├── text_parser_test.go │ │ │ └── text_test.go │ │ │ ├── protoc-gen-go │ │ │ ├── Makefile │ │ │ ├── descriptor │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor.pb.go │ │ │ │ └── descriptor.proto │ │ │ ├── doc.go │ │ │ ├── generator │ │ │ │ ├── Makefile │ │ │ │ ├── generator.go │ │ │ │ └── name_test.go │ │ │ ├── grpc │ │ │ │ └── grpc.go │ │ │ ├── link_grpc.go │ │ │ ├── main.go │ │ │ ├── plugin │ │ │ │ ├── Makefile │ │ │ │ ├── plugin.pb.go │ │ │ │ ├── plugin.pb.golden │ │ │ │ └── plugin.proto │ │ │ └── testdata │ │ │ │ ├── Makefile │ │ │ │ ├── extension_base.proto │ │ │ │ ├── extension_extra.proto │ │ │ │ ├── extension_test.go │ │ │ │ ├── extension_user.proto │ │ │ │ ├── grpc.proto │ │ │ │ ├── imp.pb.go.golden │ │ │ │ ├── imp.proto │ │ │ │ ├── imp2.proto │ │ │ │ ├── imp3.proto │ │ │ │ ├── main_test.go │ │ │ │ ├── multi │ │ │ │ ├── multi1.proto │ │ │ │ ├── multi2.proto │ │ │ │ └── multi3.proto │ │ │ │ ├── my_test │ │ │ │ ├── test.pb.go │ │ │ │ ├── test.pb.go.golden │ │ │ │ └── test.proto │ │ │ │ └── proto3.proto │ │ │ └── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ ├── any.pb.go │ │ │ └── any.proto │ │ │ ├── any_test.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ ├── duration.pb.go │ │ │ └── duration.proto │ │ │ ├── duration_test.go │ │ │ ├── empty │ │ │ ├── empty.pb.go │ │ │ └── empty.proto │ │ │ ├── regen.sh │ │ │ ├── struct │ │ │ ├── struct.pb.go │ │ │ └── struct.proto │ │ │ ├── timestamp.go │ │ │ ├── timestamp │ │ │ ├── timestamp.pb.go │ │ │ └── timestamp.proto │ │ │ ├── timestamp_test.go │ │ │ └── wrappers │ │ │ ├── wrappers.pb.go │ │ │ └── wrappers.proto │ ├── google │ │ └── gofuzz │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── fuzz.go │ │ │ └── fuzz_test.go │ ├── googleapis │ │ └── gnostic │ │ │ ├── .gitignore │ │ │ ├── .travis-install.sh │ │ │ ├── .travis.yml │ │ │ ├── COMPILE-PROTOS.sh │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── OpenAPIv2 │ │ │ ├── OpenAPIv2.go │ │ │ ├── OpenAPIv2.pb.go │ │ │ ├── OpenAPIv2.proto │ │ │ ├── README.md │ │ │ └── openapi-2.0.json │ │ │ ├── OpenAPIv3 │ │ │ ├── OpenAPIv3.go │ │ │ ├── OpenAPIv3.pb.go │ │ │ ├── OpenAPIv3.proto │ │ │ ├── README.md │ │ │ ├── openapi-3.0.json │ │ │ └── schema-generator │ │ │ │ ├── 3.0.md │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── README.md │ │ │ ├── apps │ │ │ ├── petstore-builder │ │ │ │ ├── README.md │ │ │ │ ├── main.go │ │ │ │ ├── petstore-v2.go │ │ │ │ └── petstore-v3.go │ │ │ └── report │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── compiler │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── error.go │ │ │ ├── extension-handler.go │ │ │ ├── helpers.go │ │ │ ├── main.go │ │ │ └── reader.go │ │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── errors │ │ │ │ ├── petstore-badproperties.yaml │ │ │ │ ├── petstore-missingversion.yaml │ │ │ │ └── petstore-unresolvedrefs.yaml │ │ │ ├── v2.0 │ │ │ │ ├── json │ │ │ │ │ ├── api-with-examples.json │ │ │ │ │ ├── petstore-expanded.json │ │ │ │ │ ├── petstore-minimal.json │ │ │ │ │ ├── petstore-separate │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── Error.json │ │ │ │ │ │ └── spec │ │ │ │ │ │ │ ├── NewPet.json │ │ │ │ │ │ │ ├── Pet.json │ │ │ │ │ │ │ ├── parameters.json │ │ │ │ │ │ │ └── swagger.json │ │ │ │ │ ├── petstore-simple.json │ │ │ │ │ ├── petstore-with-external-docs.json │ │ │ │ │ ├── petstore.json │ │ │ │ │ └── uber.json │ │ │ │ └── yaml │ │ │ │ │ ├── api-with-examples.yaml │ │ │ │ │ ├── petstore-expanded.yaml │ │ │ │ │ ├── petstore-minimal.yaml │ │ │ │ │ ├── petstore-separate │ │ │ │ │ ├── common │ │ │ │ │ │ └── Error.yaml │ │ │ │ │ └── spec │ │ │ │ │ │ ├── NewPet.yaml │ │ │ │ │ │ ├── Pet.yaml │ │ │ │ │ │ ├── parameters.yaml │ │ │ │ │ │ ├── swagger.text │ │ │ │ │ │ └── swagger.yaml │ │ │ │ │ ├── petstore-simple.yaml │ │ │ │ │ ├── petstore-with-external-docs.yaml │ │ │ │ │ ├── petstore.yaml │ │ │ │ │ └── uber.yaml │ │ │ └── v3.0 │ │ │ │ ├── json │ │ │ │ └── petstore.json │ │ │ │ └── yaml │ │ │ │ └── petstore.yaml │ │ │ ├── extensions │ │ │ ├── COMPILE-EXTENSION.sh │ │ │ ├── README.md │ │ │ ├── extension.pb.go │ │ │ ├── extension.proto │ │ │ ├── extensions.go │ │ │ └── sample │ │ │ │ ├── Makefile │ │ │ │ ├── x-sampleone.json │ │ │ │ └── x-sampletwo.json │ │ │ ├── generate-gnostic │ │ │ ├── README.md │ │ │ ├── domain.go │ │ │ ├── generate-compiler.go │ │ │ ├── generate-extension.go │ │ │ ├── generate-extension_test.go │ │ │ ├── generate-proto.go │ │ │ ├── helpers.go │ │ │ ├── main.go │ │ │ ├── test │ │ │ │ ├── errors │ │ │ │ │ ├── x-extension-name-collision.errors │ │ │ │ │ └── x-unsupportedprimitives.errors │ │ │ │ ├── x-extension-name-collision.json │ │ │ │ └── x-unsupportedprimitives.json │ │ │ └── types.go │ │ │ ├── gnostic.go │ │ │ ├── gnostic_test.go │ │ │ ├── jsonschema │ │ │ ├── README.md │ │ │ ├── display.go │ │ │ ├── models.go │ │ │ ├── operations.go │ │ │ ├── reader.go │ │ │ ├── schema.json │ │ │ └── writer.go │ │ │ ├── jsonwriter │ │ │ ├── README.md │ │ │ └── writer.go │ │ │ ├── plugins │ │ │ ├── README.md │ │ │ ├── gnostic-analyze │ │ │ │ ├── README.md │ │ │ │ ├── main.go │ │ │ │ ├── statistics │ │ │ │ │ └── stats.go │ │ │ │ └── summarize │ │ │ │ │ └── main.go │ │ │ ├── gnostic-go-generator │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── encode-templates │ │ │ │ │ └── main.go │ │ │ │ ├── examples │ │ │ │ │ └── v2.0 │ │ │ │ │ │ ├── apis_guru │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ └── swagger.yaml │ │ │ │ │ │ ├── bookstore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bookstore.json │ │ │ │ │ │ ├── bookstore_test.go │ │ │ │ │ │ └── service │ │ │ │ │ │ │ ├── app.yaml │ │ │ │ │ │ │ ├── init.go │ │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ │ └── service.go │ │ │ │ │ │ └── xkcd │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── main.go │ │ │ │ │ │ └── swagger.json │ │ │ │ ├── funcmap.go │ │ │ │ ├── gofmt.go │ │ │ │ ├── main.go │ │ │ │ ├── renderer.go │ │ │ │ ├── templates.go │ │ │ │ └── templates │ │ │ │ │ ├── client.go.tmpl │ │ │ │ │ ├── provider.go.tmpl │ │ │ │ │ ├── server.go.tmpl │ │ │ │ │ └── types.go.tmpl │ │ │ ├── gnostic-go-sample │ │ │ │ └── main.go │ │ │ ├── gnostic-swift-generator │ │ │ │ ├── Makefile │ │ │ │ ├── Package.swift │ │ │ │ ├── README.md │ │ │ │ ├── Sources │ │ │ │ │ ├── TemplateEncoder │ │ │ │ │ │ └── main.swift │ │ │ │ │ └── gnostic-swift-generator │ │ │ │ │ │ ├── OpenAPIv2.pb.swift │ │ │ │ │ │ ├── Renderer.swift │ │ │ │ │ │ ├── TemplateFunctions.swift │ │ │ │ │ │ ├── TemplateLoader.swift │ │ │ │ │ │ ├── Templates.swift │ │ │ │ │ │ ├── helpers.swift │ │ │ │ │ │ ├── io.swift │ │ │ │ │ │ ├── main.swift │ │ │ │ │ │ └── plugin.pb.swift │ │ │ │ ├── Templates │ │ │ │ │ ├── client.swift.tmpl │ │ │ │ │ ├── fetch.swift.tmpl │ │ │ │ │ ├── server.swift.tmpl │ │ │ │ │ └── types.swift.tmpl │ │ │ │ └── examples │ │ │ │ │ └── bookstore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Package.swift │ │ │ │ │ ├── README.md │ │ │ │ │ ├── Sources │ │ │ │ │ └── Server │ │ │ │ │ │ └── main.swift │ │ │ │ │ ├── Tests │ │ │ │ │ ├── BookstoreTests │ │ │ │ │ │ └── BookstoreTests.swift │ │ │ │ │ └── LinuxMain.swift │ │ │ │ │ └── bookstore.json │ │ │ ├── gnostic-swift-sample │ │ │ │ ├── Package.swift │ │ │ │ └── Sources │ │ │ │ │ ├── OpenAPIv2.pb.swift │ │ │ │ │ ├── io.swift │ │ │ │ │ ├── main.swift │ │ │ │ │ └── plugin.pb.swift │ │ │ ├── plugin.pb.go │ │ │ └── plugin.proto │ │ │ ├── printer │ │ │ ├── README.md │ │ │ └── code.go │ │ │ ├── test │ │ │ ├── README.md │ │ │ ├── errors │ │ │ │ ├── invalid-plugin-invocation.errors │ │ │ │ ├── petstore-badproperties.errors │ │ │ │ ├── petstore-missingversion.errors │ │ │ │ └── petstore-unresolvedrefs.errors │ │ │ ├── library-example-with-ext.json │ │ │ ├── v2.0 │ │ │ │ ├── petstore.text │ │ │ │ └── yaml │ │ │ │ │ └── petstore-separate │ │ │ │ │ └── spec │ │ │ │ │ └── swagger.text │ │ │ └── v3.0 │ │ │ │ └── petstore.text │ │ │ └── tools │ │ │ ├── README.md │ │ │ ├── format-schema │ │ │ └── main.go │ │ │ └── j2y2j │ │ │ └── main.go │ ├── howeyc │ │ └── gopass │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── OPENSOLARIS.LICENSE │ │ │ ├── README.md │ │ │ ├── pass.go │ │ │ ├── pass_test.go │ │ │ ├── terminal.go │ │ │ └── terminal_solaris.go │ ├── imdario │ │ └── mergo │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── map.go │ │ │ ├── merge.go │ │ │ ├── mergo.go │ │ │ ├── mergo_test.go │ │ │ └── testdata │ │ │ ├── license.yml │ │ │ └── thing.yml │ ├── json-iterator │ │ └── go │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build.sh │ │ │ ├── compatible_test.go │ │ │ ├── example_test.go │ │ │ ├── extra │ │ │ ├── fuzzy_decoder.go │ │ │ ├── fuzzy_decoder_test.go │ │ │ ├── naming_strategy.go │ │ │ ├── naming_strategy_test.go │ │ │ ├── privat_fields.go │ │ │ ├── private_fields_test.go │ │ │ ├── time_as_int64_codec.go │ │ │ └── time_as_int64_codec_test.go │ │ │ ├── feature_adapter.go │ │ │ ├── feature_any.go │ │ │ ├── feature_any_array.go │ │ │ ├── feature_any_bool.go │ │ │ ├── feature_any_float.go │ │ │ ├── feature_any_int32.go │ │ │ ├── feature_any_int64.go │ │ │ ├── feature_any_invalid.go │ │ │ ├── feature_any_nil.go │ │ │ ├── feature_any_number.go │ │ │ ├── feature_any_object.go │ │ │ ├── feature_any_string.go │ │ │ ├── feature_any_uint32.go │ │ │ ├── feature_any_uint64.go │ │ │ ├── feature_config.go │ │ │ ├── feature_iter.go │ │ │ ├── feature_iter_array.go │ │ │ ├── feature_iter_float.go │ │ │ ├── feature_iter_int.go │ │ │ ├── feature_iter_object.go │ │ │ ├── feature_iter_skip.go │ │ │ ├── feature_iter_skip_sloppy.go │ │ │ ├── feature_iter_skip_strict.go │ │ │ ├── feature_iter_string.go │ │ │ ├── feature_json_number.go │ │ │ ├── feature_pool.go │ │ │ ├── feature_reflect.go │ │ │ ├── feature_reflect_array.go │ │ │ ├── feature_reflect_extension.go │ │ │ ├── feature_reflect_map.go │ │ │ ├── feature_reflect_native.go │ │ │ ├── feature_reflect_object.go │ │ │ ├── feature_reflect_slice.go │ │ │ ├── feature_reflect_struct_decoder.go │ │ │ ├── feature_stream.go │ │ │ ├── feature_stream_float.go │ │ │ ├── feature_stream_int.go │ │ │ ├── feature_stream_string.go │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ ├── jsoniter.go │ │ │ ├── jsoniter_1dot8_only_test.go │ │ │ ├── jsoniter_adapter_test.go │ │ │ ├── jsoniter_alias_test.go │ │ │ ├── jsoniter_any_array_test.go │ │ │ ├── jsoniter_any_bool_test.go │ │ │ ├── jsoniter_any_float_test.go │ │ │ ├── jsoniter_any_int_test.go │ │ │ ├── jsoniter_any_map_test.go │ │ │ ├── jsoniter_any_null_test.go │ │ │ ├── jsoniter_any_object_test.go │ │ │ ├── jsoniter_any_string_test.go │ │ │ ├── jsoniter_array_test.go │ │ │ ├── jsoniter_bool_test.go │ │ │ ├── jsoniter_customize_test.go │ │ │ ├── jsoniter_demo_test.go │ │ │ ├── jsoniter_encode_interface_test.go │ │ │ ├── jsoniter_enum_marshaler_test.go │ │ │ ├── jsoniter_fixed_array_test.go │ │ │ ├── jsoniter_float_test.go │ │ │ ├── jsoniter_int_test.go │ │ │ ├── jsoniter_interface_test.go │ │ │ ├── jsoniter_invalid_test.go │ │ │ ├── jsoniter_io_test.go │ │ │ ├── jsoniter_iterator_test.go │ │ │ ├── jsoniter_large_file_test.go │ │ │ ├── jsoniter_map_test.go │ │ │ ├── jsoniter_must_be_valid_test.go │ │ │ ├── jsoniter_nested_test.go │ │ │ ├── jsoniter_null_test.go │ │ │ ├── jsoniter_object_test.go │ │ │ ├── jsoniter_optional_test.go │ │ │ ├── jsoniter_raw_message_test.go │ │ │ ├── jsoniter_reader_test.go │ │ │ ├── jsoniter_reflect_native_test.go │ │ │ ├── jsoniter_skip_test.go │ │ │ ├── jsoniter_sloppy_test.go │ │ │ ├── jsoniter_stream_test.go │ │ │ ├── jsoniter_string_test.go │ │ │ ├── jsoniter_struct_decoder_test.go │ │ │ ├── jsoniter_struct_encoder_test.go │ │ │ ├── jsoniter_wrap_test.go │ │ │ ├── output_tests │ │ │ ├── array │ │ │ │ ├── array │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── bool │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── byte │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── map │ │ │ │ │ ├── int32_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_bool │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_map │ │ │ │ │ ├── int32_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_slice │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_struct_various │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_uint8 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── slice │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_empty │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_empty_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_ptr_string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_various │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ └── uint8 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ ├── builtins │ │ │ │ ├── bool │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── bool_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── byte │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── byte_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float32_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float64_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int16 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int16_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int32_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int8 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int8_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── string_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── uint16 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── uint16_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── uint32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── uint32_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── uint8 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── uint8_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ └── uintptr │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ ├── caseless_unmarshal │ │ │ │ ├── caseless_test.go │ │ │ │ └── types.go │ │ │ ├── json_marshal │ │ │ │ ├── string_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_field │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ └── struct_field_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ ├── map │ │ │ │ ├── int16 │ │ │ │ │ └── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── int32 │ │ │ │ │ └── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── int64 │ │ │ │ │ └── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── int8 │ │ │ │ │ └── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── string │ │ │ │ │ ├── array_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── map_string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_array_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_map_string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_slice_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_struct_various │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── slice_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_empty │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_empty_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_various │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── string_alias │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── string_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── uint16 │ │ │ │ │ └── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── uint32 │ │ │ │ │ └── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ └── uint8 │ │ │ │ │ └── string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ ├── map_key_text_marshal │ │ │ │ ├── string_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ └── struct │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ ├── marshal_fail_case.go │ │ │ ├── partial_unmarshal │ │ │ │ ├── partial_test.go │ │ │ │ └── types.go │ │ │ ├── slice │ │ │ │ ├── array │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── bool │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── byte │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── map │ │ │ │ │ ├── int32_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_array │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_bool │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_map │ │ │ │ │ ├── int32_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_slice │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_struct_various │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_uint8 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── slice │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_empty │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_empty_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_ptr_string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── struct_various │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ └── uint8 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ ├── struct │ │ │ │ ├── alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── anonymous │ │ │ │ │ ├── no_overlap │ │ │ │ │ │ ├── float64 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── int32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── json_marshal │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── map_string_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_float64 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_int32 │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_map_string_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_slice_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ptr_struct_various │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── slice_string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── string_with_tag │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── struct_various │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── text_marshal │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ └── overlap │ │ │ │ │ │ ├── different_levels │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── ignore_deeper_level │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── same_level_1_both_tagged │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── same_level_1_no_tags │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── same_level_1_tagged │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── same_level_2_both_tagged │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ ├── same_level_2_no_tags │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── same_level_2_tagged │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── array │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── strings │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── struct_strings │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── empty │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── empty_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── everything │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float64_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float64s │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── float64s_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int32_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int32s │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int32s_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── int64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── map │ │ │ │ │ ├── int32_ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32_struct_strings │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string_ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── string_struct_strings │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_float64_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_int32_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_ptr_struct_empty │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_ptr_struct_strings │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_string_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_struct_empty │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptr_struct_strings │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptrs_float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptrs_int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── ptrs_string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── slice │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string_alias │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── strings │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── struct_strings │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── string_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── strings │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ ├── strings_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ └── struct │ │ │ │ │ ├── empties │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── empty │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── empty_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── float32s │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32s │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── strings │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ └── strings_alias │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ ├── struct_tags │ │ │ │ ├── fieldname │ │ │ │ │ ├── embedded │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── struct │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ ├── omitempty │ │ │ │ │ ├── bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── embedded │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── float32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── map_string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_bool │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_float32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_int32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_map_string_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_slice_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ ├── string │ │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ │ └── types.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string_json_marshal │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_string_text_marshal │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_struct_json_marshal │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_struct_text_marshal │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── ptr_uint32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── slice_string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string_json_marshal │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── string_text_marshal │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_json_marshal │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── struct_text_marshal │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ │ └── uint32 │ │ │ │ │ │ ├── json_test.go │ │ │ │ │ │ └── types.go │ │ │ │ └── string │ │ │ │ │ ├── bool │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── byte │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── float32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── float64 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── int16 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── int32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── int8 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── string │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── uint16 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ ├── uint32 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ │ │ └── uint8 │ │ │ │ │ ├── json_test.go │ │ │ │ │ └── types.go │ │ │ └── text_marshal │ │ │ │ ├── string_alias │ │ │ │ ├── json_test.go │ │ │ │ └── types.go │ │ │ │ ├── struct │ │ │ │ ├── json_test.go │ │ │ │ └── types.go │ │ │ │ ├── struct_alias │ │ │ │ ├── json_test.go │ │ │ │ └── types.go │ │ │ │ ├── struct_field │ │ │ │ ├── json_test.go │ │ │ │ └── types.go │ │ │ │ └── struct_field_alias │ │ │ │ ├── json_test.go │ │ │ │ └── types.go │ │ │ ├── skip_tests │ │ │ ├── array │ │ │ │ ├── inputs.go │ │ │ │ └── skip_test.go │ │ │ ├── number │ │ │ │ ├── inputs.go │ │ │ │ └── skip_test.go │ │ │ ├── object │ │ │ │ ├── inputs.go │ │ │ │ └── skip_test.go │ │ │ └── string │ │ │ │ ├── inputs.go │ │ │ │ └── skip_test.go │ │ │ ├── test.sh │ │ │ └── unmarshal_input_test.go │ └── spf13 │ │ └── pflag │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bool.go │ │ ├── bool_slice.go │ │ ├── bool_slice_test.go │ │ ├── bool_test.go │ │ ├── count.go │ │ ├── count_test.go │ │ ├── duration.go │ │ ├── example_test.go │ │ ├── export_test.go │ │ ├── flag.go │ │ ├── flag_test.go │ │ ├── float32.go │ │ ├── float64.go │ │ ├── golangflag.go │ │ ├── golangflag_test.go │ │ ├── int.go │ │ ├── int16.go │ │ ├── int32.go │ │ ├── int64.go │ │ ├── int8.go │ │ ├── int_slice.go │ │ ├── int_slice_test.go │ │ ├── ip.go │ │ ├── ip_slice.go │ │ ├── ip_slice_test.go │ │ ├── ip_test.go │ │ ├── ipmask.go │ │ ├── ipnet.go │ │ ├── ipnet_test.go │ │ ├── string.go │ │ ├── string_array.go │ │ ├── string_array_test.go │ │ ├── string_slice.go │ │ ├── string_slice_test.go │ │ ├── uint.go │ │ ├── uint16.go │ │ ├── uint32.go │ │ ├── uint64.go │ │ ├── uint8.go │ │ ├── uint_slice.go │ │ ├── uint_slice_test.go │ │ └── verify │ │ ├── all.sh │ │ ├── gofmt.sh │ │ └── golint.sh │ ├── golang.org │ └── x │ │ ├── crypto │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── acme │ │ │ ├── acme.go │ │ │ ├── acme_test.go │ │ │ ├── autocert │ │ │ │ ├── autocert.go │ │ │ │ ├── autocert_test.go │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── listener.go │ │ │ │ ├── renewal.go │ │ │ │ └── renewal_test.go │ │ │ ├── jws.go │ │ │ ├── jws_test.go │ │ │ ├── types.go │ │ │ └── types_test.go │ │ ├── bcrypt │ │ │ ├── base64.go │ │ │ ├── bcrypt.go │ │ │ └── bcrypt_test.go │ │ ├── blake2b │ │ │ ├── blake2b.go │ │ │ ├── blake2bAVX2_amd64.go │ │ │ ├── blake2bAVX2_amd64.s │ │ │ ├── blake2b_amd64.go │ │ │ ├── blake2b_amd64.s │ │ │ ├── blake2b_generic.go │ │ │ ├── blake2b_ref.go │ │ │ ├── blake2b_test.go │ │ │ ├── blake2x.go │ │ │ └── register.go │ │ ├── blake2s │ │ │ ├── blake2s.go │ │ │ ├── blake2s_386.go │ │ │ ├── blake2s_386.s │ │ │ ├── blake2s_amd64.go │ │ │ ├── blake2s_amd64.s │ │ │ ├── blake2s_generic.go │ │ │ ├── blake2s_ref.go │ │ │ ├── blake2s_test.go │ │ │ ├── blake2x.go │ │ │ └── register.go │ │ ├── blowfish │ │ │ ├── block.go │ │ │ ├── blowfish_test.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── bn256 │ │ │ ├── bn256.go │ │ │ ├── bn256_test.go │ │ │ ├── constants.go │ │ │ ├── curve.go │ │ │ ├── example_test.go │ │ │ ├── gfp12.go │ │ │ ├── gfp2.go │ │ │ ├── gfp6.go │ │ │ ├── optate.go │ │ │ └── twist.go │ │ ├── cast5 │ │ │ ├── cast5.go │ │ │ └── cast5_test.go │ │ ├── chacha20poly1305 │ │ │ ├── chacha20poly1305.go │ │ │ ├── chacha20poly1305_amd64.go │ │ │ ├── chacha20poly1305_amd64.s │ │ │ ├── chacha20poly1305_generic.go │ │ │ ├── chacha20poly1305_noasm.go │ │ │ ├── chacha20poly1305_test.go │ │ │ ├── chacha20poly1305_vectors_test.go │ │ │ └── internal │ │ │ │ └── chacha20 │ │ │ │ ├── chacha_generic.go │ │ │ │ └── chacha_test.go │ │ ├── codereview.cfg │ │ ├── cryptobyte │ │ │ ├── asn1.go │ │ │ ├── asn1_test.go │ │ │ ├── builder.go │ │ │ ├── cryptobyte_test.go │ │ │ ├── example_test.go │ │ │ └── string.go │ │ ├── curve25519 │ │ │ ├── const_amd64.h │ │ │ ├── const_amd64.s │ │ │ ├── cswap_amd64.s │ │ │ ├── curve25519.go │ │ │ ├── curve25519_test.go │ │ │ ├── doc.go │ │ │ ├── freeze_amd64.s │ │ │ ├── ladderstep_amd64.s │ │ │ ├── mont25519_amd64.go │ │ │ ├── mul_amd64.s │ │ │ └── square_amd64.s │ │ ├── ed25519 │ │ │ ├── ed25519.go │ │ │ ├── ed25519_test.go │ │ │ ├── internal │ │ │ │ └── edwards25519 │ │ │ │ │ ├── const.go │ │ │ │ │ └── edwards25519.go │ │ │ └── testdata │ │ │ │ └── sign.input.gz │ │ ├── hkdf │ │ │ ├── example_test.go │ │ │ ├── hkdf.go │ │ │ └── hkdf_test.go │ │ ├── md4 │ │ │ ├── example_test.go │ │ │ ├── md4.go │ │ │ ├── md4_test.go │ │ │ └── md4block.go │ │ ├── nacl │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── auth_test.go │ │ │ │ └── example_test.go │ │ │ ├── box │ │ │ │ ├── box.go │ │ │ │ ├── box_test.go │ │ │ │ └── example_test.go │ │ │ └── secretbox │ │ │ │ ├── example_test.go │ │ │ │ ├── secretbox.go │ │ │ │ └── secretbox_test.go │ │ ├── ocsp │ │ │ ├── ocsp.go │ │ │ └── ocsp_test.go │ │ ├── openpgp │ │ │ ├── armor │ │ │ │ ├── armor.go │ │ │ │ ├── armor_test.go │ │ │ │ └── encode.go │ │ │ ├── canonical_text.go │ │ │ ├── canonical_text_test.go │ │ │ ├── clearsign │ │ │ │ ├── clearsign.go │ │ │ │ └── clearsign_test.go │ │ │ ├── elgamal │ │ │ │ ├── elgamal.go │ │ │ │ └── elgamal_test.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── packet │ │ │ │ ├── compressed.go │ │ │ │ ├── compressed_test.go │ │ │ │ ├── config.go │ │ │ │ ├── encrypted_key.go │ │ │ │ ├── encrypted_key_test.go │ │ │ │ ├── literal.go │ │ │ │ ├── ocfb.go │ │ │ │ ├── ocfb_test.go │ │ │ │ ├── one_pass_signature.go │ │ │ │ ├── opaque.go │ │ │ │ ├── opaque_test.go │ │ │ │ ├── packet.go │ │ │ │ ├── packet_test.go │ │ │ │ ├── private_key.go │ │ │ │ ├── private_key_test.go │ │ │ │ ├── public_key.go │ │ │ │ ├── public_key_test.go │ │ │ │ ├── public_key_v3.go │ │ │ │ ├── public_key_v3_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── signature.go │ │ │ │ ├── signature_test.go │ │ │ │ ├── signature_v3.go │ │ │ │ ├── signature_v3_test.go │ │ │ │ ├── symmetric_key_encrypted.go │ │ │ │ ├── symmetric_key_encrypted_test.go │ │ │ │ ├── symmetrically_encrypted.go │ │ │ │ ├── symmetrically_encrypted_test.go │ │ │ │ ├── userattribute.go │ │ │ │ ├── userattribute_test.go │ │ │ │ ├── userid.go │ │ │ │ └── userid_test.go │ │ │ ├── read.go │ │ │ ├── read_test.go │ │ │ ├── s2k │ │ │ │ ├── s2k.go │ │ │ │ └── s2k_test.go │ │ │ ├── write.go │ │ │ └── write_test.go │ │ ├── otr │ │ │ ├── libotr_test_helper.c │ │ │ ├── otr.go │ │ │ ├── otr_test.go │ │ │ └── smp.go │ │ ├── pbkdf2 │ │ │ ├── pbkdf2.go │ │ │ └── pbkdf2_test.go │ │ ├── pkcs12 │ │ │ ├── bmp-string.go │ │ │ ├── bmp-string_test.go │ │ │ ├── crypto.go │ │ │ ├── crypto_test.go │ │ │ ├── errors.go │ │ │ ├── internal │ │ │ │ └── rc2 │ │ │ │ │ ├── bench_test.go │ │ │ │ │ ├── rc2.go │ │ │ │ │ └── rc2_test.go │ │ │ ├── mac.go │ │ │ ├── mac_test.go │ │ │ ├── pbkdf.go │ │ │ ├── pbkdf_test.go │ │ │ ├── pkcs12.go │ │ │ ├── pkcs12_test.go │ │ │ └── safebags.go │ │ ├── poly1305 │ │ │ ├── poly1305.go │ │ │ ├── poly1305_test.go │ │ │ ├── sum_amd64.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_arm.go │ │ │ ├── sum_arm.s │ │ │ └── sum_ref.go │ │ ├── ripemd160 │ │ │ ├── ripemd160.go │ │ │ ├── ripemd160_test.go │ │ │ └── ripemd160block.go │ │ ├── salsa20 │ │ │ ├── salsa │ │ │ │ ├── hsalsa20.go │ │ │ │ ├── salsa2020_amd64.s │ │ │ │ ├── salsa208.go │ │ │ │ ├── salsa20_amd64.go │ │ │ │ ├── salsa20_ref.go │ │ │ │ └── salsa_test.go │ │ │ ├── salsa20.go │ │ │ └── salsa20_test.go │ │ ├── scrypt │ │ │ ├── scrypt.go │ │ │ └── scrypt_test.go │ │ ├── sha3 │ │ │ ├── doc.go │ │ │ ├── hashes.go │ │ │ ├── keccakf.go │ │ │ ├── keccakf_amd64.go │ │ │ ├── keccakf_amd64.s │ │ │ ├── register.go │ │ │ ├── sha3.go │ │ │ ├── sha3_test.go │ │ │ ├── shake.go │ │ │ ├── testdata │ │ │ │ └── keccakKats.json.deflate │ │ │ ├── xor.go │ │ │ ├── xor_generic.go │ │ │ └── xor_unaligned.go │ │ ├── ssh │ │ │ ├── agent │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── forward.go │ │ │ │ ├── keyring.go │ │ │ │ ├── keyring_test.go │ │ │ │ ├── server.go │ │ │ │ ├── server_test.go │ │ │ │ └── testdata_test.go │ │ │ ├── benchmark_test.go │ │ │ ├── buffer.go │ │ │ ├── buffer_test.go │ │ │ ├── certs.go │ │ │ ├── certs_test.go │ │ │ ├── channel.go │ │ │ ├── cipher.go │ │ │ ├── cipher_test.go │ │ │ ├── client.go │ │ │ ├── client_auth.go │ │ │ ├── client_auth_test.go │ │ │ ├── client_test.go │ │ │ ├── common.go │ │ │ ├── connection.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── handshake.go │ │ │ ├── handshake_test.go │ │ │ ├── kex.go │ │ │ ├── kex_test.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── knownhosts │ │ │ │ ├── knownhosts.go │ │ │ │ └── knownhosts_test.go │ │ │ ├── mac.go │ │ │ ├── mempipe_test.go │ │ │ ├── messages.go │ │ │ ├── messages_test.go │ │ │ ├── mux.go │ │ │ ├── mux_test.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── session_test.go │ │ │ ├── streamlocal.go │ │ │ ├── tcpip.go │ │ │ ├── tcpip_test.go │ │ │ ├── terminal │ │ │ │ ├── terminal.go │ │ │ │ ├── terminal_test.go │ │ │ │ ├── util.go │ │ │ │ ├── util_bsd.go │ │ │ │ ├── util_linux.go │ │ │ │ ├── util_plan9.go │ │ │ │ ├── util_solaris.go │ │ │ │ └── util_windows.go │ │ │ ├── test │ │ │ │ ├── agent_unix_test.go │ │ │ │ ├── cert_test.go │ │ │ │ ├── dial_unix_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── forward_unix_test.go │ │ │ │ ├── session_test.go │ │ │ │ ├── test_unix_test.go │ │ │ │ └── testdata_test.go │ │ │ ├── testdata │ │ │ │ ├── doc.go │ │ │ │ └── keys.go │ │ │ ├── testdata_test.go │ │ │ ├── transport.go │ │ │ └── transport_test.go │ │ ├── tea │ │ │ ├── cipher.go │ │ │ └── tea_test.go │ │ ├── twofish │ │ │ ├── twofish.go │ │ │ └── twofish_test.go │ │ ├── xtea │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── xtea_test.go │ │ └── xts │ │ │ ├── xts.go │ │ │ └── xts_test.go │ │ ├── net │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── bpf │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── instructions_test.go │ │ │ ├── setter.go │ │ │ ├── testdata │ │ │ │ ├── all_instructions.bpf │ │ │ │ └── all_instructions.txt │ │ │ ├── vm.go │ │ │ ├── vm_aluop_test.go │ │ │ ├── vm_bpf_test.go │ │ │ ├── vm_extension_test.go │ │ │ ├── vm_instructions.go │ │ │ ├── vm_jump_test.go │ │ │ ├── vm_load_test.go │ │ │ ├── vm_ret_test.go │ │ │ ├── vm_scratch_test.go │ │ │ └── vm_test.go │ │ ├── codereview.cfg │ │ ├── context │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── ctxhttp │ │ │ │ ├── ctxhttp.go │ │ │ │ ├── ctxhttp_17_test.go │ │ │ │ ├── ctxhttp_pre17.go │ │ │ │ ├── ctxhttp_pre17_test.go │ │ │ │ └── ctxhttp_test.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ ├── pre_go19.go │ │ │ └── withtimeout_test.go │ │ ├── dict │ │ │ └── dict.go │ │ ├── dns │ │ │ └── dnsmessage │ │ │ │ ├── example_test.go │ │ │ │ ├── message.go │ │ │ │ └── message_test.go │ │ ├── html │ │ │ ├── atom │ │ │ │ ├── atom.go │ │ │ │ ├── atom_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── table.go │ │ │ │ └── table_test.go │ │ │ ├── charset │ │ │ │ ├── charset.go │ │ │ │ ├── charset_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── HTTP-charset.html │ │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ │ ├── README │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ │ └── meta-content-attribute.html │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── doctype.go │ │ │ ├── entity.go │ │ │ ├── entity_test.go │ │ │ ├── escape.go │ │ │ ├── escape_test.go │ │ │ ├── example_test.go │ │ │ ├── foreign.go │ │ │ ├── node.go │ │ │ ├── node_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── render.go │ │ │ ├── render_test.go │ │ │ ├── testdata │ │ │ │ ├── go1.html │ │ │ │ └── webkit │ │ │ │ │ ├── README │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ ├── adoption02.dat │ │ │ │ │ ├── comments01.dat │ │ │ │ │ ├── doctype01.dat │ │ │ │ │ ├── entities01.dat │ │ │ │ │ ├── entities02.dat │ │ │ │ │ ├── html5test-com.dat │ │ │ │ │ ├── inbody01.dat │ │ │ │ │ ├── isindex.dat │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ │ ├── scriptdata01.dat │ │ │ │ │ ├── scripted │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ └── webkit01.dat │ │ │ │ │ ├── tables01.dat │ │ │ │ │ ├── tests1.dat │ │ │ │ │ ├── tests10.dat │ │ │ │ │ ├── tests11.dat │ │ │ │ │ ├── tests12.dat │ │ │ │ │ ├── tests14.dat │ │ │ │ │ ├── tests15.dat │ │ │ │ │ ├── tests16.dat │ │ │ │ │ ├── tests17.dat │ │ │ │ │ ├── tests18.dat │ │ │ │ │ ├── tests19.dat │ │ │ │ │ ├── tests2.dat │ │ │ │ │ ├── tests20.dat │ │ │ │ │ ├── tests21.dat │ │ │ │ │ ├── tests22.dat │ │ │ │ │ ├── tests23.dat │ │ │ │ │ ├── tests24.dat │ │ │ │ │ ├── tests25.dat │ │ │ │ │ ├── tests26.dat │ │ │ │ │ ├── tests3.dat │ │ │ │ │ ├── tests4.dat │ │ │ │ │ ├── tests5.dat │ │ │ │ │ ├── tests6.dat │ │ │ │ │ ├── tests7.dat │ │ │ │ │ ├── tests8.dat │ │ │ │ │ ├── tests9.dat │ │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ │ ├── tricky01.dat │ │ │ │ │ ├── webkit01.dat │ │ │ │ │ └── webkit02.dat │ │ │ ├── token.go │ │ │ └── token_test.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── ciphers_test.go │ │ │ ├── client_conn_pool.go │ │ │ ├── configure_transport.go │ │ │ ├── databuffer.go │ │ │ ├── databuffer_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── flow.go │ │ │ ├── flow_test.go │ │ │ ├── frame.go │ │ │ ├── frame_test.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go17_not18.go │ │ │ ├── go18.go │ │ │ ├── go18_test.go │ │ │ ├── go19.go │ │ │ ├── go19_test.go │ │ │ ├── gotrack.go │ │ │ ├── gotrack_test.go │ │ │ ├── h2demo │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── h2demo.go │ │ │ │ ├── launch.go │ │ │ │ ├── rootCA.key │ │ │ │ ├── rootCA.pem │ │ │ │ ├── rootCA.srl │ │ │ │ ├── server.crt │ │ │ │ ├── server.key │ │ │ │ └── tmpl.go │ │ │ ├── h2i │ │ │ │ ├── README.md │ │ │ │ └── h2i.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── hpack.go │ │ │ │ ├── hpack_test.go │ │ │ │ ├── huffman.go │ │ │ │ ├── tables.go │ │ │ │ └── tables_test.go │ │ │ ├── http2.go │ │ │ ├── http2_test.go │ │ │ ├── not_go16.go │ │ │ ├── not_go17.go │ │ │ ├── not_go18.go │ │ │ ├── not_go19.go │ │ │ ├── pipe.go │ │ │ ├── pipe_test.go │ │ │ ├── server.go │ │ │ ├── server_push_test.go │ │ │ ├── server_test.go │ │ │ ├── testdata │ │ │ │ └── draft-ietf-httpbis-http2.xml │ │ │ ├── transport.go │ │ │ ├── transport_test.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ ├── writesched_priority_test.go │ │ │ ├── writesched_random.go │ │ │ ├── writesched_random_test.go │ │ │ ├── writesched_test.go │ │ │ └── z_spec_test.go │ │ ├── icmp │ │ │ ├── dstunreach.go │ │ │ ├── echo.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── extension.go │ │ │ ├── extension_test.go │ │ │ ├── helper_posix.go │ │ │ ├── interface.go │ │ │ ├── ipv4.go │ │ │ ├── ipv4_test.go │ │ │ ├── ipv6.go │ │ │ ├── listen_posix.go │ │ │ ├── listen_stub.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── messagebody.go │ │ │ ├── mpls.go │ │ │ ├── multipart.go │ │ │ ├── multipart_test.go │ │ │ ├── packettoobig.go │ │ │ ├── paramprob.go │ │ │ ├── ping_test.go │ │ │ ├── sys_freebsd.go │ │ │ └── timeexceeded.go │ │ ├── idna │ │ │ ├── example_test.go │ │ │ ├── idna.go │ │ │ ├── idna_test.go │ │ │ ├── punycode.go │ │ │ ├── punycode_test.go │ │ │ ├── tables.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── iana │ │ │ │ ├── const.go │ │ │ │ └── gen.go │ │ │ ├── nettest │ │ │ │ ├── helper_bsd.go │ │ │ │ ├── helper_nobsd.go │ │ │ │ ├── helper_posix.go │ │ │ │ ├── helper_stub.go │ │ │ │ ├── helper_unix.go │ │ │ │ ├── helper_windows.go │ │ │ │ ├── interface.go │ │ │ │ ├── rlimit.go │ │ │ │ └── stack.go │ │ │ ├── socket │ │ │ │ ├── cmsghdr.go │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ │ ├── cmsghdr_stub.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_linux.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── error_unix.go │ │ │ │ ├── error_windows.go │ │ │ │ ├── iovec_32bit.go │ │ │ │ ├── iovec_64bit.go │ │ │ │ ├── iovec_solaris_64bit.go │ │ │ │ ├── iovec_stub.go │ │ │ │ ├── mmsghdr_stub.go │ │ │ │ ├── mmsghdr_unix.go │ │ │ │ ├── msghdr_bsd.go │ │ │ │ ├── msghdr_bsdvar.go │ │ │ │ ├── msghdr_linux.go │ │ │ │ ├── msghdr_linux_32bit.go │ │ │ │ ├── msghdr_linux_64bit.go │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ ├── msghdr_solaris_64bit.go │ │ │ │ ├── msghdr_stub.go │ │ │ │ ├── rawconn.go │ │ │ │ ├── rawconn_mmsg.go │ │ │ │ ├── rawconn_msg.go │ │ │ │ ├── rawconn_nommsg.go │ │ │ │ ├── rawconn_nomsg.go │ │ │ │ ├── rawconn_stub.go │ │ │ │ ├── reflect.go │ │ │ │ ├── socket.go │ │ │ │ ├── socket_go1_9_test.go │ │ │ │ ├── socket_test.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_bsdvar.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_linux_386.go │ │ │ │ ├── sys_linux_386.s │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ ├── sys_linux_arm.go │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ ├── sys_linux_mips.go │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ ├── sys_linux_s390x.go │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ ├── sys_netbsd.go │ │ │ │ ├── sys_posix.go │ │ │ │ ├── sys_solaris.go │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_unix.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── zsys_darwin_386.go │ │ │ │ ├── zsys_darwin_amd64.go │ │ │ │ ├── zsys_darwin_arm.go │ │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd_386.go │ │ │ │ ├── zsys_netbsd_amd64.go │ │ │ │ ├── zsys_netbsd_arm.go │ │ │ │ ├── zsys_openbsd_386.go │ │ │ │ ├── zsys_openbsd_amd64.go │ │ │ │ ├── zsys_openbsd_arm.go │ │ │ │ └── zsys_solaris_amd64.go │ │ │ └── timeseries │ │ │ │ ├── timeseries.go │ │ │ │ └── timeseries_test.go │ │ ├── ipv4 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_bsd.go │ │ │ ├── control_pktinfo.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── packet.go │ │ │ ├── packet_go1_8.go │ │ │ ├── packet_go1_9.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_asmreqn.go │ │ │ ├── sys_asmreqn_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── ipv6 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_rfc2292_unix.go │ │ │ ├── control_rfc3542_unix.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_bsd.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_solaris.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── icmp_windows.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sockopt_test.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── lex │ │ │ └── httplex │ │ │ │ ├── httplex.go │ │ │ │ └── httplex_test.go │ │ ├── lif │ │ │ ├── address.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_solaris.go │ │ │ ├── lif.go │ │ │ ├── link.go │ │ │ ├── link_test.go │ │ │ ├── sys.go │ │ │ ├── sys_solaris_amd64.s │ │ │ ├── syscall.go │ │ │ └── zsys_solaris_amd64.go │ │ ├── nettest │ │ │ ├── conntest.go │ │ │ ├── conntest_go16.go │ │ │ ├── conntest_go17.go │ │ │ └── conntest_test.go │ │ ├── netutil │ │ │ ├── listen.go │ │ │ └── listen_test.go │ │ ├── proxy │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── per_host_test.go │ │ │ ├── proxy.go │ │ │ ├── proxy_test.go │ │ │ └── socks5.go │ │ ├── publicsuffix │ │ │ ├── gen.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── table.go │ │ │ └── table_test.go │ │ ├── route │ │ │ ├── address.go │ │ │ ├── address_darwin_test.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── interface.go │ │ │ ├── interface_announce.go │ │ │ ├── interface_classic.go │ │ │ ├── interface_freebsd.go │ │ │ ├── interface_multicast.go │ │ │ ├── interface_openbsd.go │ │ │ ├── message.go │ │ │ ├── message_darwin_test.go │ │ │ ├── message_freebsd_test.go │ │ │ ├── message_test.go │ │ │ ├── route.go │ │ │ ├── route_classic.go │ │ │ ├── route_openbsd.go │ │ │ ├── route_test.go │ │ │ ├── sys.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_openbsd.go │ │ │ ├── syscall.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_netbsd.go │ │ │ └── zsys_openbsd.go │ │ ├── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ ├── histogram_test.go │ │ │ ├── trace.go │ │ │ ├── trace_go16.go │ │ │ ├── trace_go17.go │ │ │ └── trace_test.go │ │ ├── webdav │ │ │ ├── file.go │ │ │ ├── file_go1.6.go │ │ │ ├── file_go1.7.go │ │ │ ├── file_test.go │ │ │ ├── if.go │ │ │ ├── if_test.go │ │ │ ├── internal │ │ │ │ └── xml │ │ │ │ │ ├── README │ │ │ │ │ ├── atom_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── marshal.go │ │ │ │ │ ├── marshal_test.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── read_test.go │ │ │ │ │ ├── typeinfo.go │ │ │ │ │ ├── xml.go │ │ │ │ │ └── xml_test.go │ │ │ ├── litmus_test_server.go │ │ │ ├── lock.go │ │ │ ├── lock_test.go │ │ │ ├── prop.go │ │ │ ├── prop_test.go │ │ │ ├── webdav.go │ │ │ ├── webdav_test.go │ │ │ ├── xml.go │ │ │ └── xml_test.go │ │ ├── websocket │ │ │ ├── client.go │ │ │ ├── dial.go │ │ │ ├── dial_test.go │ │ │ ├── exampledial_test.go │ │ │ ├── examplehandler_test.go │ │ │ ├── hybi.go │ │ │ ├── hybi_test.go │ │ │ ├── server.go │ │ │ ├── websocket.go │ │ │ └── websocket_test.go │ │ └── xsrftoken │ │ │ ├── xsrf.go │ │ │ └── xsrf_test.go │ │ ├── oauth2 │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── amazon │ │ │ └── amazon.go │ │ ├── bitbucket │ │ │ └── bitbucket.go │ │ ├── client_appengine.go │ │ ├── clientcredentials │ │ │ ├── clientcredentials.go │ │ │ └── clientcredentials_test.go │ │ ├── example_test.go │ │ ├── facebook │ │ │ └── facebook.go │ │ ├── fitbit │ │ │ └── fitbit.go │ │ ├── foursquare │ │ │ └── foursquare.go │ │ ├── github │ │ │ └── github.go │ │ ├── google │ │ │ ├── appengine.go │ │ │ ├── appengine_hook.go │ │ │ ├── appengineflex_hook.go │ │ │ ├── default.go │ │ │ ├── example_test.go │ │ │ ├── google.go │ │ │ ├── google_test.go │ │ │ ├── jwt.go │ │ │ ├── jwt_test.go │ │ │ ├── sdk.go │ │ │ ├── sdk_test.go │ │ │ └── testdata │ │ │ │ └── gcloud │ │ │ │ ├── credentials │ │ │ │ └── properties │ │ ├── heroku │ │ │ └── heroku.go │ │ ├── hipchat │ │ │ └── hipchat.go │ │ ├── internal │ │ │ ├── oauth2.go │ │ │ ├── oauth2_test.go │ │ │ ├── token.go │ │ │ ├── token_test.go │ │ │ ├── transport.go │ │ │ └── transport_test.go │ │ ├── jws │ │ │ ├── jws.go │ │ │ └── jws_test.go │ │ ├── jwt │ │ │ ├── example_test.go │ │ │ ├── jwt.go │ │ │ └── jwt_test.go │ │ ├── linkedin │ │ │ └── linkedin.go │ │ ├── mediamath │ │ │ └── mediamath.go │ │ ├── microsoft │ │ │ └── microsoft.go │ │ ├── oauth2.go │ │ ├── oauth2_test.go │ │ ├── odnoklassniki │ │ │ └── odnoklassniki.go │ │ ├── paypal │ │ │ └── paypal.go │ │ ├── slack │ │ │ └── slack.go │ │ ├── token.go │ │ ├── token_test.go │ │ ├── transport.go │ │ ├── transport_test.go │ │ ├── uber │ │ │ └── uber.go │ │ ├── vk │ │ │ └── vk.go │ │ └── yandex │ │ │ └── yandex.go │ │ ├── sys │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── codereview.cfg │ │ ├── plan9 │ │ │ ├── asm.s │ │ │ ├── asm_plan9_386.s │ │ │ ├── asm_plan9_amd64.s │ │ │ ├── const_plan9.go │ │ │ ├── dir_plan9.go │ │ │ ├── env_plan9.go │ │ │ ├── env_unset.go │ │ │ ├── errors_plan9.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mksyscall.pl │ │ │ ├── mksysnum_plan9.sh │ │ │ ├── pwd_go15_plan9.go │ │ │ ├── pwd_plan9.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_plan9.go │ │ │ ├── syscall_test.go │ │ │ ├── zsyscall_plan9_386.go │ │ │ ├── zsyscall_plan9_amd64.go │ │ │ └── zsysnum_plan9.go │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── asm_darwin_386.s │ │ │ ├── asm_darwin_amd64.s │ │ │ ├── asm_darwin_arm.s │ │ │ ├── asm_darwin_arm64.s │ │ │ ├── asm_dragonfly_amd64.s │ │ │ ├── asm_freebsd_386.s │ │ │ ├── asm_freebsd_amd64.s │ │ │ ├── asm_freebsd_arm.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_netbsd_386.s │ │ │ ├── asm_netbsd_amd64.s │ │ │ ├── asm_netbsd_arm.s │ │ │ ├── asm_openbsd_386.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_openbsd_arm.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── creds_test.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_darwin_test.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_dragonfly_test.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_linux_test.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_netbsd_test.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dev_openbsd_test.go │ │ │ ├── dev_solaris_test.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── env_unset.go │ │ │ ├── errors_freebsd_386.go │ │ │ ├── errors_freebsd_amd64.go │ │ │ ├── errors_freebsd_arm.go │ │ │ ├── export_test.go │ │ │ ├── file_unix.go │ │ │ ├── flock.go │ │ │ ├── flock_linux_32bit.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── linux │ │ │ │ ├── Dockerfile │ │ │ │ ├── mkall.go │ │ │ │ ├── mksysnum.pl │ │ │ │ └── types.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mkpost.go │ │ │ ├── mksyscall.pl │ │ │ ├── mksyscall_solaris.pl │ │ │ ├── mksysctl_openbsd.pl │ │ │ ├── mksysnum_darwin.pl │ │ │ ├── mksysnum_dragonfly.pl │ │ │ ├── mksysnum_freebsd.pl │ │ │ ├── mksysnum_netbsd.pl │ │ │ ├── mksysnum_openbsd.pl │ │ │ ├── mmap_unix_test.go │ │ │ ├── openbsd_pledge.go │ │ │ ├── openbsd_test.go │ │ │ ├── pagesize_unix.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_bsd_test.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_386.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_freebsd_test.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_linux_test.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_no_getwd.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_solaris_test.go │ │ │ ├── syscall_test.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_test.go │ │ │ ├── timestruct.go │ │ │ ├── types_darwin.go │ │ │ ├── types_dragonfly.go │ │ │ ├── types_freebsd.go │ │ │ ├── types_netbsd.go │ │ │ ├── types_openbsd.go │ │ │ ├── types_solaris.go │ │ │ ├── zerrors_darwin_386.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zptrace386_linux.go │ │ │ ├── zptracearm_linux.go │ │ │ ├── zptracemips_linux.go │ │ │ ├── zptracemipsle_linux.go │ │ │ ├── zsyscall_darwin_386.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_arm.go │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysnum_darwin_386.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ ├── ztypes_darwin_386.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ └── ztypes_solaris_amd64.go │ │ └── windows │ │ │ ├── asm_windows_386.s │ │ │ ├── asm_windows_amd64.s │ │ │ ├── dll_windows.go │ │ │ ├── env_unset.go │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── registry │ │ │ ├── export_test.go │ │ │ ├── key.go │ │ │ ├── mksyscall.go │ │ │ ├── registry_test.go │ │ │ ├── syscall.go │ │ │ ├── value.go │ │ │ └── zsyscall_windows.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── str.go │ │ │ ├── svc │ │ │ ├── debug │ │ │ │ ├── log.go │ │ │ │ └── service.go │ │ │ ├── event.go │ │ │ ├── eventlog │ │ │ │ ├── install.go │ │ │ │ ├── log.go │ │ │ │ └── log_test.go │ │ │ ├── example │ │ │ │ ├── beep.go │ │ │ │ ├── install.go │ │ │ │ ├── main.go │ │ │ │ ├── manage.go │ │ │ │ └── service.go │ │ │ ├── go12.c │ │ │ ├── go12.go │ │ │ ├── go13.go │ │ │ ├── mgr │ │ │ │ ├── config.go │ │ │ │ ├── mgr.go │ │ │ │ ├── mgr_test.go │ │ │ │ └── service.go │ │ │ ├── security.go │ │ │ ├── service.go │ │ │ ├── svc_test.go │ │ │ ├── sys_386.s │ │ │ └── sys_amd64.s │ │ │ ├── syscall.go │ │ │ ├── syscall_test.go │ │ │ ├── syscall_windows.go │ │ │ ├── syscall_windows_test.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ └── zsyscall_windows.go │ │ ├── text │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── cases │ │ │ ├── cases.go │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── example_test.go │ │ │ ├── fold.go │ │ │ ├── fold_test.go │ │ │ ├── gen.go │ │ │ ├── gen_trieval.go │ │ │ ├── icu.go │ │ │ ├── icu_test.go │ │ │ ├── info.go │ │ │ ├── map.go │ │ │ ├── map_test.go │ │ │ ├── tables.go │ │ │ ├── tables_test.go │ │ │ └── trieval.go │ │ ├── cmd │ │ │ └── gotext │ │ │ │ ├── doc.go │ │ │ │ ├── extract.go │ │ │ │ ├── main.go │ │ │ │ └── message.go │ │ ├── codereview.cfg │ │ ├── collate │ │ │ ├── collate.go │ │ │ ├── collate_test.go │ │ │ ├── export_test.go │ │ │ ├── index.go │ │ │ ├── maketables.go │ │ │ ├── option.go │ │ │ ├── option_test.go │ │ │ ├── reg_test.go │ │ │ ├── sort.go │ │ │ ├── sort_test.go │ │ │ ├── table_test.go │ │ │ ├── tables.go │ │ │ └── tools │ │ │ │ └── colcmp │ │ │ │ ├── Makefile │ │ │ │ ├── chars.go │ │ │ │ ├── col.go │ │ │ │ ├── colcmp.go │ │ │ │ ├── darwin.go │ │ │ │ ├── gen.go │ │ │ │ └── icu.go │ │ ├── currency │ │ │ ├── common.go │ │ │ ├── currency.go │ │ │ ├── currency_test.go │ │ │ ├── example_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── query.go │ │ │ ├── query_test.go │ │ │ ├── tables.go │ │ │ └── tables_test.go │ │ ├── doc.go │ │ ├── encoding │ │ │ ├── charmap │ │ │ │ ├── charmap.go │ │ │ │ ├── charmap_test.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── encoding.go │ │ │ ├── encoding_test.go │ │ │ ├── example_test.go │ │ │ ├── htmlindex │ │ │ │ ├── gen.go │ │ │ │ ├── htmlindex.go │ │ │ │ ├── htmlindex_test.go │ │ │ │ ├── map.go │ │ │ │ └── tables.go │ │ │ ├── ianaindex │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── ianaindex.go │ │ │ │ ├── ianaindex_test.go │ │ │ │ └── tables.go │ │ │ ├── internal │ │ │ │ ├── enctest │ │ │ │ │ └── enctest.go │ │ │ │ ├── identifier │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── identifier.go │ │ │ │ │ └── mib.go │ │ │ │ └── internal.go │ │ │ ├── japanese │ │ │ │ ├── all.go │ │ │ │ ├── all_test.go │ │ │ │ ├── eucjp.go │ │ │ │ ├── iso2022jp.go │ │ │ │ ├── maketables.go │ │ │ │ ├── shiftjis.go │ │ │ │ └── tables.go │ │ │ ├── korean │ │ │ │ ├── all_test.go │ │ │ │ ├── euckr.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── simplifiedchinese │ │ │ │ ├── all.go │ │ │ │ ├── all_test.go │ │ │ │ ├── gbk.go │ │ │ │ ├── hzgb2312.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── testdata │ │ │ │ ├── candide-gb18030.txt │ │ │ │ ├── candide-utf-16le.txt │ │ │ │ ├── candide-utf-32be.txt │ │ │ │ ├── candide-utf-8.txt │ │ │ │ ├── candide-windows-1252.txt │ │ │ │ ├── rashomon-euc-jp.txt │ │ │ │ ├── rashomon-iso-2022-jp.txt │ │ │ │ ├── rashomon-shift-jis.txt │ │ │ │ ├── rashomon-utf-8.txt │ │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt │ │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-utf-8.txt │ │ │ │ ├── sunzi-bingfa-simplified-gbk.txt │ │ │ │ ├── sunzi-bingfa-simplified-utf-8.txt │ │ │ │ ├── sunzi-bingfa-traditional-big5.txt │ │ │ │ ├── sunzi-bingfa-traditional-utf-8.txt │ │ │ │ ├── unsu-joh-eun-nal-euc-kr.txt │ │ │ │ └── unsu-joh-eun-nal-utf-8.txt │ │ │ ├── traditionalchinese │ │ │ │ ├── all_test.go │ │ │ │ ├── big5.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ └── unicode │ │ │ │ ├── override.go │ │ │ │ ├── unicode.go │ │ │ │ ├── unicode_test.go │ │ │ │ └── utf32 │ │ │ │ ├── utf32.go │ │ │ │ └── utf32_test.go │ │ ├── feature │ │ │ └── plural │ │ │ │ ├── common.go │ │ │ │ ├── data_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── plural.go │ │ │ │ ├── plural_test.go │ │ │ │ └── tables.go │ │ ├── gen.go │ │ ├── internal │ │ │ ├── catmsg │ │ │ │ ├── catmsg.go │ │ │ │ ├── catmsg_test.go │ │ │ │ ├── codec.go │ │ │ │ ├── varint.go │ │ │ │ └── varint_test.go │ │ │ ├── colltab │ │ │ │ ├── collate_test.go │ │ │ │ ├── collelem.go │ │ │ │ ├── collelem_test.go │ │ │ │ ├── colltab.go │ │ │ │ ├── colltab_test.go │ │ │ │ ├── contract.go │ │ │ │ ├── contract_test.go │ │ │ │ ├── iter.go │ │ │ │ ├── iter_test.go │ │ │ │ ├── numeric.go │ │ │ │ ├── numeric_test.go │ │ │ │ ├── table.go │ │ │ │ ├── trie.go │ │ │ │ ├── trie_test.go │ │ │ │ ├── weighter.go │ │ │ │ └── weighter_test.go │ │ │ ├── export │ │ │ │ ├── README │ │ │ │ └── idna │ │ │ │ │ ├── common_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_common.go │ │ │ │ │ ├── gen_test.go │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ ├── idna.go │ │ │ │ │ ├── idna_test.go │ │ │ │ │ ├── punycode.go │ │ │ │ │ ├── punycode_test.go │ │ │ │ │ ├── tables.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── trieval.go │ │ │ ├── format │ │ │ │ └── format.go │ │ │ ├── gen.go │ │ │ ├── gen │ │ │ │ ├── code.go │ │ │ │ └── gen.go │ │ │ ├── gen_test.go │ │ │ ├── internal.go │ │ │ ├── internal_test.go │ │ │ ├── match.go │ │ │ ├── match_test.go │ │ │ ├── number │ │ │ │ ├── common.go │ │ │ │ ├── decimal.go │ │ │ │ ├── decimal_test.go │ │ │ │ ├── format.go │ │ │ │ ├── format_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── number.go │ │ │ │ ├── number_test.go │ │ │ │ ├── pattern.go │ │ │ │ ├── pattern_test.go │ │ │ │ ├── roundingmode_string.go │ │ │ │ ├── tables.go │ │ │ │ └── tables_test.go │ │ │ ├── stringset │ │ │ │ ├── set.go │ │ │ │ └── set_test.go │ │ │ ├── tables.go │ │ │ ├── tag │ │ │ │ ├── tag.go │ │ │ │ └── tag_test.go │ │ │ ├── testtext │ │ │ │ ├── codesize.go │ │ │ │ ├── flag.go │ │ │ │ ├── gc.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── go1_6.go │ │ │ │ ├── go1_7.go │ │ │ │ └── text.go │ │ │ ├── triegen │ │ │ │ ├── compact.go │ │ │ │ ├── data_test.go │ │ │ │ ├── example_compact_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen_test.go │ │ │ │ ├── print.go │ │ │ │ └── triegen.go │ │ │ ├── ucd │ │ │ │ ├── example_test.go │ │ │ │ ├── ucd.go │ │ │ │ └── ucd_test.go │ │ │ └── utf8internal │ │ │ │ └── utf8internal.go │ │ ├── language │ │ │ ├── Makefile │ │ │ ├── common.go │ │ │ ├── coverage.go │ │ │ ├── coverage_test.go │ │ │ ├── data_test.go │ │ │ ├── display │ │ │ │ ├── dict.go │ │ │ │ ├── dict_test.go │ │ │ │ ├── display.go │ │ │ │ ├── display_test.go │ │ │ │ ├── examples_test.go │ │ │ │ ├── lookup.go │ │ │ │ ├── maketables.go │ │ │ │ └── tables.go │ │ │ ├── examples_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── gen_index.go │ │ │ ├── go1_1.go │ │ │ ├── go1_2.go │ │ │ ├── httpexample_test.go │ │ │ ├── index.go │ │ │ ├── language.go │ │ │ ├── language_test.go │ │ │ ├── lookup.go │ │ │ ├── lookup_test.go │ │ │ ├── match.go │ │ │ ├── match_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── tables.go │ │ │ ├── tags.go │ │ │ └── testdata │ │ │ │ └── localeMatcherTest.txt │ │ ├── message │ │ │ ├── catalog.go │ │ │ ├── catalog │ │ │ │ ├── catalog.go │ │ │ │ ├── catalog_test.go │ │ │ │ └── dict.go │ │ │ ├── fmt_test.go │ │ │ ├── format.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ └── print.go │ │ ├── runes │ │ │ ├── cond.go │ │ │ ├── cond_test.go │ │ │ ├── example_test.go │ │ │ ├── runes.go │ │ │ └── runes_test.go │ │ ├── search │ │ │ ├── index.go │ │ │ ├── pattern.go │ │ │ ├── pattern_test.go │ │ │ ├── search.go │ │ │ └── tables.go │ │ ├── secure │ │ │ ├── bidirule │ │ │ │ ├── bench_test.go │ │ │ │ ├── bidirule.go │ │ │ │ └── bidirule_test.go │ │ │ ├── doc.go │ │ │ └── precis │ │ │ │ ├── benchmark_test.go │ │ │ │ ├── class.go │ │ │ │ ├── class_test.go │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── enforce_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── nickname.go │ │ │ │ ├── options.go │ │ │ │ ├── profile.go │ │ │ │ ├── profile_test.go │ │ │ │ ├── profiles.go │ │ │ │ ├── tables.go │ │ │ │ ├── tables_test.go │ │ │ │ ├── transformer.go │ │ │ │ └── trieval.go │ │ ├── transform │ │ │ ├── examples_test.go │ │ │ ├── transform.go │ │ │ └── transform_test.go │ │ ├── unicode │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── core_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_ranges.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── prop.go │ │ │ │ ├── ranges_test.go │ │ │ │ ├── tables.go │ │ │ │ ├── tables_test.go │ │ │ │ └── trieval.go │ │ │ ├── cldr │ │ │ │ ├── base.go │ │ │ │ ├── cldr.go │ │ │ │ ├── cldr_test.go │ │ │ │ ├── collate.go │ │ │ │ ├── collate_test.go │ │ │ │ ├── data_test.go │ │ │ │ ├── decode.go │ │ │ │ ├── examples_test.go │ │ │ │ ├── makexml.go │ │ │ │ ├── resolve.go │ │ │ │ ├── resolve_test.go │ │ │ │ ├── slice.go │ │ │ │ ├── slice_test.go │ │ │ │ └── xml.go │ │ │ ├── doc.go │ │ │ ├── norm │ │ │ │ ├── composition.go │ │ │ │ ├── composition_test.go │ │ │ │ ├── example_iter_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── forminfo_test.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── iter_test.go │ │ │ │ ├── maketables.go │ │ │ │ ├── norm_test.go │ │ │ │ ├── normalize.go │ │ │ │ ├── normalize_test.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── readwriter_test.go │ │ │ │ ├── tables.go │ │ │ │ ├── transform.go │ │ │ │ ├── transform_test.go │ │ │ │ ├── trie.go │ │ │ │ ├── triegen.go │ │ │ │ └── ucd_test.go │ │ │ ├── rangetable │ │ │ │ ├── gen.go │ │ │ │ ├── merge.go │ │ │ │ ├── merge_test.go │ │ │ │ ├── rangetable.go │ │ │ │ ├── rangetable_test.go │ │ │ │ └── tables.go │ │ │ └── runenames │ │ │ │ ├── bits.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_bits.go │ │ │ │ ├── runenames.go │ │ │ │ ├── runenames_test.go │ │ │ │ └── tables.go │ │ └── width │ │ │ ├── common_test.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── gen_trieval.go │ │ │ ├── kind_string.go │ │ │ ├── runes_test.go │ │ │ ├── tables.go │ │ │ ├── tables_test.go │ │ │ ├── transform.go │ │ │ ├── transform_test.go │ │ │ ├── trieval.go │ │ │ └── width.go │ │ └── time │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ └── rate │ │ ├── rate.go │ │ └── rate_test.go │ ├── google.golang.org │ └── appengine │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── aetest │ │ ├── doc.go │ │ ├── instance.go │ │ ├── instance_classic.go │ │ ├── instance_test.go │ │ ├── instance_vm.go │ │ └── user.go │ │ ├── appengine.go │ │ ├── appengine_test.go │ │ ├── appengine_vm.go │ │ ├── blobstore │ │ ├── blobstore.go │ │ ├── blobstore_test.go │ │ └── read.go │ │ ├── capability │ │ └── capability.go │ │ ├── channel │ │ ├── channel.go │ │ └── channel_test.go │ │ ├── cloudsql │ │ ├── cloudsql.go │ │ ├── cloudsql_classic.go │ │ └── cloudsql_vm.go │ │ ├── cmd │ │ ├── aebundler │ │ │ └── aebundler.go │ │ ├── aedeploy │ │ │ └── aedeploy.go │ │ └── aefix │ │ │ ├── ae.go │ │ │ ├── ae_test.go │ │ │ ├── fix.go │ │ │ ├── main.go │ │ │ ├── main_test.go │ │ │ └── typecheck.go │ │ ├── datastore │ │ ├── datastore.go │ │ ├── datastore_test.go │ │ ├── doc.go │ │ ├── key.go │ │ ├── key_test.go │ │ ├── load.go │ │ ├── load_test.go │ │ ├── metadata.go │ │ ├── prop.go │ │ ├── prop_test.go │ │ ├── query.go │ │ ├── query_test.go │ │ ├── save.go │ │ ├── time_test.go │ │ └── transaction.go │ │ ├── delay │ │ ├── delay.go │ │ ├── delay_go17.go │ │ ├── delay_go17_test.go │ │ ├── delay_pre17.go │ │ └── delay_test.go │ │ ├── demos │ │ ├── guestbook │ │ │ ├── app.yaml │ │ │ ├── favicon.ico │ │ │ ├── guestbook.go │ │ │ ├── index.yaml │ │ │ └── templates │ │ │ │ └── guestbook.html │ │ └── helloworld │ │ │ ├── app.yaml │ │ │ ├── favicon.ico │ │ │ └── helloworld.go │ │ ├── errors.go │ │ ├── file │ │ └── file.go │ │ ├── identity.go │ │ ├── image │ │ └── image.go │ │ ├── internal │ │ ├── aetesting │ │ │ └── fake.go │ │ ├── api.go │ │ ├── api_classic.go │ │ ├── api_common.go │ │ ├── api_pre17.go │ │ ├── api_race_test.go │ │ ├── api_test.go │ │ ├── app_id.go │ │ ├── app_id_test.go │ │ ├── app_identity │ │ │ ├── app_identity_service.pb.go │ │ │ └── app_identity_service.proto │ │ ├── base │ │ │ ├── api_base.pb.go │ │ │ └── api_base.proto │ │ ├── blobstore │ │ │ ├── blobstore_service.pb.go │ │ │ └── blobstore_service.proto │ │ ├── capability │ │ │ ├── capability_service.pb.go │ │ │ └── capability_service.proto │ │ ├── channel │ │ │ ├── channel_service.pb.go │ │ │ └── channel_service.proto │ │ ├── datastore │ │ │ ├── datastore_v3.pb.go │ │ │ └── datastore_v3.proto │ │ ├── identity.go │ │ ├── identity_classic.go │ │ ├── identity_vm.go │ │ ├── image │ │ │ ├── images_service.pb.go │ │ │ └── images_service.proto │ │ ├── internal.go │ │ ├── internal_vm_test.go │ │ ├── log │ │ │ ├── log_service.pb.go │ │ │ └── log_service.proto │ │ ├── mail │ │ │ ├── mail_service.pb.go │ │ │ └── mail_service.proto │ │ ├── main.go │ │ ├── main_vm.go │ │ ├── memcache │ │ │ ├── memcache_service.pb.go │ │ │ └── memcache_service.proto │ │ ├── metadata.go │ │ ├── modules │ │ │ ├── modules_service.pb.go │ │ │ └── modules_service.proto │ │ ├── net.go │ │ ├── net_test.go │ │ ├── regen.sh │ │ ├── remote_api │ │ │ ├── remote_api.pb.go │ │ │ └── remote_api.proto │ │ ├── search │ │ │ ├── search.pb.go │ │ │ └── search.proto │ │ ├── socket │ │ │ ├── socket_service.pb.go │ │ │ └── socket_service.proto │ │ ├── system │ │ │ ├── system_service.pb.go │ │ │ └── system_service.proto │ │ ├── taskqueue │ │ │ ├── taskqueue_service.pb.go │ │ │ └── taskqueue_service.proto │ │ ├── transaction.go │ │ ├── urlfetch │ │ │ ├── urlfetch_service.pb.go │ │ │ └── urlfetch_service.proto │ │ ├── user │ │ │ ├── user_service.pb.go │ │ │ └── user_service.proto │ │ └── xmpp │ │ │ ├── xmpp_service.pb.go │ │ │ └── xmpp_service.proto │ │ ├── log │ │ ├── api.go │ │ ├── log.go │ │ └── log_test.go │ │ ├── mail │ │ ├── mail.go │ │ └── mail_test.go │ │ ├── memcache │ │ ├── memcache.go │ │ └── memcache_test.go │ │ ├── module │ │ ├── module.go │ │ └── module_test.go │ │ ├── namespace.go │ │ ├── namespace_test.go │ │ ├── remote_api │ │ ├── client.go │ │ ├── client_test.go │ │ └── remote_api.go │ │ ├── runtime │ │ ├── runtime.go │ │ └── runtime_test.go │ │ ├── search │ │ ├── doc.go │ │ ├── field.go │ │ ├── search.go │ │ ├── search_test.go │ │ ├── struct.go │ │ └── struct_test.go │ │ ├── socket │ │ ├── doc.go │ │ ├── socket_classic.go │ │ └── socket_vm.go │ │ ├── taskqueue │ │ ├── taskqueue.go │ │ └── taskqueue_test.go │ │ ├── timeout.go │ │ ├── urlfetch │ │ └── urlfetch.go │ │ ├── user │ │ ├── oauth.go │ │ ├── user.go │ │ ├── user_classic.go │ │ ├── user_test.go │ │ └── user_vm.go │ │ └── xmpp │ │ ├── xmpp.go │ │ └── xmpp_test.go │ ├── gopkg.in │ ├── inf.v0 │ │ ├── LICENSE │ │ ├── benchmark_test.go │ │ ├── dec.go │ │ ├── dec_go1_2_test.go │ │ ├── dec_internal_test.go │ │ ├── dec_test.go │ │ ├── example_test.go │ │ ├── rounder.go │ │ ├── rounder_example_test.go │ │ └── rounder_test.go │ └── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── example_embedded_test.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── suite_test.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── k8s.io │ ├── api │ ├── .github │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── CONTRIBUTING.md │ ├── Godeps │ │ ├── Godeps.json │ │ ├── OWNERS │ │ └── Readme │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── admission │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── admissionregistration │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── apps │ │ ├── OWNERS │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta2 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── authentication │ │ ├── OWNERS │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── authorization │ │ ├── OWNERS │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── autoscaling │ │ ├── OWNERS │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v2beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── batch │ │ ├── OWNERS │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v2alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── certificates │ │ ├── OWNERS │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── code-of-conduct.md │ ├── core │ │ └── v1 │ │ │ ├── BUILD │ │ │ ├── annotation_key_constants.go │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── meta.go │ │ │ ├── objectreference.go │ │ │ ├── register.go │ │ │ ├── resource.go │ │ │ ├── taint.go │ │ │ ├── taint_test.go │ │ │ ├── toleration.go │ │ │ ├── toleration_test.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── events │ │ ├── OWNERS │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── extensions │ │ ├── OWNERS │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── imagepolicy │ │ ├── OWNERS │ │ └── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── networking │ │ ├── OWNERS │ │ └── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── policy │ │ ├── OWNERS │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── rbac │ │ ├── OWNERS │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── scheduling │ │ └── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ ├── settings │ │ └── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_swagger_doc_generated.go │ │ │ └── zz_generated.deepcopy.go │ └── storage │ │ ├── OWNERS │ │ ├── v1 │ │ ├── BUILD │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ │ ├── v1alpha1 │ │ ├── BUILD │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ │ └── v1beta1 │ │ ├── BUILD │ │ ├── doc.go │ │ ├── generated.pb.go │ │ ├── generated.proto │ │ ├── register.go │ │ ├── types.go │ │ ├── types_swagger_doc_generated.go │ │ └── zz_generated.deepcopy.go │ ├── apimachinery │ ├── .github │ │ └── PULL_REQUEST_TEMPLATE.md │ ├── CONTRIBUTING.md │ ├── Godeps │ │ ├── Godeps.json │ │ ├── OWNERS │ │ └── Readme │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── code-of-conduct.md │ ├── pkg │ │ ├── OWNERS │ │ ├── api │ │ │ ├── equality │ │ │ │ ├── BUILD │ │ │ │ └── semantic.go │ │ │ ├── errors │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ └── errors_test.go │ │ │ ├── meta │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ ├── firsthit_restmapper.go │ │ │ │ ├── help.go │ │ │ │ ├── interfaces.go │ │ │ │ ├── lazy.go │ │ │ │ ├── meta.go │ │ │ │ ├── meta_test.go │ │ │ │ ├── multirestmapper.go │ │ │ │ ├── multirestmapper_test.go │ │ │ │ ├── priority.go │ │ │ │ ├── priority_test.go │ │ │ │ ├── restmapper.go │ │ │ │ ├── restmapper_test.go │ │ │ │ ├── table │ │ │ │ │ ├── BUILD │ │ │ │ │ └── table.go │ │ │ │ └── unstructured.go │ │ │ ├── resource │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── amount.go │ │ │ │ ├── amount_test.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── math.go │ │ │ │ ├── math_test.go │ │ │ │ ├── quantity.go │ │ │ │ ├── quantity_example_test.go │ │ │ │ ├── quantity_proto.go │ │ │ │ ├── quantity_proto_test.go │ │ │ │ ├── quantity_test.go │ │ │ │ ├── scale_int.go │ │ │ │ ├── scale_int_test.go │ │ │ │ ├── suffix.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── testing │ │ │ │ ├── BUILD │ │ │ │ ├── codec.go │ │ │ │ ├── fuzzer │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── fuzzer.go │ │ │ │ │ ├── valuefuzz.go │ │ │ │ │ └── valuefuzz_test.go │ │ │ │ └── roundtrip │ │ │ │ │ ├── BUILD │ │ │ │ │ └── roundtrip.go │ │ │ └── validation │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── generic.go │ │ │ │ ├── objectmeta.go │ │ │ │ ├── objectmeta_test.go │ │ │ │ └── path │ │ │ │ ├── BUILD │ │ │ │ ├── name.go │ │ │ │ └── name_test.go │ │ ├── apimachinery │ │ │ ├── BUILD │ │ │ ├── announced │ │ │ │ ├── BUILD │ │ │ │ ├── announced.go │ │ │ │ ├── announced_test.go │ │ │ │ └── group_factory.go │ │ │ ├── doc.go │ │ │ ├── registered │ │ │ │ ├── BUILD │ │ │ │ ├── registered.go │ │ │ │ └── registered_test.go │ │ │ ├── types.go │ │ │ └── types_test.go │ │ ├── apis │ │ │ ├── meta │ │ │ │ ├── fuzzer │ │ │ │ │ ├── BUILD │ │ │ │ │ └── fuzzer.go │ │ │ │ ├── internalversion │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── register_test.go │ │ │ │ │ ├── roundtrip_test.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── v1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── OWNERS │ │ │ │ │ ├── controller_ref.go │ │ │ │ │ ├── controller_ref_test.go │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── conversion_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── duration_test.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── group_version.go │ │ │ │ │ ├── group_version_test.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── labels_test.go │ │ │ │ │ ├── meta.go │ │ │ │ │ ├── micro_time.go │ │ │ │ │ ├── micro_time_proto.go │ │ │ │ │ ├── micro_time_test.go │ │ │ │ │ ├── register.go │ │ │ │ │ ├── time.go │ │ │ │ │ ├── time_proto.go │ │ │ │ │ ├── time_test.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── types_test.go │ │ │ │ │ ├── unstructured │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── helpers.go │ │ │ │ │ │ ├── helpers_test.go │ │ │ │ │ │ ├── unstructured.go │ │ │ │ │ │ ├── unstructured_list.go │ │ │ │ │ │ ├── unstructured_list_test.go │ │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ │ ├── validation │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ ├── validation.go │ │ │ │ │ │ └── validation_test.go │ │ │ │ │ ├── watch.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── v1beta1 │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── conversion.go │ │ │ │ │ ├── deepcopy.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── generated.pb.go │ │ │ │ │ ├── generated.proto │ │ │ │ │ ├── register.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_swagger_doc_generated.go │ │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ │ └── zz_generated.defaults.go │ │ │ └── testapigroup │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fuzzer │ │ │ │ ├── BUILD │ │ │ │ └── fuzzer.go │ │ │ │ ├── install │ │ │ │ ├── BUILD │ │ │ │ ├── install.go │ │ │ │ └── roundtrip_test.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── conversion.go │ │ │ │ ├── defaults.go │ │ │ │ ├── doc.go │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ ├── zz_generated.conversion.go │ │ │ │ ├── zz_generated.deepcopy.go │ │ │ │ └── zz_generated.defaults.go │ │ │ │ └── zz_generated.deepcopy.go │ │ ├── conversion │ │ │ ├── BUILD │ │ │ ├── converter.go │ │ │ ├── converter_test.go │ │ │ ├── deep_equal.go │ │ │ ├── doc.go │ │ │ ├── helper.go │ │ │ ├── helper_test.go │ │ │ └── queryparams │ │ │ │ ├── BUILD │ │ │ │ ├── convert.go │ │ │ │ ├── convert_test.go │ │ │ │ └── doc.go │ │ ├── fields │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fields.go │ │ │ ├── fields_test.go │ │ │ ├── requirements.go │ │ │ ├── selector.go │ │ │ └── selector_test.go │ │ ├── labels │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── labels.go │ │ │ ├── labels_test.go │ │ │ ├── selector.go │ │ │ ├── selector_test.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── runtime │ │ │ ├── BUILD │ │ │ ├── codec.go │ │ │ ├── codec_check.go │ │ │ ├── conversion.go │ │ │ ├── conversion_test.go │ │ │ ├── converter.go │ │ │ ├── converter_test.go │ │ │ ├── doc.go │ │ │ ├── embedded.go │ │ │ ├── embedded_test.go │ │ │ ├── error.go │ │ │ ├── extension.go │ │ │ ├── extension_test.go │ │ │ ├── generated.pb.go │ │ │ ├── generated.proto │ │ │ ├── helper.go │ │ │ ├── interfaces.go │ │ │ ├── register.go │ │ │ ├── schema │ │ │ │ ├── BUILD │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── group_version.go │ │ │ │ ├── group_version_test.go │ │ │ │ └── interfaces.go │ │ │ ├── scheme.go │ │ │ ├── scheme_builder.go │ │ │ ├── scheme_test.go │ │ │ ├── serializer │ │ │ │ ├── BUILD │ │ │ │ ├── codec_factory.go │ │ │ │ ├── codec_test.go │ │ │ │ ├── json │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── json.go │ │ │ │ │ ├── json_test.go │ │ │ │ │ ├── meta.go │ │ │ │ │ └── meta_test.go │ │ │ │ ├── negotiated_codec.go │ │ │ │ ├── protobuf │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ └── protobuf.go │ │ │ │ ├── protobuf_extension.go │ │ │ │ ├── recognizer │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── recognizer.go │ │ │ │ │ └── testing │ │ │ │ │ │ ├── BUILD │ │ │ │ │ │ └── recognizer_test.go │ │ │ │ ├── streaming │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── streaming.go │ │ │ │ │ └── streaming_test.go │ │ │ │ ├── testing │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── types.go │ │ │ │ │ └── zz_generated.deepcopy.go │ │ │ │ ├── versioning │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── versioning.go │ │ │ │ │ └── versioning_test.go │ │ │ │ └── yaml │ │ │ │ │ ├── BUILD │ │ │ │ │ └── yaml.go │ │ │ ├── swagger_doc_generator.go │ │ │ ├── swagger_doc_generator_test.go │ │ │ ├── testing │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── types.go │ │ │ ├── types_proto.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── selection │ │ │ ├── BUILD │ │ │ └── operator.go │ │ ├── test │ │ │ ├── BUILD │ │ │ ├── api_meta_help_test.go │ │ │ ├── api_meta_meta_test.go │ │ │ ├── apis_meta_v1_unstructed_unstructure_test.go │ │ │ ├── runtime_helper_test.go │ │ │ ├── runtime_serializer_protobuf_protobuf_test.go │ │ │ ├── runtime_unversioned_test.go │ │ │ ├── util.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── types │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── namespacedname.go │ │ │ ├── nodename.go │ │ │ ├── patch.go │ │ │ └── uid.go │ │ ├── util │ │ │ ├── cache │ │ │ │ ├── BUILD │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ ├── lruexpirecache.go │ │ │ │ └── lruexpirecache_test.go │ │ │ ├── clock │ │ │ │ ├── BUILD │ │ │ │ ├── clock.go │ │ │ │ └── clock_test.go │ │ │ ├── diff │ │ │ │ ├── BUILD │ │ │ │ ├── diff.go │ │ │ │ └── diff_test.go │ │ │ ├── duration │ │ │ │ ├── BUILD │ │ │ │ └── duration.go │ │ │ ├── errors │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── errors.go │ │ │ │ └── errors_test.go │ │ │ ├── framer │ │ │ │ ├── BUILD │ │ │ │ ├── framer.go │ │ │ │ └── framer_test.go │ │ │ ├── httpstream │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── httpstream.go │ │ │ │ ├── httpstream_test.go │ │ │ │ └── spdy │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── connection.go │ │ │ │ │ ├── connection_test.go │ │ │ │ │ ├── roundtripper.go │ │ │ │ │ ├── roundtripper_test.go │ │ │ │ │ ├── upgrade.go │ │ │ │ │ └── upgrade_test.go │ │ │ ├── initialization │ │ │ │ ├── BUILD │ │ │ │ └── initialization.go │ │ │ ├── intstr │ │ │ │ ├── BUILD │ │ │ │ ├── generated.pb.go │ │ │ │ ├── generated.proto │ │ │ │ ├── intstr.go │ │ │ │ └── intstr_test.go │ │ │ ├── json │ │ │ │ ├── BUILD │ │ │ │ ├── json.go │ │ │ │ └── json_test.go │ │ │ ├── jsonmergepatch │ │ │ │ ├── BUILD │ │ │ │ ├── patch.go │ │ │ │ └── patch_test.go │ │ │ ├── mergepatch │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── errors.go │ │ │ │ ├── util.go │ │ │ │ └── util_test.go │ │ │ ├── net │ │ │ │ ├── BUILD │ │ │ │ ├── http.go │ │ │ │ ├── http_test.go │ │ │ │ ├── interface.go │ │ │ │ ├── interface_test.go │ │ │ │ ├── port_range.go │ │ │ │ ├── port_range_test.go │ │ │ │ ├── port_split.go │ │ │ │ ├── port_split_test.go │ │ │ │ ├── util.go │ │ │ │ └── util_test.go │ │ │ ├── proxy │ │ │ │ ├── BUILD │ │ │ │ ├── dial.go │ │ │ │ ├── dial_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── transport.go │ │ │ │ ├── transport_test.go │ │ │ │ ├── upgradeaware.go │ │ │ │ └── upgradeaware_test.go │ │ │ ├── rand │ │ │ │ ├── BUILD │ │ │ │ ├── rand.go │ │ │ │ └── rand_test.go │ │ │ ├── remotecommand │ │ │ │ ├── BUILD │ │ │ │ └── constants.go │ │ │ ├── runtime │ │ │ │ ├── BUILD │ │ │ │ ├── runtime.go │ │ │ │ └── runtime_test.go │ │ │ ├── sets │ │ │ │ ├── BUILD │ │ │ │ ├── byte.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty.go │ │ │ │ ├── int.go │ │ │ │ ├── int64.go │ │ │ │ ├── set_test.go │ │ │ │ ├── string.go │ │ │ │ └── types │ │ │ │ │ ├── BUILD │ │ │ │ │ └── types.go │ │ │ ├── strategicpatch │ │ │ │ ├── BUILD │ │ │ │ ├── OWNERS │ │ │ │ ├── errors.go │ │ │ │ ├── meta.go │ │ │ │ ├── patch.go │ │ │ │ ├── patch_test.go │ │ │ │ ├── testdata │ │ │ │ │ ├── swagger-merge-item.json │ │ │ │ │ └── swagger-precision-item.json │ │ │ │ ├── testing │ │ │ │ │ ├── BUILD │ │ │ │ │ └── openapi.go │ │ │ │ └── types.go │ │ │ ├── uuid │ │ │ │ ├── BUILD │ │ │ │ └── uuid.go │ │ │ ├── validation │ │ │ │ ├── BUILD │ │ │ │ ├── field │ │ │ │ │ ├── BUILD │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── errors_test.go │ │ │ │ │ ├── path.go │ │ │ │ │ └── path_test.go │ │ │ │ ├── validation.go │ │ │ │ └── validation_test.go │ │ │ ├── wait │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── wait.go │ │ │ │ └── wait_test.go │ │ │ ├── waitgroup │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── waitgroup.go │ │ │ │ └── waitgroup_test.go │ │ │ └── yaml │ │ │ │ ├── BUILD │ │ │ │ ├── decoder.go │ │ │ │ └── decoder_test.go │ │ ├── version │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ └── types.go │ │ └── watch │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── filter.go │ │ │ ├── filter_test.go │ │ │ ├── mux.go │ │ │ ├── mux_test.go │ │ │ ├── streamwatcher.go │ │ │ ├── streamwatcher_test.go │ │ │ ├── until.go │ │ │ ├── until_test.go │ │ │ ├── watch.go │ │ │ ├── watch_test.go │ │ │ └── zz_generated.deepcopy.go │ └── third_party │ │ └── forked │ │ └── golang │ │ ├── json │ │ ├── BUILD │ │ ├── OWNERS │ │ ├── fields.go │ │ └── fields_test.go │ │ ├── netutil │ │ ├── BUILD │ │ └── addr.go │ │ └── reflect │ │ ├── BUILD │ │ ├── deep_equal.go │ │ └── deep_equal_test.go │ └── client-go │ ├── .github │ └── PULL_REQUEST_TEMPLATE.md │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Godeps │ ├── Godeps.json │ ├── OWNERS │ └── Readme │ ├── INSTALL.md │ ├── LICENSE │ ├── OWNERS │ ├── README.md │ ├── code-of-conduct.md │ ├── discovery │ ├── BUILD │ ├── cached │ │ ├── BUILD │ │ ├── memcache.go │ │ └── memcache_test.go │ ├── discovery_client.go │ ├── discovery_client_test.go │ ├── fake │ │ ├── BUILD │ │ ├── discovery.go │ │ └── discovery_test.go │ ├── helper.go │ ├── helper_blackbox_test.go │ ├── restmapper.go │ ├── restmapper_test.go │ └── unstructured.go │ ├── dynamic │ ├── BUILD │ ├── client.go │ ├── client_pool.go │ ├── client_test.go │ ├── dynamic_util.go │ ├── dynamic_util_test.go │ └── fake │ │ ├── BUILD │ │ ├── client.go │ │ └── client_pool.go │ ├── examples │ ├── README.md │ ├── create-update-delete-deployment │ │ ├── BUILD │ │ ├── README.md │ │ └── main.go │ ├── in-cluster-client-configuration │ │ ├── BUILD │ │ ├── Dockerfile │ │ ├── README.md │ │ └── main.go │ ├── out-of-cluster-client-configuration │ │ ├── BUILD │ │ ├── README.md │ │ └── main.go │ └── workqueue │ │ ├── BUILD │ │ ├── README.md │ │ └── main.go │ ├── informers │ ├── BUILD │ ├── admissionregistration │ │ ├── BUILD │ │ ├── interface.go │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── initializerconfiguration.go │ │ │ └── interface.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ └── validatingwebhookconfiguration.go │ ├── apps │ │ ├── BUILD │ │ ├── interface.go │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── interface.go │ │ │ ├── replicaset.go │ │ │ └── statefulset.go │ │ ├── v1beta1 │ │ │ ├── BUILD │ │ │ ├── controllerrevision.go │ │ │ ├── deployment.go │ │ │ ├── interface.go │ │ │ └── statefulset.go │ │ └── v1beta2 │ │ │ ├── BUILD │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── interface.go │ │ │ ├── replicaset.go │ │ │ └── statefulset.go │ ├── autoscaling │ │ ├── BUILD │ │ ├── interface.go │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── horizontalpodautoscaler.go │ │ │ └── interface.go │ │ └── v2beta1 │ │ │ ├── BUILD │ │ │ ├── horizontalpodautoscaler.go │ │ │ └── interface.go │ ├── batch │ │ ├── BUILD │ │ ├── interface.go │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── job.go │ │ ├── v1beta1 │ │ │ ├── BUILD │ │ │ ├── cronjob.go │ │ │ └── interface.go │ │ └── v2alpha1 │ │ │ ├── BUILD │ │ │ ├── cronjob.go │ │ │ └── interface.go │ ├── certificates │ │ ├── BUILD │ │ ├── interface.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── certificatesigningrequest.go │ │ │ └── interface.go │ ├── core │ │ ├── BUILD │ │ ├── interface.go │ │ └── v1 │ │ │ ├── BUILD │ │ │ ├── componentstatus.go │ │ │ ├── configmap.go │ │ │ ├── endpoints.go │ │ │ ├── event.go │ │ │ ├── interface.go │ │ │ ├── limitrange.go │ │ │ ├── namespace.go │ │ │ ├── node.go │ │ │ ├── persistentvolume.go │ │ │ ├── persistentvolumeclaim.go │ │ │ ├── pod.go │ │ │ ├── podtemplate.go │ │ │ ├── replicationcontroller.go │ │ │ ├── resourcequota.go │ │ │ ├── secret.go │ │ │ ├── service.go │ │ │ └── serviceaccount.go │ ├── events │ │ ├── BUILD │ │ ├── interface.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── event.go │ │ │ └── interface.go │ ├── extensions │ │ ├── BUILD │ │ ├── interface.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── ingress.go │ │ │ ├── interface.go │ │ │ ├── podsecuritypolicy.go │ │ │ └── replicaset.go │ ├── factory.go │ ├── generic.go │ ├── internalinterfaces │ │ ├── BUILD │ │ └── factory_interfaces.go │ ├── networking │ │ ├── BUILD │ │ ├── interface.go │ │ └── v1 │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── networkpolicy.go │ ├── policy │ │ ├── BUILD │ │ ├── interface.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ ├── poddisruptionbudget.go │ │ │ └── podsecuritypolicy.go │ ├── rbac │ │ ├── BUILD │ │ ├── interface.go │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── interface.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── interface.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── interface.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ ├── scheduling │ │ ├── BUILD │ │ ├── interface.go │ │ └── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── priorityclass.go │ ├── settings │ │ ├── BUILD │ │ ├── interface.go │ │ └── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── interface.go │ │ │ └── podpreset.go │ └── storage │ │ ├── BUILD │ │ ├── interface.go │ │ ├── v1 │ │ ├── BUILD │ │ ├── interface.go │ │ └── storageclass.go │ │ ├── v1alpha1 │ │ ├── BUILD │ │ ├── interface.go │ │ └── volumeattachment.go │ │ └── v1beta1 │ │ ├── BUILD │ │ ├── interface.go │ │ ├── storageclass.go │ │ └── volumeattachment.go │ ├── kubernetes │ ├── BUILD │ ├── clientset.go │ ├── doc.go │ ├── fake │ │ ├── BUILD │ │ ├── clientset_generated.go │ │ ├── doc.go │ │ └── register.go │ ├── import.go │ ├── scheme │ │ ├── BUILD │ │ ├── doc.go │ │ └── register.go │ └── typed │ │ ├── admissionregistration │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── admissionregistration_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_admissionregistration_client.go │ │ │ │ └── fake_initializerconfiguration.go │ │ │ ├── generated_expansion.go │ │ │ └── initializerconfiguration.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── admissionregistration_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_admissionregistration_client.go │ │ │ ├── fake_mutatingwebhookconfiguration.go │ │ │ └── fake_validatingwebhookconfiguration.go │ │ │ ├── generated_expansion.go │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ └── validatingwebhookconfiguration.go │ │ ├── apps │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── apps_client.go │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apps_client.go │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ ├── fake_daemonset.go │ │ │ │ ├── fake_deployment.go │ │ │ │ ├── fake_replicaset.go │ │ │ │ └── fake_statefulset.go │ │ │ ├── generated_expansion.go │ │ │ ├── replicaset.go │ │ │ └── statefulset.go │ │ ├── v1beta1 │ │ │ ├── BUILD │ │ │ ├── apps_client.go │ │ │ ├── controllerrevision.go │ │ │ ├── deployment.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_apps_client.go │ │ │ │ ├── fake_controllerrevision.go │ │ │ │ ├── fake_deployment.go │ │ │ │ ├── fake_scale.go │ │ │ │ └── fake_statefulset.go │ │ │ ├── generated_expansion.go │ │ │ ├── scale.go │ │ │ └── statefulset.go │ │ └── v1beta2 │ │ │ ├── BUILD │ │ │ ├── apps_client.go │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_apps_client.go │ │ │ ├── fake_controllerrevision.go │ │ │ ├── fake_daemonset.go │ │ │ ├── fake_deployment.go │ │ │ ├── fake_replicaset.go │ │ │ ├── fake_scale.go │ │ │ └── fake_statefulset.go │ │ │ ├── generated_expansion.go │ │ │ ├── replicaset.go │ │ │ ├── scale.go │ │ │ └── statefulset.go │ │ ├── authentication │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── authentication_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_authentication_client.go │ │ │ │ ├── fake_tokenreview.go │ │ │ │ └── fake_tokenreview_expansion.go │ │ │ ├── generated_expansion.go │ │ │ ├── tokenreview.go │ │ │ └── tokenreview_expansion.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── authentication_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_authentication_client.go │ │ │ ├── fake_tokenreview.go │ │ │ └── fake_tokenreview_expansion.go │ │ │ ├── generated_expansion.go │ │ │ ├── tokenreview.go │ │ │ └── tokenreview_expansion.go │ │ ├── authorization │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── authorization_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_authorization_client.go │ │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ │ ├── fake_localsubjectaccessreview_expansion.go │ │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ │ ├── fake_selfsubjectaccessreview_expansion.go │ │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ │ ├── fake_selfsubjectrulesreview_expansion.go │ │ │ │ ├── fake_subjectaccessreview.go │ │ │ │ └── fake_subjectaccessreview_expansion.go │ │ │ ├── generated_expansion.go │ │ │ ├── localsubjectaccessreview.go │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ ├── selfsubjectaccessreview.go │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ ├── selfsubjectrulesreview.go │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ ├── subjectaccessreview.go │ │ │ └── subjectaccessreview_expansion.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── authorization_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_authorization_client.go │ │ │ ├── fake_generated_expansion.go │ │ │ ├── fake_localsubjectaccessreview.go │ │ │ ├── fake_localsubjectaccessreview_expansion.go │ │ │ ├── fake_selfsubjectaccessreview.go │ │ │ ├── fake_selfsubjectaccessreview_expansion.go │ │ │ ├── fake_selfsubjectrulesreview.go │ │ │ ├── fake_selfsubjectrulesreview_expansion.go │ │ │ ├── fake_subjectaccessreview.go │ │ │ └── fake_subjectaccessreview_expansion.go │ │ │ ├── generated_expansion.go │ │ │ ├── localsubjectaccessreview.go │ │ │ ├── localsubjectaccessreview_expansion.go │ │ │ ├── selfsubjectaccessreview.go │ │ │ ├── selfsubjectaccessreview_expansion.go │ │ │ ├── selfsubjectrulesreview.go │ │ │ ├── selfsubjectrulesreview_expansion.go │ │ │ ├── subjectaccessreview.go │ │ │ └── subjectaccessreview_expansion.go │ │ ├── autoscaling │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── autoscaling_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_autoscaling_client.go │ │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ ├── generated_expansion.go │ │ │ └── horizontalpodautoscaler.go │ │ └── v2beta1 │ │ │ ├── BUILD │ │ │ ├── autoscaling_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_autoscaling_client.go │ │ │ └── fake_horizontalpodautoscaler.go │ │ │ ├── generated_expansion.go │ │ │ └── horizontalpodautoscaler.go │ │ ├── batch │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── batch_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_batch_client.go │ │ │ │ └── fake_job.go │ │ │ ├── generated_expansion.go │ │ │ └── job.go │ │ ├── v1beta1 │ │ │ ├── BUILD │ │ │ ├── batch_client.go │ │ │ ├── cronjob.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_batch_client.go │ │ │ │ └── fake_cronjob.go │ │ │ └── generated_expansion.go │ │ └── v2alpha1 │ │ │ ├── BUILD │ │ │ ├── batch_client.go │ │ │ ├── cronjob.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_batch_client.go │ │ │ └── fake_cronjob.go │ │ │ └── generated_expansion.go │ │ ├── certificates │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── certificates_client.go │ │ │ ├── certificatesigningrequest.go │ │ │ ├── certificatesigningrequest_expansion.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_certificates_client.go │ │ │ ├── fake_certificatesigningrequest.go │ │ │ └── fake_certificatesigningrequest_expansion.go │ │ │ └── generated_expansion.go │ │ ├── core │ │ └── v1 │ │ │ ├── BUILD │ │ │ ├── componentstatus.go │ │ │ ├── configmap.go │ │ │ ├── core_client.go │ │ │ ├── doc.go │ │ │ ├── endpoints.go │ │ │ ├── event.go │ │ │ ├── event_expansion.go │ │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_componentstatus.go │ │ │ ├── fake_configmap.go │ │ │ ├── fake_core_client.go │ │ │ ├── fake_endpoints.go │ │ │ ├── fake_event.go │ │ │ ├── fake_event_expansion.go │ │ │ ├── fake_limitrange.go │ │ │ ├── fake_namespace.go │ │ │ ├── fake_namespace_expansion.go │ │ │ ├── fake_node.go │ │ │ ├── fake_node_expansion.go │ │ │ ├── fake_persistentvolume.go │ │ │ ├── fake_persistentvolumeclaim.go │ │ │ ├── fake_pod.go │ │ │ ├── fake_pod_expansion.go │ │ │ ├── fake_podtemplate.go │ │ │ ├── fake_replicationcontroller.go │ │ │ ├── fake_resourcequota.go │ │ │ ├── fake_secret.go │ │ │ ├── fake_service.go │ │ │ ├── fake_service_expansion.go │ │ │ ├── fake_serviceaccount.go │ │ │ └── fake_serviceaccount_expansion.go │ │ │ ├── generated_expansion.go │ │ │ ├── limitrange.go │ │ │ ├── namespace.go │ │ │ ├── namespace_expansion.go │ │ │ ├── node.go │ │ │ ├── node_expansion.go │ │ │ ├── persistentvolume.go │ │ │ ├── persistentvolumeclaim.go │ │ │ ├── pod.go │ │ │ ├── pod_expansion.go │ │ │ ├── podtemplate.go │ │ │ ├── replicationcontroller.go │ │ │ ├── resourcequota.go │ │ │ ├── secret.go │ │ │ ├── service.go │ │ │ ├── service_expansion.go │ │ │ ├── serviceaccount.go │ │ │ └── serviceaccount_expansion.go │ │ ├── events │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── event.go │ │ │ ├── events_client.go │ │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_event.go │ │ │ └── fake_events_client.go │ │ │ └── generated_expansion.go │ │ ├── extensions │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── daemonset.go │ │ │ ├── deployment.go │ │ │ ├── deployment_expansion.go │ │ │ ├── doc.go │ │ │ ├── extensions_client.go │ │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_daemonset.go │ │ │ ├── fake_deployment.go │ │ │ ├── fake_deployment_expansion.go │ │ │ ├── fake_extensions_client.go │ │ │ ├── fake_ingress.go │ │ │ ├── fake_podsecuritypolicy.go │ │ │ ├── fake_replicaset.go │ │ │ ├── fake_scale.go │ │ │ └── fake_scale_expansion.go │ │ │ ├── generated_expansion.go │ │ │ ├── ingress.go │ │ │ ├── podsecuritypolicy.go │ │ │ ├── replicaset.go │ │ │ ├── scale.go │ │ │ └── scale_expansion.go │ │ ├── networking │ │ └── v1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_networking_client.go │ │ │ └── fake_networkpolicy.go │ │ │ ├── generated_expansion.go │ │ │ ├── networking_client.go │ │ │ └── networkpolicy.go │ │ ├── policy │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── eviction.go │ │ │ ├── eviction_expansion.go │ │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_eviction.go │ │ │ ├── fake_eviction_expansion.go │ │ │ ├── fake_poddisruptionbudget.go │ │ │ ├── fake_podsecuritypolicy.go │ │ │ └── fake_policy_client.go │ │ │ ├── generated_expansion.go │ │ │ ├── poddisruptionbudget.go │ │ │ ├── podsecuritypolicy.go │ │ │ └── policy_client.go │ │ ├── rbac │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_clusterrole.go │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ ├── fake_rbac_client.go │ │ │ │ ├── fake_role.go │ │ │ │ └── fake_rolebinding.go │ │ │ ├── generated_expansion.go │ │ │ ├── rbac_client.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fake_clusterrole.go │ │ │ │ ├── fake_clusterrolebinding.go │ │ │ │ ├── fake_rbac_client.go │ │ │ │ ├── fake_role.go │ │ │ │ └── fake_rolebinding.go │ │ │ ├── generated_expansion.go │ │ │ ├── rbac_client.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_clusterrole.go │ │ │ ├── fake_clusterrolebinding.go │ │ │ ├── fake_rbac_client.go │ │ │ ├── fake_role.go │ │ │ └── fake_rolebinding.go │ │ │ ├── generated_expansion.go │ │ │ ├── rbac_client.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ ├── scheduling │ │ └── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_priorityclass.go │ │ │ └── fake_scheduling_client.go │ │ │ ├── generated_expansion.go │ │ │ ├── priorityclass.go │ │ │ └── scheduling_client.go │ │ ├── settings │ │ └── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_podpreset.go │ │ │ └── fake_settings_client.go │ │ │ ├── generated_expansion.go │ │ │ ├── podpreset.go │ │ │ └── settings_client.go │ │ └── storage │ │ ├── v1 │ │ ├── BUILD │ │ ├── doc.go │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_storage_client.go │ │ │ └── fake_storageclass.go │ │ ├── generated_expansion.go │ │ ├── storage_client.go │ │ └── storageclass.go │ │ ├── v1alpha1 │ │ ├── BUILD │ │ ├── doc.go │ │ ├── fake │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── fake_storage_client.go │ │ │ └── fake_volumeattachment.go │ │ ├── generated_expansion.go │ │ ├── storage_client.go │ │ └── volumeattachment.go │ │ └── v1beta1 │ │ ├── BUILD │ │ ├── doc.go │ │ ├── fake │ │ ├── BUILD │ │ ├── doc.go │ │ ├── fake_storage_client.go │ │ ├── fake_storageclass.go │ │ └── fake_volumeattachment.go │ │ ├── generated_expansion.go │ │ ├── storage_client.go │ │ ├── storageclass.go │ │ └── volumeattachment.go │ ├── listers │ ├── admissionregistration │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ └── initializerconfiguration.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ ├── mutatingwebhookconfiguration.go │ │ │ └── validatingwebhookconfiguration.go │ ├── apps │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── daemonset_expansion.go │ │ │ ├── deployment.go │ │ │ ├── deployment_expansion.go │ │ │ ├── expansion_generated.go │ │ │ ├── replicaset.go │ │ │ ├── replicaset_expansion.go │ │ │ ├── statefulset.go │ │ │ └── statefulset_expansion.go │ │ ├── v1beta1 │ │ │ ├── BUILD │ │ │ ├── controllerrevision.go │ │ │ ├── deployment.go │ │ │ ├── expansion_generated.go │ │ │ ├── scale.go │ │ │ ├── statefulset.go │ │ │ └── statefulset_expansion.go │ │ └── v1beta2 │ │ │ ├── BUILD │ │ │ ├── controllerrevision.go │ │ │ ├── daemonset.go │ │ │ ├── daemonset_expansion.go │ │ │ ├── deployment.go │ │ │ ├── deployment_expansion.go │ │ │ ├── expansion_generated.go │ │ │ ├── replicaset.go │ │ │ ├── replicaset_expansion.go │ │ │ ├── scale.go │ │ │ ├── statefulset.go │ │ │ └── statefulset_expansion.go │ ├── authentication │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ └── tokenreview.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ └── tokenreview.go │ ├── authorization │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ ├── localsubjectaccessreview.go │ │ │ ├── selfsubjectaccessreview.go │ │ │ ├── selfsubjectrulesreview.go │ │ │ └── subjectaccessreview.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ ├── localsubjectaccessreview.go │ │ │ ├── selfsubjectaccessreview.go │ │ │ ├── selfsubjectrulesreview.go │ │ │ └── subjectaccessreview.go │ ├── autoscaling │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ └── horizontalpodautoscaler.go │ │ └── v2beta1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ └── horizontalpodautoscaler.go │ ├── batch │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ ├── job.go │ │ │ └── job_expansion.go │ │ ├── v1beta1 │ │ │ ├── BUILD │ │ │ ├── cronjob.go │ │ │ └── expansion_generated.go │ │ └── v2alpha1 │ │ │ ├── BUILD │ │ │ ├── cronjob.go │ │ │ └── expansion_generated.go │ ├── certificates │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── certificatesigningrequest.go │ │ │ └── expansion_generated.go │ ├── core │ │ └── v1 │ │ │ ├── BUILD │ │ │ ├── componentstatus.go │ │ │ ├── configmap.go │ │ │ ├── endpoints.go │ │ │ ├── event.go │ │ │ ├── expansion_generated.go │ │ │ ├── limitrange.go │ │ │ ├── namespace.go │ │ │ ├── node.go │ │ │ ├── node_expansion.go │ │ │ ├── persistentvolume.go │ │ │ ├── persistentvolumeclaim.go │ │ │ ├── pod.go │ │ │ ├── podtemplate.go │ │ │ ├── replicationcontroller.go │ │ │ ├── replicationcontroller_expansion.go │ │ │ ├── resourcequota.go │ │ │ ├── secret.go │ │ │ ├── service.go │ │ │ ├── service_expansion.go │ │ │ └── serviceaccount.go │ ├── events │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── event.go │ │ │ └── expansion_generated.go │ ├── extensions │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── daemonset.go │ │ │ ├── daemonset_expansion.go │ │ │ ├── daemonset_expansion_test.go │ │ │ ├── deployment.go │ │ │ ├── deployment_expansion.go │ │ │ ├── expansion_generated.go │ │ │ ├── ingress.go │ │ │ ├── podsecuritypolicy.go │ │ │ ├── replicaset.go │ │ │ ├── replicaset_expansion.go │ │ │ └── scale.go │ ├── imagepolicy │ │ └── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ └── imagereview.go │ ├── networking │ │ └── v1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ └── networkpolicy.go │ ├── policy │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── eviction.go │ │ │ ├── expansion_generated.go │ │ │ ├── poddisruptionbudget.go │ │ │ ├── poddisruptionbudget_expansion.go │ │ │ └── podsecuritypolicy.go │ ├── rbac │ │ ├── v1 │ │ │ ├── BUILD │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── expansion_generated.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── expansion_generated.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ │ └── v1beta1 │ │ │ ├── BUILD │ │ │ ├── clusterrole.go │ │ │ ├── clusterrolebinding.go │ │ │ ├── expansion_generated.go │ │ │ ├── role.go │ │ │ └── rolebinding.go │ ├── scheduling │ │ └── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ └── priorityclass.go │ ├── settings │ │ └── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── expansion_generated.go │ │ │ └── podpreset.go │ └── storage │ │ ├── v1 │ │ ├── BUILD │ │ ├── expansion_generated.go │ │ └── storageclass.go │ │ ├── v1alpha1 │ │ ├── BUILD │ │ ├── expansion_generated.go │ │ └── volumeattachment.go │ │ └── v1beta1 │ │ ├── BUILD │ │ ├── expansion_generated.go │ │ ├── storageclass.go │ │ └── volumeattachment.go │ ├── pkg │ ├── apis │ │ └── clientauthentication │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── install │ │ │ ├── BUILD │ │ │ └── install.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── v1alpha1 │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── zz_generated.conversion.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.defaults.go │ │ │ └── zz_generated.deepcopy.go │ └── version │ │ ├── .gitattributes │ │ ├── BUILD │ │ ├── base.go │ │ ├── def.bzl │ │ ├── doc.go │ │ └── version.go │ ├── plugin │ └── pkg │ │ └── client │ │ └── auth │ │ ├── BUILD │ │ ├── azure │ │ ├── BUILD │ │ ├── README.md │ │ ├── azure.go │ │ └── azure_test.go │ │ ├── exec │ │ ├── BUILD │ │ ├── exec.go │ │ ├── exec_test.go │ │ └── testdata │ │ │ └── test-plugin.sh │ │ ├── gcp │ │ ├── BUILD │ │ ├── OWNERS │ │ ├── gcp.go │ │ └── gcp_test.go │ │ ├── oidc │ │ ├── BUILD │ │ ├── OWNERS │ │ ├── oidc.go │ │ └── oidc_test.go │ │ ├── openstack │ │ ├── BUILD │ │ ├── openstack.go │ │ └── openstack_test.go │ │ └── plugins.go │ ├── rest │ ├── BUILD │ ├── OWNERS │ ├── client.go │ ├── client_test.go │ ├── config.go │ ├── config_test.go │ ├── fake │ │ ├── BUILD │ │ └── fake.go │ ├── plugin.go │ ├── plugin_test.go │ ├── request.go │ ├── request_test.go │ ├── transport.go │ ├── url_utils.go │ ├── url_utils_test.go │ ├── urlbackoff.go │ ├── urlbackoff_test.go │ ├── watch │ │ ├── BUILD │ │ ├── decoder.go │ │ ├── decoder_test.go │ │ ├── encoder.go │ │ └── encoder_test.go │ └── zz_generated.deepcopy.go │ ├── scale │ ├── BUILD │ ├── client.go │ ├── client_test.go │ ├── doc.go │ ├── fake │ │ ├── BUILD │ │ └── client.go │ ├── interfaces.go │ ├── roundtrip_test.go │ ├── scheme │ │ ├── BUILD │ │ ├── appsint │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ └── register.go │ │ ├── appsv1beta1 │ │ │ ├── BUILD │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ └── zz_generated.conversion.go │ │ ├── appsv1beta2 │ │ │ ├── BUILD │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ └── zz_generated.conversion.go │ │ ├── autoscalingv1 │ │ │ ├── BUILD │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ └── zz_generated.conversion.go │ │ ├── doc.go │ │ ├── extensionsint │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ └── register.go │ │ ├── extensionsv1beta1 │ │ │ ├── BUILD │ │ │ ├── conversion.go │ │ │ ├── doc.go │ │ │ ├── register.go │ │ │ └── zz_generated.conversion.go │ │ ├── register.go │ │ ├── types.go │ │ └── zz_generated.deepcopy.go │ └── util.go │ ├── testing │ ├── BUILD │ ├── actions.go │ ├── fake.go │ ├── fixture.go │ └── fixture_test.go │ ├── third_party │ └── forked │ │ └── golang │ │ └── template │ │ ├── BUILD │ │ ├── exec.go │ │ └── funcs.go │ ├── tools │ ├── auth │ │ ├── BUILD │ │ ├── clientauth.go │ │ └── clientauth_test.go │ ├── bootstrap │ │ └── token │ │ │ ├── api │ │ │ ├── BUILD │ │ │ ├── OWNERS │ │ │ ├── doc.go │ │ │ └── types.go │ │ │ └── util │ │ │ ├── BUILD │ │ │ ├── helpers.go │ │ │ └── helpers_test.go │ ├── cache │ │ ├── BUILD │ │ ├── OWNERS │ │ ├── controller.go │ │ ├── controller_test.go │ │ ├── delta_fifo.go │ │ ├── delta_fifo_test.go │ │ ├── doc.go │ │ ├── expiration_cache.go │ │ ├── expiration_cache_fakes.go │ │ ├── expiration_cache_test.go │ │ ├── fake_custom_store.go │ │ ├── fifo.go │ │ ├── fifo_test.go │ │ ├── heap.go │ │ ├── heap_test.go │ │ ├── index.go │ │ ├── index_test.go │ │ ├── listers.go │ │ ├── listwatch.go │ │ ├── mutation_cache.go │ │ ├── mutation_detector.go │ │ ├── mutation_detector_test.go │ │ ├── processor_listener_test.go │ │ ├── reflector.go │ │ ├── reflector_metrics.go │ │ ├── reflector_test.go │ │ ├── shared_informer.go │ │ ├── shared_informer_test.go │ │ ├── store.go │ │ ├── store_test.go │ │ ├── testing │ │ │ ├── BUILD │ │ │ ├── fake_controller_source.go │ │ │ └── fake_controller_source_test.go │ │ ├── thread_safe_store.go │ │ ├── undelta_store.go │ │ └── undelta_store_test.go │ ├── clientcmd │ │ ├── BUILD │ │ ├── api │ │ │ ├── BUILD │ │ │ ├── doc.go │ │ │ ├── helpers.go │ │ │ ├── helpers_test.go │ │ │ ├── latest │ │ │ │ ├── BUILD │ │ │ │ └── latest.go │ │ │ ├── register.go │ │ │ ├── types.go │ │ │ ├── types_test.go │ │ │ ├── v1 │ │ │ │ ├── BUILD │ │ │ │ ├── conversion.go │ │ │ │ ├── doc.go │ │ │ │ ├── register.go │ │ │ │ ├── types.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ └── zz_generated.deepcopy.go │ │ ├── auth_loaders.go │ │ ├── client_config.go │ │ ├── client_config_test.go │ │ ├── config.go │ │ ├── doc.go │ │ ├── flag.go │ │ ├── helpers.go │ │ ├── loader.go │ │ ├── loader_test.go │ │ ├── merged_client_builder.go │ │ ├── merged_client_builder_test.go │ │ ├── overrides.go │ │ ├── overrides_test.go │ │ ├── validation.go │ │ └── validation_test.go │ ├── leaderelection │ │ ├── BUILD │ │ ├── OWNERS │ │ ├── leaderelection.go │ │ ├── leaderelection_test.go │ │ └── resourcelock │ │ │ ├── BUILD │ │ │ ├── configmaplock.go │ │ │ ├── endpointslock.go │ │ │ └── interface.go │ ├── metrics │ │ ├── BUILD │ │ ├── OWNERS │ │ └── metrics.go │ ├── pager │ │ ├── BUILD │ │ ├── pager.go │ │ └── pager_test.go │ ├── portforward │ │ ├── BUILD │ │ ├── doc.go │ │ ├── portforward.go │ │ └── portforward_test.go │ ├── record │ │ ├── BUILD │ │ ├── OWNERS │ │ ├── doc.go │ │ ├── event.go │ │ ├── event_test.go │ │ ├── events_cache.go │ │ ├── events_cache_test.go │ │ └── fake.go │ ├── reference │ │ ├── BUILD │ │ └── ref.go │ └── remotecommand │ │ ├── BUILD │ │ ├── doc.go │ │ ├── errorstream.go │ │ ├── remotecommand.go │ │ ├── resize.go │ │ ├── v1.go │ │ ├── v2.go │ │ ├── v2_test.go │ │ ├── v3.go │ │ ├── v4.go │ │ └── v4_test.go │ ├── transport │ ├── BUILD │ ├── OWNERS │ ├── cache.go │ ├── cache_test.go │ ├── config.go │ ├── round_trippers.go │ ├── round_trippers_test.go │ ├── spdy │ │ ├── BUILD │ │ └── spdy.go │ ├── transport.go │ └── transport_test.go │ └── util │ ├── buffer │ ├── BUILD │ ├── ring_growing.go │ └── ring_growing_test.go │ ├── cert │ ├── BUILD │ ├── cert.go │ ├── csr.go │ ├── csr_test.go │ ├── io.go │ ├── pem.go │ ├── pem_test.go │ ├── testdata │ │ └── dontUseThisKey.pem │ └── triple │ │ ├── BUILD │ │ └── triple.go │ ├── certificate │ ├── BUILD │ ├── OWNERS │ ├── certificate_manager.go │ ├── certificate_manager_test.go │ ├── certificate_store.go │ ├── certificate_store_test.go │ └── csr │ │ ├── BUILD │ │ ├── csr.go │ │ └── csr_test.go │ ├── exec │ ├── BUILD │ └── exec.go │ ├── flowcontrol │ ├── BUILD │ ├── backoff.go │ ├── backoff_test.go │ ├── throttle.go │ └── throttle_test.go │ ├── homedir │ ├── BUILD │ └── homedir.go │ ├── integer │ ├── BUILD │ ├── integer.go │ └── integer_test.go │ ├── jsonpath │ ├── BUILD │ ├── doc.go │ ├── jsonpath.go │ ├── jsonpath_test.go │ ├── node.go │ ├── parser.go │ └── parser_test.go │ ├── retry │ ├── BUILD │ ├── OWNERS │ ├── util.go │ └── util_test.go │ ├── testing │ ├── BUILD │ ├── fake_handler.go │ ├── fake_handler_test.go │ └── tmpdir.go │ └── workqueue │ ├── BUILD │ ├── default_rate_limiters.go │ ├── default_rate_limiters_test.go │ ├── delaying_queue.go │ ├── delaying_queue_test.go │ ├── doc.go │ ├── metrics.go │ ├── parallelizer.go │ ├── queue.go │ ├── queue_test.go │ ├── rate_limitting_queue.go │ └── rate_limitting_queue_test.go └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/LICENSE -------------------------------------------------------------------------------- /Lesson01/blue-green.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson01/blue-green.yaml -------------------------------------------------------------------------------- /Lesson01/init-container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson01/init-container.yaml -------------------------------------------------------------------------------- /Lesson01/inject.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson01/inject.yaml -------------------------------------------------------------------------------- /Lesson01/recreate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson01/recreate.yaml -------------------------------------------------------------------------------- /Lesson01/rolling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson01/rolling.yaml -------------------------------------------------------------------------------- /Lesson01/sidecar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson01/sidecar.yaml -------------------------------------------------------------------------------- /Lesson02/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/.gitignore -------------------------------------------------------------------------------- /Lesson02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/README.md -------------------------------------------------------------------------------- /Lesson02/go/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/Dockerfile -------------------------------------------------------------------------------- /Lesson02/go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/Makefile -------------------------------------------------------------------------------- /Lesson02/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/README.md -------------------------------------------------------------------------------- /Lesson02/go/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/glide.lock -------------------------------------------------------------------------------- /Lesson02/go/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/glide.yaml -------------------------------------------------------------------------------- /Lesson02/go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/main.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/.travis.yml -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/AUTHORS -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/CONTRIBUTING.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/CONTRIBUTORS -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/README.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/appveyor.yml -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/bigquery/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/bigquery/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/bigquery/gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/bigquery/gcs.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/bigquery/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/bigquery/job.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/bigtable/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/bigtable/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/bigtable/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/bigtable/gc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/cloud.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/datastore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/datastore/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/datastore/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/datastore/key.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/errors/errors.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/key.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/key.json.enc -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/license_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/license_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/pubsub/acker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/pubsub/acker.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/pubsub/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/pubsub/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/pubsub/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/pubsub/pubsub.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/pubsub/puller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/pubsub/puller.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/pubsub/topic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/pubsub/topic.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/storage/acl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/storage/acl.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/trace/trace.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/vision/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/vision/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/vision/face.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/vision/face.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/vision/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/vision/image.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/vision/latlng.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/vision/latlng.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/cloud.google.com/go/vision/vision.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/cloud.google.com/go/vision/vision.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/ghodss/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/ghodss/yaml/.gitignore -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/ghodss/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/ghodss/yaml/.travis.yml -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/ghodss/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/ghodss/yaml/README.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/ghodss/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/ghodss/yaml/fields.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/ghodss/yaml/yaml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/ghodss/yaml/yaml_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/gogo/protobuf/.gitignore -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/gogo/protobuf/.mailmap -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/gogo/protobuf/.travis.yml -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/gogo/protobuf/Makefile -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/gogo/protobuf/README -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/gogo/protobuf/Readme.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/bench.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/gogo/protobuf/bench.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/io/full.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/gogo/protobuf/io/full.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/io/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/gogo/protobuf/io/io.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/protoc-gen-gogo/testdata/multi/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/test/.gitignore: -------------------------------------------------------------------------------- 1 | *.dat 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/test/dashfilename/doc.go: -------------------------------------------------------------------------------- 1 | package dashfilename 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/test/defaultconflict/doc.go: -------------------------------------------------------------------------------- 1 | package defaultcheck 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/test/embedconflict/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/test/embedconflict/doc.go: -------------------------------------------------------------------------------- 1 | package embedconflict 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/test/mapsproto2/doc.go: -------------------------------------------------------------------------------- 1 | package mapsproto2 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/test/oneof/doc.go: -------------------------------------------------------------------------------- 1 | package one 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/test/oneof3/doc.go: -------------------------------------------------------------------------------- 1 | package oneof3 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/test/packed/doc.go: -------------------------------------------------------------------------------- 1 | package packed 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/test/t.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/gogo/protobuf/test/t.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/test/tags/doc.go: -------------------------------------------------------------------------------- 1 | package tags 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/test/theproto3/doc.go: -------------------------------------------------------------------------------- 1 | package theproto3 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/vanity/test/doc.go: -------------------------------------------------------------------------------- 1 | package test 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/gogo/protobuf/vanity/test/gofast/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/golang/glog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/golang/glog/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/golang/glog/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/golang/glog/README -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/golang/glog/glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/golang/glog/glog.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/golang/glog/glog_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/golang/glog/glog_file.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/golang/glog/glog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/golang/glog/glog_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/golang/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/golang/protobuf/Makefile -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/golang/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/golang/protobuf/README.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/google/gofuzz/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/google/gofuzz/.travis.yml -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/google/gofuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/google/gofuzz/README.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/google/gofuzz/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/google/gofuzz/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/google/gofuzz/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/google/gofuzz/fuzz.go -------------------------------------------------------------------------------- /Lesson02/go/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 | -------------------------------------------------------------------------------- /Lesson02/go/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 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/howeyc/gopass/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/howeyc/gopass/.travis.yml -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/howeyc/gopass/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/howeyc/gopass/LICENSE.txt -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/howeyc/gopass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/howeyc/gopass/README.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/howeyc/gopass/pass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/howeyc/gopass/pass.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/howeyc/gopass/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/howeyc/gopass/terminal.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/imdario/mergo/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/imdario/mergo/.travis.yml -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/imdario/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/imdario/mergo/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/imdario/mergo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/imdario/mergo/README.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/imdario/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/imdario/mergo/merge.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/imdario/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/imdario/mergo/mergo.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/json-iterator/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/json-iterator/go/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/json-iterator/go/build.sh -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/json-iterator/go/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/json-iterator/go/test.sh -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/bool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/bool_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/count_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/count_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/flag_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/ip_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/ipnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/ipnet_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/github.com/spf13/pflag/verify/all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/github.com/spf13/pflag/verify/all.sh -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/.gitattributes -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/.gitignore -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/CONTRIBUTING.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/README.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/acme/jws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/acme/jws_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/acme/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/acme/types.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/bcrypt/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/bcrypt/base64.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/bcrypt/bcrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/bcrypt/bcrypt.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/bn256/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/bn256/bn256.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/bn256/curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/bn256/curve.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/bn256/gfp12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/bn256/gfp12.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/bn256/gfp2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/bn256/gfp2.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/bn256/gfp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/bn256/gfp6.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/bn256/optate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/bn256/optate.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/bn256/twist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/bn256/twist.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/cast5/cast5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/cast5/cast5.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/md4/md4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/md4/md4_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/md4/md4block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/md4/md4block.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/nacl/box/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/nacl/box/box.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/openpgp/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/openpgp/keys.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/openpgp/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/openpgp/read.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/openpgp/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/openpgp/write.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/otr/otr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/otr/otr.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/otr/otr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/otr/otr_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/otr/smp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/otr/smp.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/pkcs12/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/pkcs12/crypto.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/pkcs12/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/pkcs12/errors.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/pkcs12/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/pkcs12/mac.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/pkcs12/pbkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/pkcs12/pbkdf.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/pkcs12/pkcs12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/pkcs12/pkcs12.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/scrypt/scrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/scrypt/scrypt.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/sha3/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/sha3/hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/sha3/hashes.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/sha3/keccakf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/sha3/keccakf.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/sha3/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/sha3/register.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/sha3/shake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/sha3/shake.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/sha3/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/sha3/xor.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/handshake.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/kex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/kex_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/keys_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/messages.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/mux_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/test/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/ssh/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/ssh/transport.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/tea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/tea/cipher.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/tea/tea_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/tea/tea_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/xtea/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/xtea/block.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/xtea/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/xtea/cipher.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/xts/xts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/xts/xts.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/crypto/xts/xts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/crypto/xts/xts_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/README -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/bpf/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/bpf/constants.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/bpf/instructions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/bpf/instructions.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/bpf/setter.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/bpf/vm_bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/bpf/vm_bpf_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/bpf/vm_jump_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/bpf/vm_jump_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/bpf/vm_load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/bpf/vm_load_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/bpf/vm_ret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/bpf/vm_ret_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/bpf/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/bpf/vm_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/context/pre_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/context/pre_go19.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/h2i/h2i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/http2/h2i/h2i.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/icmp/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/icmp/endpoint.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv4/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv4/bpf_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv4/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv4/dgramopt.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv4/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv4/endpoint.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv4/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv4/sys_bpf.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv4/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv4/sys_stub.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv6/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv6/bpf_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv6/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv6/dgramopt.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv6/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv6/endpoint.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv6/icmp_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv6/icmp_bsd.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv6/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv6/sys_bpf.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/ipv6/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/ipv6/sys_stub.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/lif/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/lif/address.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/lif/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/lif/binary.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/lif/lif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/lif/lif.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/lif/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/lif/link.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/lif/link_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/lif/link_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/lif/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/lif/sys.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/lif/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/lif/syscall.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/route/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/route/address.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/route/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/route/binary.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/route/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/route/message.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/route/route.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/route/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/route/sys.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/route/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/route/syscall.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/oauth2/.travis.yml -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/oauth2/AUTHORS -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/oauth2/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/oauth2/CONTRIBUTORS -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/oauth2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/oauth2/README.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/oauth2/google/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/oauth2/google/jwt.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/oauth2/google/sdk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/oauth2/google/sdk.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/oauth2/google/testdata/gcloud/properties: -------------------------------------------------------------------------------- 1 | [core] 2 | account = bar@example.com -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/oauth2/jws/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/oauth2/jws/jws.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/oauth2/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/oauth2/jwt/jwt.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/oauth2/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/oauth2/oauth2.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/oauth2/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/oauth2/token.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/oauth2/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/oauth2/token_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/oauth2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/oauth2/transport.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/oauth2/uber/uber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/oauth2/uber/uber.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/oauth2/vk/vk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/oauth2/vk/vk.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/.gitattributes -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/.gitignore -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/CONTRIBUTING.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/README.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/unix/flock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/unix/flock.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/.gitattributes -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/.gitignore -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/CONTRIBUTING.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/README -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/cases/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/cases/gen.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/cases/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/cases/tables.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/collate/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/collate/sort.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/currency/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/currency/gen.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/gen.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/internal/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/internal/gen.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/search/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/search/index.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/secure/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/secure/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/unicode/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/unicode/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/width/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/width/gen.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/width/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/width/tables.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/time/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/time/AUTHORS -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/time/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/time/CONTRIBUTING.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/time/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/time/CONTRIBUTORS -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/time/README: -------------------------------------------------------------------------------- 1 | This repository provides supplementary Go time packages. 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/golang.org/x/time/rate/rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/golang.org/x/time/rate/rate.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/inf.v0/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/inf.v0/benchmark_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/inf.v0/dec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/inf.v0/dec.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/inf.v0/dec_go1_2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/inf.v0/dec_go1_2_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/inf.v0/dec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/inf.v0/dec_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/inf.v0/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/inf.v0/example_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/inf.v0/rounder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/inf.v0/rounder.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/inf.v0/rounder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/inf.v0/rounder_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/CONTRIBUTING.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/Godeps/Godeps.json -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/Godeps/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/Godeps/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/Godeps/Readme -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/README.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/apps/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/apps/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/apps/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/apps/v1/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/apps/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/apps/v1/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/apps/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/apps/v1/register.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/apps/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/apps/v1/types.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/apps/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/apps/v1beta1/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/apps/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/apps/v1beta1/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/apps/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/apps/v1beta1/types.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/apps/v1beta2/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/apps/v1beta2/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/apps/v1beta2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/apps/v1beta2/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/apps/v1beta2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/apps/v1beta2/types.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/authentication/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/authentication/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/authorization/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/authorization/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/authorization/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/authorization/v1/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/autoscaling/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/autoscaling/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/autoscaling/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/autoscaling/v1/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/autoscaling/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/autoscaling/v1/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/batch/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/batch/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/batch/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/batch/v1/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/batch/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/batch/v1/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/batch/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/batch/v1/register.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/batch/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/batch/v1/types.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/batch/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/batch/v1beta1/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/batch/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/batch/v1beta1/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/batch/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/batch/v1beta1/types.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/batch/v2alpha1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/batch/v2alpha1/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/batch/v2alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/batch/v2alpha1/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/certificates/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/certificates/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/code-of-conduct.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/core/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/core/v1/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/core/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/core/v1/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/core/v1/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/core/v1/meta.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/core/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/core/v1/register.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/core/v1/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/core/v1/resource.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/core/v1/taint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/core/v1/taint.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/core/v1/taint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/core/v1/taint_test.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/core/v1/toleration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/core/v1/toleration.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/core/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/core/v1/types.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/events/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/events/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/events/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/events/v1beta1/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/events/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/events/v1beta1/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/extensions/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/extensions/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/imagepolicy/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/imagepolicy/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/networking/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/networking/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/networking/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/networking/v1/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/networking/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/networking/v1/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/networking/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/networking/v1/types.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/policy/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/policy/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/policy/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/policy/v1beta1/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/policy/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/policy/v1beta1/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/rbac/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/rbac/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/rbac/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/rbac/v1/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/rbac/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/rbac/v1/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/rbac/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/rbac/v1/register.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/rbac/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/rbac/v1/types.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/rbac/v1alpha1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/rbac/v1alpha1/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/rbac/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/rbac/v1alpha1/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/rbac/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/rbac/v1alpha1/types.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/rbac/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/rbac/v1beta1/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/rbac/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/rbac/v1beta1/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/rbac/v1beta1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/rbac/v1beta1/types.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/storage/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - mbohlool 4 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/storage/v1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/storage/v1/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/storage/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/storage/v1/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/storage/v1/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/storage/v1/register.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/storage/v1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/storage/v1/types.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/storage/v1alpha1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/storage/v1alpha1/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/storage/v1beta1/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/storage/v1beta1/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/api/storage/v1beta1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/api/storage/v1beta1/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/apimachinery/Godeps/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/apimachinery/Godeps/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/apimachinery/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/apimachinery/Godeps/Readme -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/apimachinery/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/apimachinery/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/apimachinery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/apimachinery/README.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/apimachinery/pkg/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/apimachinery/pkg/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/.travis.yml -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/CHANGELOG.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/CONTRIBUTING.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/Godeps/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/Godeps/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/Godeps/Readme -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/INSTALL.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/README.md -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/discovery/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/discovery/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/dynamic/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/dynamic/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/informers/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/informers/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/kubernetes/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/kubernetes/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/rest/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/rest/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/rest/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/rest/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/rest/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/rest/client.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/rest/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/rest/config.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/rest/fake/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/rest/fake/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/rest/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/rest/plugin.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/rest/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/rest/request.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/rest/watch/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/rest/watch/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/scale/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/scale/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/scale/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/scale/client.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/scale/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/scale/doc.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/scale/fake/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/scale/fake/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/scale/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/scale/util.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/testing/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/testing/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/testing/fake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/testing/fake.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/tools/auth/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/tools/auth/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/transport/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/transport/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/transport/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/transport/OWNERS -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/util/cert/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/util/cert/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/util/cert/csr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/util/cert/csr.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/util/cert/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/util/cert/io.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/util/cert/pem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/util/cert/pem.go -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/util/exec/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/util/exec/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/util/retry/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/go/vendor/k8s.io/client-go/util/retry/BUILD -------------------------------------------------------------------------------- /Lesson02/go/vendor/k8s.io/client-go/util/retry/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - caesarxuchao 3 | -------------------------------------------------------------------------------- /Lesson02/python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/python/Dockerfile -------------------------------------------------------------------------------- /Lesson02/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/python/Makefile -------------------------------------------------------------------------------- /Lesson02/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/python/README.md -------------------------------------------------------------------------------- /Lesson02/python/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson02/python/client.py -------------------------------------------------------------------------------- /Lesson03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/README.md -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-operator-example/.gitignore -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-operator-example/Gopkg.lock -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-operator-example/Gopkg.toml -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-operator-example/README.md -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-operator-example/config/config.yaml -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/deploy/cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-operator-example/deploy/cr.yaml -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/deploy/crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-operator-example/deploy/crd.yaml -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/deploy/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-operator-example/deploy/operator.yaml -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/pkg/apis/k8s/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-operator-example/pkg/apis/k8s/v1/doc.go -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/pkg/stub/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-operator-example/pkg/stub/handler.go -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/tmp/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-operator-example/tmp/build/Dockerfile -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/tmp/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-operator-example/tmp/build/build.sh -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/tmp/codegen/boilerplate.go.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/emicklei/go-restful/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.x 5 | 6 | script: go test -v -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/emicklei/go-restful/Srcfile: -------------------------------------------------------------------------------- 1 | {"SkipDirs": ["examples"]} 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/emicklei/go-restful/examples/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/emicklei/go-restful/examples/google_app_engine/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/emicklei/go-restful/examples/google_app_engine/datastore/.goconvey: -------------------------------------------------------------------------------- 1 | ignore -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/go-openapi/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/go-openapi/spec/fixtures/specs/deeper/stringProp.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "string" 3 | } -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/protoc-gen-gogo/testdata/multi/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/test/.gitignore: -------------------------------------------------------------------------------- 1 | *.dat 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/test/dashfilename/doc.go: -------------------------------------------------------------------------------- 1 | package dashfilename 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/test/defaultconflict/doc.go: -------------------------------------------------------------------------------- 1 | package defaultcheck 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/test/embedconflict/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/test/embedconflict/doc.go: -------------------------------------------------------------------------------- 1 | package embedconflict 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/test/issue270/doc.go: -------------------------------------------------------------------------------- 1 | package issue270 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/test/jsonpb-gogo/jsonpb_gogo.go: -------------------------------------------------------------------------------- 1 | package jsonpb_gogo 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/test/mapsproto2/doc.go: -------------------------------------------------------------------------------- 1 | package mapsproto2 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/test/mixbench/.gitignore: -------------------------------------------------------------------------------- 1 | mixbench -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/test/oneof/doc.go: -------------------------------------------------------------------------------- 1 | package one 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/test/oneof3/doc.go: -------------------------------------------------------------------------------- 1 | package oneof3 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/test/packed/doc.go: -------------------------------------------------------------------------------- 1 | package packed 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/test/sizerconflict/doc.go: -------------------------------------------------------------------------------- 1 | package sizerconflict 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/test/tags/doc.go: -------------------------------------------------------------------------------- 1 | package tags 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/test/theproto3/doc.go: -------------------------------------------------------------------------------- 1 | package theproto3 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/vanity/test/doc.go: -------------------------------------------------------------------------------- 1 | package test 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/gogo/protobuf/vanity/test/gofast/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/golang/protobuf/conformance/conformance.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd $(dirname $0) 4 | exec go run conformance.go $* 5 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/google/btree/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/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 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/mailru/easyjson/.gitignore: -------------------------------------------------------------------------------- 1 | .root 2 | *_easyjson.go 3 | *.iml 4 | .idea 5 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/mailru/easyjson/tests/nothing.go: -------------------------------------------------------------------------------- 1 | package tests 2 | 3 | // No structs in this file 4 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/k8s.io/api/storage/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - mbohlool 4 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/k8s.io/client-go/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-operator-example/vendor/k8s.io/client-go/util/retry/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - caesarxuchao 3 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-scheduler-example/.gitignore -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-scheduler-example/Dockerfile -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-scheduler-example/Makefile -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-scheduler-example/README.md -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/deploy/pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-scheduler-example/deploy/pod.yaml -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/deploy/scheduler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-scheduler-example/deploy/scheduler.yaml -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-scheduler-example/glide.lock -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-scheduler-example/glide.yaml -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/Lesson03/k8s-scheduler-example/main.go -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/github.com/gogo/protobuf/protoc-gen-gogo/testdata/multi/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/github.com/gogo/protobuf/test/.gitignore: -------------------------------------------------------------------------------- 1 | *.dat 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/github.com/gogo/protobuf/test/dashfilename/doc.go: -------------------------------------------------------------------------------- 1 | package dashfilename 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/github.com/gogo/protobuf/test/defaultconflict/doc.go: -------------------------------------------------------------------------------- 1 | package defaultcheck 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/github.com/gogo/protobuf/test/embedconflict/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/github.com/gogo/protobuf/test/embedconflict/doc.go: -------------------------------------------------------------------------------- 1 | package embedconflict 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/github.com/gogo/protobuf/test/mapsproto2/doc.go: -------------------------------------------------------------------------------- 1 | package mapsproto2 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/github.com/gogo/protobuf/test/oneof/doc.go: -------------------------------------------------------------------------------- 1 | package one 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/github.com/gogo/protobuf/test/oneof3/doc.go: -------------------------------------------------------------------------------- 1 | package oneof3 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/github.com/gogo/protobuf/test/packed/doc.go: -------------------------------------------------------------------------------- 1 | package packed 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/github.com/gogo/protobuf/test/tags/doc.go: -------------------------------------------------------------------------------- 1 | package tags 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/github.com/gogo/protobuf/test/theproto3/doc.go: -------------------------------------------------------------------------------- 1 | package theproto3 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/github.com/gogo/protobuf/vanity/test/doc.go: -------------------------------------------------------------------------------- 1 | package test 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/github.com/gogo/protobuf/vanity/test/gofast/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb.go -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/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 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/golang.org/x/oauth2/google/testdata/gcloud/properties: -------------------------------------------------------------------------------- 1 | [core] 2 | account = bar@example.com -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/golang.org/x/time/README: -------------------------------------------------------------------------------- 1 | This repository provides supplementary Go time packages. 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/k8s.io/api/storage/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - deads2k 3 | - mbohlool 4 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/k8s.io/client-go/pkg/version/.gitattributes: -------------------------------------------------------------------------------- 1 | base.go export-subst 2 | -------------------------------------------------------------------------------- /Lesson03/k8s-scheduler-example/vendor/k8s.io/client-go/util/retry/OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - caesarxuchao 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrainingByPackt/Kubernetes-Design-Patterns-and-Extensions-eLearning/HEAD/README.md --------------------------------------------------------------------------------