├── .codecov.yml ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.MD ├── Gopkg.lock ├── Gopkg.toml ├── HINTS.md ├── HISTORY.md ├── LICENSE ├── Makefile ├── README.md ├── SUPPORTERS.md ├── THIRD-PARTY-MIDDLEWARE.md ├── appveyor.yml ├── cache ├── LICENSE ├── cache.go ├── cache_test.go ├── cfg │ └── cfg.go ├── client │ ├── client.go │ ├── handler.go │ ├── response_recorder.go │ ├── rule │ │ ├── chained.go │ │ ├── conditional.go │ │ ├── header.go │ │ ├── not_satisfied.go │ │ ├── rule.go │ │ ├── satisfied.go │ │ └── validator.go │ ├── ruleset.go │ └── utils.go ├── entry │ ├── entry.go │ ├── response.go │ └── util.go ├── ruleset │ └── ruleset.go └── uri │ └── uribuilder.go ├── configuration.go ├── configuration └── configuration.go ├── context.go ├── context ├── configuration.go ├── context.go ├── framework.go ├── gzip_response_writer.go ├── handler.go ├── pool.go ├── render_options.go ├── response_recorder.go ├── response_writer.go └── transaction.go ├── core ├── errors │ ├── errors.go │ ├── errors_test.go │ ├── reporter.go │ └── reporter_test.go ├── handlerconv │ ├── from_std.go │ └── from_std_test.go ├── host │ ├── proxy.go │ ├── proxy_test.go │ ├── supervisor.go │ ├── supervisor_task_example_test.go │ ├── supervisor_test.go │ ├── task.go │ └── world.go ├── memstore │ ├── memstore.go │ └── memstore_test.go ├── nettools │ ├── addr.go │ ├── addr_test.go │ ├── server.go │ └── tcp.go └── router │ ├── api_builder.go │ ├── fs.go │ ├── handler.go │ ├── macro.go │ ├── macro │ ├── LICENSE │ ├── interpreter │ │ ├── ast │ │ │ └── ast.go │ │ ├── lexer │ │ │ ├── lexer.go │ │ │ └── lexer_test.go │ │ ├── parser │ │ │ ├── parser.go │ │ │ └── parser_test.go │ │ └── token │ │ │ └── token.go │ ├── macro.go │ ├── macro_test.go │ └── template.go │ ├── mime.go │ ├── node │ └── node.go │ ├── party.go │ ├── path.go │ ├── path_test.go │ ├── route.go │ ├── router.go │ ├── router_handlers_order_test.go │ ├── router_spa_wrapper.go │ ├── router_wildcard_root_test.go │ ├── status.go │ └── status_test.go ├── coverage-tests └── fixtures │ ├── server.crt │ ├── server.key │ └── static │ ├── demo │ └── test.txt │ ├── favicon.ico │ └── test.css ├── doc.go ├── go-siris.jpg ├── go-test.sh ├── httptest ├── LICENSE ├── httptest.go ├── netutils.go └── status.go ├── sessions ├── README.md ├── couchbase │ └── sess_couchbase.go ├── ledis │ └── ledis_session.go ├── memcache │ └── sess_memcache.go ├── mysql │ └── sess_mysql.go ├── postgres │ └── sess_postgresql.go ├── redis │ └── sess_redis.go ├── sess_cookie.go ├── sess_cookie_test.go ├── sess_file.go ├── sess_file_test.go ├── sess_mem.go ├── sess_mem_test.go ├── sess_test.go ├── sess_utils.go ├── session.go ├── session_test.go ├── sessions.go └── ssdb │ └── sess_ssdb.go ├── siris.go ├── siris_deprecated.go ├── siris_test.go ├── typescript ├── AUTHORS ├── LICENSE ├── README.md ├── _examples │ ├── editor │ │ ├── main.go │ │ └── www │ │ │ ├── index.html │ │ │ └── scripts │ │ │ ├── app.ts │ │ │ └── tsconfig.json │ └── typescript │ │ ├── main.go │ │ └── www │ │ ├── index.html │ │ └── scripts │ │ ├── app.js │ │ └── app.ts ├── config.go ├── editor │ ├── config.go │ └── editor.go ├── npm │ ├── exec.go │ └── npm.go └── typescript.go ├── vendor ├── github.com │ ├── BurntSushi │ │ └── toml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── COMPATIBLE │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── _examples │ │ │ ├── example.go │ │ │ ├── example.toml │ │ │ ├── hard.toml │ │ │ ├── implicit.toml │ │ │ ├── invalid-apples.toml │ │ │ ├── invalid.toml │ │ │ ├── readme1.toml │ │ │ └── readme2.toml │ │ │ ├── cmd │ │ │ ├── toml-test-decoder │ │ │ │ ├── COPYING │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── toml-test-encoder │ │ │ │ ├── COPYING │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ └── tomlv │ │ │ │ ├── COPYING │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── decode.go │ │ │ ├── decode_meta.go │ │ │ ├── decode_test.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── encoding_types.go │ │ │ ├── encoding_types_1.1.go │ │ │ ├── lex.go │ │ │ ├── parse.go │ │ │ ├── session.vim │ │ │ ├── type_check.go │ │ │ └── type_fields.go │ ├── Joker │ │ └── jade │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── config.go │ │ │ ├── example │ │ │ ├── actions │ │ │ │ ├── main.go │ │ │ │ └── template.jade │ │ │ ├── jade.go │ │ │ ├── jade_extends │ │ │ │ ├── index.jade │ │ │ │ ├── layout.jade │ │ │ │ └── main.go │ │ │ ├── jade_include │ │ │ │ ├── foot.jade │ │ │ │ ├── head.jade │ │ │ │ ├── main.go │ │ │ │ └── template.jade │ │ │ └── template.jade │ │ │ ├── jade_lex.go │ │ │ ├── jade_node.go │ │ │ ├── jade_parse.go │ │ │ ├── jade_test.go │ │ │ ├── lex.go │ │ │ ├── node.go │ │ │ ├── parse.go │ │ │ ├── template.go │ │ │ └── testdata │ │ │ ├── attributes.html │ │ │ ├── attributes.jade │ │ │ ├── code.html │ │ │ ├── code.jade │ │ │ ├── dynamicscript.html │ │ │ ├── dynamicscript.jade │ │ │ ├── each.html │ │ │ ├── each.jade │ │ │ ├── extend-layout.html │ │ │ ├── extend-layout.jade │ │ │ ├── extend.html │ │ │ ├── extend.jade │ │ │ ├── form.html │ │ │ ├── form.jade │ │ │ ├── includes.html │ │ │ ├── includes.jade │ │ │ ├── includes │ │ │ ├── foot.jade │ │ │ ├── head.jade │ │ │ ├── scripts.jade │ │ │ └── style.css │ │ │ ├── layout.html │ │ │ ├── layout.jade │ │ │ ├── mixins.html │ │ │ ├── mixins.jade │ │ │ ├── mixins │ │ │ ├── dialog.jade │ │ │ └── profile.jade │ │ │ ├── pet.html │ │ │ ├── pet.jade │ │ │ ├── rss.html │ │ │ ├── rss.jade │ │ │ ├── text.html │ │ │ ├── text.jade │ │ │ ├── whitespace.html │ │ │ └── whitespace.jade │ ├── aead │ │ └── chacha20 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── chacha │ │ │ ├── chacha.go │ │ │ ├── chachaAVX2_amd64.s │ │ │ ├── chacha_386.go │ │ │ ├── chacha_386.s │ │ │ ├── chacha_amd64.s │ │ │ ├── chacha_generic.go │ │ │ ├── chacha_go16_amd64.go │ │ │ ├── chacha_go17_amd64.go │ │ │ ├── chacha_ref.go │ │ │ └── chacha_test.go │ │ │ ├── chacha20.go │ │ │ └── chacha20_test.go │ ├── ajg │ │ └── form │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── TODO.md │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── form.go │ │ │ ├── form_test.go │ │ │ ├── node.go │ │ │ ├── node_test.go │ │ │ └── pre-commit.sh │ ├── aymerick │ │ └── raymond │ │ │ ├── .gitmodules │ │ │ ├── .travis.yml │ │ │ ├── BENCHMARKS.md │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── VERSION │ │ │ ├── ast │ │ │ ├── node.go │ │ │ └── print.go │ │ │ ├── base_test.go │ │ │ ├── benchmark_test.go │ │ │ ├── data_frame.go │ │ │ ├── escape.go │ │ │ ├── escape_test.go │ │ │ ├── eval.go │ │ │ ├── eval_test.go │ │ │ ├── handlebars │ │ │ ├── base_test.go │ │ │ ├── basic_test.go │ │ │ ├── blocks_test.go │ │ │ ├── builtins_test.go │ │ │ ├── data_test.go │ │ │ ├── doc.go │ │ │ ├── helpers_test.go │ │ │ ├── partials_test.go │ │ │ ├── subexpressions_test.go │ │ │ └── whitespace_test.go │ │ │ ├── helper.go │ │ │ ├── helper_test.go │ │ │ ├── lexer │ │ │ ├── lexer.go │ │ │ ├── lexer_test.go │ │ │ └── token.go │ │ │ ├── mustache_test.go │ │ │ ├── parser │ │ │ ├── parser.go │ │ │ ├── parser_test.go │ │ │ └── whitespace.go │ │ │ ├── partial.go │ │ │ ├── raymond.go │ │ │ ├── raymond.png │ │ │ ├── raymond_test.go │ │ │ ├── string.go │ │ │ ├── string_test.go │ │ │ ├── template.go │ │ │ ├── template_test.go │ │ │ ├── utils.go │ │ │ └── utils_test.go │ ├── bradfitz │ │ └── gomemcache │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── memcache │ │ │ ├── memcache.go │ │ │ ├── memcache_test.go │ │ │ ├── selector.go │ │ │ └── selector_test.go │ ├── couchbase │ │ ├── go-couchbase │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── cbdatasource │ │ │ │ ├── .gitignore │ │ │ │ ├── IDEAS.md │ │ │ │ ├── README.md │ │ │ │ ├── cbdatasource.go │ │ │ │ ├── cbdatasource_test.go │ │ │ │ └── example │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── dump.go │ │ │ │ │ ├── dump_test.go │ │ │ │ │ ├── dump_windows.go │ │ │ │ │ └── main.go │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── conn_pool.go │ │ │ ├── conn_pool_test.go │ │ │ ├── ddocs.go │ │ │ ├── observe.go │ │ │ ├── perf │ │ │ │ ├── generate-json.go │ │ │ │ ├── perf.go │ │ │ │ └── readme.txt │ │ │ ├── platform │ │ │ │ ├── platform.go │ │ │ │ ├── platform_windows.go │ │ │ │ ├── sync.go │ │ │ │ ├── sync_386.go │ │ │ │ └── test │ │ │ │ │ └── test.go │ │ │ ├── pools.go │ │ │ ├── pools_test.go │ │ │ ├── populate │ │ │ │ └── populate.go │ │ │ ├── streaming.go │ │ │ ├── tap.go │ │ │ ├── tools │ │ │ │ ├── loadfile │ │ │ │ │ └── loadfile.go │ │ │ │ └── view2go │ │ │ │ │ └── view2go.go │ │ │ ├── trace │ │ │ │ ├── trace.go │ │ │ │ └── trace_test.go │ │ │ ├── upr.go │ │ │ ├── users.go │ │ │ ├── users_test.go │ │ │ ├── util.go │ │ │ ├── util │ │ │ │ └── viewmgmt.go │ │ │ ├── util_test.go │ │ │ ├── vbmap.go │ │ │ ├── vbmap_test.go │ │ │ ├── views.go │ │ │ └── views_test.go │ │ ├── gomemcached │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── client │ │ │ │ ├── example │ │ │ │ │ └── tap_example.go │ │ │ │ ├── mc.go │ │ │ │ ├── mc_test.go │ │ │ │ ├── tap_feed.go │ │ │ │ ├── tap_feed_test.go │ │ │ │ ├── transport.go │ │ │ │ ├── upr_example │ │ │ │ │ └── upr_example.go │ │ │ │ └── upr_feed.go │ │ │ ├── debug │ │ │ │ └── mcdebug.go │ │ │ ├── gocache │ │ │ │ ├── gocache.go │ │ │ │ └── mc_storage.go │ │ │ ├── mc_constants.go │ │ │ ├── mc_constants_test.go │ │ │ ├── mc_req.go │ │ │ ├── mc_req_test.go │ │ │ ├── mc_res.go │ │ │ ├── mc_res_test.go │ │ │ ├── server │ │ │ │ ├── mc_conn_handler.go │ │ │ │ └── server_test.go │ │ │ ├── tap.go │ │ │ └── tap_test.go │ │ └── goutils │ │ │ ├── .gitignore │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── go-cbaudit │ │ │ └── audit_service.go │ │ │ ├── logging │ │ │ ├── logger.go │ │ │ ├── logger_golog.go │ │ │ └── logger_golog_test.go │ │ │ └── platform │ │ │ ├── console.go │ │ │ └── console_windows.go │ ├── cupcake │ │ └── rdb │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENCE │ │ │ ├── README.md │ │ │ ├── crc64 │ │ │ └── crc64.go │ │ │ ├── decoder.go │ │ │ ├── decoder_test.go │ │ │ ├── encoder.go │ │ │ ├── encoder_test.go │ │ │ ├── fixtures │ │ │ ├── dictionary.rdb │ │ │ ├── easily_compressible_string_key.rdb │ │ │ ├── empty_database.rdb │ │ │ ├── hash_as_ziplist.rdb │ │ │ ├── integer_keys.rdb │ │ │ ├── intset_16.rdb │ │ │ ├── intset_32.rdb │ │ │ ├── intset_64.rdb │ │ │ ├── keys_with_expiry.rdb │ │ │ ├── keys_with_mixed_expiry.rdb │ │ │ ├── linkedlist.rdb │ │ │ ├── multiple_databases.rdb │ │ │ ├── rdb_v7_list_quicklist.rdb │ │ │ ├── rdb_version_5_with_checksum.rdb │ │ │ ├── regular_set.rdb │ │ │ ├── regular_sorted_set.rdb │ │ │ ├── sorted_set_as_ziplist.rdb │ │ │ ├── uncompressible_string_keys.rdb │ │ │ ├── ziplist_that_compresses_easily.rdb │ │ │ ├── ziplist_that_doesnt_compress.rdb │ │ │ ├── ziplist_with_integers.rdb │ │ │ ├── zipmap_that_compresses_easily.rdb │ │ │ ├── zipmap_that_doesnt_compress.rdb │ │ │ └── zipmap_with_big_values.rdb │ │ │ ├── nopdecoder │ │ │ └── nop_decoder.go │ │ │ └── slice_buffer.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 │ ├── edsrzf │ │ └── mmap-go │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── mmap.go │ │ │ ├── mmap_test.go │ │ │ ├── mmap_unix.go │ │ │ ├── mmap_windows.go │ │ │ ├── msync_netbsd.go │ │ │ └── msync_unix.go │ ├── eknkc │ │ └── amber │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── amber_test.go │ │ │ ├── amberc │ │ │ └── cli.go │ │ │ ├── compiler.go │ │ │ ├── doc.go │ │ │ ├── parser │ │ │ ├── nodes.go │ │ │ ├── parser.go │ │ │ └── scanner.go │ │ │ ├── runtime.go │ │ │ └── samples │ │ │ ├── basic.amber │ │ │ ├── basic.output.html │ │ │ ├── compiledir_test │ │ │ ├── basic.amber │ │ │ └── compiledir_test │ │ │ │ └── basic.amber │ │ │ ├── inherit.amber │ │ │ ├── inherit.master.amber │ │ │ ├── inherit.output.html │ │ │ ├── input.amber │ │ │ ├── input.html │ │ │ ├── multilevel.inheritance.a.amber │ │ │ ├── multilevel.inheritance.b.amber │ │ │ ├── multilevel.inheritance.c.amber │ │ │ ├── recursion.extends.amber │ │ │ ├── recursion.parent.amber │ │ │ └── recursion.top.amber │ ├── fatih │ │ └── structs │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── field.go │ │ │ ├── field_test.go │ │ │ ├── structs.go │ │ │ ├── structs_example_test.go │ │ │ ├── structs_test.go │ │ │ ├── tags.go │ │ │ └── tags_test.go │ ├── flosch │ │ └── pongo2 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── docs │ │ │ ├── examples.md │ │ │ ├── filters.md │ │ │ ├── index.md │ │ │ ├── macros.md │ │ │ ├── tags.md │ │ │ ├── template_sets.md │ │ │ ├── write_filters.md │ │ │ └── write_tags.md │ │ │ ├── error.go │ │ │ ├── filters.go │ │ │ ├── filters_builtin.go │ │ │ ├── helpers.go │ │ │ ├── lexer.go │ │ │ ├── nodes.go │ │ │ ├── nodes_html.go │ │ │ ├── nodes_wrapper.go │ │ │ ├── parser.go │ │ │ ├── parser_document.go │ │ │ ├── parser_expression.go │ │ │ ├── pongo2.go │ │ │ ├── pongo2_issues_test.go │ │ │ ├── pongo2_template_test.go │ │ │ ├── pongo2_test.go │ │ │ ├── tags.go │ │ │ ├── tags_autoescape.go │ │ │ ├── tags_block.go │ │ │ ├── tags_comment.go │ │ │ ├── tags_cycle.go │ │ │ ├── tags_extends.go │ │ │ ├── tags_filter.go │ │ │ ├── tags_firstof.go │ │ │ ├── tags_for.go │ │ │ ├── tags_if.go │ │ │ ├── tags_ifchanged.go │ │ │ ├── tags_ifequal.go │ │ │ ├── tags_ifnotequal.go │ │ │ ├── tags_import.go │ │ │ ├── tags_include.go │ │ │ ├── tags_lorem.go │ │ │ ├── tags_macro.go │ │ │ ├── tags_now.go │ │ │ ├── tags_set.go │ │ │ ├── tags_spaceless.go │ │ │ ├── tags_ssi.go │ │ │ ├── tags_templatetag.go │ │ │ ├── tags_widthratio.go │ │ │ ├── tags_with.go │ │ │ ├── template.go │ │ │ ├── template_loader.go │ │ │ ├── template_sets.go │ │ │ ├── template_tests │ │ │ ├── autoescape.tpl │ │ │ ├── autoescape.tpl.out │ │ │ ├── base_dir_test │ │ │ │ ├── base.html │ │ │ │ └── subdir │ │ │ │ │ ├── include.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── ssi.html │ │ │ ├── comment.tpl │ │ │ ├── comment.tpl.out │ │ │ ├── complex.tpl │ │ │ ├── complex.tpl.out │ │ │ ├── cycle.tpl │ │ │ ├── cycle.tpl.out │ │ │ ├── empty.tpl │ │ │ ├── empty.tpl.out │ │ │ ├── expressions.tpl │ │ │ ├── expressions.tpl.out │ │ │ ├── extends.tpl │ │ │ ├── extends.tpl.out │ │ │ ├── extends_super.tpl │ │ │ ├── extends_super.tpl.out │ │ │ ├── extends_super2.tpl │ │ │ ├── extends_super2.tpl.out │ │ │ ├── filters-compilation.err │ │ │ ├── filters-compilation.err.out │ │ │ ├── filters-execution.err │ │ │ ├── filters-execution.err.out │ │ │ ├── filters.tpl │ │ │ ├── filters.tpl.out │ │ │ ├── firstof.tpl │ │ │ ├── firstof.tpl.out │ │ │ ├── for.tpl │ │ │ ├── for.tpl.out │ │ │ ├── function_calls_wrapper.tpl │ │ │ ├── function_calls_wrapper.tpl.out │ │ │ ├── if.tpl │ │ │ ├── if.tpl.out │ │ │ ├── ifchanged.tpl │ │ │ ├── ifchanged.tpl.out │ │ │ ├── includes.helper │ │ │ ├── includes.tpl │ │ │ ├── includes.tpl.out │ │ │ ├── inheritance │ │ │ │ ├── base.tpl │ │ │ │ ├── base2.tpl │ │ │ │ ├── cycle_include.tpl │ │ │ │ └── inheritance2 │ │ │ │ │ └── skeleton.tpl │ │ │ ├── issues.tpl │ │ │ ├── issues.tpl.out │ │ │ ├── lorem.tpl │ │ │ ├── lorem.tpl.out │ │ │ ├── macro-compilation.err │ │ │ ├── macro-compilation.err.out │ │ │ ├── macro-execution.err │ │ │ ├── macro-execution.err.out │ │ │ ├── macro.helper │ │ │ ├── macro.tpl │ │ │ ├── macro.tpl.out │ │ │ ├── macro2.helper │ │ │ ├── now.tpl │ │ │ ├── now.tpl.out │ │ │ ├── pongo2ctx.tpl │ │ │ ├── pongo2ctx.tpl.out │ │ │ ├── quotes.tpl │ │ │ ├── sandbox-compilation.err │ │ │ ├── sandbox-compilation.err.out │ │ │ ├── sandbox.tpl │ │ │ ├── sandbox.tpl.out │ │ │ ├── set.tpl │ │ │ ├── set.tpl.out │ │ │ ├── spaceless.tpl │ │ │ ├── spaceless.tpl.out │ │ │ ├── ssi.helper │ │ │ ├── ssi.tpl │ │ │ ├── ssi.tpl.out │ │ │ ├── tag_filter.tpl │ │ │ ├── tag_filter.tpl.out │ │ │ ├── tags-compilation.err │ │ │ ├── tags-compilation.err.out │ │ │ ├── template_sets.tpl │ │ │ ├── template_sets.tpl.out │ │ │ ├── templatetag.tpl │ │ │ ├── templatetag.tpl.out │ │ │ ├── variables.tpl │ │ │ ├── variables.tpl.out │ │ │ ├── verbatim.tpl │ │ │ ├── verbatim.tpl.out │ │ │ ├── widthratio.tpl │ │ │ ├── widthratio.tpl.out │ │ │ ├── with.helper │ │ │ ├── with.tpl │ │ │ └── with.tpl.out │ │ │ ├── value.go │ │ │ └── variable.go │ ├── garyburd │ │ └── redigo │ │ │ ├── .github │ │ │ ├── CONTRIBUTING.md │ │ │ └── ISSUE_TEMPLATE.md │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.markdown │ │ │ ├── internal │ │ │ ├── commandinfo.go │ │ │ ├── commandinfo_test.go │ │ │ └── redistest │ │ │ │ └── testdb.go │ │ │ ├── redis │ │ │ ├── conn.go │ │ │ ├── conn_test.go │ │ │ ├── doc.go │ │ │ ├── go17.go │ │ │ ├── log.go │ │ │ ├── pool.go │ │ │ ├── pool_test.go │ │ │ ├── pre_go17.go │ │ │ ├── pubsub.go │ │ │ ├── pubsub_test.go │ │ │ ├── redis.go │ │ │ ├── reply.go │ │ │ ├── reply_test.go │ │ │ ├── scan.go │ │ │ ├── scan_test.go │ │ │ ├── script.go │ │ │ ├── script_test.go │ │ │ ├── test_test.go │ │ │ └── zpop_example_test.go │ │ │ └── redisx │ │ │ ├── connmux.go │ │ │ ├── connmux_test.go │ │ │ └── doc.go │ ├── gavv │ │ └── monotime │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── monotime.go │ │ │ ├── monotime.s │ │ │ └── monotime_test.go │ ├── go-siris │ │ ├── middleware-logger │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── config.go │ │ │ └── logger.go │ │ └── middleware-recover │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ └── recover.go │ ├── go-sql-driver │ │ └── mysql │ │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appengine.go │ │ │ ├── benchmark_test.go │ │ │ ├── buffer.go │ │ │ ├── collations.go │ │ │ ├── connection.go │ │ │ ├── connection_test.go │ │ │ ├── const.go │ │ │ ├── driver.go │ │ │ ├── driver_test.go │ │ │ ├── dsn.go │ │ │ ├── dsn_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── infile.go │ │ │ ├── packets.go │ │ │ ├── packets_test.go │ │ │ ├── result.go │ │ │ ├── rows.go │ │ │ ├── statement.go │ │ │ ├── transaction.go │ │ │ ├── utils.go │ │ │ └── utils_test.go │ ├── golang │ │ └── snappy │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── cmd │ │ │ └── snappytool │ │ │ │ └── main.cpp │ │ │ ├── decode.go │ │ │ ├── decode_amd64.go │ │ │ ├── decode_amd64.s │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_amd64.go │ │ │ ├── encode_amd64.s │ │ │ ├── encode_other.go │ │ │ ├── golden_test.go │ │ │ ├── snappy.go │ │ │ ├── snappy_test.go │ │ │ └── testdata │ │ │ ├── Mark.Twain-Tom.Sawyer.txt │ │ │ └── Mark.Twain-Tom.Sawyer.txt.rawsnappy │ ├── google │ │ └── go-querystring │ │ │ ├── .gitignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── query │ │ │ ├── encode.go │ │ │ └── encode_test.go │ ├── gorilla │ │ └── websocket │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── client_clone.go │ │ │ ├── client_clone_legacy.go │ │ │ ├── client_server_test.go │ │ │ ├── client_test.go │ │ │ ├── compression.go │ │ │ ├── compression_test.go │ │ │ ├── conn.go │ │ │ ├── conn_broadcast_test.go │ │ │ ├── conn_read.go │ │ │ ├── conn_read_legacy.go │ │ │ ├── conn_test.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── json.go │ │ │ ├── json_test.go │ │ │ ├── mask.go │ │ │ ├── mask_safe.go │ │ │ ├── mask_test.go │ │ │ ├── prepared.go │ │ │ ├── prepared_test.go │ │ │ ├── server.go │ │ │ ├── server_test.go │ │ │ ├── util.go │ │ │ └── util_test.go │ ├── hashicorp │ │ └── golang-lru │ │ │ ├── .gitignore │ │ │ ├── 2q.go │ │ │ ├── 2q_test.go │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arc.go │ │ │ ├── arc_test.go │ │ │ ├── lru.go │ │ │ ├── lru_test.go │ │ │ └── simplelru │ │ │ ├── lru.go │ │ │ └── lru_test.go │ ├── imkira │ │ └── go-interpol │ │ │ ├── .codebeatignore │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── interpol.go │ │ │ ├── interpol_test.go │ │ │ ├── io.go │ │ │ ├── io_test.go │ │ │ ├── options.go │ │ │ └── options_test.go │ ├── json-iterator │ │ └── go │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── 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_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_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 │ ├── juju │ │ └── errors │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── errortypes.go │ │ │ ├── errortypes_test.go │ │ │ ├── example_test.go │ │ │ ├── export_test.go │ │ │ ├── functions.go │ │ │ ├── functions_test.go │ │ │ ├── package_test.go │ │ │ ├── path.go │ │ │ └── path_test.go │ ├── klauspost │ │ ├── compress │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── flate │ │ │ │ ├── asm_test.go │ │ │ │ ├── copy.go │ │ │ │ ├── copy_test.go │ │ │ │ ├── crc32_amd64.go │ │ │ │ ├── crc32_amd64.s │ │ │ │ ├── crc32_noasm.go │ │ │ │ ├── deflate.go │ │ │ │ ├── deflate_test.go │ │ │ │ ├── dict_decoder.go │ │ │ │ ├── dict_decoder_test.go │ │ │ │ ├── flate_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── huffman_bit_writer.go │ │ │ │ ├── huffman_bit_writer_test.go │ │ │ │ ├── huffman_code.go │ │ │ │ ├── inflate.go │ │ │ │ ├── inflate_test.go │ │ │ │ ├── reader_test.go │ │ │ │ ├── reverse_bits.go │ │ │ │ ├── snappy.go │ │ │ │ ├── testdata │ │ │ │ │ ├── huffman-null-max.dyn.expect │ │ │ │ │ ├── huffman-null-max.dyn.expect-noinput │ │ │ │ │ ├── huffman-null-max.golden │ │ │ │ │ ├── huffman-null-max.in │ │ │ │ │ ├── huffman-null-max.wb.expect │ │ │ │ │ ├── huffman-null-max.wb.expect-noinput │ │ │ │ │ ├── huffman-pi.dyn.expect │ │ │ │ │ ├── huffman-pi.dyn.expect-noinput │ │ │ │ │ ├── huffman-pi.golden │ │ │ │ │ ├── huffman-pi.in │ │ │ │ │ ├── huffman-pi.wb.expect │ │ │ │ │ ├── huffman-pi.wb.expect-noinput │ │ │ │ │ ├── huffman-rand-1k.dyn.expect │ │ │ │ │ ├── huffman-rand-1k.dyn.expect-noinput │ │ │ │ │ ├── huffman-rand-1k.golden │ │ │ │ │ ├── huffman-rand-1k.in │ │ │ │ │ ├── huffman-rand-1k.wb.expect │ │ │ │ │ ├── huffman-rand-1k.wb.expect-noinput │ │ │ │ │ ├── huffman-rand-limit.dyn.expect │ │ │ │ │ ├── huffman-rand-limit.dyn.expect-noinput │ │ │ │ │ ├── huffman-rand-limit.golden │ │ │ │ │ ├── huffman-rand-limit.in │ │ │ │ │ ├── huffman-rand-limit.wb.expect │ │ │ │ │ ├── huffman-rand-limit.wb.expect-noinput │ │ │ │ │ ├── huffman-rand-max.golden │ │ │ │ │ ├── huffman-rand-max.in │ │ │ │ │ ├── huffman-shifts.dyn.expect │ │ │ │ │ ├── huffman-shifts.dyn.expect-noinput │ │ │ │ │ ├── huffman-shifts.golden │ │ │ │ │ ├── huffman-shifts.in │ │ │ │ │ ├── huffman-shifts.wb.expect │ │ │ │ │ ├── huffman-shifts.wb.expect-noinput │ │ │ │ │ ├── huffman-text-shift.dyn.expect │ │ │ │ │ ├── huffman-text-shift.dyn.expect-noinput │ │ │ │ │ ├── huffman-text-shift.golden │ │ │ │ │ ├── huffman-text-shift.in │ │ │ │ │ ├── huffman-text-shift.wb.expect │ │ │ │ │ ├── huffman-text-shift.wb.expect-noinput │ │ │ │ │ ├── huffman-text.dyn.expect │ │ │ │ │ ├── huffman-text.dyn.expect-noinput │ │ │ │ │ ├── huffman-text.golden │ │ │ │ │ ├── huffman-text.in │ │ │ │ │ ├── huffman-text.wb.expect │ │ │ │ │ ├── huffman-text.wb.expect-noinput │ │ │ │ │ ├── huffman-zero.dyn.expect │ │ │ │ │ ├── huffman-zero.dyn.expect-noinput │ │ │ │ │ ├── huffman-zero.golden │ │ │ │ │ ├── huffman-zero.in │ │ │ │ │ ├── huffman-zero.wb.expect │ │ │ │ │ ├── huffman-zero.wb.expect-noinput │ │ │ │ │ ├── null-long-match.dyn.expect-noinput │ │ │ │ │ └── null-long-match.wb.expect-noinput │ │ │ │ ├── token.go │ │ │ │ └── writer_test.go │ │ │ ├── gzip │ │ │ │ ├── example_test.go │ │ │ │ ├── gunzip.go │ │ │ │ ├── gunzip_test.go │ │ │ │ ├── gzip.go │ │ │ │ ├── gzip_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── issue6550.gz │ │ │ │ │ └── test.json │ │ │ ├── snappy │ │ │ │ ├── .gitignore │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── cmd │ │ │ │ │ └── snappytool │ │ │ │ │ │ └── main.cpp │ │ │ │ ├── decode.go │ │ │ │ ├── decode_amd64.go │ │ │ │ ├── decode_amd64.s │ │ │ │ ├── decode_other.go │ │ │ │ ├── encode.go │ │ │ │ ├── encode_amd64.go │ │ │ │ ├── encode_amd64.s │ │ │ │ ├── encode_other.go │ │ │ │ ├── golden_test.go │ │ │ │ ├── runbench.cmd │ │ │ │ ├── snappy.go │ │ │ │ ├── snappy_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── Mark.Twain-Tom.Sawyer.txt │ │ │ │ │ ├── Mark.Twain-Tom.Sawyer.txt.rawsnappy │ │ │ │ │ └── random │ │ │ ├── testdata │ │ │ │ ├── Mark.Twain-Tom.Sawyer.txt │ │ │ │ ├── e.txt │ │ │ │ ├── gettysburg.txt │ │ │ │ ├── pi.txt │ │ │ │ └── sharnd.out │ │ │ ├── zip │ │ │ │ ├── example_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── reader_test.go │ │ │ │ ├── register.go │ │ │ │ ├── struct.go │ │ │ │ ├── testdata │ │ │ │ │ ├── crc32-not-streamed.zip │ │ │ │ │ ├── dd.zip │ │ │ │ │ ├── go-no-datadesc-sig.zip │ │ │ │ │ ├── go-with-datadesc-sig.zip │ │ │ │ │ ├── gophercolor16x16.png │ │ │ │ │ ├── readme.notzip │ │ │ │ │ ├── readme.zip │ │ │ │ │ ├── symlink.zip │ │ │ │ │ ├── test-trailing-junk.zip │ │ │ │ │ ├── test.zip │ │ │ │ │ ├── unix.zip │ │ │ │ │ ├── winxp.zip │ │ │ │ │ ├── zip64-2.zip │ │ │ │ │ └── zip64.zip │ │ │ │ ├── writer.go │ │ │ │ ├── writer_test.go │ │ │ │ └── zip_test.go │ │ │ └── zlib │ │ │ │ ├── example_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── reader_test.go │ │ │ │ ├── writer.go │ │ │ │ └── writer_test.go │ │ └── cpuid │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cpuid.go │ │ │ ├── cpuid_386.s │ │ │ ├── cpuid_amd64.s │ │ │ ├── cpuid_test.go │ │ │ ├── detect_intel.go │ │ │ ├── detect_ref.go │ │ │ ├── generate.go │ │ │ ├── mockcpu_test.go │ │ │ ├── private-gen.go │ │ │ ├── private │ │ │ ├── README.md │ │ │ ├── cpuid.go │ │ │ ├── cpuid_386.s │ │ │ ├── cpuid_amd64.s │ │ │ ├── cpuid_detect_intel.go │ │ │ ├── cpuid_detect_ref.go │ │ │ └── cpuid_test.go │ │ │ └── testdata │ │ │ ├── cpuid_data.zip │ │ │ └── getall.go │ ├── lib │ │ └── pq │ │ │ ├── .gitignore │ │ │ ├── .travis.sh │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── array.go │ │ │ ├── array_test.go │ │ │ ├── bench_test.go │ │ │ ├── buf.go │ │ │ ├── certs │ │ │ ├── README │ │ │ ├── bogus_root.crt │ │ │ ├── postgresql.crt │ │ │ ├── postgresql.key │ │ │ ├── root.crt │ │ │ ├── server.crt │ │ │ └── server.key │ │ │ ├── conn.go │ │ │ ├── conn_go18.go │ │ │ ├── conn_test.go │ │ │ ├── copy.go │ │ │ ├── copy_test.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── error.go │ │ │ ├── go18_test.go │ │ │ ├── hstore │ │ │ ├── hstore.go │ │ │ └── hstore_test.go │ │ │ ├── issues_test.go │ │ │ ├── listen_example │ │ │ └── doc.go │ │ │ ├── notify.go │ │ │ ├── notify_test.go │ │ │ ├── oid │ │ │ ├── doc.go │ │ │ ├── gen.go │ │ │ └── types.go │ │ │ ├── ssl.go │ │ │ ├── ssl_go1.7.go │ │ │ ├── ssl_permissions.go │ │ │ ├── ssl_renegotiation.go │ │ │ ├── ssl_test.go │ │ │ ├── ssl_windows.go │ │ │ ├── url.go │ │ │ ├── url_test.go │ │ │ ├── user_posix.go │ │ │ ├── user_windows.go │ │ │ ├── uuid.go │ │ │ └── uuid_test.go │ ├── lucas-clemente │ │ ├── aes12 │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── aes_gcm.go │ │ │ ├── asm_amd64.s │ │ │ ├── benchmark_test.go │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ ├── cipher_2.go │ │ │ ├── cipher_amd64.go │ │ │ ├── cipher_generic.go │ │ │ ├── const.go │ │ │ ├── gcm.go │ │ │ ├── gcm_amd64.s │ │ │ ├── package_test.go │ │ │ └── xor.go │ │ ├── fnv128a │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fnv128a.go │ │ │ └── fnv128a_test.go │ │ ├── quic-go-certificates │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cert_set_2.go │ │ │ ├── cert_set_3.go │ │ │ └── createCertSets.rb │ │ └── quic-go │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── .travis │ │ │ ├── after_success.sh │ │ │ └── script.sh │ │ │ ├── Changelog.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ackhandler │ │ │ ├── _gen.go │ │ │ ├── ackhandler_suite_test.go │ │ │ ├── interfaces.go │ │ │ ├── packet.go │ │ │ ├── packet_linkedlist.go │ │ │ ├── packet_test.go │ │ │ ├── received_packet_handler.go │ │ │ ├── received_packet_handler_test.go │ │ │ ├── received_packet_history.go │ │ │ ├── received_packet_history_test.go │ │ │ ├── retransmittable.go │ │ │ ├── retransmittable_test.go │ │ │ ├── sent_packet_handler.go │ │ │ ├── sent_packet_handler_test.go │ │ │ ├── stop_waiting_manager.go │ │ │ └── stop_waiting_manager_test.go │ │ │ ├── appveyor.yml │ │ │ ├── benchmark │ │ │ ├── benchmark_suite_test.go │ │ │ └── benchmark_test.go │ │ │ ├── buffer_pool.go │ │ │ ├── buffer_pool_test.go │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── codecov.yml │ │ │ ├── congestion │ │ │ ├── bandwidth.go │ │ │ ├── bandwidth_test.go │ │ │ ├── clock.go │ │ │ ├── congestion_suite_test.go │ │ │ ├── cubic.go │ │ │ ├── cubic_sender.go │ │ │ ├── cubic_sender_test.go │ │ │ ├── cubic_test.go │ │ │ ├── hybrid_slow_start.go │ │ │ ├── hybrid_slow_start_test.go │ │ │ ├── interface.go │ │ │ ├── prr_sender.go │ │ │ ├── prr_sender_test.go │ │ │ ├── rtt_stats.go │ │ │ ├── rtt_stats_test.go │ │ │ └── stats.go │ │ │ ├── conn.go │ │ │ ├── conn_test.go │ │ │ ├── crypto │ │ │ ├── AEAD.go │ │ │ ├── aesgcm_aead.go │ │ │ ├── aesgcm_aead_test.go │ │ │ ├── cert_cache.go │ │ │ ├── cert_cache_test.go │ │ │ ├── cert_chain.go │ │ │ ├── cert_chain_test.go │ │ │ ├── cert_compression.go │ │ │ ├── cert_compression_test.go │ │ │ ├── cert_dict.go │ │ │ ├── cert_manager.go │ │ │ ├── cert_manager_test.go │ │ │ ├── cert_sets.go │ │ │ ├── chacha20poly1305_aead.go │ │ │ ├── chacha20poly1305_aead_test.go │ │ │ ├── crypto_suite_test.go │ │ │ ├── curve_25519.go │ │ │ ├── curve_25519_test.go │ │ │ ├── key_derivation.go │ │ │ ├── key_derivation_test.go │ │ │ ├── key_exchange.go │ │ │ ├── nonce.go │ │ │ ├── null_aead.go │ │ │ ├── null_aead_test.go │ │ │ ├── server_proof.go │ │ │ ├── server_proof_test.go │ │ │ ├── source_address_token.go │ │ │ └── source_address_token_test.go │ │ │ ├── docs │ │ │ ├── quic.png │ │ │ ├── quic.sketch │ │ │ └── quic.svg │ │ │ ├── example │ │ │ ├── Dockerfile │ │ │ ├── Readme.md │ │ │ ├── client │ │ │ │ └── main.go │ │ │ ├── echo │ │ │ │ └── echo.go │ │ │ ├── fullchain.pem │ │ │ ├── main.go │ │ │ └── privkey.pem │ │ │ ├── h2quic │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── gzipreader.go │ │ │ ├── h2quic_suite_test.go │ │ │ ├── request.go │ │ │ ├── request_body.go │ │ │ ├── request_body_test.go │ │ │ ├── request_test.go │ │ │ ├── request_writer.go │ │ │ ├── request_writer_test.go │ │ │ ├── response.go │ │ │ ├── response_writer.go │ │ │ ├── response_writer_test.go │ │ │ ├── roundtrip.go │ │ │ ├── roundtrip_test.go │ │ │ ├── server.go │ │ │ └── server_test.go │ │ │ ├── handshake │ │ │ ├── connection_parameters_manager.go │ │ │ ├── connection_parameters_manager_test.go │ │ │ ├── crypto_setup_client.go │ │ │ ├── crypto_setup_client_test.go │ │ │ ├── crypto_setup_server.go │ │ │ ├── crypto_setup_server_test.go │ │ │ ├── data_test.go │ │ │ ├── ephermal_cache.go │ │ │ ├── ephermal_cache_test.go │ │ │ ├── handshake_message.go │ │ │ ├── handshake_message_test.go │ │ │ ├── handshake_suite_test.go │ │ │ ├── interface.go │ │ │ ├── server_config.go │ │ │ ├── server_config_client.go │ │ │ ├── server_config_client_test.go │ │ │ ├── server_config_test.go │ │ │ ├── stk_generator.go │ │ │ ├── stk_generator_test.go │ │ │ └── tags.go │ │ │ ├── integrationtests │ │ │ ├── chrome │ │ │ │ ├── chrome_suite_test.go │ │ │ │ └── chrome_test.go │ │ │ ├── gquic │ │ │ │ ├── drop_test.go │ │ │ │ ├── gquic_suite_test.go │ │ │ │ ├── integration_test.go │ │ │ │ ├── random_rtt_test.go │ │ │ │ ├── rtt_test.go │ │ │ │ └── server_test.go │ │ │ ├── self │ │ │ │ ├── client_test.go │ │ │ │ ├── handshake_rtt_test.go │ │ │ │ └── self_suite_test.go │ │ │ └── tools │ │ │ │ ├── proxy │ │ │ │ ├── proxy.go │ │ │ │ ├── proxy_suite_test.go │ │ │ │ └── proxy_test.go │ │ │ │ ├── testlog │ │ │ │ └── testlog.go │ │ │ │ └── testserver │ │ │ │ └── server.go │ │ │ ├── interface.go │ │ │ ├── internal │ │ │ ├── flowcontrol │ │ │ │ ├── flow_control_manager.go │ │ │ │ ├── flow_control_manager_test.go │ │ │ │ ├── flow_controller.go │ │ │ │ ├── flow_controller_test.go │ │ │ │ ├── flowcontrol_suite_test.go │ │ │ │ └── interface.go │ │ │ ├── mocks │ │ │ │ ├── cpm.go │ │ │ │ ├── gen.go │ │ │ │ └── mocks_fc │ │ │ │ │ └── flow_control_manager.go │ │ │ ├── protocol │ │ │ │ ├── encryption_level.go │ │ │ │ ├── encryption_level_test.go │ │ │ │ ├── packet_number.go │ │ │ │ ├── packet_number_test.go │ │ │ │ ├── perspective.go │ │ │ │ ├── protocol.go │ │ │ │ ├── protocol_suite_test.go │ │ │ │ ├── server_parameters.go │ │ │ │ ├── version.go │ │ │ │ ├── version.go.orig │ │ │ │ └── version_test.go │ │ │ ├── testdata │ │ │ │ └── cert.go │ │ │ ├── utils │ │ │ │ ├── _gen.go │ │ │ │ ├── atomic_bool.go │ │ │ │ ├── atomic_bool_test.go │ │ │ │ ├── byteinterval_linkedlist.go │ │ │ │ ├── byteoder_big_endian_test.go │ │ │ │ ├── byteorder.go │ │ │ │ ├── byteorder_big_endian.go │ │ │ │ ├── byteorder_little_endian.go │ │ │ │ ├── byteorder_little_endian_test.go │ │ │ │ ├── byteorder_test.go │ │ │ │ ├── connection_id.go │ │ │ │ ├── connection_id_test.go │ │ │ │ ├── float16.go │ │ │ │ ├── float16_test.go │ │ │ │ ├── host.go │ │ │ │ ├── host_test.go │ │ │ │ ├── log.go │ │ │ │ ├── log_test.go │ │ │ │ ├── minmax.go │ │ │ │ ├── minmax_test.go │ │ │ │ ├── packet_interval.go │ │ │ │ ├── packetinterval_linkedlist.go │ │ │ │ ├── streamframe_interval.go │ │ │ │ ├── timer.go │ │ │ │ ├── timer_test.go │ │ │ │ └── utils_suite_test.go │ │ │ └── wire │ │ │ │ ├── ack_frame.go │ │ │ │ ├── ack_frame_test.go │ │ │ │ ├── ack_range.go │ │ │ │ ├── blocked_frame.go │ │ │ │ ├── blocked_frame_test.go │ │ │ │ ├── connection_close_frame.go │ │ │ │ ├── connection_close_frame_test.go │ │ │ │ ├── frame.go │ │ │ │ ├── goaway_frame.go │ │ │ │ ├── goaway_frame_test.go │ │ │ │ ├── log.go │ │ │ │ ├── log_test.go │ │ │ │ ├── ping_frame.go │ │ │ │ ├── ping_frame_test.go │ │ │ │ ├── public_header.go │ │ │ │ ├── public_header_test.go │ │ │ │ ├── public_reset.go │ │ │ │ ├── public_reset_test.go │ │ │ │ ├── rst_stream_frame.go │ │ │ │ ├── rst_stream_frame_test.go │ │ │ │ ├── stop_waiting_frame.go │ │ │ │ ├── stop_waiting_frame_test.go │ │ │ │ ├── stream_frame.go │ │ │ │ ├── stream_frame_test.go │ │ │ │ ├── version_negotiation.go │ │ │ │ ├── version_negotiation_test.go │ │ │ │ ├── window_update_frame.go │ │ │ │ ├── window_update_frame_test.go │ │ │ │ └── wire_suite_test.go │ │ │ ├── packet_number_generator.go │ │ │ ├── packet_number_generator_test.go │ │ │ ├── packet_packer.go │ │ │ ├── packet_packer_test.go │ │ │ ├── packet_unpacker.go │ │ │ ├── packet_unpacker_test.go │ │ │ ├── qerr │ │ │ ├── error_codes.go │ │ │ ├── errorcode_string.go │ │ │ ├── errorcodes_test.go │ │ │ ├── errors_suite_test.go │ │ │ ├── quic_error.go │ │ │ └── quic_error_test.go │ │ │ ├── quic_suite_test.go │ │ │ ├── server.go │ │ │ ├── server_test.go │ │ │ ├── session.go │ │ │ ├── session_test.go │ │ │ ├── stream.go │ │ │ ├── stream_frame_sorter.go │ │ │ ├── stream_frame_sorter_test.go │ │ │ ├── stream_framer.go │ │ │ ├── stream_framer_test.go │ │ │ ├── stream_test.go │ │ │ ├── streams_map.go │ │ │ └── streams_map_test.go │ ├── microcosm-cc │ │ └── bluemonday │ │ │ ├── .coveralls.yml │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CREDITS.md │ │ │ ├── LICENSE.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── cmd │ │ │ ├── sanitise_html_email │ │ │ │ ├── doc.go │ │ │ │ └── main.go │ │ │ └── sanitise_ugc │ │ │ │ ├── doc.go │ │ │ │ └── main.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── helpers.go │ │ │ ├── helpers_test.go │ │ │ ├── policies.go │ │ │ ├── policies_test.go │ │ │ ├── policy.go │ │ │ ├── policy_test.go │ │ │ ├── sanitize.go │ │ │ ├── sanitize_go1.8_test.go │ │ │ ├── sanitize_ltgo1.8_test.go │ │ │ └── sanitize_test.go │ ├── monoculum │ │ └── formam │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── errors.go │ │ │ ├── formam.go │ │ │ └── formam_test.go │ ├── moul │ │ └── http2curl │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Godeps │ │ │ ├── Godeps.json │ │ │ └── Readme │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── http2curl.go │ │ │ └── http2curl_test.go │ ├── pasztorpisti │ │ └── qs │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── common.go │ │ │ ├── common_test.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── example_caching_test.go │ │ │ ├── example_custom_marshaler_factory_test.go │ │ │ ├── example_default_omitempty_test.go │ │ │ ├── example_self_marshal_test.go │ │ │ ├── example_test.go │ │ │ ├── examples_test.go │ │ │ ├── marshal.go │ │ │ ├── marshal_test.go │ │ │ ├── marshaler_factory.go │ │ │ ├── marshalers.go │ │ │ ├── unmarshal.go │ │ │ ├── unmarshal_test.go │ │ │ ├── unmarshaler_factory.go │ │ │ └── unmarshalers.go │ ├── pelletier │ │ ├── go-buffruneio │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── buffruneio.go │ │ │ └── buffruneio_test.go │ │ └── go-toml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cmd │ │ │ ├── test_program.go │ │ │ ├── tomljson │ │ │ │ ├── main.go │ │ │ │ └── main_test.go │ │ │ └── tomll │ │ │ │ └── main.go │ │ │ ├── doc.go │ │ │ ├── doc_test.go │ │ │ ├── example-crlf.toml │ │ │ ├── example.toml │ │ │ ├── keysparsing.go │ │ │ ├── keysparsing_test.go │ │ │ ├── lexer.go │ │ │ ├── lexer_test.go │ │ │ ├── marshal.go │ │ │ ├── marshal_test.go │ │ │ ├── marshal_test.toml │ │ │ ├── parser.go │ │ │ ├── parser_test.go │ │ │ ├── position.go │ │ │ ├── position_test.go │ │ │ ├── query │ │ │ ├── doc.go │ │ │ ├── lexer.go │ │ │ ├── lexer_test.go │ │ │ ├── match.go │ │ │ ├── match_test.go │ │ │ ├── parser.go │ │ │ ├── parser_test.go │ │ │ ├── query.go │ │ │ ├── query_test.go │ │ │ └── tokens.go │ │ │ ├── test.sh │ │ │ ├── token.go │ │ │ ├── token_test.go │ │ │ ├── toml.go │ │ │ ├── toml_test.go │ │ │ ├── tomltree_create.go │ │ │ ├── tomltree_create_test.go │ │ │ ├── tomltree_write.go │ │ │ └── tomltree_write_test.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── difflib │ │ │ ├── difflib.go │ │ │ └── difflib_test.go │ ├── russross │ │ └── blackfriday │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── block.go │ │ │ ├── block_test.go │ │ │ ├── doc.go │ │ │ ├── html.go │ │ │ ├── inline.go │ │ │ ├── inline_test.go │ │ │ ├── latex.go │ │ │ ├── markdown.go │ │ │ ├── markdown_test.go │ │ │ ├── ref_test.go │ │ │ ├── smartypants.go │ │ │ └── testdata │ │ │ ├── Amps and angle encoding.html │ │ │ ├── Amps and angle encoding.text │ │ │ ├── Auto links.html │ │ │ ├── Auto links.text │ │ │ ├── Backslash escapes.html │ │ │ ├── Backslash escapes.text │ │ │ ├── Blockquotes with code blocks.html │ │ │ ├── Blockquotes with code blocks.text │ │ │ ├── Code Blocks.html │ │ │ ├── Code Blocks.text │ │ │ ├── Code Spans.html │ │ │ ├── Code Spans.text │ │ │ ├── Hard-wrapped paragraphs with list-like lines no empty line before block.html │ │ │ ├── Hard-wrapped paragraphs with list-like lines no empty line before block.text │ │ │ ├── Hard-wrapped paragraphs with list-like lines.html │ │ │ ├── Hard-wrapped paragraphs with list-like lines.text │ │ │ ├── Horizontal rules.html │ │ │ ├── Horizontal rules.text │ │ │ ├── Inline HTML (Advanced).html │ │ │ ├── Inline HTML (Advanced).text │ │ │ ├── Inline HTML (Simple).html │ │ │ ├── Inline HTML (Simple).text │ │ │ ├── Inline HTML comments.html │ │ │ ├── Inline HTML comments.text │ │ │ ├── Links, inline style.html │ │ │ ├── Links, inline style.text │ │ │ ├── Links, reference style.html │ │ │ ├── Links, reference style.text │ │ │ ├── Links, shortcut references.html │ │ │ ├── Links, shortcut references.text │ │ │ ├── Literal quotes in titles.html │ │ │ ├── Literal quotes in titles.text │ │ │ ├── Markdown Documentation - Basics.html │ │ │ ├── Markdown Documentation - Basics.text │ │ │ ├── Markdown Documentation - Syntax.html │ │ │ ├── Markdown Documentation - Syntax.text │ │ │ ├── Nested blockquotes.html │ │ │ ├── Nested blockquotes.text │ │ │ ├── Ordered and unordered lists.html │ │ │ ├── Ordered and unordered lists.text │ │ │ ├── Strong and em together.html │ │ │ ├── Strong and em together.text │ │ │ ├── Tabs.html │ │ │ ├── Tabs.text │ │ │ ├── Tidyness.html │ │ │ └── Tidyness.text │ ├── satori │ │ └── go.uuid │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── benchmarks_test.go │ │ │ ├── uuid.go │ │ │ └── uuid_test.go │ ├── sergi │ │ └── go-diff │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── APACHE-LICENSE-2.0 │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── diffmatchpatch │ │ │ ├── benchutil_test.go │ │ │ ├── diff.go │ │ │ ├── diff_test.go │ │ │ ├── diffmatchpatch.go │ │ │ ├── match.go │ │ │ ├── match_test.go │ │ │ ├── mathutil.go │ │ │ ├── patch.go │ │ │ ├── patch_test.go │ │ │ ├── stringutil.go │ │ │ └── stringutil_test.go │ │ │ ├── scripts │ │ │ └── lint.sh │ │ │ └── testdata │ │ │ ├── speedtest1.txt │ │ │ └── speedtest2.txt │ ├── siddontang │ │ ├── go │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arena │ │ │ │ ├── arena.go │ │ │ │ └── arena_test.go │ │ │ ├── bson │ │ │ │ ├── LICENSE │ │ │ │ ├── bson.go │ │ │ │ ├── bson_test.go │ │ │ │ ├── decode.go │ │ │ │ └── encode.go │ │ │ ├── bytes2 │ │ │ │ ├── chunked_writer.go │ │ │ │ └── cw_test.go │ │ │ ├── cache │ │ │ │ ├── lru_cache.go │ │ │ │ ├── lru_cache_test.go │ │ │ │ └── perf_test.go │ │ │ ├── config │ │ │ │ ├── config.go │ │ │ │ ├── config_test.go │ │ │ │ ├── read.go │ │ │ │ └── write.go │ │ │ ├── exec2 │ │ │ │ ├── exec.go │ │ │ │ └── exec_test.go │ │ │ ├── filelock │ │ │ │ ├── LICENSE │ │ │ │ ├── file_lock_generic.go │ │ │ │ ├── file_lock_solaris.go │ │ │ │ ├── file_lock_test.go │ │ │ │ ├── file_lock_unix.go │ │ │ │ └── file_lock_windows.go │ │ │ ├── hack │ │ │ │ ├── hack.go │ │ │ │ └── hack_test.go │ │ │ ├── ioutil2 │ │ │ │ ├── ioutil.go │ │ │ │ ├── sectionwriter.go │ │ │ │ └── sectionwriter_test.go │ │ │ ├── list2 │ │ │ │ ├── list.go │ │ │ │ ├── list_bench_test.go │ │ │ │ └── list_test.go │ │ │ ├── log │ │ │ │ ├── doc.go │ │ │ │ ├── filehandler.go │ │ │ │ ├── handler.go │ │ │ │ ├── log.go │ │ │ │ ├── log_test.go │ │ │ │ └── sockethandler.go │ │ │ ├── num │ │ │ │ ├── bytes.go │ │ │ │ ├── cmp.go │ │ │ │ ├── num_test.go │ │ │ │ └── str.go │ │ │ ├── ring │ │ │ │ ├── ring.go │ │ │ │ └── ring_test.go │ │ │ ├── rpc │ │ │ │ ├── client.go │ │ │ │ ├── codec.go │ │ │ │ ├── conn.go │ │ │ │ ├── rpc_test.go │ │ │ │ └── server.go │ │ │ ├── snappy │ │ │ │ ├── LICENSE │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── snappy.go │ │ │ │ └── snappy_test.go │ │ │ ├── sync2 │ │ │ │ ├── atomic.go │ │ │ │ ├── atomic_test.go │ │ │ │ ├── semaphore.go │ │ │ │ └── semaphore_test.go │ │ │ ├── tb │ │ │ │ └── error.go │ │ │ ├── time2 │ │ │ │ ├── sleep.go │ │ │ │ ├── ticker.go │ │ │ │ ├── wheel.go │ │ │ │ └── wheel_test.go │ │ │ ├── timingwheel │ │ │ │ ├── timingwheel.go │ │ │ │ └── timingwheel_test.go │ │ │ ├── vitess_license │ │ │ └── websocket │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── conn.go │ │ │ │ ├── pingpong_test.go │ │ │ │ ├── server.go │ │ │ │ ├── server_test.go │ │ │ │ └── util.go │ │ ├── ledisdb │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── cmd │ │ │ │ ├── ledis-benchmark │ │ │ │ │ └── main.go │ │ │ │ ├── ledis-cli │ │ │ │ │ ├── const.go │ │ │ │ │ └── main.go │ │ │ │ ├── ledis-dump │ │ │ │ │ └── main.go │ │ │ │ ├── ledis-load │ │ │ │ │ └── main.go │ │ │ │ ├── ledis-repair │ │ │ │ │ └── main.go │ │ │ │ └── ledis-server │ │ │ │ │ └── main.go │ │ │ ├── config │ │ │ │ ├── config.go │ │ │ │ ├── config.toml │ │ │ │ └── config_test.go │ │ │ ├── dev.sh │ │ │ ├── doc │ │ │ │ ├── DiffRedis.md │ │ │ │ ├── Replication.md │ │ │ │ ├── commands.json │ │ │ │ ├── commands.md │ │ │ │ └── doctoc_commands.sh │ │ │ ├── etc │ │ │ │ └── ledis.conf │ │ │ ├── glide.lock │ │ │ ├── glide.yaml │ │ │ ├── ledis │ │ │ │ ├── batch.go │ │ │ │ ├── const.go │ │ │ │ ├── doc.go │ │ │ │ ├── dump.go │ │ │ │ ├── dump_test.go │ │ │ │ ├── event.go │ │ │ │ ├── ledis.go │ │ │ │ ├── ledis_db.go │ │ │ │ ├── ledis_test.go │ │ │ │ ├── migrate.go │ │ │ │ ├── migrate_test.go │ │ │ │ ├── replication.go │ │ │ │ ├── replication_test.go │ │ │ │ ├── scan.go │ │ │ │ ├── scan_test.go │ │ │ │ ├── sort.go │ │ │ │ ├── sort_test.go │ │ │ │ ├── t_hash.go │ │ │ │ ├── t_hash_test.go │ │ │ │ ├── t_kv.go │ │ │ │ ├── t_kv_test.go │ │ │ │ ├── t_list.go │ │ │ │ ├── t_list_test.go │ │ │ │ ├── t_set.go │ │ │ │ ├── t_set_test.go │ │ │ │ ├── t_ttl.go │ │ │ │ ├── t_ttl_test.go │ │ │ │ ├── t_zset.go │ │ │ │ ├── t_zset_test.go │ │ │ │ └── util.go │ │ │ ├── rpl │ │ │ │ ├── file_io.go │ │ │ │ ├── file_store.go │ │ │ │ ├── file_table.go │ │ │ │ ├── file_table_test.go │ │ │ │ ├── goleveldb_store.go │ │ │ │ ├── log.go │ │ │ │ ├── log_test.go │ │ │ │ ├── rpl.go │ │ │ │ ├── rpl_test.go │ │ │ │ ├── store.go │ │ │ │ ├── store_test.go │ │ │ │ └── table_readers_test.go │ │ │ ├── server │ │ │ │ ├── accesslog.go │ │ │ │ ├── app.go │ │ │ │ ├── app_test.go │ │ │ │ ├── client.go │ │ │ │ ├── client_http.go │ │ │ │ ├── client_http_test.go │ │ │ │ ├── client_resp.go │ │ │ │ ├── client_resp_test.go │ │ │ │ ├── cmd_hash.go │ │ │ │ ├── cmd_hash_test.go │ │ │ │ ├── cmd_kv.go │ │ │ │ ├── cmd_kv_test.go │ │ │ │ ├── cmd_list.go │ │ │ │ ├── cmd_list_test.go │ │ │ │ ├── cmd_migrate.go │ │ │ │ ├── cmd_migrate_test.go │ │ │ │ ├── cmd_replication.go │ │ │ │ ├── cmd_replication_test.go │ │ │ │ ├── cmd_scan.go │ │ │ │ ├── cmd_scan_test.go │ │ │ │ ├── cmd_script.go │ │ │ │ ├── cmd_script_test.go │ │ │ │ ├── cmd_server.go │ │ │ │ ├── cmd_server_test.go │ │ │ │ ├── cmd_set.go │ │ │ │ ├── cmd_set_test.go │ │ │ │ ├── cmd_sort.go │ │ │ │ ├── cmd_sort_test.go │ │ │ │ ├── cmd_ttl_test.go │ │ │ │ ├── cmd_zset.go │ │ │ │ ├── cmd_zset_test.go │ │ │ │ ├── command.go │ │ │ │ ├── const.go │ │ │ │ ├── doc.go │ │ │ │ ├── info.go │ │ │ │ ├── replication.go │ │ │ │ ├── script.go │ │ │ │ ├── script_test.go │ │ │ │ ├── snapshot.go │ │ │ │ ├── snapshot_test.go │ │ │ │ └── util.go │ │ │ ├── store │ │ │ │ ├── db.go │ │ │ │ ├── driver │ │ │ │ │ ├── driver.go │ │ │ │ │ ├── slice.go │ │ │ │ │ └── store.go │ │ │ │ ├── goleveldb │ │ │ │ │ ├── batch.go │ │ │ │ │ ├── const.go │ │ │ │ │ ├── db.go │ │ │ │ │ ├── iterator.go │ │ │ │ │ └── snapshot.go │ │ │ │ ├── iterator.go │ │ │ │ ├── leveldb │ │ │ │ │ ├── batch.go │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── const.go │ │ │ │ │ ├── db.go │ │ │ │ │ ├── filterpolicy.go │ │ │ │ │ ├── iterator.go │ │ │ │ │ ├── leveldb_ext.cc │ │ │ │ │ ├── leveldb_ext.h │ │ │ │ │ ├── levigo-license │ │ │ │ │ ├── options.go │ │ │ │ │ ├── slice.go │ │ │ │ │ ├── snapshot.go │ │ │ │ │ └── util.go │ │ │ │ ├── rocksdb │ │ │ │ │ ├── batch.go │ │ │ │ │ ├── cache.go │ │ │ │ │ ├── const.go │ │ │ │ │ ├── db.go │ │ │ │ │ ├── env.go │ │ │ │ │ ├── filterpolicy.go │ │ │ │ │ ├── iterator.go │ │ │ │ │ ├── options.go │ │ │ │ │ ├── rocksdb_ext.cc │ │ │ │ │ ├── rocksdb_ext.h │ │ │ │ │ ├── slice.go │ │ │ │ │ ├── snapshot.go │ │ │ │ │ └── util.go │ │ │ │ ├── slice.go │ │ │ │ ├── snapshot.go │ │ │ │ ├── stat.go │ │ │ │ ├── store.go │ │ │ │ ├── store_test.go │ │ │ │ └── writebatch.go │ │ │ ├── tools │ │ │ │ ├── build_config.sh │ │ │ │ ├── build_leveldb.sh │ │ │ │ ├── generate_commands.py │ │ │ │ └── redis_import │ │ │ │ │ ├── README.md │ │ │ │ │ ├── redis_import.py │ │ │ │ │ └── test.py │ │ │ └── upgrade │ │ │ │ └── ledis-upgrade-ttl │ │ │ │ └── main.go │ │ └── rdb │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── digest.go │ │ │ ├── encode.go │ │ │ ├── loader.go │ │ │ ├── loader_test.go │ │ │ ├── rdb_test.go │ │ │ ├── reader.go │ │ │ └── wandoujia-license │ ├── ssdb │ │ └── gossdb │ │ │ ├── .gitignore │ │ │ ├── Doxyfile │ │ │ ├── README.md │ │ │ ├── ssdb │ │ │ └── ssdb.go │ │ │ └── test.go │ ├── stretchr │ │ └── testify │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Godeps │ │ │ ├── Godeps.json │ │ │ └── Readme │ │ │ ├── LICENCE.txt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── _codegen │ │ │ └── main.go │ │ │ ├── assert │ │ │ ├── assertion_forward.go │ │ │ ├── assertion_forward.go.tmpl │ │ │ ├── assertions.go │ │ │ ├── assertions_test.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ ├── forward_assertions_test.go │ │ │ ├── http_assertions.go │ │ │ └── http_assertions_test.go │ │ │ ├── doc.go │ │ │ ├── http │ │ │ ├── doc.go │ │ │ ├── test_response_writer.go │ │ │ └── test_round_tripper.go │ │ │ ├── mock │ │ │ ├── doc.go │ │ │ ├── mock.go │ │ │ └── mock_test.go │ │ │ ├── package_test.go │ │ │ ├── require │ │ │ ├── doc.go │ │ │ ├── forward_requirements.go │ │ │ ├── forward_requirements_test.go │ │ │ ├── require.go │ │ │ ├── require.go.tmpl │ │ │ ├── require_forward.go │ │ │ ├── require_forward.go.tmpl │ │ │ ├── requirements.go │ │ │ └── requirements_test.go │ │ │ └── suite │ │ │ ├── doc.go │ │ │ ├── interfaces.go │ │ │ ├── suite.go │ │ │ └── suite_test.go │ ├── syndtr │ │ └── goleveldb │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── leveldb │ │ │ ├── batch.go │ │ │ ├── batch_test.go │ │ │ ├── bench_test.go │ │ │ ├── cache │ │ │ │ ├── bench_test.go │ │ │ │ ├── cache.go │ │ │ │ ├── cache_test.go │ │ │ │ └── lru.go │ │ │ ├── comparer.go │ │ │ ├── comparer │ │ │ │ ├── bytes_comparer.go │ │ │ │ └── comparer.go │ │ │ ├── corrupt_test.go │ │ │ ├── db.go │ │ │ ├── db_compaction.go │ │ │ ├── db_iter.go │ │ │ ├── db_snapshot.go │ │ │ ├── db_state.go │ │ │ ├── db_test.go │ │ │ ├── db_transaction.go │ │ │ ├── db_util.go │ │ │ ├── db_write.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── external_test.go │ │ │ ├── filter.go │ │ │ ├── filter │ │ │ │ ├── bloom.go │ │ │ │ ├── bloom_test.go │ │ │ │ └── filter.go │ │ │ ├── iterator │ │ │ │ ├── array_iter.go │ │ │ │ ├── array_iter_test.go │ │ │ │ ├── indexed_iter.go │ │ │ │ ├── indexed_iter_test.go │ │ │ │ ├── iter.go │ │ │ │ ├── iter_suite_test.go │ │ │ │ ├── merged_iter.go │ │ │ │ └── merged_iter_test.go │ │ │ ├── journal │ │ │ │ ├── journal.go │ │ │ │ └── journal_test.go │ │ │ ├── key.go │ │ │ ├── key_test.go │ │ │ ├── leveldb_suite_test.go │ │ │ ├── memdb │ │ │ │ ├── bench_test.go │ │ │ │ ├── memdb.go │ │ │ │ ├── memdb_suite_test.go │ │ │ │ └── memdb_test.go │ │ │ ├── opt │ │ │ │ └── options.go │ │ │ ├── options.go │ │ │ ├── session.go │ │ │ ├── session_compaction.go │ │ │ ├── session_record.go │ │ │ ├── session_record_test.go │ │ │ ├── session_util.go │ │ │ ├── storage │ │ │ │ ├── file_storage.go │ │ │ │ ├── file_storage_nacl.go │ │ │ │ ├── file_storage_plan9.go │ │ │ │ ├── file_storage_solaris.go │ │ │ │ ├── file_storage_test.go │ │ │ │ ├── file_storage_unix.go │ │ │ │ ├── file_storage_windows.go │ │ │ │ ├── mem_storage.go │ │ │ │ ├── mem_storage_test.go │ │ │ │ └── storage.go │ │ │ ├── table.go │ │ │ ├── table │ │ │ │ ├── block_test.go │ │ │ │ ├── reader.go │ │ │ │ ├── table.go │ │ │ │ ├── table_suite_test.go │ │ │ │ ├── table_test.go │ │ │ │ └── writer.go │ │ │ ├── testutil │ │ │ │ ├── db.go │ │ │ │ ├── ginkgo.go │ │ │ │ ├── iter.go │ │ │ │ ├── kv.go │ │ │ │ ├── kvtest.go │ │ │ │ ├── storage.go │ │ │ │ └── util.go │ │ │ ├── testutil_test.go │ │ │ ├── util.go │ │ │ ├── util │ │ │ │ ├── buffer.go │ │ │ │ ├── buffer_pool.go │ │ │ │ ├── buffer_test.go │ │ │ │ ├── crc32.go │ │ │ │ ├── hash.go │ │ │ │ ├── hash_test.go │ │ │ │ ├── range.go │ │ │ │ └── util.go │ │ │ ├── version.go │ │ │ └── version_test.go │ │ │ └── manualtest │ │ │ ├── dbstress │ │ │ ├── key.go │ │ │ └── main.go │ │ │ └── filelock │ │ │ └── main.go │ ├── theckman │ │ └── httpforwarded │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── httpforwarded_test.go │ │ │ ├── parse.go │ │ │ └── parse_test.go │ ├── valyala │ │ ├── bytebufferpool │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bytebuffer.go │ │ │ ├── bytebuffer_example_test.go │ │ │ ├── bytebuffer_test.go │ │ │ ├── bytebuffer_timing_test.go │ │ │ ├── doc.go │ │ │ ├── pool.go │ │ │ └── pool_test.go │ │ └── fasthttp │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── TODO │ │ │ ├── args.go │ │ │ ├── args_test.go │ │ │ ├── args_timing_test.go │ │ │ ├── bytebuffer.go │ │ │ ├── bytebuffer_example_test.go │ │ │ ├── bytebuffer_test.go │ │ │ ├── bytebuffer_timing_test.go │ │ │ ├── bytesconv.go │ │ │ ├── bytesconv_32.go │ │ │ ├── bytesconv_32_test.go │ │ │ ├── bytesconv_64.go │ │ │ ├── bytesconv_64_test.go │ │ │ ├── bytesconv_test.go │ │ │ ├── bytesconv_timing_test.go │ │ │ ├── client.go │ │ │ ├── client_example_test.go │ │ │ ├── client_test.go │ │ │ ├── client_timing_test.go │ │ │ ├── coarseTime.go │ │ │ ├── coarseTime_test.go │ │ │ ├── compress.go │ │ │ ├── compress_test.go │ │ │ ├── cookie.go │ │ │ ├── cookie_test.go │ │ │ ├── cookie_timing_test.go │ │ │ ├── doc.go │ │ │ ├── expvarhandler │ │ │ ├── expvar.go │ │ │ └── expvar_test.go │ │ │ ├── fasthttpadaptor │ │ │ ├── adaptor.go │ │ │ └── adaptor_test.go │ │ │ ├── fasthttputil │ │ │ ├── doc.go │ │ │ ├── ecdsa.key │ │ │ ├── ecdsa.pem │ │ │ ├── inmemory_listener.go │ │ │ ├── inmemory_listener_test.go │ │ │ ├── inmemory_listener_timing_test.go │ │ │ ├── pipeconns.go │ │ │ ├── pipeconns_test.go │ │ │ ├── rsa.key │ │ │ └── rsa.pem │ │ │ ├── fs.go │ │ │ ├── fs_example_test.go │ │ │ ├── fs_handler_example_test.go │ │ │ ├── fs_test.go │ │ │ ├── header.go │ │ │ ├── header_regression_test.go │ │ │ ├── header_test.go │ │ │ ├── header_timing_test.go │ │ │ ├── http.go │ │ │ ├── http_test.go │ │ │ ├── lbclient.go │ │ │ ├── lbclient_example_test.go │ │ │ ├── nocopy.go │ │ │ ├── peripconn.go │ │ │ ├── peripconn_test.go │ │ │ ├── requestctx_setbodystreamwriter_example_test.go │ │ │ ├── reuseport │ │ │ ├── LICENSE │ │ │ ├── reuseport.go │ │ │ ├── reuseport_example_test.go │ │ │ └── reuseport_test.go │ │ │ ├── server.go │ │ │ ├── server_example_test.go │ │ │ ├── server_test.go │ │ │ ├── server_timing_test.go │ │ │ ├── ssl-cert-snakeoil.key │ │ │ ├── ssl-cert-snakeoil.pem │ │ │ ├── stackless │ │ │ ├── doc.go │ │ │ ├── func.go │ │ │ ├── func_test.go │ │ │ ├── func_timing_test.go │ │ │ ├── writer.go │ │ │ └── writer_test.go │ │ │ ├── status.go │ │ │ ├── stream.go │ │ │ ├── stream_test.go │ │ │ ├── stream_timing_test.go │ │ │ ├── strings.go │ │ │ ├── tcpdialer.go │ │ │ ├── timer.go │ │ │ ├── uri.go │ │ │ ├── uri_test.go │ │ │ ├── uri_timing_test.go │ │ │ ├── uri_unix.go │ │ │ ├── uri_windows.go │ │ │ ├── uri_windows_test.go │ │ │ ├── userdata.go │ │ │ ├── userdata_test.go │ │ │ ├── userdata_timing_test.go │ │ │ ├── workerpool.go │ │ │ └── workerpool_test.go │ ├── xeipuuv │ │ ├── gojsonpointer │ │ │ ├── LICENSE-APACHE-2.0.txt │ │ │ ├── README.md │ │ │ ├── pointer.go │ │ │ └── pointer_test.go │ │ ├── gojsonreference │ │ │ ├── LICENSE-APACHE-2.0.txt │ │ │ ├── README.md │ │ │ ├── reference.go │ │ │ └── reference_test.go │ │ └── gojsonschema │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE-APACHE-2.0.txt │ │ │ ├── README.md │ │ │ ├── errors.go │ │ │ ├── format_checkers.go │ │ │ ├── format_checkers_test.go │ │ │ ├── glide.yaml │ │ │ ├── internalLog.go │ │ │ ├── jsonContext.go │ │ │ ├── jsonLoader.go │ │ │ ├── json_schema_test_suite │ │ │ ├── LICENSE │ │ │ ├── additionalItems │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_20.json │ │ │ │ ├── data_21.json │ │ │ │ ├── data_30.json │ │ │ │ ├── data_31.json │ │ │ │ ├── data_40.json │ │ │ │ ├── schema_0.json │ │ │ │ ├── schema_1.json │ │ │ │ ├── schema_2.json │ │ │ │ ├── schema_3.json │ │ │ │ └── schema_4.json │ │ │ ├── additionalProperties │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_03.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_11.json │ │ │ │ ├── data_12.json │ │ │ │ ├── data_20.json │ │ │ │ ├── schema_0.json │ │ │ │ ├── schema_1.json │ │ │ │ └── schema_2.json │ │ │ ├── allOf │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_03.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_11.json │ │ │ │ ├── data_12.json │ │ │ │ ├── data_13.json │ │ │ │ ├── data_14.json │ │ │ │ ├── data_20.json │ │ │ │ ├── data_21.json │ │ │ │ ├── schema_0.json │ │ │ │ ├── schema_1.json │ │ │ │ └── schema_2.json │ │ │ ├── anyOf │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_03.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_11.json │ │ │ │ ├── data_12.json │ │ │ │ ├── schema_0.json │ │ │ │ └── schema_1.json │ │ │ ├── definitions │ │ │ │ ├── data_00.json │ │ │ │ ├── data_10.json │ │ │ │ ├── schema_0.json │ │ │ │ └── schema_1.json │ │ │ ├── dependencies │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_03.json │ │ │ │ ├── data_04.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_11.json │ │ │ │ ├── data_12.json │ │ │ │ ├── data_13.json │ │ │ │ ├── data_14.json │ │ │ │ ├── data_15.json │ │ │ │ ├── data_20.json │ │ │ │ ├── data_21.json │ │ │ │ ├── data_22.json │ │ │ │ ├── data_23.json │ │ │ │ ├── data_24.json │ │ │ │ ├── schema_0.json │ │ │ │ ├── schema_1.json │ │ │ │ └── schema_2.json │ │ │ ├── enum │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_11.json │ │ │ │ ├── data_12.json │ │ │ │ ├── schema_0.json │ │ │ │ └── schema_1.json │ │ │ ├── format │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_03.json │ │ │ │ ├── data_04.json │ │ │ │ ├── data_05.json │ │ │ │ ├── data_06.json │ │ │ │ ├── data_07.json │ │ │ │ ├── data_08.json │ │ │ │ ├── data_09.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_11.json │ │ │ │ ├── data_12.json │ │ │ │ ├── data_13.json │ │ │ │ ├── data_14.json │ │ │ │ ├── data_15.json │ │ │ │ ├── data_16.json │ │ │ │ ├── data_17.json │ │ │ │ ├── data_18.json │ │ │ │ ├── data_19.json │ │ │ │ ├── data_20.json │ │ │ │ ├── data_21.json │ │ │ │ ├── data_22.json │ │ │ │ ├── data_23.json │ │ │ │ ├── data_24.json │ │ │ │ ├── data_25.json │ │ │ │ ├── data_26.json │ │ │ │ ├── data_27.json │ │ │ │ ├── data_28.json │ │ │ │ ├── schema_0.json │ │ │ │ ├── schema_1.json │ │ │ │ ├── schema_2.json │ │ │ │ ├── schema_3.json │ │ │ │ ├── schema_4.json │ │ │ │ ├── schema_5.json │ │ │ │ └── schema_6.json │ │ │ ├── items │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_11.json │ │ │ │ ├── schema_0.json │ │ │ │ └── schema_1.json │ │ │ ├── maxItems │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_03.json │ │ │ │ └── schema_0.json │ │ │ ├── maxLength │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_03.json │ │ │ │ ├── data_04.json │ │ │ │ └── schema_0.json │ │ │ ├── maxProperties │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_03.json │ │ │ │ └── schema_0.json │ │ │ ├── maximum │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_11.json │ │ │ │ ├── schema_0.json │ │ │ │ └── schema_1.json │ │ │ ├── minItems │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_03.json │ │ │ │ └── schema_0.json │ │ │ ├── minLength │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_03.json │ │ │ │ ├── data_04.json │ │ │ │ └── schema_0.json │ │ │ ├── minProperties │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_03.json │ │ │ │ └── schema_0.json │ │ │ ├── minimum │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_11.json │ │ │ │ ├── schema_0.json │ │ │ │ └── schema_1.json │ │ │ ├── multipleOf │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_11.json │ │ │ │ ├── data_12.json │ │ │ │ ├── data_20.json │ │ │ │ ├── data_21.json │ │ │ │ ├── schema_0.json │ │ │ │ ├── schema_1.json │ │ │ │ └── schema_2.json │ │ │ ├── not │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_11.json │ │ │ │ ├── data_12.json │ │ │ │ ├── data_20.json │ │ │ │ ├── data_21.json │ │ │ │ ├── data_22.json │ │ │ │ ├── schema_0.json │ │ │ │ ├── schema_1.json │ │ │ │ └── schema_2.json │ │ │ ├── oneOf │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_03.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_11.json │ │ │ │ ├── data_12.json │ │ │ │ ├── schema_0.json │ │ │ │ └── schema_1.json │ │ │ ├── pattern │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ └── schema_0.json │ │ │ ├── patternProperties │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_03.json │ │ │ │ ├── data_04.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_11.json │ │ │ │ ├── data_12.json │ │ │ │ ├── data_13.json │ │ │ │ ├── data_14.json │ │ │ │ ├── data_15.json │ │ │ │ ├── data_20.json │ │ │ │ ├── data_21.json │ │ │ │ ├── data_22.json │ │ │ │ ├── data_23.json │ │ │ │ ├── data_24.json │ │ │ │ ├── data_25.json │ │ │ │ ├── data_26.json │ │ │ │ ├── schema_0.json │ │ │ │ ├── schema_1.json │ │ │ │ ├── schema_2.json │ │ │ │ ├── schema_3.json │ │ │ │ └── schema_4.json │ │ │ ├── properties │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_03.json │ │ │ │ ├── data_04.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_11.json │ │ │ │ ├── data_12.json │ │ │ │ ├── data_13.json │ │ │ │ ├── data_14.json │ │ │ │ ├── data_15.json │ │ │ │ ├── data_16.json │ │ │ │ ├── data_17.json │ │ │ │ ├── schema_0.json │ │ │ │ └── schema_1.json │ │ │ ├── ref │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_03.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_11.json │ │ │ │ ├── data_20.json │ │ │ │ ├── data_21.json │ │ │ │ ├── data_30.json │ │ │ │ ├── data_31.json │ │ │ │ ├── data_32.json │ │ │ │ ├── data_40.json │ │ │ │ ├── data_41.json │ │ │ │ ├── data_50.json │ │ │ │ ├── data_51.json │ │ │ │ ├── schema_0.json │ │ │ │ ├── schema_1.json │ │ │ │ ├── schema_2.json │ │ │ │ ├── schema_3.json │ │ │ │ ├── schema_4.json │ │ │ │ └── schema_5.json │ │ │ ├── refRemote │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_11.json │ │ │ │ ├── data_20.json │ │ │ │ ├── data_21.json │ │ │ │ ├── data_30.json │ │ │ │ ├── data_31.json │ │ │ │ ├── remoteFiles │ │ │ │ │ ├── folder │ │ │ │ │ │ └── folderInteger.json │ │ │ │ │ ├── integer.json │ │ │ │ │ └── subSchemas.json │ │ │ │ ├── schema_0.json │ │ │ │ ├── schema_1.json │ │ │ │ ├── schema_2.json │ │ │ │ └── schema_3.json │ │ │ ├── required │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_10.json │ │ │ │ ├── schema_0.json │ │ │ │ └── schema_1.json │ │ │ ├── type │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_03.json │ │ │ │ ├── data_04.json │ │ │ │ ├── data_05.json │ │ │ │ ├── data_06.json │ │ │ │ ├── data_10.json │ │ │ │ ├── data_11.json │ │ │ │ ├── data_12.json │ │ │ │ ├── data_13.json │ │ │ │ ├── data_14.json │ │ │ │ ├── data_15.json │ │ │ │ ├── data_16.json │ │ │ │ ├── data_20.json │ │ │ │ ├── data_21.json │ │ │ │ ├── data_22.json │ │ │ │ ├── data_23.json │ │ │ │ ├── data_24.json │ │ │ │ ├── data_25.json │ │ │ │ ├── data_26.json │ │ │ │ ├── data_30.json │ │ │ │ ├── data_31.json │ │ │ │ ├── data_32.json │ │ │ │ ├── data_33.json │ │ │ │ ├── data_34.json │ │ │ │ ├── data_35.json │ │ │ │ ├── data_36.json │ │ │ │ ├── data_40.json │ │ │ │ ├── data_41.json │ │ │ │ ├── data_42.json │ │ │ │ ├── data_43.json │ │ │ │ ├── data_44.json │ │ │ │ ├── data_45.json │ │ │ │ ├── data_46.json │ │ │ │ ├── data_50.json │ │ │ │ ├── data_51.json │ │ │ │ ├── data_52.json │ │ │ │ ├── data_53.json │ │ │ │ ├── data_54.json │ │ │ │ ├── data_55.json │ │ │ │ ├── data_56.json │ │ │ │ ├── data_60.json │ │ │ │ ├── data_61.json │ │ │ │ ├── data_62.json │ │ │ │ ├── data_63.json │ │ │ │ ├── data_64.json │ │ │ │ ├── data_65.json │ │ │ │ ├── data_66.json │ │ │ │ ├── data_70.json │ │ │ │ ├── data_71.json │ │ │ │ ├── data_72.json │ │ │ │ ├── data_73.json │ │ │ │ ├── data_74.json │ │ │ │ ├── data_75.json │ │ │ │ ├── data_76.json │ │ │ │ ├── schema_0.json │ │ │ │ ├── schema_1.json │ │ │ │ ├── schema_2.json │ │ │ │ ├── schema_3.json │ │ │ │ ├── schema_4.json │ │ │ │ ├── schema_5.json │ │ │ │ ├── schema_6.json │ │ │ │ └── schema_7.json │ │ │ └── uniqueItems │ │ │ │ ├── data_00.json │ │ │ │ ├── data_01.json │ │ │ │ ├── data_010.json │ │ │ │ ├── data_011.json │ │ │ │ ├── data_012.json │ │ │ │ ├── data_02.json │ │ │ │ ├── data_03.json │ │ │ │ ├── data_04.json │ │ │ │ ├── data_05.json │ │ │ │ ├── data_06.json │ │ │ │ ├── data_07.json │ │ │ │ ├── data_08.json │ │ │ │ ├── data_09.json │ │ │ │ └── schema_0.json │ │ │ ├── locales.go │ │ │ ├── result.go │ │ │ ├── schema.go │ │ │ ├── schemaPool.go │ │ │ ├── schemaReferencePool.go │ │ │ ├── schemaType.go │ │ │ ├── schema_test.go │ │ │ ├── subSchema.go │ │ │ ├── types.go │ │ │ ├── utils.go │ │ │ ├── utils_test.go │ │ │ └── validation.go │ ├── yalp │ │ └── jsonpath │ │ │ ├── README.md │ │ │ ├── example_test.go │ │ │ ├── jsonpath.go │ │ │ └── jsonpath_test.go │ └── yudai │ │ ├── gojsondiff │ │ ├── .gitignore │ │ ├── FIXTURES │ │ │ ├── add_delete_from.json │ │ │ ├── add_delete_to.json │ │ │ ├── array.json │ │ │ ├── array_changed.json │ │ │ ├── base.json │ │ │ ├── base_changed.json │ │ │ ├── changed_types_from.json │ │ │ ├── changed_types_to.json │ │ │ ├── jsondiffpatch.json │ │ │ ├── long_text_from.json │ │ │ ├── long_text_to.json │ │ │ ├── move_from.json │ │ │ └── move_to.json │ │ ├── Godeps │ │ │ ├── Godeps.json │ │ │ └── Readme │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── deltas.go │ │ ├── formatter │ │ │ ├── ascii.go │ │ │ ├── ascii_test.go │ │ │ ├── delta.go │ │ │ ├── delta_test.go │ │ │ └── formatter_suite_test.go │ │ ├── gojsondiff.go │ │ ├── gojsondiff_suite_test.go │ │ ├── gojsondiff_test.go │ │ ├── jd │ │ │ └── main.go │ │ ├── jp │ │ │ └── main.go │ │ ├── tests │ │ │ └── helper.go │ │ ├── unmarshaler.go │ │ ├── unmarshaler_test.go │ │ └── wercker.yml │ │ └── golcs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── golcs.go │ │ └── golcs_test.go ├── go.uber.org │ ├── atomic │ │ ├── .github │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── atomic.go │ │ ├── atomic_test.go │ │ ├── example_test.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── scripts │ │ │ ├── cover.sh │ │ │ └── test-ubergo.sh │ │ ├── stress_test.go │ │ ├── string.go │ │ └── string_test.go │ ├── multierr │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── benchmarks_test.go │ │ ├── error.go │ │ ├── error_test.go │ │ ├── example_test.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ └── scripts │ │ │ └── cover.sh │ └── zap │ │ ├── .codecov.yml │ │ ├── .gitignore │ │ ├── .readme.tmpl │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── array.go │ │ ├── array_test.go │ │ ├── benchmarks │ │ ├── apex_test.go │ │ ├── doc.go │ │ ├── kit_test.go │ │ ├── lion_test.go │ │ ├── log15_test.go │ │ ├── logrus_test.go │ │ ├── scenario_bench_test.go │ │ ├── zap_test.go │ │ └── zerolog_test.go │ │ ├── buffer │ │ ├── buffer.go │ │ ├── buffer_test.go │ │ ├── pool.go │ │ └── pool_test.go │ │ ├── check_license.sh │ │ ├── common_test.go │ │ ├── config.go │ │ ├── config_test.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── encoder_test.go │ │ ├── error.go │ │ ├── error_test.go │ │ ├── example_test.go │ │ ├── field.go │ │ ├── field_test.go │ │ ├── flag.go │ │ ├── flag_test.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── global.go │ │ ├── global_test.go │ │ ├── http_handler.go │ │ ├── http_handler_test.go │ │ ├── internal │ │ ├── bufferpool │ │ │ └── bufferpool.go │ │ ├── color │ │ │ ├── color.go │ │ │ └── color_test.go │ │ ├── exit │ │ │ ├── exit.go │ │ │ └── exit_test.go │ │ └── readme │ │ │ └── readme.go │ │ ├── level.go │ │ ├── level_test.go │ │ ├── logger.go │ │ ├── logger_bench_test.go │ │ ├── logger_test.go │ │ ├── options.go │ │ ├── scripts │ │ └── cover.sh │ │ ├── stacktrace.go │ │ ├── stacktrace_ext_test.go │ │ ├── stacktrace_test.go │ │ ├── sugar.go │ │ ├── sugar_test.go │ │ ├── time.go │ │ ├── time_test.go │ │ ├── writer.go │ │ ├── writer_test.go │ │ ├── zapcore │ │ ├── console_encoder.go │ │ ├── console_encoder_bench_test.go │ │ ├── core.go │ │ ├── core_test.go │ │ ├── doc.go │ │ ├── encoder.go │ │ ├── encoder_test.go │ │ ├── entry.go │ │ ├── entry_test.go │ │ ├── error.go │ │ ├── error_test.go │ │ ├── field.go │ │ ├── field_test.go │ │ ├── hook.go │ │ ├── hook_test.go │ │ ├── json_encoder.go │ │ ├── json_encoder_bench_test.go │ │ ├── json_encoder_impl_test.go │ │ ├── level.go │ │ ├── level_strings.go │ │ ├── level_strings_test.go │ │ ├── level_test.go │ │ ├── marshaler.go │ │ ├── memory_encoder.go │ │ ├── memory_encoder_test.go │ │ ├── sampler.go │ │ ├── sampler_bench_test.go │ │ ├── sampler_test.go │ │ ├── tee.go │ │ ├── tee_logger_bench_test.go │ │ ├── tee_test.go │ │ ├── write_syncer.go │ │ ├── write_syncer_bench_test.go │ │ └── write_syncer_test.go │ │ ├── zapgrpc │ │ ├── zapgrpc.go │ │ └── zapgrpc_test.go │ │ └── zaptest │ │ ├── doc.go │ │ ├── observer │ │ ├── logged_entry.go │ │ ├── logged_entry_test.go │ │ ├── observer.go │ │ └── observer_test.go │ │ ├── timeout.go │ │ └── writer.go ├── 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 │ │ └── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── doc.go │ │ ├── examples_test.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 └── gopkg.in │ ├── gavv │ └── httpexpect.v1 │ │ ├── .gometalinter │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── _examples │ │ ├── doc.go │ │ ├── echo.go │ │ ├── echo_test.go │ │ ├── fasthttp.go │ │ ├── fasthttp_test.go │ │ ├── fruits.go │ │ ├── fruits_test.go │ │ ├── gae.go │ │ ├── gae_test.go │ │ ├── iris.go │ │ └── iris_test.go │ │ ├── array.go │ │ ├── array_test.go │ │ ├── binder.go │ │ ├── binder_test.go │ │ ├── boolean.go │ │ ├── boolean_test.go │ │ ├── chain.go │ │ ├── chain_test.go │ │ ├── cookie.go │ │ ├── cookie_test.go │ │ ├── datetime.go │ │ ├── datetime_test.go │ │ ├── expect.go │ │ ├── expect_test.go │ │ ├── helpers.go │ │ ├── helpers_test.go │ │ ├── match.go │ │ ├── match_test.go │ │ ├── mocks_test.go │ │ ├── number.go │ │ ├── number_test.go │ │ ├── object.go │ │ ├── object_test.go │ │ ├── printer.go │ │ ├── printer_test.go │ │ ├── reporter.go │ │ ├── request.go │ │ ├── request_test.go │ │ ├── response.go │ │ ├── response_test.go │ │ ├── string.go │ │ ├── string_test.go │ │ ├── value.go │ │ └── value_test.go │ ├── go-siris │ └── tcplisten.v1 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── socket.go │ │ ├── socket_darwin.go │ │ ├── socket_other.go │ │ ├── tcplisten.go │ │ ├── tcplisten_bsd.go │ │ ├── tcplisten_linux.go │ │ ├── tcplisten_test.go │ │ └── tcplisten_windows.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 ├── view ├── LICENSE ├── amber.go ├── django.go ├── engine.go ├── funcs.go ├── handlebars.go ├── html.go ├── pug.go └── view.go └── websocket ├── LICENSE ├── client.go ├── client.ts ├── config.go ├── connection.go ├── emitter.go ├── message.go ├── server.go └── websocket.go /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/CONTRIBUTING.MD -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /HINTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/HINTS.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/SUPPORTERS.md -------------------------------------------------------------------------------- /THIRD-PARTY-MIDDLEWARE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/THIRD-PARTY-MIDDLEWARE.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/LICENSE -------------------------------------------------------------------------------- /cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/cache.go -------------------------------------------------------------------------------- /cache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/cache_test.go -------------------------------------------------------------------------------- /cache/cfg/cfg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/cfg/cfg.go -------------------------------------------------------------------------------- /cache/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/client/client.go -------------------------------------------------------------------------------- /cache/client/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/client/handler.go -------------------------------------------------------------------------------- /cache/client/response_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/client/response_recorder.go -------------------------------------------------------------------------------- /cache/client/rule/chained.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/client/rule/chained.go -------------------------------------------------------------------------------- /cache/client/rule/conditional.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/client/rule/conditional.go -------------------------------------------------------------------------------- /cache/client/rule/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/client/rule/header.go -------------------------------------------------------------------------------- /cache/client/rule/not_satisfied.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/client/rule/not_satisfied.go -------------------------------------------------------------------------------- /cache/client/rule/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/client/rule/rule.go -------------------------------------------------------------------------------- /cache/client/rule/satisfied.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/client/rule/satisfied.go -------------------------------------------------------------------------------- /cache/client/rule/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/client/rule/validator.go -------------------------------------------------------------------------------- /cache/client/ruleset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/client/ruleset.go -------------------------------------------------------------------------------- /cache/client/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/client/utils.go -------------------------------------------------------------------------------- /cache/entry/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/entry/entry.go -------------------------------------------------------------------------------- /cache/entry/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/entry/response.go -------------------------------------------------------------------------------- /cache/entry/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/entry/util.go -------------------------------------------------------------------------------- /cache/ruleset/ruleset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/ruleset/ruleset.go -------------------------------------------------------------------------------- /cache/uri/uribuilder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/cache/uri/uribuilder.go -------------------------------------------------------------------------------- /configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/configuration.go -------------------------------------------------------------------------------- /configuration/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/configuration/configuration.go -------------------------------------------------------------------------------- /context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/context.go -------------------------------------------------------------------------------- /context/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/context/configuration.go -------------------------------------------------------------------------------- /context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/context/context.go -------------------------------------------------------------------------------- /context/framework.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/context/framework.go -------------------------------------------------------------------------------- /context/gzip_response_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/context/gzip_response_writer.go -------------------------------------------------------------------------------- /context/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/context/handler.go -------------------------------------------------------------------------------- /context/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/context/pool.go -------------------------------------------------------------------------------- /context/render_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/context/render_options.go -------------------------------------------------------------------------------- /context/response_recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/context/response_recorder.go -------------------------------------------------------------------------------- /context/response_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/context/response_writer.go -------------------------------------------------------------------------------- /context/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/context/transaction.go -------------------------------------------------------------------------------- /core/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/errors/errors.go -------------------------------------------------------------------------------- /core/errors/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/errors/errors_test.go -------------------------------------------------------------------------------- /core/errors/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/errors/reporter.go -------------------------------------------------------------------------------- /core/errors/reporter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/errors/reporter_test.go -------------------------------------------------------------------------------- /core/handlerconv/from_std.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/handlerconv/from_std.go -------------------------------------------------------------------------------- /core/handlerconv/from_std_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/handlerconv/from_std_test.go -------------------------------------------------------------------------------- /core/host/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/host/proxy.go -------------------------------------------------------------------------------- /core/host/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/host/proxy_test.go -------------------------------------------------------------------------------- /core/host/supervisor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/host/supervisor.go -------------------------------------------------------------------------------- /core/host/supervisor_task_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/host/supervisor_task_example_test.go -------------------------------------------------------------------------------- /core/host/supervisor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/host/supervisor_test.go -------------------------------------------------------------------------------- /core/host/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/host/task.go -------------------------------------------------------------------------------- /core/host/world.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/host/world.go -------------------------------------------------------------------------------- /core/memstore/memstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/memstore/memstore.go -------------------------------------------------------------------------------- /core/memstore/memstore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/memstore/memstore_test.go -------------------------------------------------------------------------------- /core/nettools/addr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/nettools/addr.go -------------------------------------------------------------------------------- /core/nettools/addr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/nettools/addr_test.go -------------------------------------------------------------------------------- /core/nettools/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/nettools/server.go -------------------------------------------------------------------------------- /core/nettools/tcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/nettools/tcp.go -------------------------------------------------------------------------------- /core/router/api_builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/api_builder.go -------------------------------------------------------------------------------- /core/router/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/fs.go -------------------------------------------------------------------------------- /core/router/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/handler.go -------------------------------------------------------------------------------- /core/router/macro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/macro.go -------------------------------------------------------------------------------- /core/router/macro/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/macro/LICENSE -------------------------------------------------------------------------------- /core/router/macro/interpreter/ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/macro/interpreter/ast/ast.go -------------------------------------------------------------------------------- /core/router/macro/macro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/macro/macro.go -------------------------------------------------------------------------------- /core/router/macro/macro_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/macro/macro_test.go -------------------------------------------------------------------------------- /core/router/macro/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/macro/template.go -------------------------------------------------------------------------------- /core/router/mime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/mime.go -------------------------------------------------------------------------------- /core/router/node/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/node/node.go -------------------------------------------------------------------------------- /core/router/party.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/party.go -------------------------------------------------------------------------------- /core/router/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/path.go -------------------------------------------------------------------------------- /core/router/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/path_test.go -------------------------------------------------------------------------------- /core/router/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/route.go -------------------------------------------------------------------------------- /core/router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/router.go -------------------------------------------------------------------------------- /core/router/router_handlers_order_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/router_handlers_order_test.go -------------------------------------------------------------------------------- /core/router/router_spa_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/router_spa_wrapper.go -------------------------------------------------------------------------------- /core/router/router_wildcard_root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/router_wildcard_root_test.go -------------------------------------------------------------------------------- /core/router/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/status.go -------------------------------------------------------------------------------- /core/router/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/core/router/status_test.go -------------------------------------------------------------------------------- /coverage-tests/fixtures/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/coverage-tests/fixtures/server.crt -------------------------------------------------------------------------------- /coverage-tests/fixtures/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/coverage-tests/fixtures/server.key -------------------------------------------------------------------------------- /coverage-tests/fixtures/static/demo/test.txt: -------------------------------------------------------------------------------- 1 | 1234test4321 -------------------------------------------------------------------------------- /coverage-tests/fixtures/static/test.css: -------------------------------------------------------------------------------- 1 | body{font-size: 30px} 2 | -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/doc.go -------------------------------------------------------------------------------- /go-siris.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/go-siris.jpg -------------------------------------------------------------------------------- /go-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/go-test.sh -------------------------------------------------------------------------------- /httptest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/httptest/LICENSE -------------------------------------------------------------------------------- /httptest/httptest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/httptest/httptest.go -------------------------------------------------------------------------------- /httptest/netutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/httptest/netutils.go -------------------------------------------------------------------------------- /httptest/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/httptest/status.go -------------------------------------------------------------------------------- /sessions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/README.md -------------------------------------------------------------------------------- /sessions/couchbase/sess_couchbase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/couchbase/sess_couchbase.go -------------------------------------------------------------------------------- /sessions/ledis/ledis_session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/ledis/ledis_session.go -------------------------------------------------------------------------------- /sessions/memcache/sess_memcache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/memcache/sess_memcache.go -------------------------------------------------------------------------------- /sessions/mysql/sess_mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/mysql/sess_mysql.go -------------------------------------------------------------------------------- /sessions/postgres/sess_postgresql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/postgres/sess_postgresql.go -------------------------------------------------------------------------------- /sessions/redis/sess_redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/redis/sess_redis.go -------------------------------------------------------------------------------- /sessions/sess_cookie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/sess_cookie.go -------------------------------------------------------------------------------- /sessions/sess_cookie_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/sess_cookie_test.go -------------------------------------------------------------------------------- /sessions/sess_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/sess_file.go -------------------------------------------------------------------------------- /sessions/sess_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/sess_file_test.go -------------------------------------------------------------------------------- /sessions/sess_mem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/sess_mem.go -------------------------------------------------------------------------------- /sessions/sess_mem_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/sess_mem_test.go -------------------------------------------------------------------------------- /sessions/sess_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/sess_test.go -------------------------------------------------------------------------------- /sessions/sess_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/sess_utils.go -------------------------------------------------------------------------------- /sessions/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/session.go -------------------------------------------------------------------------------- /sessions/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/session_test.go -------------------------------------------------------------------------------- /sessions/sessions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/sessions.go -------------------------------------------------------------------------------- /sessions/ssdb/sess_ssdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/sessions/ssdb/sess_ssdb.go -------------------------------------------------------------------------------- /siris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/siris.go -------------------------------------------------------------------------------- /siris_deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/siris_deprecated.go -------------------------------------------------------------------------------- /siris_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/siris_test.go -------------------------------------------------------------------------------- /typescript/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/typescript/AUTHORS -------------------------------------------------------------------------------- /typescript/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/typescript/LICENSE -------------------------------------------------------------------------------- /typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/typescript/README.md -------------------------------------------------------------------------------- /typescript/_examples/editor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/typescript/_examples/editor/main.go -------------------------------------------------------------------------------- /typescript/_examples/typescript/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/typescript/_examples/typescript/main.go -------------------------------------------------------------------------------- /typescript/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/typescript/config.go -------------------------------------------------------------------------------- /typescript/editor/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/typescript/editor/config.go -------------------------------------------------------------------------------- /typescript/editor/editor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/typescript/editor/editor.go -------------------------------------------------------------------------------- /typescript/npm/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/typescript/npm/exec.go -------------------------------------------------------------------------------- /typescript/npm/npm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/typescript/npm/npm.go -------------------------------------------------------------------------------- /typescript/typescript.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/typescript/typescript.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/BurntSushi/toml/COPYING -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/_examples/readme2.toml: -------------------------------------------------------------------------------- 1 | some_key_NAME = "wat" 2 | -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/BurntSushi/toml/doc.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/BurntSushi/toml/lex.go -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/session.vim: -------------------------------------------------------------------------------- 1 | au BufWritePost *.go silent!make tags > /dev/null 2>&1 2 | -------------------------------------------------------------------------------- /vendor/github.com/Joker/jade/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/Joker/jade/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/Joker/jade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/Joker/jade/README.md -------------------------------------------------------------------------------- /vendor/github.com/Joker/jade/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/Joker/jade/config.go -------------------------------------------------------------------------------- /vendor/github.com/Joker/jade/example/jade_include/foot.jade: -------------------------------------------------------------------------------- 1 | #footer 2 | p Copyright (c) foobar -------------------------------------------------------------------------------- /vendor/github.com/Joker/jade/jade_lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/Joker/jade/jade_lex.go -------------------------------------------------------------------------------- /vendor/github.com/Joker/jade/jade_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/Joker/jade/jade_node.go -------------------------------------------------------------------------------- /vendor/github.com/Joker/jade/jade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/Joker/jade/jade_test.go -------------------------------------------------------------------------------- /vendor/github.com/Joker/jade/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/Joker/jade/lex.go -------------------------------------------------------------------------------- /vendor/github.com/Joker/jade/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/Joker/jade/node.go -------------------------------------------------------------------------------- /vendor/github.com/Joker/jade/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/Joker/jade/parse.go -------------------------------------------------------------------------------- /vendor/github.com/Joker/jade/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/Joker/jade/template.go -------------------------------------------------------------------------------- /vendor/github.com/Joker/jade/testdata/includes/foot.jade: -------------------------------------------------------------------------------- 1 | #footer 2 | p Copyright (c) foobar -------------------------------------------------------------------------------- /vendor/github.com/aead/chacha20/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/aead/chacha20/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/aead/chacha20/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/aead/chacha20/README.md -------------------------------------------------------------------------------- /vendor/github.com/ajg/form/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/ajg/form/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/ajg/form/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/ajg/form/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ajg/form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/ajg/form/README.md -------------------------------------------------------------------------------- /vendor/github.com/ajg/form/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/ajg/form/TODO.md -------------------------------------------------------------------------------- /vendor/github.com/ajg/form/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/ajg/form/decode.go -------------------------------------------------------------------------------- /vendor/github.com/ajg/form/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/ajg/form/decode_test.go -------------------------------------------------------------------------------- /vendor/github.com/ajg/form/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/ajg/form/encode.go -------------------------------------------------------------------------------- /vendor/github.com/ajg/form/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/ajg/form/encode_test.go -------------------------------------------------------------------------------- /vendor/github.com/ajg/form/form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/ajg/form/form.go -------------------------------------------------------------------------------- /vendor/github.com/ajg/form/form_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/ajg/form/form_test.go -------------------------------------------------------------------------------- /vendor/github.com/ajg/form/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/ajg/form/node.go -------------------------------------------------------------------------------- /vendor/github.com/ajg/form/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/ajg/form/node_test.go -------------------------------------------------------------------------------- /vendor/github.com/ajg/form/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/ajg/form/pre-commit.sh -------------------------------------------------------------------------------- /vendor/github.com/aymerick/raymond/VERSION: -------------------------------------------------------------------------------- 1 | 2.0.1 2 | -------------------------------------------------------------------------------- /vendor/github.com/bradfitz/gomemcache/.gitignore: -------------------------------------------------------------------------------- 1 | _* 2 | *.out 3 | *~ 4 | -------------------------------------------------------------------------------- /vendor/github.com/couchbase/go-couchbase/cbdatasource/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/couchbase/go-couchbase/cbdatasource/example/.gitignore: -------------------------------------------------------------------------------- 1 | example 2 | -------------------------------------------------------------------------------- /vendor/github.com/couchbase/goutils/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | -------------------------------------------------------------------------------- /vendor/github.com/cupcake/rdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/cupcake/rdb/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/cupcake/rdb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/cupcake/rdb/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/cupcake/rdb/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/cupcake/rdb/LICENCE -------------------------------------------------------------------------------- /vendor/github.com/cupcake/rdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/cupcake/rdb/README.md -------------------------------------------------------------------------------- /vendor/github.com/cupcake/rdb/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/cupcake/rdb/decoder.go -------------------------------------------------------------------------------- /vendor/github.com/cupcake/rdb/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/cupcake/rdb/encoder.go -------------------------------------------------------------------------------- /vendor/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/edsrzf/mmap-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/edsrzf/mmap-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/edsrzf/mmap-go/mmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/edsrzf/mmap-go/mmap.go -------------------------------------------------------------------------------- /vendor/github.com/eknkc/amber/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/eknkc/amber/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/eknkc/amber/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/eknkc/amber/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/eknkc/amber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/eknkc/amber/README.md -------------------------------------------------------------------------------- /vendor/github.com/eknkc/amber/compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/eknkc/amber/compiler.go -------------------------------------------------------------------------------- /vendor/github.com/eknkc/amber/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/eknkc/amber/doc.go -------------------------------------------------------------------------------- /vendor/github.com/eknkc/amber/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/eknkc/amber/runtime.go -------------------------------------------------------------------------------- /vendor/github.com/eknkc/amber/samples/recursion.parent.amber: -------------------------------------------------------------------------------- 1 | block main 2 | -------------------------------------------------------------------------------- /vendor/github.com/fatih/structs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/fatih/structs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fatih/structs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/fatih/structs/README.md -------------------------------------------------------------------------------- /vendor/github.com/fatih/structs/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/fatih/structs/field.go -------------------------------------------------------------------------------- /vendor/github.com/fatih/structs/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/fatih/structs/tags.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/flosch/pongo2/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/flosch/pongo2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/flosch/pongo2/README.md -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/flosch/pongo2/doc.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/docs/examples.md: -------------------------------------------------------------------------------- 1 | (Stub, TBA) -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/docs/index.md: -------------------------------------------------------------------------------- 1 | (Stub, TBA) -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/docs/macros.md: -------------------------------------------------------------------------------- 1 | (Stub, TBA) 2 | -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/docs/template_sets.md: -------------------------------------------------------------------------------- 1 | (Stub, TBA) -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/docs/write_filters.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/docs/write_tags.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/flosch/pongo2/error.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/flosch/pongo2/lexer.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/flosch/pongo2/nodes.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/flosch/pongo2/parser.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/pongo2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/flosch/pongo2/pongo2.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/flosch/pongo2/tags.go -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/template_tests/base_dir_test/base.html: -------------------------------------------------------------------------------- 1 | Hello from {{ base_directory }} -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/template_tests/base_dir_test/subdir/include.html: -------------------------------------------------------------------------------- 1 | {% include "base.html" %} -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/template_tests/base_dir_test/subdir/index.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/template_tests/base_dir_test/subdir/ssi.html: -------------------------------------------------------------------------------- 1 | {% ssi "base.html" parsed %} -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/template_tests/empty.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/template_tests/empty.tpl.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/template_tests/inheritance/base2.tpl: -------------------------------------------------------------------------------- 1 | {% include "doesnotexist.tpl" %} 2 | -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/template_tests/inheritance/cycle_include.tpl: -------------------------------------------------------------------------------- 1 | Included '{{ cycleitem }}'. -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/template_tests/issues.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/template_tests/issues.tpl.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/template_tests/macro-compilation.err.out: -------------------------------------------------------------------------------- 1 | .*another macro with name 'test_override' already exported -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/template_tests/now.tpl.out: -------------------------------------------------------------------------------- 1 | 2 | Wed Feb 5 18:31:45 +0000 UTC 2014 -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/template_tests/pongo2ctx.tpl: -------------------------------------------------------------------------------- 1 | {{ pongo2.version }} -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/template_tests/pongo2ctx.tpl.out: -------------------------------------------------------------------------------- 1 | dev -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/template_tests/ssi.helper: -------------------------------------------------------------------------------- 1 | {{ number }} 2 | {{ "hello" }} -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/template_tests/widthratio.tpl.out: -------------------------------------------------------------------------------- 1 | 2 | 88 3 | 4 | 88 -------------------------------------------------------------------------------- /vendor/github.com/flosch/pongo2/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/flosch/pongo2/value.go -------------------------------------------------------------------------------- /vendor/github.com/garyburd/redigo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/garyburd/redigo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gavv/monotime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/gavv/monotime/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gavv/monotime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/gavv/monotime/README.md -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/golang/snappy/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/golang/snappy/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/golang/snappy/README -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/golang/snappy/decode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/golang/snappy/encode.go -------------------------------------------------------------------------------- /vendor/github.com/golang/snappy/snappy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/golang/snappy/snappy.go -------------------------------------------------------------------------------- /vendor/github.com/google/go-querystring/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /vendor/github.com/imkira/go-interpol/.codebeatignore: -------------------------------------------------------------------------------- 1 | examples/* 2 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | /coverage.txt 3 | /profile.out 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/skip_tests/array/skip_test.go: -------------------------------------------------------------------------------- 1 | ../number/skip_test.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/skip_tests/object/skip_test.go: -------------------------------------------------------------------------------- 1 | ../number/skip_test.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/skip_tests/string/skip_test.go: -------------------------------------------------------------------------------- 1 | ../number/skip_test.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/juju/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/juju/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/juju/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/juju/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/juju/errors/doc.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/juju/errors/error.go -------------------------------------------------------------------------------- /vendor/github.com/juju/errors/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/juju/errors/path.go -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.wb.expect: -------------------------------------------------------------------------------- 1 | 2$ -------------------------------------------------------------------------------- /vendor/github.com/klauspost/compress/flate/testdata/huffman-zero.wb.expect-noinput: -------------------------------------------------------------------------------- 1 | 2$ -------------------------------------------------------------------------------- /vendor/github.com/klauspost/cpuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/klauspost/cpuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.gitignore: -------------------------------------------------------------------------------- 1 | .db 2 | *.test 3 | *~ 4 | *.swp 5 | -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/.travis.sh -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/README.md -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/array.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/array_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/array_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/bench_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/buf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/buf.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/certs/README -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/root.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/certs/root.crt -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/certs/server.crt -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/certs/server.key -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/conn.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/conn_go18.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/conn_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/copy.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/copy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/copy_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/encode.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/encode_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/error.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/go18_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/go18_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/hstore/hstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/hstore/hstore.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/issues_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/issues_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/notify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/notify.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/notify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/notify_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/oid/doc.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/oid/gen.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/oid/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/oid/types.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/ssl.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_go1.7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/ssl_go1.7.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/ssl_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/ssl_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/ssl_windows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/url.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/url_test.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/user_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/user_posix.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/user_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/user_windows.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/lib/pq/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/lib/pq/uuid_test.go -------------------------------------------------------------------------------- /vendor/github.com/lucas-clemente/fnv128a/README.md: -------------------------------------------------------------------------------- 1 | # fnv128a 2 | 3 | Implementation of the FNV-1a 128bit hash in go 4 | -------------------------------------------------------------------------------- /vendor/github.com/microcosm-cc/bluemonday/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: x2wlA1x0X8CK45ybWpZRCVRB4g7vtkhaw 2 | -------------------------------------------------------------------------------- /vendor/github.com/moul/http2curl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/moul/http2curl/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/moul/http2curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/moul/http2curl/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pasztorpisti/qs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/pasztorpisti/qs/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-buffruneio/.gitignore: -------------------------------------------------------------------------------- 1 | *.test -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/satori/go.uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/satori/go.uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/sergi/go-diff/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/sergi/go-diff/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/sergi/go-diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/sergi/go-diff/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sergi/go-diff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/sergi/go-diff/Makefile -------------------------------------------------------------------------------- /vendor/github.com/sergi/go-diff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/sergi/go-diff/README.md -------------------------------------------------------------------------------- /vendor/github.com/siddontang/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/siddontang/go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/siddontang/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/siddontang/go/README.md -------------------------------------------------------------------------------- /vendor/github.com/siddontang/rdb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/siddontang/rdb/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/siddontang/rdb/README.md: -------------------------------------------------------------------------------- 1 | # rdb 2 | 3 | Handling Redis RDB format. 4 | -------------------------------------------------------------------------------- /vendor/github.com/ssdb/gossdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/ssdb/gossdb/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/ssdb/gossdb/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/ssdb/gossdb/Doxyfile -------------------------------------------------------------------------------- /vendor/github.com/ssdb/gossdb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/ssdb/gossdb/README.md -------------------------------------------------------------------------------- /vendor/github.com/ssdb/gossdb/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/ssdb/gossdb/test.go -------------------------------------------------------------------------------- /vendor/github.com/stretchr/testify/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/stretchr/testify/doc.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/fasthttp/.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | *.pprof 3 | *.fasthttp.gz 4 | -------------------------------------------------------------------------------- /vendor/github.com/valyala/fasthttp/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/valyala/fasthttp/TODO -------------------------------------------------------------------------------- /vendor/github.com/valyala/fasthttp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/valyala/fasthttp/doc.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/fasthttp/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/valyala/fasthttp/fs.go -------------------------------------------------------------------------------- /vendor/github.com/valyala/fasthttp/uri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/valyala/fasthttp/uri.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/.gitignore: -------------------------------------------------------------------------------- 1 | *.sw[nop] 2 | -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalItems/data_00.json: -------------------------------------------------------------------------------- 1 | [null,2,3,4] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalItems/data_01.json: -------------------------------------------------------------------------------- 1 | [null,2,3,"foo"] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalItems/data_10.json: -------------------------------------------------------------------------------- 1 | [1,2,3,4,5] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalItems/data_20.json: -------------------------------------------------------------------------------- 1 | [1,2,3] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalItems/data_21.json: -------------------------------------------------------------------------------- 1 | [1,2,3,4] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalItems/data_30.json: -------------------------------------------------------------------------------- 1 | [1,2,3,4,5] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalItems/data_31.json: -------------------------------------------------------------------------------- 1 | {"foo":"bar"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalItems/data_40.json: -------------------------------------------------------------------------------- 1 | [1,"foo",false] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalItems/schema_3.json: -------------------------------------------------------------------------------- 1 | {"additionalItems":false} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalItems/schema_4.json: -------------------------------------------------------------------------------- 1 | {"items":[{"type":"integer"}]} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalProperties/data_00.json: -------------------------------------------------------------------------------- 1 | {"foo":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalProperties/data_01.json: -------------------------------------------------------------------------------- 1 | {"bar":2,"foo":1,"quux":"boom"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalProperties/data_02.json: -------------------------------------------------------------------------------- 1 | [1,2,3] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalProperties/data_03.json: -------------------------------------------------------------------------------- 1 | {"foo":1, "vroom": 2} 2 | -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalProperties/data_10.json: -------------------------------------------------------------------------------- 1 | {"foo":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalProperties/data_11.json: -------------------------------------------------------------------------------- 1 | {"bar":2,"foo":1,"quux":true} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalProperties/data_12.json: -------------------------------------------------------------------------------- 1 | {"bar":2,"foo":1,"quux":12} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/additionalProperties/data_20.json: -------------------------------------------------------------------------------- 1 | {"bar":2,"foo":1,"quux":true} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/allOf/data_00.json: -------------------------------------------------------------------------------- 1 | {"bar":2,"foo":"baz"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/allOf/data_01.json: -------------------------------------------------------------------------------- 1 | {"foo":"baz"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/allOf/data_02.json: -------------------------------------------------------------------------------- 1 | {"bar":2} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/allOf/data_03.json: -------------------------------------------------------------------------------- 1 | {"bar":"quux","foo":"baz"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/allOf/data_10.json: -------------------------------------------------------------------------------- 1 | {"bar":2,"baz":null,"foo":"quux"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/allOf/data_11.json: -------------------------------------------------------------------------------- 1 | {"baz":null,"foo":"quux"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/allOf/data_12.json: -------------------------------------------------------------------------------- 1 | {"bar":2,"baz":null} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/allOf/data_13.json: -------------------------------------------------------------------------------- 1 | {"bar":2,"foo":"quux"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/allOf/data_14.json: -------------------------------------------------------------------------------- 1 | {"bar":2} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/allOf/data_20.json: -------------------------------------------------------------------------------- 1 | 25 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/allOf/data_21.json: -------------------------------------------------------------------------------- 1 | 35 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/anyOf/data_00.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/anyOf/data_01.json: -------------------------------------------------------------------------------- 1 | 2.5 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/anyOf/data_02.json: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/anyOf/data_03.json: -------------------------------------------------------------------------------- 1 | 1.5 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/anyOf/data_10.json: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/anyOf/data_11.json: -------------------------------------------------------------------------------- 1 | "foobar" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/anyOf/data_12.json: -------------------------------------------------------------------------------- 1 | "foo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/anyOf/schema_0.json: -------------------------------------------------------------------------------- 1 | {"anyOf":[{"type":"integer"},{"minimum":2}]} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/dependencies/data_00.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/dependencies/data_01.json: -------------------------------------------------------------------------------- 1 | {"foo":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/dependencies/data_02.json: -------------------------------------------------------------------------------- 1 | {"bar":2,"foo":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/dependencies/data_03.json: -------------------------------------------------------------------------------- 1 | {"bar":2} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/dependencies/data_04.json: -------------------------------------------------------------------------------- 1 | "foo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/dependencies/data_10.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/dependencies/data_11.json: -------------------------------------------------------------------------------- 1 | {"bar":2,"foo":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/dependencies/data_12.json: -------------------------------------------------------------------------------- 1 | {"bar":2,"foo":1,"quux":3} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/dependencies/data_13.json: -------------------------------------------------------------------------------- 1 | {"foo":1,"quux":2} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/dependencies/data_14.json: -------------------------------------------------------------------------------- 1 | {"bar":1,"quux":2} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/dependencies/data_15.json: -------------------------------------------------------------------------------- 1 | {"quux":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/dependencies/data_20.json: -------------------------------------------------------------------------------- 1 | {"bar":2,"foo":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/dependencies/data_21.json: -------------------------------------------------------------------------------- 1 | {"foo":"quux"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/dependencies/data_22.json: -------------------------------------------------------------------------------- 1 | {"bar":2,"foo":"quux"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/dependencies/data_23.json: -------------------------------------------------------------------------------- 1 | {"bar":"quux","foo":2} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/dependencies/schema_0.json: -------------------------------------------------------------------------------- 1 | {"dependencies":{"bar":["foo"]}} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/dependencies/schema_1.json: -------------------------------------------------------------------------------- 1 | {"dependencies":{"quux":["foo","bar"]}} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/enum/data_00.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/enum/data_01.json: -------------------------------------------------------------------------------- 1 | 4 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/enum/data_10.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/enum/data_11.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/enum/data_12.json: -------------------------------------------------------------------------------- 1 | {"foo":false} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/enum/schema_0.json: -------------------------------------------------------------------------------- 1 | {"enum":[1,2,3]} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_00.json: -------------------------------------------------------------------------------- 1 | "test" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_01.json: -------------------------------------------------------------------------------- 1 | "test@" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_03.json: -------------------------------------------------------------------------------- 1 | "AB-10105" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_04.json: -------------------------------------------------------------------------------- 1 | "ABC10105" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_05.json: -------------------------------------------------------------------------------- 1 | "05:15:37" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_06.json: -------------------------------------------------------------------------------- 1 | "2015-05-13" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_07.json: -------------------------------------------------------------------------------- 1 | "2015-6-31" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_08.json: -------------------------------------------------------------------------------- 1 | "2015-01-30 19:08:06" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_09.json: -------------------------------------------------------------------------------- 1 | "18:31:24-05:00" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_11.json: -------------------------------------------------------------------------------- 1 | "2002-10-02T15:00:00Z" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_12.json: -------------------------------------------------------------------------------- 1 | "2002-10-02T15:00:00.05Z" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_13.json: -------------------------------------------------------------------------------- 1 | "example.com" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_14.json: -------------------------------------------------------------------------------- 1 | "sub.example.com" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_15.json: -------------------------------------------------------------------------------- 1 | "hello.co.uk" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_16.json: -------------------------------------------------------------------------------- 1 | "http://example.com" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_17.json: -------------------------------------------------------------------------------- 1 | "example_com" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_18.json: -------------------------------------------------------------------------------- 1 | "4.2.2.4" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_19.json: -------------------------------------------------------------------------------- 1 | "4.1.1111.45" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_21.json: -------------------------------------------------------------------------------- 1 | "FE80::0202:B3FF:FE1E:8329" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_25.json: -------------------------------------------------------------------------------- 1 | "mailto:john.doe@example.com" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_26.json: -------------------------------------------------------------------------------- 1 | "tel:+1-816-555-1212" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/data_28.json: -------------------------------------------------------------------------------- 1 | "example.com/path/to/file" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/schema_0.json: -------------------------------------------------------------------------------- 1 | {"type": "string", "format": "email"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/schema_1.json: -------------------------------------------------------------------------------- 1 | {"type": "string", "format": "invoice"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/schema_2.json: -------------------------------------------------------------------------------- 1 | {"type": "string", "format": "date-time"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/schema_3.json: -------------------------------------------------------------------------------- 1 | {"type": "string", "format": "hostname"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/schema_4.json: -------------------------------------------------------------------------------- 1 | {"type": "string", "format": "ipv4"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/schema_5.json: -------------------------------------------------------------------------------- 1 | {"type": "string", "format": "ipv6"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/format/schema_6.json: -------------------------------------------------------------------------------- 1 | {"type": "string", "format": "uri"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/items/data_00.json: -------------------------------------------------------------------------------- 1 | [1,2,3] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/items/data_01.json: -------------------------------------------------------------------------------- 1 | [1,"x"] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/items/data_02.json: -------------------------------------------------------------------------------- 1 | {"foo":"bar"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/items/data_10.json: -------------------------------------------------------------------------------- 1 | [1,"foo"] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/items/data_11.json: -------------------------------------------------------------------------------- 1 | ["foo",1] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/items/schema_0.json: -------------------------------------------------------------------------------- 1 | {"items":{"type":"integer"}} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maxItems/data_00.json: -------------------------------------------------------------------------------- 1 | [1] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maxItems/data_01.json: -------------------------------------------------------------------------------- 1 | [1,2] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maxItems/data_02.json: -------------------------------------------------------------------------------- 1 | [1,2,3] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maxItems/data_03.json: -------------------------------------------------------------------------------- 1 | "foobar" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maxItems/schema_0.json: -------------------------------------------------------------------------------- 1 | {"maxItems":2} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maxLength/data_00.json: -------------------------------------------------------------------------------- 1 | "f" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maxLength/data_01.json: -------------------------------------------------------------------------------- 1 | "fo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maxLength/data_02.json: -------------------------------------------------------------------------------- 1 | "foo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maxLength/data_03.json: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maxLength/data_04.json: -------------------------------------------------------------------------------- 1 | "世界" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maxLength/schema_0.json: -------------------------------------------------------------------------------- 1 | {"maxLength":2} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maxProperties/data_00.json: -------------------------------------------------------------------------------- 1 | {"foo":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maxProperties/data_01.json: -------------------------------------------------------------------------------- 1 | {"bar":2,"foo":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maxProperties/data_02.json: -------------------------------------------------------------------------------- 1 | {"bar":2,"baz":3,"foo":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maxProperties/data_03.json: -------------------------------------------------------------------------------- 1 | "foobar" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maxProperties/schema_0.json: -------------------------------------------------------------------------------- 1 | {"maxProperties":2} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maximum/data_00.json: -------------------------------------------------------------------------------- 1 | 2.6 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maximum/data_01.json: -------------------------------------------------------------------------------- 1 | 3.5 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maximum/data_02.json: -------------------------------------------------------------------------------- 1 | "x" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maximum/data_10.json: -------------------------------------------------------------------------------- 1 | 2.2 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maximum/data_11.json: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/maximum/schema_0.json: -------------------------------------------------------------------------------- 1 | {"maximum":3} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minItems/data_00.json: -------------------------------------------------------------------------------- 1 | [1,2] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minItems/data_01.json: -------------------------------------------------------------------------------- 1 | [1] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minItems/data_02.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minItems/data_03.json: -------------------------------------------------------------------------------- 1 | "" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minItems/schema_0.json: -------------------------------------------------------------------------------- 1 | {"minItems":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minLength/data_00.json: -------------------------------------------------------------------------------- 1 | "foo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minLength/data_01.json: -------------------------------------------------------------------------------- 1 | "fo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minLength/data_02.json: -------------------------------------------------------------------------------- 1 | "f" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minLength/data_03.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minLength/data_04.json: -------------------------------------------------------------------------------- 1 | "世" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minLength/schema_0.json: -------------------------------------------------------------------------------- 1 | {"minLength":2} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minProperties/data_00.json: -------------------------------------------------------------------------------- 1 | {"bar":2,"foo":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minProperties/data_01.json: -------------------------------------------------------------------------------- 1 | {"foo":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minProperties/data_02.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minProperties/data_03.json: -------------------------------------------------------------------------------- 1 | "" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minProperties/schema_0.json: -------------------------------------------------------------------------------- 1 | {"minProperties":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minimum/data_00.json: -------------------------------------------------------------------------------- 1 | 2.6 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minimum/data_01.json: -------------------------------------------------------------------------------- 1 | 0.6 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minimum/data_02.json: -------------------------------------------------------------------------------- 1 | "x" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minimum/data_10.json: -------------------------------------------------------------------------------- 1 | 1.2 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minimum/data_11.json: -------------------------------------------------------------------------------- 1 | 1.1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/minimum/schema_0.json: -------------------------------------------------------------------------------- 1 | {"minimum":1.1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/multipleOf/data_00.json: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/multipleOf/data_01.json: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/multipleOf/data_02.json: -------------------------------------------------------------------------------- 1 | "foo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/multipleOf/data_10.json: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/multipleOf/data_11.json: -------------------------------------------------------------------------------- 1 | 4.5 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/multipleOf/data_12.json: -------------------------------------------------------------------------------- 1 | 35 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/multipleOf/data_20.json: -------------------------------------------------------------------------------- 1 | 0.0075 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/multipleOf/data_21.json: -------------------------------------------------------------------------------- 1 | 0.00751 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/multipleOf/schema_0.json: -------------------------------------------------------------------------------- 1 | {"multipleOf":2} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/multipleOf/schema_1.json: -------------------------------------------------------------------------------- 1 | {"multipleOf":1.5} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/multipleOf/schema_2.json: -------------------------------------------------------------------------------- 1 | {"multipleOf":0.0001} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/not/data_00.json: -------------------------------------------------------------------------------- 1 | "foo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/not/data_01.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/not/data_10.json: -------------------------------------------------------------------------------- 1 | "foo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/not/data_11.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/not/data_12.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/not/data_20.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/not/data_21.json: -------------------------------------------------------------------------------- 1 | {"foo":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/not/data_22.json: -------------------------------------------------------------------------------- 1 | {"foo":"bar"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/not/schema_0.json: -------------------------------------------------------------------------------- 1 | {"not":{"type":"integer"}} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/not/schema_1.json: -------------------------------------------------------------------------------- 1 | {"not":{"type":["integer","boolean"]}} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/oneOf/data_00.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/oneOf/data_01.json: -------------------------------------------------------------------------------- 1 | 2.5 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/oneOf/data_02.json: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/oneOf/data_03.json: -------------------------------------------------------------------------------- 1 | 1.5 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/oneOf/data_10.json: -------------------------------------------------------------------------------- 1 | 3 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/oneOf/data_11.json: -------------------------------------------------------------------------------- 1 | "foobar" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/oneOf/data_12.json: -------------------------------------------------------------------------------- 1 | "foo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/oneOf/schema_0.json: -------------------------------------------------------------------------------- 1 | {"oneOf":[{"type":"integer"},{"minimum":2}]} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/pattern/data_00.json: -------------------------------------------------------------------------------- 1 | "aaa" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/pattern/data_01.json: -------------------------------------------------------------------------------- 1 | "abc" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/pattern/data_02.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/pattern/schema_0.json: -------------------------------------------------------------------------------- 1 | {"pattern":"^a*$"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/patternProperties/data_00.json: -------------------------------------------------------------------------------- 1 | {"foo":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/patternProperties/data_04.json: -------------------------------------------------------------------------------- 1 | 12 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/patternProperties/data_10.json: -------------------------------------------------------------------------------- 1 | {"a":21} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/patternProperties/data_11.json: -------------------------------------------------------------------------------- 1 | {"aaaa":18} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/patternProperties/data_12.json: -------------------------------------------------------------------------------- 1 | {"a":21,"aaaa":18} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/patternProperties/data_13.json: -------------------------------------------------------------------------------- 1 | {"a":"bar"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/patternProperties/data_14.json: -------------------------------------------------------------------------------- 1 | {"aaaa":31} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/patternProperties/data_20.json: -------------------------------------------------------------------------------- 1 | {"answer 1":"42"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/patternProperties/data_21.json: -------------------------------------------------------------------------------- 1 | {"a31b":null} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/patternProperties/data_22.json: -------------------------------------------------------------------------------- 1 | {"a_x_3":3} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/patternProperties/data_23.json: -------------------------------------------------------------------------------- 1 | {"a_X_3":3} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/properties/data_00.json: -------------------------------------------------------------------------------- 1 | {"bar":"baz","foo":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/properties/data_01.json: -------------------------------------------------------------------------------- 1 | {"bar":{},"foo":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/properties/data_02.json: -------------------------------------------------------------------------------- 1 | {"bar":{},"foo":[]} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/properties/data_03.json: -------------------------------------------------------------------------------- 1 | {"quux":[]} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/properties/data_04.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/properties/data_10.json: -------------------------------------------------------------------------------- 1 | {"foo":[1,2]} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/properties/data_11.json: -------------------------------------------------------------------------------- 1 | {"foo":[1,2,3,4]} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/properties/data_12.json: -------------------------------------------------------------------------------- 1 | {"foo":[]} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/properties/data_13.json: -------------------------------------------------------------------------------- 1 | {"fxo":[1,2]} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/properties/data_14.json: -------------------------------------------------------------------------------- 1 | {"fxo":[]} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/properties/data_15.json: -------------------------------------------------------------------------------- 1 | {"bar":[]} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/properties/data_16.json: -------------------------------------------------------------------------------- 1 | {"quux":3} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/properties/data_17.json: -------------------------------------------------------------------------------- 1 | {"quux":"foo"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/ref/data_00.json: -------------------------------------------------------------------------------- 1 | {"foo":false} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/ref/data_02.json: -------------------------------------------------------------------------------- 1 | {"bar":false} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/ref/data_03.json: -------------------------------------------------------------------------------- 1 | {"foo":{"bar":false}} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/ref/data_10.json: -------------------------------------------------------------------------------- 1 | {"bar":3} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/ref/data_11.json: -------------------------------------------------------------------------------- 1 | {"bar":true} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/ref/data_20.json: -------------------------------------------------------------------------------- 1 | [1,2] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/ref/data_21.json: -------------------------------------------------------------------------------- 1 | [1,"foo"] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/ref/data_30.json: -------------------------------------------------------------------------------- 1 | {"slash":"aoeu"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/ref/data_31.json: -------------------------------------------------------------------------------- 1 | {"tilda":"aoeu"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/ref/data_32.json: -------------------------------------------------------------------------------- 1 | {"percent":"aoeu"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/ref/data_40.json: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/ref/data_41.json: -------------------------------------------------------------------------------- 1 | "a" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/ref/data_50.json: -------------------------------------------------------------------------------- 1 | {"minLength":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/ref/data_51.json: -------------------------------------------------------------------------------- 1 | {"minLength":-1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/refRemote/data_00.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/refRemote/data_01.json: -------------------------------------------------------------------------------- 1 | "a" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/refRemote/data_10.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/refRemote/data_11.json: -------------------------------------------------------------------------------- 1 | "a" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/refRemote/data_20.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/refRemote/data_21.json: -------------------------------------------------------------------------------- 1 | "a" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/refRemote/data_30.json: -------------------------------------------------------------------------------- 1 | [[1]] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/refRemote/data_31.json: -------------------------------------------------------------------------------- 1 | [["a"]] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/refRemote/remoteFiles/integer.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "integer" 3 | } -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/refRemote/schema_0.json: -------------------------------------------------------------------------------- 1 | {"$ref":"http://localhost:1234/integer.json"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/required/data_00.json: -------------------------------------------------------------------------------- 1 | {"foo":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/required/data_01.json: -------------------------------------------------------------------------------- 1 | {"bar":1} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/required/data_10.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/required/schema_1.json: -------------------------------------------------------------------------------- 1 | {"properties":{"foo":{}}} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_00.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_01.json: -------------------------------------------------------------------------------- 1 | 1.1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_02.json: -------------------------------------------------------------------------------- 1 | "foo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_03.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_04.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_05.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_06.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_10.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_11.json: -------------------------------------------------------------------------------- 1 | 1.1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_12.json: -------------------------------------------------------------------------------- 1 | "foo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_13.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_14.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_15.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_16.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_20.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_21.json: -------------------------------------------------------------------------------- 1 | 1.1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_22.json: -------------------------------------------------------------------------------- 1 | "foo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_23.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_24.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_25.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_26.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_30.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_31.json: -------------------------------------------------------------------------------- 1 | 1.1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_32.json: -------------------------------------------------------------------------------- 1 | "foo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_33.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_34.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_35.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_36.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_40.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_41.json: -------------------------------------------------------------------------------- 1 | 1.1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_42.json: -------------------------------------------------------------------------------- 1 | "foo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_43.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_44.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_45.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_46.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_50.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_51.json: -------------------------------------------------------------------------------- 1 | 1.1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_52.json: -------------------------------------------------------------------------------- 1 | "foo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_53.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_54.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_55.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_56.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_60.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_61.json: -------------------------------------------------------------------------------- 1 | 1.1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_62.json: -------------------------------------------------------------------------------- 1 | "foo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_63.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_64.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_65.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_66.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_70.json: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_71.json: -------------------------------------------------------------------------------- 1 | "foo" -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_72.json: -------------------------------------------------------------------------------- 1 | 1.1 -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_73.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_74.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_75.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/data_76.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/schema_0.json: -------------------------------------------------------------------------------- 1 | {"type":"integer"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/schema_1.json: -------------------------------------------------------------------------------- 1 | {"type":"number"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/schema_2.json: -------------------------------------------------------------------------------- 1 | {"type":"string"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/schema_3.json: -------------------------------------------------------------------------------- 1 | {"type":"object"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/schema_4.json: -------------------------------------------------------------------------------- 1 | {"type":"array"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/schema_5.json: -------------------------------------------------------------------------------- 1 | {"type":"boolean"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/schema_6.json: -------------------------------------------------------------------------------- 1 | {"type":"null"} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/type/schema_7.json: -------------------------------------------------------------------------------- 1 | {"type":["integer","string"]} -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/uniqueItems/data_00.json: -------------------------------------------------------------------------------- 1 | [1,2] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/uniqueItems/data_01.json: -------------------------------------------------------------------------------- 1 | [1,1] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/uniqueItems/data_010.json: -------------------------------------------------------------------------------- 1 | [0,false] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/uniqueItems/data_011.json: -------------------------------------------------------------------------------- 1 | [{},[1],true,null,1] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/uniqueItems/data_012.json: -------------------------------------------------------------------------------- 1 | [{},[1],true,null,{},1] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/uniqueItems/data_02.json: -------------------------------------------------------------------------------- 1 | [1,1,1] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/uniqueItems/data_07.json: -------------------------------------------------------------------------------- 1 | [["foo"],["bar"]] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/uniqueItems/data_09.json: -------------------------------------------------------------------------------- 1 | [1,true] -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/json_schema_test_suite/uniqueItems/schema_0.json: -------------------------------------------------------------------------------- 1 | {"uniqueItems":true} -------------------------------------------------------------------------------- /vendor/github.com/yalp/jsonpath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/yalp/jsonpath/README.md -------------------------------------------------------------------------------- /vendor/github.com/yudai/gojsondiff/.gitignore: -------------------------------------------------------------------------------- 1 | *.test -------------------------------------------------------------------------------- /vendor/github.com/yudai/golcs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/yudai/golcs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/yudai/golcs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/yudai/golcs/README.md -------------------------------------------------------------------------------- /vendor/github.com/yudai/golcs/golcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/github.com/yudai/golcs/golcs.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/atomic/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/atomic/.travis.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/atomic/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/atomic/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/atomic/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/atomic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/atomic/atomic.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/atomic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/atomic/atomic_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/atomic/example_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/atomic/glide.lock -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/atomic/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/stress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/atomic/stress_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/atomic/string.go -------------------------------------------------------------------------------- /vendor/go.uber.org/atomic/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/atomic/string_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/multierr/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/multierr/.travis.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/multierr/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/multierr/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/multierr/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/multierr/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/multierr/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/multierr/error_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/multierr/glide.lock -------------------------------------------------------------------------------- /vendor/go.uber.org/multierr/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/multierr/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/.codecov.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/.gitignore -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.readme.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/.readme.tmpl -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/.travis.yml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/FAQ.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/LICENSE.txt -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/Makefile -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/README.md -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/array.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/array_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/array_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/benchmarks/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/benchmarks/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/buffer/buffer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/buffer/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/buffer/pool.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/check_license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/check_license.sh -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/common_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/config.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/config_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/encoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/encoder_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/error_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/example_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/field_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/field_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/flag.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/flag_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/glide.lock -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/glide.yaml -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/global.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/global_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/global_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/http_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/http_handler.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/level_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/level_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/logger.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/logger_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/options.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/scripts/cover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/scripts/cover.sh -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/stacktrace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/stacktrace.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/stacktrace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/stacktrace_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/sugar.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/sugar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/sugar_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/time.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/time_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/writer.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/writer_test.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/zapcore/core.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/zapcore/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/zapcore/encoder.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/zapcore/entry.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/zapcore/error.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/zapcore/field.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/zapcore/hook.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/zapcore/level.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/sampler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/zapcore/sampler.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapcore/tee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/zapcore/tee.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zapgrpc/zapgrpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/zapgrpc/zapgrpc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zaptest/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/zaptest/doc.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zaptest/timeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/zaptest/timeout.go -------------------------------------------------------------------------------- /vendor/go.uber.org/zap/zaptest/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/go.uber.org/zap/zaptest/writer.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/acme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/acme/acme.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/jws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/acme/jws.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/acme/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/acme/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/hkdf/hkdf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/hkdf/hkdf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/md4/md4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/md4/md4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ocsp/ocsp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/ocsp/ocsp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/otr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/otr/otr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/otr/smp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/otr/smp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/sha3/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/sha3/xor.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/xts/xts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/crypto/xts/xts.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/bpf/setter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/bpf/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/bpf/vm_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv4/sys_bpf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv6/sys_bpf.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/lif/address.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/lif/binary.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/lif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/lif/lif.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/lif/link.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/lif/sys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/lif/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/lif/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/route/binary.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/route/route.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/route/sys.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/README -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/cases/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/message/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/secure/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/unicode/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/width/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /view/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/view/LICENSE -------------------------------------------------------------------------------- /view/amber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/view/amber.go -------------------------------------------------------------------------------- /view/django.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/view/django.go -------------------------------------------------------------------------------- /view/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/view/engine.go -------------------------------------------------------------------------------- /view/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/view/funcs.go -------------------------------------------------------------------------------- /view/handlebars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/view/handlebars.go -------------------------------------------------------------------------------- /view/html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/view/html.go -------------------------------------------------------------------------------- /view/pug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/view/pug.go -------------------------------------------------------------------------------- /view/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/view/view.go -------------------------------------------------------------------------------- /websocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/websocket/LICENSE -------------------------------------------------------------------------------- /websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/websocket/client.go -------------------------------------------------------------------------------- /websocket/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/websocket/client.ts -------------------------------------------------------------------------------- /websocket/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/websocket/config.go -------------------------------------------------------------------------------- /websocket/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/websocket/connection.go -------------------------------------------------------------------------------- /websocket/emitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/websocket/emitter.go -------------------------------------------------------------------------------- /websocket/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/websocket/message.go -------------------------------------------------------------------------------- /websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/websocket/server.go -------------------------------------------------------------------------------- /websocket/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-siris/siris/HEAD/websocket/websocket.go --------------------------------------------------------------------------------