├── .gitignore ├── .travis.yml ├── README.md ├── applews ├── icloud │ ├── fmip │ │ ├── api.go │ │ ├── fmip.go │ │ ├── fmip_test.go │ │ └── testdata │ │ │ └── fixtures │ │ │ ├── init_mobile_client_response.json │ │ │ └── refresh_mobile_client_response.json │ └── setup │ │ ├── api.go │ │ ├── setup.go │ │ ├── setup_test.go │ │ └── testdata │ │ └── fixtures │ │ ├── account_login_response.json │ │ └── validate_response.json └── idmsa │ ├── api.go │ ├── idmsa.go │ ├── idmsa_test.go │ └── testdata │ └── fixtures │ └── signin_response.json ├── cmd └── fmidevice │ └── main.go ├── fmidevice ├── glide.lock ├── glide.yaml ├── locate.go └── vendor ├── github.com ├── fsnotify │ └── fsnotify │ │ ├── .editorconfig │ │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ └── PULL_REQUEST_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example_test.go │ │ ├── fen.go │ │ ├── fsnotify.go │ │ ├── fsnotify_test.go │ │ ├── inotify.go │ │ ├── inotify_poller.go │ │ ├── inotify_poller_test.go │ │ ├── inotify_test.go │ │ ├── integration_darwin_test.go │ │ ├── integration_test.go │ │ ├── kqueue.go │ │ ├── open_mode_bsd.go │ │ ├── open_mode_darwin.go │ │ └── windows.go ├── hashicorp │ └── hcl │ │ ├── .github │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── decoder.go │ │ ├── decoder_test.go │ │ ├── hcl.go │ │ ├── hcl │ │ ├── ast │ │ │ ├── ast.go │ │ │ ├── ast_test.go │ │ │ └── walk.go │ │ ├── fmtcmd │ │ │ ├── fmtcmd.go │ │ │ ├── fmtcmd_test.go │ │ │ └── test-fixtures │ │ │ │ ├── .hidden.ignore │ │ │ │ ├── dir.ignore │ │ │ │ ├── file.ignore │ │ │ │ └── good.hcl │ │ ├── parser │ │ │ ├── error.go │ │ │ ├── error_test.go │ │ │ ├── parser.go │ │ │ ├── parser_test.go │ │ │ └── test-fixtures │ │ │ │ ├── array_comment.hcl │ │ │ │ ├── array_comment_2.hcl │ │ │ │ ├── assign_colon.hcl │ │ │ │ ├── assign_deep.hcl │ │ │ │ ├── comment.hcl │ │ │ │ ├── comment_crlf.hcl │ │ │ │ ├── comment_lastline.hcl │ │ │ │ ├── comment_single.hcl │ │ │ │ ├── complex.hcl │ │ │ │ ├── complex_crlf.hcl │ │ │ │ ├── complex_key.hcl │ │ │ │ ├── empty.hcl │ │ │ │ ├── git_crypt.hcl │ │ │ │ ├── key_without_value.hcl │ │ │ │ ├── list.hcl │ │ │ │ ├── list_comma.hcl │ │ │ │ ├── missing_braces.hcl │ │ │ │ ├── multiple.hcl │ │ │ │ ├── object_key_assign_without_value.hcl │ │ │ │ ├── object_key_assign_without_value2.hcl │ │ │ │ ├── object_key_assign_without_value3.hcl │ │ │ │ ├── object_key_without_value.hcl │ │ │ │ ├── object_list_comma.hcl │ │ │ │ ├── old.hcl │ │ │ │ ├── structure.hcl │ │ │ │ ├── structure_basic.hcl │ │ │ │ ├── structure_empty.hcl │ │ │ │ ├── types.hcl │ │ │ │ ├── unterminated_object.hcl │ │ │ │ └── unterminated_object_2.hcl │ │ ├── printer │ │ │ ├── nodes.go │ │ │ ├── printer.go │ │ │ ├── printer_test.go │ │ │ └── testdata │ │ │ │ ├── comment.golden │ │ │ │ ├── comment.input │ │ │ │ ├── comment_aligned.golden │ │ │ │ ├── comment_aligned.input │ │ │ │ ├── comment_array.golden │ │ │ │ ├── comment_array.input │ │ │ │ ├── comment_crlf.input │ │ │ │ ├── comment_end_file.golden │ │ │ │ ├── comment_end_file.input │ │ │ │ ├── comment_multiline_indent.golden │ │ │ │ ├── comment_multiline_indent.input │ │ │ │ ├── comment_multiline_no_stanza.golden │ │ │ │ ├── comment_multiline_no_stanza.input │ │ │ │ ├── comment_multiline_stanza.golden │ │ │ │ ├── comment_multiline_stanza.input │ │ │ │ ├── comment_newline.golden │ │ │ │ ├── comment_newline.input │ │ │ │ ├── comment_object_multi.golden │ │ │ │ ├── comment_object_multi.input │ │ │ │ ├── comment_standalone.golden │ │ │ │ ├── comment_standalone.input │ │ │ │ ├── complexhcl.golden │ │ │ │ ├── complexhcl.input │ │ │ │ ├── empty_block.golden │ │ │ │ ├── empty_block.input │ │ │ │ ├── list.golden │ │ │ │ ├── list.input │ │ │ │ ├── list_comment.golden │ │ │ │ ├── list_comment.input │ │ │ │ ├── list_of_objects.golden │ │ │ │ ├── list_of_objects.input │ │ │ │ ├── multiline_string.golden │ │ │ │ ├── multiline_string.input │ │ │ │ ├── object_singleline.golden │ │ │ │ ├── object_singleline.input │ │ │ │ ├── object_with_heredoc.golden │ │ │ │ └── object_with_heredoc.input │ │ ├── scanner │ │ │ ├── scanner.go │ │ │ └── scanner_test.go │ │ ├── strconv │ │ │ ├── quote.go │ │ │ └── quote_test.go │ │ ├── test-fixtures │ │ │ ├── array_comment.hcl │ │ │ ├── assign_colon.hcl │ │ │ ├── comment.hcl │ │ │ ├── comment_single.hcl │ │ │ ├── complex.hcl │ │ │ ├── complex_key.hcl │ │ │ ├── empty.hcl │ │ │ ├── list.hcl │ │ │ ├── list_comma.hcl │ │ │ ├── multiple.hcl │ │ │ ├── old.hcl │ │ │ ├── structure.hcl │ │ │ ├── structure_basic.hcl │ │ │ ├── structure_empty.hcl │ │ │ └── types.hcl │ │ └── token │ │ │ ├── position.go │ │ │ ├── token.go │ │ │ └── token_test.go │ │ ├── hcl_test.go │ │ ├── json │ │ ├── parser │ │ │ ├── flatten.go │ │ │ ├── parser.go │ │ │ ├── parser_test.go │ │ │ └── test-fixtures │ │ │ │ ├── array.json │ │ │ │ ├── bad_input_128.json │ │ │ │ ├── bad_input_tf_8110.json │ │ │ │ ├── basic.json │ │ │ │ ├── good_input_tf_8110.json │ │ │ │ ├── object.json │ │ │ │ └── types.json │ │ ├── scanner │ │ │ ├── scanner.go │ │ │ └── scanner_test.go │ │ ├── test-fixtures │ │ │ ├── array.json │ │ │ ├── basic.json │ │ │ ├── object.json │ │ │ └── types.json │ │ └── token │ │ │ ├── position.go │ │ │ ├── token.go │ │ │ └── token_test.go │ │ ├── lex.go │ │ ├── lex_test.go │ │ ├── parse.go │ │ ├── test-fixtures │ │ ├── assign_deep.hcl │ │ ├── basic.hcl │ │ ├── basic.json │ │ ├── basic_int_string.hcl │ │ ├── basic_squish.hcl │ │ ├── block_assign.hcl │ │ ├── decode_policy.hcl │ │ ├── decode_policy.json │ │ ├── decode_tf_variable.hcl │ │ ├── decode_tf_variable.json │ │ ├── empty.hcl │ │ ├── escape.hcl │ │ ├── escape_backslash.hcl │ │ ├── flat.hcl │ │ ├── float.hcl │ │ ├── float.json │ │ ├── git_crypt.hcl │ │ ├── interpolate.json │ │ ├── list_of_lists.hcl │ │ ├── list_of_maps.hcl │ │ ├── multiline.hcl │ │ ├── multiline.json │ │ ├── multiline_bad.hcl │ │ ├── multiline_indented.hcl │ │ ├── multiline_literal.hcl │ │ ├── multiline_literal_with_hil.hcl │ │ ├── multiline_no_eof.hcl │ │ ├── multiline_no_hanging_indent.hcl │ │ ├── multiline_no_marker.hcl │ │ ├── nested_block_comment.hcl │ │ ├── nested_provider_bad.hcl │ │ ├── null_strings.json │ │ ├── object_list.json │ │ ├── object_with_bool.hcl │ │ ├── scientific.hcl │ │ ├── scientific.json │ │ ├── slice_expand.hcl │ │ ├── structure.hcl │ │ ├── structure.json │ │ ├── structure2.hcl │ │ ├── structure2.json │ │ ├── structure_flat.json │ │ ├── structure_flatmap.hcl │ │ ├── structure_list.hcl │ │ ├── structure_list.json │ │ ├── structure_list_deep.json │ │ ├── structure_list_empty.json │ │ ├── structure_multi.hcl │ │ ├── structure_multi.json │ │ ├── terraform_heroku.hcl │ │ ├── terraform_heroku.json │ │ ├── terraform_variable_invalid.json │ │ ├── tfvars.hcl │ │ ├── unterminated_block_comment.hcl │ │ └── unterminated_brace.hcl │ │ └── testhelper │ │ └── unix2dos.go ├── inconshreveable │ └── mousetrap │ │ ├── LICENSE │ │ ├── README.md │ │ ├── trap_others.go │ │ ├── trap_windows.go │ │ └── trap_windows_1.4.go ├── magiconair │ └── properties │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assert │ │ ├── assert.go │ │ └── assert_test.go │ │ ├── benchmark_test.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── integrate.go │ │ ├── integrate_test.go │ │ ├── lex.go │ │ ├── load.go │ │ ├── load_test.go │ │ ├── parser.go │ │ ├── properties.go │ │ ├── properties_test.go │ │ └── rangecheck.go ├── michaljirman │ └── coreapi │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── api.go │ │ ├── api_test.go │ │ ├── auth.go │ │ ├── auth_test.go │ │ ├── cbrouter.go │ │ ├── cbrouter_test.go │ │ ├── client.go │ │ ├── client_test.go │ │ ├── cmd │ │ └── coreapi │ │ │ └── main.go │ │ ├── glide.lock │ │ ├── glide.yaml │ │ ├── resource.go │ │ └── resource_test.go ├── mitchellh │ └── mapstructure │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode_hooks.go │ │ ├── decode_hooks_test.go │ │ ├── error.go │ │ ├── mapstructure.go │ │ ├── mapstructure_benchmark_test.go │ │ ├── mapstructure_bugs_test.go │ │ ├── mapstructure_examples_test.go │ │ └── mapstructure_test.go ├── pelletier │ └── go-toml │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── benchmark.json │ │ ├── benchmark.sh │ │ ├── benchmark.toml │ │ ├── benchmark.yml │ │ ├── benchmark_test.go │ │ ├── cmd │ │ ├── test_program.go │ │ ├── tomljson │ │ │ ├── main.go │ │ │ └── main_test.go │ │ └── tomll │ │ │ └── main.go │ │ ├── doc.go │ │ ├── doc_test.go │ │ ├── example-crlf.toml │ │ ├── example.toml │ │ ├── fuzz.go │ │ ├── fuzz.sh │ │ ├── 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 ├── satori │ └── go.uuid │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codec.go │ │ ├── codec_test.go │ │ ├── generator.go │ │ ├── generator_test.go │ │ ├── sql.go │ │ ├── sql_test.go │ │ ├── uuid.go │ │ └── uuid_test.go └── spf13 │ ├── afero │ ├── .travis.yml │ ├── LICENSE.txt │ ├── README.md │ ├── afero.go │ ├── afero_test.go │ ├── appveyor.yml │ ├── basepath.go │ ├── basepath_test.go │ ├── cacheOnReadFs.go │ ├── composite_test.go │ ├── const_bsds.go │ ├── const_win_unix.go │ ├── copyOnWriteFs.go │ ├── copyOnWriteFs_test.go │ ├── httpFs.go │ ├── ioutil.go │ ├── ioutil_test.go │ ├── lstater.go │ ├── lstater_test.go │ ├── match.go │ ├── match_test.go │ ├── mem │ │ ├── dir.go │ │ ├── dirmap.go │ │ ├── file.go │ │ └── file_test.go │ ├── memmap.go │ ├── memmap_test.go │ ├── os.go │ ├── path.go │ ├── path_test.go │ ├── readonlyfs.go │ ├── regexpfs.go │ ├── ro_regexp_test.go │ ├── sftpfs │ │ ├── file.go │ │ ├── sftp.go │ │ └── sftp_test_go │ ├── unionFile.go │ ├── util.go │ └── util_test.go │ ├── cast │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── cast.go │ ├── cast_test.go │ └── caste.go │ ├── cobra │ ├── .circleci │ │ └── config.yml │ ├── .gitignore │ ├── .mailmap │ ├── .travis.yml │ ├── LICENSE.txt │ ├── README.md │ ├── args.go │ ├── args_test.go │ ├── bash_completions.go │ ├── bash_completions.md │ ├── bash_completions_test.go │ ├── cobra.go │ ├── cobra │ │ ├── README.md │ │ ├── cmd │ │ │ ├── add.go │ │ │ ├── add_test.go │ │ │ ├── golden_test.go │ │ │ ├── helpers.go │ │ │ ├── init.go │ │ │ ├── init_test.go │ │ │ ├── license_agpl.go │ │ │ ├── license_apache_2.go │ │ │ ├── license_bsd_clause_2.go │ │ │ ├── license_bsd_clause_3.go │ │ │ ├── license_gpl_2.go │ │ │ ├── license_gpl_3.go │ │ │ ├── license_lgpl.go │ │ │ ├── license_mit.go │ │ │ ├── licenses.go │ │ │ ├── project.go │ │ │ ├── project_test.go │ │ │ ├── root.go │ │ │ └── testdata │ │ │ │ ├── LICENSE.golden │ │ │ │ ├── main.go.golden │ │ │ │ ├── root.go.golden │ │ │ │ └── test.go.golden │ │ └── main.go │ ├── cobra_test.go │ ├── command.go │ ├── command_notwin.go │ ├── command_test.go │ ├── command_win.go │ ├── doc │ │ ├── cmd_test.go │ │ ├── man_docs.go │ │ ├── man_docs.md │ │ ├── man_docs_test.go │ │ ├── man_examples_test.go │ │ ├── md_docs.go │ │ ├── md_docs.md │ │ ├── md_docs_test.go │ │ ├── rest_docs.go │ │ ├── rest_docs.md │ │ ├── rest_docs_test.go │ │ ├── util.go │ │ ├── yaml_docs.go │ │ ├── yaml_docs.md │ │ └── yaml_docs_test.go │ ├── zsh_completions.go │ └── zsh_completions_test.go │ ├── jwalterweatherman │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── default_notepad.go │ ├── default_notepad_test.go │ ├── log_counter.go │ ├── notepad.go │ └── notepad_test.go │ ├── pflag │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── bool.go │ ├── bool_slice.go │ ├── bool_slice_test.go │ ├── bool_test.go │ ├── bytes.go │ ├── bytes_test.go │ ├── count.go │ ├── count_test.go │ ├── duration.go │ ├── duration_slice.go │ ├── duration_slice_test.go │ ├── example_test.go │ ├── export_test.go │ ├── flag.go │ ├── flag_test.go │ ├── float32.go │ ├── float64.go │ ├── golangflag.go │ ├── golangflag_test.go │ ├── int.go │ ├── int16.go │ ├── int32.go │ ├── int64.go │ ├── int8.go │ ├── int_slice.go │ ├── int_slice_test.go │ ├── ip.go │ ├── ip_slice.go │ ├── ip_slice_test.go │ ├── ip_test.go │ ├── ipmask.go │ ├── ipnet.go │ ├── ipnet_test.go │ ├── printusage_test.go │ ├── string.go │ ├── string_array.go │ ├── string_array_test.go │ ├── string_slice.go │ ├── string_slice_test.go │ ├── uint.go │ ├── uint16.go │ ├── uint32.go │ ├── uint64.go │ ├── uint8.go │ ├── uint_slice.go │ ├── uint_slice_test.go │ └── verify │ │ ├── all.sh │ │ ├── gofmt.sh │ │ └── golint.sh │ └── viper │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── flags.go │ ├── flags_test.go │ ├── overrides_test.go │ ├── remote │ └── remote.go │ ├── util.go │ ├── util_test.go │ ├── viper.go │ └── viper_test.go ├── golang.org └── x │ ├── sys │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── codereview.cfg │ ├── cpu │ │ ├── cpu.go │ │ ├── cpu_arm.go │ │ ├── cpu_arm64.go │ │ ├── cpu_mips64x.go │ │ ├── cpu_mipsx.go │ │ ├── cpu_ppc64x.go │ │ ├── cpu_s390x.go │ │ ├── cpu_test.go │ │ ├── cpu_x86.go │ │ └── cpu_x86.s │ ├── plan9 │ │ ├── asm.s │ │ ├── asm_plan9_386.s │ │ ├── asm_plan9_amd64.s │ │ ├── asm_plan9_arm.s │ │ ├── const_plan9.go │ │ ├── dir_plan9.go │ │ ├── env_plan9.go │ │ ├── errors_plan9.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mksyscall.pl │ │ ├── mksysnum_plan9.sh │ │ ├── pwd_go15_plan9.go │ │ ├── pwd_plan9.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_plan9.go │ │ ├── syscall_test.go │ │ ├── zsyscall_plan9_386.go │ │ ├── zsyscall_plan9_amd64.go │ │ ├── zsyscall_plan9_arm.go │ │ └── zsysnum_plan9.go │ ├── unix │ │ ├── .gitignore │ │ ├── README.md │ │ ├── affinity_linux.go │ │ ├── asm_darwin_386.s │ │ ├── asm_darwin_amd64.s │ │ ├── asm_darwin_arm.s │ │ ├── asm_darwin_arm64.s │ │ ├── asm_dragonfly_amd64.s │ │ ├── asm_freebsd_386.s │ │ ├── asm_freebsd_amd64.s │ │ ├── asm_freebsd_arm.s │ │ ├── asm_linux_386.s │ │ ├── asm_linux_amd64.s │ │ ├── asm_linux_arm.s │ │ ├── asm_linux_arm64.s │ │ ├── asm_linux_mips64x.s │ │ ├── asm_linux_mipsx.s │ │ ├── asm_linux_ppc64x.s │ │ ├── asm_linux_s390x.s │ │ ├── asm_netbsd_386.s │ │ ├── asm_netbsd_amd64.s │ │ ├── asm_netbsd_arm.s │ │ ├── asm_openbsd_386.s │ │ ├── asm_openbsd_amd64.s │ │ ├── asm_openbsd_arm.s │ │ ├── asm_solaris_amd64.s │ │ ├── bluetooth_linux.go │ │ ├── cap_freebsd.go │ │ ├── constants.go │ │ ├── creds_test.go │ │ ├── dev_darwin.go │ │ ├── dev_dragonfly.go │ │ ├── dev_freebsd.go │ │ ├── dev_linux.go │ │ ├── dev_linux_test.go │ │ ├── dev_netbsd.go │ │ ├── dev_openbsd.go │ │ ├── dirent.go │ │ ├── endian_big.go │ │ ├── endian_little.go │ │ ├── env_unix.go │ │ ├── errors_freebsd_386.go │ │ ├── errors_freebsd_amd64.go │ │ ├── errors_freebsd_arm.go │ │ ├── example_test.go │ │ ├── export_test.go │ │ ├── fcntl.go │ │ ├── fcntl_linux_32bit.go │ │ ├── gccgo.go │ │ ├── gccgo_c.c │ │ ├── gccgo_linux_amd64.go │ │ ├── linux │ │ │ ├── Dockerfile │ │ │ ├── mkall.go │ │ │ ├── mksysnum.pl │ │ │ └── types.go │ │ ├── mkall.sh │ │ ├── mkerrors.sh │ │ ├── mkpost.go │ │ ├── mksyscall.pl │ │ ├── mksyscall_solaris.pl │ │ ├── mksysctl_openbsd.pl │ │ ├── mksysnum_darwin.pl │ │ ├── mksysnum_dragonfly.pl │ │ ├── mksysnum_freebsd.pl │ │ ├── mksysnum_netbsd.pl │ │ ├── mksysnum_openbsd.pl │ │ ├── mmap_unix_test.go │ │ ├── openbsd_pledge.go │ │ ├── openbsd_test.go │ │ ├── pagesize_unix.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── sockcmsg_linux.go │ │ ├── sockcmsg_unix.go │ │ ├── str.go │ │ ├── syscall.go │ │ ├── syscall_bsd.go │ │ ├── syscall_bsd_test.go │ │ ├── syscall_darwin.go │ │ ├── syscall_darwin_386.go │ │ ├── syscall_darwin_amd64.go │ │ ├── syscall_darwin_arm.go │ │ ├── syscall_darwin_arm64.go │ │ ├── syscall_darwin_test.go │ │ ├── syscall_dragonfly.go │ │ ├── syscall_dragonfly_amd64.go │ │ ├── syscall_freebsd.go │ │ ├── syscall_freebsd_386.go │ │ ├── syscall_freebsd_amd64.go │ │ ├── syscall_freebsd_arm.go │ │ ├── syscall_freebsd_test.go │ │ ├── syscall_linux.go │ │ ├── syscall_linux_386.go │ │ ├── syscall_linux_amd64.go │ │ ├── syscall_linux_amd64_gc.go │ │ ├── syscall_linux_arm.go │ │ ├── syscall_linux_arm64.go │ │ ├── syscall_linux_gc.go │ │ ├── syscall_linux_gccgo.go │ │ ├── syscall_linux_mips64x.go │ │ ├── syscall_linux_mipsx.go │ │ ├── syscall_linux_ppc64x.go │ │ ├── syscall_linux_s390x.go │ │ ├── syscall_linux_sparc64.go │ │ ├── syscall_linux_test.go │ │ ├── syscall_netbsd.go │ │ ├── syscall_netbsd_386.go │ │ ├── syscall_netbsd_amd64.go │ │ ├── syscall_netbsd_arm.go │ │ ├── syscall_openbsd.go │ │ ├── syscall_openbsd_386.go │ │ ├── syscall_openbsd_amd64.go │ │ ├── syscall_openbsd_arm.go │ │ ├── syscall_solaris.go │ │ ├── syscall_solaris_amd64.go │ │ ├── syscall_solaris_test.go │ │ ├── syscall_test.go │ │ ├── syscall_unix.go │ │ ├── syscall_unix_gc.go │ │ ├── syscall_unix_test.go │ │ ├── timestruct.go │ │ ├── timestruct_test.go │ │ ├── types_darwin.go │ │ ├── types_dragonfly.go │ │ ├── types_freebsd.go │ │ ├── types_netbsd.go │ │ ├── types_openbsd.go │ │ ├── types_solaris.go │ │ ├── xattr_test.go │ │ ├── zerrors_darwin_386.go │ │ ├── zerrors_darwin_amd64.go │ │ ├── zerrors_darwin_arm.go │ │ ├── zerrors_darwin_arm64.go │ │ ├── zerrors_dragonfly_amd64.go │ │ ├── zerrors_freebsd_386.go │ │ ├── zerrors_freebsd_amd64.go │ │ ├── zerrors_freebsd_arm.go │ │ ├── zerrors_linux_386.go │ │ ├── zerrors_linux_amd64.go │ │ ├── zerrors_linux_arm.go │ │ ├── zerrors_linux_arm64.go │ │ ├── zerrors_linux_mips.go │ │ ├── zerrors_linux_mips64.go │ │ ├── zerrors_linux_mips64le.go │ │ ├── zerrors_linux_mipsle.go │ │ ├── zerrors_linux_ppc64.go │ │ ├── zerrors_linux_ppc64le.go │ │ ├── zerrors_linux_s390x.go │ │ ├── zerrors_linux_sparc64.go │ │ ├── zerrors_netbsd_386.go │ │ ├── zerrors_netbsd_amd64.go │ │ ├── zerrors_netbsd_arm.go │ │ ├── zerrors_openbsd_386.go │ │ ├── zerrors_openbsd_amd64.go │ │ ├── zerrors_openbsd_arm.go │ │ ├── zerrors_solaris_amd64.go │ │ ├── zptrace386_linux.go │ │ ├── zptracearm_linux.go │ │ ├── zptracemips_linux.go │ │ ├── zptracemipsle_linux.go │ │ ├── zsyscall_darwin_386.go │ │ ├── zsyscall_darwin_amd64.go │ │ ├── zsyscall_darwin_arm.go │ │ ├── zsyscall_darwin_arm64.go │ │ ├── zsyscall_dragonfly_amd64.go │ │ ├── zsyscall_freebsd_386.go │ │ ├── zsyscall_freebsd_amd64.go │ │ ├── zsyscall_freebsd_arm.go │ │ ├── zsyscall_linux_386.go │ │ ├── zsyscall_linux_amd64.go │ │ ├── zsyscall_linux_arm.go │ │ ├── zsyscall_linux_arm64.go │ │ ├── zsyscall_linux_mips.go │ │ ├── zsyscall_linux_mips64.go │ │ ├── zsyscall_linux_mips64le.go │ │ ├── zsyscall_linux_mipsle.go │ │ ├── zsyscall_linux_ppc64.go │ │ ├── zsyscall_linux_ppc64le.go │ │ ├── zsyscall_linux_s390x.go │ │ ├── zsyscall_linux_sparc64.go │ │ ├── zsyscall_netbsd_386.go │ │ ├── zsyscall_netbsd_amd64.go │ │ ├── zsyscall_netbsd_arm.go │ │ ├── zsyscall_openbsd_386.go │ │ ├── zsyscall_openbsd_amd64.go │ │ ├── zsyscall_openbsd_arm.go │ │ ├── zsyscall_solaris_amd64.go │ │ ├── zsysctl_openbsd_386.go │ │ ├── zsysctl_openbsd_amd64.go │ │ ├── zsysctl_openbsd_arm.go │ │ ├── zsysnum_darwin_386.go │ │ ├── zsysnum_darwin_amd64.go │ │ ├── zsysnum_darwin_arm.go │ │ ├── zsysnum_darwin_arm64.go │ │ ├── zsysnum_dragonfly_amd64.go │ │ ├── zsysnum_freebsd_386.go │ │ ├── zsysnum_freebsd_amd64.go │ │ ├── zsysnum_freebsd_arm.go │ │ ├── zsysnum_linux_386.go │ │ ├── zsysnum_linux_amd64.go │ │ ├── zsysnum_linux_arm.go │ │ ├── zsysnum_linux_arm64.go │ │ ├── zsysnum_linux_mips.go │ │ ├── zsysnum_linux_mips64.go │ │ ├── zsysnum_linux_mips64le.go │ │ ├── zsysnum_linux_mipsle.go │ │ ├── zsysnum_linux_ppc64.go │ │ ├── zsysnum_linux_ppc64le.go │ │ ├── zsysnum_linux_s390x.go │ │ ├── zsysnum_linux_sparc64.go │ │ ├── zsysnum_netbsd_386.go │ │ ├── zsysnum_netbsd_amd64.go │ │ ├── zsysnum_netbsd_arm.go │ │ ├── zsysnum_openbsd_386.go │ │ ├── zsysnum_openbsd_amd64.go │ │ ├── zsysnum_openbsd_arm.go │ │ ├── ztypes_darwin_386.go │ │ ├── ztypes_darwin_amd64.go │ │ ├── ztypes_darwin_arm.go │ │ ├── ztypes_darwin_arm64.go │ │ ├── ztypes_dragonfly_amd64.go │ │ ├── ztypes_freebsd_386.go │ │ ├── ztypes_freebsd_amd64.go │ │ ├── ztypes_freebsd_arm.go │ │ ├── ztypes_linux_386.go │ │ ├── ztypes_linux_amd64.go │ │ ├── ztypes_linux_arm.go │ │ ├── ztypes_linux_arm64.go │ │ ├── ztypes_linux_mips.go │ │ ├── ztypes_linux_mips64.go │ │ ├── ztypes_linux_mips64le.go │ │ ├── ztypes_linux_mipsle.go │ │ ├── ztypes_linux_ppc64.go │ │ ├── ztypes_linux_ppc64le.go │ │ ├── ztypes_linux_s390x.go │ │ ├── ztypes_linux_sparc64.go │ │ ├── ztypes_netbsd_386.go │ │ ├── ztypes_netbsd_amd64.go │ │ ├── ztypes_netbsd_arm.go │ │ ├── ztypes_openbsd_386.go │ │ ├── ztypes_openbsd_amd64.go │ │ ├── ztypes_openbsd_arm.go │ │ └── ztypes_solaris_amd64.go │ └── windows │ │ ├── asm_windows_386.s │ │ ├── asm_windows_amd64.s │ │ ├── dll_windows.go │ │ ├── env_windows.go │ │ ├── eventlog.go │ │ ├── exec_windows.go │ │ ├── memory_windows.go │ │ ├── mksyscall.go │ │ ├── race.go │ │ ├── race0.go │ │ ├── registry │ │ ├── export_test.go │ │ ├── key.go │ │ ├── mksyscall.go │ │ ├── registry_test.go │ │ ├── syscall.go │ │ ├── value.go │ │ └── zsyscall_windows.go │ │ ├── security_windows.go │ │ ├── service.go │ │ ├── str.go │ │ ├── svc │ │ ├── debug │ │ │ ├── log.go │ │ │ └── service.go │ │ ├── event.go │ │ ├── eventlog │ │ │ ├── install.go │ │ │ ├── log.go │ │ │ └── log_test.go │ │ ├── example │ │ │ ├── beep.go │ │ │ ├── install.go │ │ │ ├── main.go │ │ │ ├── manage.go │ │ │ └── service.go │ │ ├── go12.c │ │ ├── go12.go │ │ ├── go13.go │ │ ├── mgr │ │ │ ├── config.go │ │ │ ├── mgr.go │ │ │ ├── mgr_test.go │ │ │ └── service.go │ │ ├── security.go │ │ ├── service.go │ │ ├── svc_test.go │ │ ├── sys_386.s │ │ └── sys_amd64.s │ │ ├── syscall.go │ │ ├── syscall_test.go │ │ ├── syscall_windows.go │ │ ├── syscall_windows_test.go │ │ ├── types_windows.go │ │ ├── types_windows_386.go │ │ ├── types_windows_amd64.go │ │ └── zsyscall_windows.go │ └── text │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── cases │ ├── cases.go │ ├── context.go │ ├── context_test.go │ ├── example_test.go │ ├── fold.go │ ├── fold_test.go │ ├── gen.go │ ├── gen_trieval.go │ ├── icu.go │ ├── icu_test.go │ ├── info.go │ ├── map.go │ ├── map_test.go │ ├── tables10.0.0.go │ ├── tables10.0.0_test.go │ ├── tables9.0.0.go │ ├── tables9.0.0_test.go │ └── trieval.go │ ├── cmd │ └── gotext │ │ ├── common.go │ │ ├── doc.go │ │ ├── examples │ │ ├── extract │ │ │ ├── catalog.go │ │ │ ├── locales │ │ │ │ ├── de │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ └── out.gotext.json │ │ │ │ ├── en-US │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ └── out.gotext.json │ │ │ │ └── zh │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ └── out.gotext.json │ │ │ └── main.go │ │ ├── extract_http │ │ │ ├── catalog_gen.go │ │ │ ├── locales │ │ │ │ ├── de │ │ │ │ │ └── out.gotext.json │ │ │ │ ├── en-US │ │ │ │ │ └── out.gotext.json │ │ │ │ ├── en │ │ │ │ │ └── out.gotext.json │ │ │ │ └── zh │ │ │ │ │ └── out.gotext.json │ │ │ ├── main.go │ │ │ └── pkg │ │ │ │ └── pkg.go │ │ └── rewrite │ │ │ ├── main.go │ │ │ └── printer.go │ │ ├── extract.go │ │ ├── generate.go │ │ ├── main.go │ │ ├── rewrite.go │ │ └── update.go │ ├── codereview.cfg │ ├── collate │ ├── build │ │ ├── builder.go │ │ ├── builder_test.go │ │ ├── colelem.go │ │ ├── colelem_test.go │ │ ├── contract.go │ │ ├── contract_test.go │ │ ├── order.go │ │ ├── order_test.go │ │ ├── table.go │ │ ├── trie.go │ │ └── trie_test.go │ ├── collate.go │ ├── collate_test.go │ ├── export_test.go │ ├── index.go │ ├── maketables.go │ ├── option.go │ ├── option_test.go │ ├── reg_test.go │ ├── sort.go │ ├── sort_test.go │ ├── table_test.go │ ├── tables.go │ └── tools │ │ └── colcmp │ │ ├── Makefile │ │ ├── chars.go │ │ ├── col.go │ │ ├── colcmp.go │ │ ├── darwin.go │ │ ├── gen.go │ │ └── icu.go │ ├── currency │ ├── common.go │ ├── currency.go │ ├── currency_test.go │ ├── example_test.go │ ├── format.go │ ├── format_test.go │ ├── gen.go │ ├── gen_common.go │ ├── query.go │ ├── query_test.go │ ├── tables.go │ └── tables_test.go │ ├── date │ ├── data_test.go │ ├── gen.go │ ├── gen_test.go │ └── tables.go │ ├── doc.go │ ├── encoding │ ├── charmap │ │ ├── charmap.go │ │ ├── charmap_test.go │ │ ├── maketables.go │ │ └── tables.go │ ├── encoding.go │ ├── encoding_test.go │ ├── example_test.go │ ├── htmlindex │ │ ├── gen.go │ │ ├── htmlindex.go │ │ ├── htmlindex_test.go │ │ ├── map.go │ │ └── tables.go │ ├── ianaindex │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── ianaindex.go │ │ ├── ianaindex_test.go │ │ └── tables.go │ ├── internal │ │ ├── enctest │ │ │ └── enctest.go │ │ ├── identifier │ │ │ ├── gen.go │ │ │ ├── identifier.go │ │ │ └── mib.go │ │ └── internal.go │ ├── japanese │ │ ├── all.go │ │ ├── all_test.go │ │ ├── eucjp.go │ │ ├── iso2022jp.go │ │ ├── maketables.go │ │ ├── shiftjis.go │ │ └── tables.go │ ├── korean │ │ ├── all_test.go │ │ ├── euckr.go │ │ ├── maketables.go │ │ └── tables.go │ ├── simplifiedchinese │ │ ├── all.go │ │ ├── all_test.go │ │ ├── gbk.go │ │ ├── hzgb2312.go │ │ ├── maketables.go │ │ └── tables.go │ ├── testdata │ │ ├── candide-gb18030.txt │ │ ├── candide-utf-16le.txt │ │ ├── candide-utf-32be.txt │ │ ├── candide-utf-8.txt │ │ ├── candide-windows-1252.txt │ │ ├── rashomon-euc-jp.txt │ │ ├── rashomon-iso-2022-jp.txt │ │ ├── rashomon-shift-jis.txt │ │ ├── rashomon-utf-8.txt │ │ ├── sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt │ │ ├── sunzi-bingfa-gb-levels-1-and-2-utf-8.txt │ │ ├── sunzi-bingfa-simplified-gbk.txt │ │ ├── sunzi-bingfa-simplified-utf-8.txt │ │ ├── sunzi-bingfa-traditional-big5.txt │ │ ├── sunzi-bingfa-traditional-utf-8.txt │ │ ├── unsu-joh-eun-nal-euc-kr.txt │ │ └── unsu-joh-eun-nal-utf-8.txt │ ├── traditionalchinese │ │ ├── all_test.go │ │ ├── big5.go │ │ ├── maketables.go │ │ └── tables.go │ └── unicode │ │ ├── override.go │ │ ├── unicode.go │ │ ├── unicode_test.go │ │ └── utf32 │ │ ├── utf32.go │ │ └── utf32_test.go │ ├── feature │ └── plural │ │ ├── common.go │ │ ├── data_test.go │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── message.go │ │ ├── message_test.go │ │ ├── plural.go │ │ ├── plural_test.go │ │ └── tables.go │ ├── gen.go │ ├── internal │ ├── catmsg │ │ ├── catmsg.go │ │ ├── catmsg_test.go │ │ ├── codec.go │ │ ├── varint.go │ │ └── varint_test.go │ ├── cldrtree │ │ ├── cldrtree.go │ │ ├── cldrtree_test.go │ │ ├── generate.go │ │ ├── option.go │ │ ├── testdata │ │ │ ├── test1 │ │ │ │ └── output.go │ │ │ └── test2 │ │ │ │ └── output.go │ │ ├── tree.go │ │ └── type.go │ ├── colltab │ │ ├── collate_test.go │ │ ├── collelem.go │ │ ├── collelem_test.go │ │ ├── colltab.go │ │ ├── colltab_test.go │ │ ├── contract.go │ │ ├── contract_test.go │ │ ├── iter.go │ │ ├── iter_test.go │ │ ├── numeric.go │ │ ├── numeric_test.go │ │ ├── table.go │ │ ├── trie.go │ │ ├── trie_test.go │ │ ├── weighter.go │ │ └── weighter_test.go │ ├── export │ │ ├── README │ │ └── idna │ │ │ ├── common_test.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── gen10.0.0_test.go │ │ │ ├── gen9.0.0_test.go │ │ │ ├── gen_common.go │ │ │ ├── gen_trieval.go │ │ │ ├── idna10.0.0.go │ │ │ ├── idna10.0.0_test.go │ │ │ ├── idna9.0.0.go │ │ │ ├── idna9.0.0_test.go │ │ │ ├── idna_test.go │ │ │ ├── punycode.go │ │ │ ├── punycode_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ ├── format │ │ ├── format.go │ │ ├── parser.go │ │ └── parser_test.go │ ├── gen │ │ ├── bitfield │ │ │ ├── bitfield.go │ │ │ ├── bitfield_test.go │ │ │ ├── gen1_test.go │ │ │ └── gen2_test.go │ │ ├── code.go │ │ └── gen.go │ ├── internal.go │ ├── internal_test.go │ ├── language │ │ ├── common.go │ │ ├── compact.go │ │ ├── compact │ │ │ ├── compact.go │ │ │ ├── gen.go │ │ │ ├── gen_index.go │ │ │ ├── gen_parents.go │ │ │ ├── gen_test.go │ │ │ ├── language.go │ │ │ ├── language_test.go │ │ │ ├── parents.go │ │ │ ├── parse_test.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── compose.go │ │ ├── compose_test.go │ │ ├── coverage.go │ │ ├── gen.go │ │ ├── gen_common.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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── go1_1.go │ ├── go1_2.go │ ├── httpexample_test.go │ ├── language.go │ ├── language_test.go │ ├── match.go │ ├── match_test.go │ ├── parse.go │ ├── parse_test.go │ ├── tables.go │ ├── tags.go │ └── testdata │ │ ├── CLDRLocaleMatcherTest.txt │ │ └── GoLocaleMatcherTest.txt │ ├── message │ ├── catalog.go │ ├── catalog │ │ ├── catalog.go │ │ ├── catalog_test.go │ │ ├── dict.go │ │ ├── go19.go │ │ └── gopre19.go │ ├── catalog_test.go │ ├── doc.go │ ├── examples_test.go │ ├── fmt_test.go │ ├── format.go │ ├── message.go │ ├── message_test.go │ ├── pipeline │ │ ├── extract.go │ │ ├── generate.go │ │ ├── go19_test.go │ │ ├── message.go │ │ ├── pipeline.go │ │ ├── pipeline_test.go │ │ ├── rewrite.go │ │ └── testdata │ │ │ ├── ssa │ │ │ ├── catalog_gen.go │ │ │ ├── extracted.gotext.json │ │ │ └── ssa.go │ │ │ └── test1 │ │ │ ├── catalog_gen.go │ │ │ ├── catalog_gen.go.want │ │ │ ├── catalog_test.go │ │ │ ├── extracted.gotext.json │ │ │ ├── extracted.gotext.json.want │ │ │ ├── locales │ │ │ ├── de │ │ │ │ ├── messages.gotext.json │ │ │ │ ├── out.gotext.json │ │ │ │ └── out.gotext.json.want │ │ │ ├── en-US │ │ │ │ ├── messages.gotext.json │ │ │ │ ├── out.gotext.json │ │ │ │ └── out.gotext.json.want │ │ │ └── zh │ │ │ │ ├── messages.gotext.json │ │ │ │ ├── out.gotext.json │ │ │ │ └── out.gotext.json.want │ │ │ └── test1.go │ └── print.go │ ├── number │ ├── doc.go │ ├── examples_test.go │ ├── format.go │ ├── format_test.go │ ├── number.go │ ├── number_test.go │ └── option.go │ ├── runes │ ├── cond.go │ ├── cond_test.go │ ├── example_test.go │ ├── runes.go │ └── runes_test.go │ ├── search │ ├── index.go │ ├── pattern.go │ ├── pattern_test.go │ ├── search.go │ └── tables.go │ ├── secure │ ├── bidirule │ │ ├── bench_test.go │ │ ├── bidirule.go │ │ ├── bidirule10.0.0.go │ │ ├── bidirule10.0.0_test.go │ │ ├── bidirule9.0.0.go │ │ ├── bidirule9.0.0_test.go │ │ └── bidirule_test.go │ ├── doc.go │ └── precis │ │ ├── benchmark_test.go │ │ ├── class.go │ │ ├── class_test.go │ │ ├── context.go │ │ ├── doc.go │ │ ├── enforce10.0.0_test.go │ │ ├── enforce9.0.0_test.go │ │ ├── enforce_test.go │ │ ├── gen.go │ │ ├── gen_trieval.go │ │ ├── nickname.go │ │ ├── options.go │ │ ├── profile.go │ │ ├── profile_test.go │ │ ├── profiles.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ ├── tables_test.go │ │ ├── transformer.go │ │ └── trieval.go │ ├── transform │ ├── examples_test.go │ ├── transform.go │ └── transform_test.go │ ├── unicode │ ├── bidi │ │ ├── bidi.go │ │ ├── bracket.go │ │ ├── core.go │ │ ├── core_test.go │ │ ├── gen.go │ │ ├── gen_ranges.go │ │ ├── gen_trieval.go │ │ ├── prop.go │ │ ├── ranges_test.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ ├── tables_test.go │ │ └── trieval.go │ ├── cldr │ │ ├── base.go │ │ ├── cldr.go │ │ ├── cldr_test.go │ │ ├── collate.go │ │ ├── collate_test.go │ │ ├── data_test.go │ │ ├── decode.go │ │ ├── examples_test.go │ │ ├── makexml.go │ │ ├── resolve.go │ │ ├── resolve_test.go │ │ ├── slice.go │ │ ├── slice_test.go │ │ └── xml.go │ ├── doc.go │ ├── norm │ │ ├── composition.go │ │ ├── composition_test.go │ │ ├── data10.0.0_test.go │ │ ├── data9.0.0_test.go │ │ ├── example_iter_test.go │ │ ├── example_test.go │ │ ├── forminfo.go │ │ ├── forminfo_test.go │ │ ├── input.go │ │ ├── iter.go │ │ ├── iter_test.go │ │ ├── maketables.go │ │ ├── normalize.go │ │ ├── normalize_test.go │ │ ├── readwriter.go │ │ ├── readwriter_test.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ ├── transform.go │ │ ├── transform_test.go │ │ ├── trie.go │ │ ├── triegen.go │ │ └── ucd_test.go │ ├── rangetable │ │ ├── gen.go │ │ ├── merge.go │ │ ├── merge_test.go │ │ ├── rangetable.go │ │ ├── rangetable_test.go │ │ ├── tables10.0.0.go │ │ └── tables9.0.0.go │ └── runenames │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── runenames.go │ │ ├── runenames_test.go │ │ ├── tables10.0.0.go │ │ └── tables9.0.0.go │ └── width │ ├── common_test.go │ ├── example_test.go │ ├── gen.go │ ├── gen_common.go │ ├── gen_trieval.go │ ├── kind_string.go │ ├── runes_test.go │ ├── tables10.0.0.go │ ├── tables9.0.0.go │ ├── tables_test.go │ ├── transform.go │ ├── transform_test.go │ ├── trieval.go │ └── width.go └── gopkg.in └── yaml.v2 ├── .travis.yml ├── LICENSE ├── LICENSE.libyaml ├── NOTICE ├── README.md ├── apic.go ├── decode.go ├── decode_test.go ├── emitterc.go ├── encode.go ├── encode_test.go ├── example_embedded_test.go ├── go.mod ├── parserc.go ├── readerc.go ├── resolve.go ├── scannerc.go ├── sorter.go ├── suite_test.go ├── writerc.go ├── yaml.go ├── yamlh.go └── yamlprivateh.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/README.md -------------------------------------------------------------------------------- /applews/icloud/fmip/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/applews/icloud/fmip/api.go -------------------------------------------------------------------------------- /applews/icloud/fmip/fmip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/applews/icloud/fmip/fmip.go -------------------------------------------------------------------------------- /applews/icloud/fmip/fmip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/applews/icloud/fmip/fmip_test.go -------------------------------------------------------------------------------- /applews/icloud/setup/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/applews/icloud/setup/api.go -------------------------------------------------------------------------------- /applews/icloud/setup/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/applews/icloud/setup/setup.go -------------------------------------------------------------------------------- /applews/icloud/setup/setup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/applews/icloud/setup/setup_test.go -------------------------------------------------------------------------------- /applews/idmsa/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/applews/idmsa/api.go -------------------------------------------------------------------------------- /applews/idmsa/idmsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/applews/idmsa/idmsa.go -------------------------------------------------------------------------------- /applews/idmsa/idmsa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/applews/idmsa/idmsa_test.go -------------------------------------------------------------------------------- /applews/idmsa/testdata/fixtures/signin_response.json: -------------------------------------------------------------------------------- 1 | { 2 | "authType": "hsa2" 3 | } -------------------------------------------------------------------------------- /cmd/fmidevice/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/cmd/fmidevice/main.go -------------------------------------------------------------------------------- /fmidevice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/fmidevice -------------------------------------------------------------------------------- /glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/glide.lock -------------------------------------------------------------------------------- /glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/glide.yaml -------------------------------------------------------------------------------- /locate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/locate.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/fsnotify/fsnotify/.editorconfig -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/fsnotify/fsnotify/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/fsnotify/fsnotify/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/fsnotify/fsnotify/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/fsnotify/fsnotify/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/fsnotify/fsnotify/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/fsnotify/fsnotify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/fsnotify/fsnotify/README.md -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/fsnotify/fsnotify/example_test.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/fsnotify/fsnotify/fen.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/fsnotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/fsnotify/fsnotify/fsnotify.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/fsnotify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/fsnotify/fsnotify/fsnotify_test.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/inotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/fsnotify/fsnotify/inotify.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/inotify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/fsnotify/fsnotify/inotify_test.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/kqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/fsnotify/fsnotify/kqueue.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/open_mode_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/fsnotify/fsnotify/open_mode_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/fsnotify/fsnotify/windows.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/Makefile -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/decoder.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/decoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/decoder_test.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/hcl.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/hcl/ast/ast.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/ast/ast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/hcl/ast/ast_test.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/ast/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/hcl/ast/walk.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/fmtcmd/fmtcmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/hcl/fmtcmd/fmtcmd.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/.hidden.ignore: -------------------------------------------------------------------------------- 1 | invalid 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/dir.ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/file.ignore: -------------------------------------------------------------------------------- 1 | invalid 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/fmtcmd/test-fixtures/good.hcl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/hcl/parser/error.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/hcl/parser/parser.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/comment_lastline.hcl: -------------------------------------------------------------------------------- 1 | #foo -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/comment_single.hcl: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/complex_key.hcl: -------------------------------------------------------------------------------- 1 | foo.bar = "baz" 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/empty.hcl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/git_crypt.hcl: -------------------------------------------------------------------------------- 1 | GITCRYPT 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/key_without_value.hcl: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/list.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo"] 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/list_comma.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo",] 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/multiple.hcl: -------------------------------------------------------------------------------- 1 | foo = "bar" 2 | key = 7 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/object_key_assign_without_value.hcl: -------------------------------------------------------------------------------- 1 | foo { 2 | bar = 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/object_key_without_value.hcl: -------------------------------------------------------------------------------- 1 | foo { 2 | bar 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/old.hcl: -------------------------------------------------------------------------------- 1 | default = { 2 | "eu-west-1": "ami-b1cf19c6", 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/parser/test-fixtures/structure_empty.hcl: -------------------------------------------------------------------------------- 1 | resource "foo" "bar" {} 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/printer/nodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/hcl/printer/nodes.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/printer/testdata/comment_newline.golden: -------------------------------------------------------------------------------- 1 | # Hello 2 | # World 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/printer/testdata/comment_newline.input: -------------------------------------------------------------------------------- 1 | # Hello 2 | # World 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/strconv/quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/hcl/strconv/quote.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/comment_single.hcl: -------------------------------------------------------------------------------- 1 | # Hello 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/complex_key.hcl: -------------------------------------------------------------------------------- 1 | foo.bar = "baz" 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/empty.hcl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/list.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo"] 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/list_comma.hcl: -------------------------------------------------------------------------------- 1 | foo = [1, 2, "foo",] 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/multiple.hcl: -------------------------------------------------------------------------------- 1 | foo = "bar" 2 | key = 7 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/old.hcl: -------------------------------------------------------------------------------- 1 | default = { 2 | "eu-west-1": "ami-b1cf19c6", 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/test-fixtures/structure_empty.hcl: -------------------------------------------------------------------------------- 1 | resource "foo" "bar" {} 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/hcl/token/token.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/hcl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/hcl_test.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/json/parser/test-fixtures/bad_input_128.json: -------------------------------------------------------------------------------- 1 | {:{ 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/json/parser/test-fixtures/basic.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/json/test-fixtures/basic.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/json/token/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/json/token/token.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/lex.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/lex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/lex_test.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/hashicorp/hcl/parse.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/basic_int_string.hcl: -------------------------------------------------------------------------------- 1 | count = "3" 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/block_assign.hcl: -------------------------------------------------------------------------------- 1 | environment = "aws" { 2 | } 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/empty.hcl: -------------------------------------------------------------------------------- 1 | resource "foo" {} 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/flat.hcl: -------------------------------------------------------------------------------- 1 | foo = "bar" 2 | Key = 7 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/float.hcl: -------------------------------------------------------------------------------- 1 | a = 1.02 2 | b = 2 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/git_crypt.hcl: -------------------------------------------------------------------------------- 1 | GITCRYPT 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/list_of_lists.hcl: -------------------------------------------------------------------------------- 1 | foo = [["foo"], ["bar"]] 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/multiline.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar\nbaz" 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/multiline_literal.hcl: -------------------------------------------------------------------------------- 1 | multiline_literal = "hello 2 | world" -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/multiline_literal_with_hil.hcl: -------------------------------------------------------------------------------- 1 | multiline_literal_with_hil = "${hello 2 | world}" -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/multiline_no_marker.hcl: -------------------------------------------------------------------------------- 1 | foo = << 2 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/structure_list_empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": [] 3 | } 4 | -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/hcl/test-fixtures/unterminated_block_comment.hcl: -------------------------------------------------------------------------------- 1 | /* 2 | Foo 3 | -------------------------------------------------------------------------------- /vendor/github.com/inconshreveable/mousetrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/inconshreveable/mousetrap/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/magiconair/properties/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/magiconair/properties/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/magiconair/properties/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/magiconair/properties/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/magiconair/properties/README.md -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/magiconair/properties/decode.go -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/magiconair/properties/doc.go -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/integrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/magiconair/properties/integrate.go -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/magiconair/properties/lex.go -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/magiconair/properties/load.go -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/magiconair/properties/load_test.go -------------------------------------------------------------------------------- /vendor/github.com/magiconair/properties/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/magiconair/properties/parser.go -------------------------------------------------------------------------------- /vendor/github.com/michaljirman/coreapi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/michaljirman/coreapi/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/michaljirman/coreapi/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/michaljirman/coreapi/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/michaljirman/coreapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/michaljirman/coreapi/README.md -------------------------------------------------------------------------------- /vendor/github.com/michaljirman/coreapi/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/michaljirman/coreapi/api.go -------------------------------------------------------------------------------- /vendor/github.com/michaljirman/coreapi/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/michaljirman/coreapi/api_test.go -------------------------------------------------------------------------------- /vendor/github.com/michaljirman/coreapi/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/michaljirman/coreapi/auth.go -------------------------------------------------------------------------------- /vendor/github.com/michaljirman/coreapi/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/michaljirman/coreapi/auth_test.go -------------------------------------------------------------------------------- /vendor/github.com/michaljirman/coreapi/cbrouter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/michaljirman/coreapi/cbrouter.go -------------------------------------------------------------------------------- /vendor/github.com/michaljirman/coreapi/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/michaljirman/coreapi/client.go -------------------------------------------------------------------------------- /vendor/github.com/michaljirman/coreapi/glide.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/michaljirman/coreapi/glide.lock -------------------------------------------------------------------------------- /vendor/github.com/michaljirman/coreapi/glide.yaml: -------------------------------------------------------------------------------- 1 | package: github.com/michaljirman/coreapi 2 | import: [] 3 | -------------------------------------------------------------------------------- /vendor/github.com/michaljirman/coreapi/resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/michaljirman/coreapi/resource.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/mitchellh/mapstructure/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/mitchellh/mapstructure/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/mitchellh/mapstructure/README.md -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/mapstructure/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/mitchellh/mapstructure/error.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/README.md -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/benchmark.json -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/benchmark.sh -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/benchmark.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/benchmark.toml -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/benchmark.yml -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/doc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/doc_test.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/example.toml -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/fuzz.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/fuzz.sh -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/keysparsing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/keysparsing.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/lexer.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/lexer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/lexer_test.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/marshal.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/marshal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/marshal_test.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/parser.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/parser_test.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/position.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/position_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/position_test.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/query/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/query/doc.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/query/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/query/lexer.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/query/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/query/match.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/query/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/query/parser.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/query/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/query/query.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/query/tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/query/tokens.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/test.sh -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/token.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/token_test.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/toml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/toml.go -------------------------------------------------------------------------------- /vendor/github.com/pelletier/go-toml/toml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/pelletier/go-toml/toml_test.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/satori/go.uuid/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/satori/go.uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/satori/go.uuid/README.md -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/satori/go.uuid/codec.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/codec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/satori/go.uuid/codec_test.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/satori/go.uuid/generator.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/generator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/satori/go.uuid/generator_test.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/satori/go.uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/sql_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/satori/go.uuid/sql_test.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/satori/go.uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/satori/go.uuid/uuid_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/afero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/afero.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/afero_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/afero_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/basepath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/basepath.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/basepath_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/basepath_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/cacheOnReadFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/cacheOnReadFs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/composite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/composite_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/const_bsds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/const_bsds.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/const_win_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/const_win_unix.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/copyOnWriteFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/copyOnWriteFs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/copyOnWriteFs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/copyOnWriteFs_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/httpFs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/httpFs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/ioutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/ioutil.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/ioutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/ioutil_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/lstater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/lstater.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/lstater_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/lstater_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/match.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/match_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/mem/dir.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/dirmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/mem/dirmap.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/mem/file.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/mem/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/mem/file_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/memmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/memmap.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/memmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/memmap_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/os.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/path.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/path_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/readonlyfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/readonlyfs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/regexpfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/regexpfs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/ro_regexp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/ro_regexp_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/sftpfs/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/sftpfs/file.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/sftpfs/sftp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/sftpfs/sftp.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/sftpfs/sftp_test_go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/sftpfs/sftp_test_go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/unionFile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/unionFile.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/afero/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/afero/util_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cast/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cast/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cast/Makefile -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cast/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cast/cast.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/cast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cast/cast_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cast/caste.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cast/caste.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/.circleci/config.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/.mailmap -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/args.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/args_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/args_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/bash_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/bash_completions.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/bash_completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/bash_completions.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/cobra.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/cobra/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra/cmd/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/cobra/cmd/add.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra/cmd/add_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/cobra/cmd/add_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra/cmd/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/cobra/cmd/helpers.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra/cmd/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/cobra/cmd/init.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra/cmd/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/cobra/cmd/init_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra/cmd/licenses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/cobra/cmd/licenses.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra/cmd/project.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/cobra/cmd/project.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/cobra/cmd/root.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/cobra/main.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/cobra_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/cobra_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/command.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_notwin.go: -------------------------------------------------------------------------------- 1 | // +build !windows 2 | 3 | package cobra 4 | 5 | var preExecHookFn func(*Command) 6 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/command_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/command_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/command_win.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/cmd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/doc/cmd_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/man_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/doc/man_docs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/man_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/doc/man_docs.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/man_docs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/doc/man_docs_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/md_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/doc/md_docs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/md_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/doc/md_docs.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/md_docs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/doc/md_docs_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/rest_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/doc/rest_docs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/rest_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/doc/rest_docs.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/rest_docs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/doc/rest_docs_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/doc/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/yaml_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/doc/yaml_docs.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/yaml_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/doc/yaml_docs.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/doc/yaml_docs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/doc/yaml_docs_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/cobra/zsh_completions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/cobra/zsh_completions.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/jwalterweatherman/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/jwalterweatherman/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/jwalterweatherman/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/jwalterweatherman/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/jwalterweatherman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/jwalterweatherman/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/jwalterweatherman/notepad.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/jwalterweatherman/notepad.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | 3 | -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/bool.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/bool_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/bool_slice_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/bool_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/bytes.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/bytes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/bytes_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/count.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/count_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/count_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/duration.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/duration_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/duration_slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/duration_slice_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/example_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/export_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/flag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/flag_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/float32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/float64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/golangflag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/golangflag.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/golangflag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/golangflag_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/int.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/int16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/int32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/int64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/int8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/int_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/int_slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/int_slice_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/ip.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/ip_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/ip_slice_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/ip_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipmask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/ipmask.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/ipnet.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/ipnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/ipnet_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/printusage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/printusage_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/string.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/string_array.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_array_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/string_array_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/string_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/string_slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/string_slice_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/uint.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/uint16.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/uint32.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/uint64.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/uint8.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint_slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/uint_slice.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/uint_slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/uint_slice_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/verify/all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/verify/all.sh -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/verify/gofmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/verify/gofmt.sh -------------------------------------------------------------------------------- /vendor/github.com/spf13/pflag/verify/golint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/pflag/verify/golint.sh -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/viper/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/viper/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/viper/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/viper/README.md -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/viper/flags.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/flags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/viper/flags_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/overrides_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/viper/overrides_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/remote/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/viper/remote/remote.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/viper/util.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/viper/util_test.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/viper/viper.go -------------------------------------------------------------------------------- /vendor/github.com/spf13/viper/viper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/github.com/spf13/viper/viper_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/cpu/cpu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/cpu/cpu_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/cpu/cpu_mips64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/cpu/cpu_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/cpu/cpu_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/cpu/cpu_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/cpu/cpu_x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/cpu/cpu_x86.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/asm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm_plan9_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/asm_plan9_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm_plan9_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/asm_plan9_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm_plan9_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/asm_plan9_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/const_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/const_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/dir_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/dir_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/env_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/env_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/errors_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/errors_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/pwd_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/pwd_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/syscall_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/syscall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/syscall_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/zsyscall_plan9_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/zsyscall_plan9_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/zsyscall_plan9_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/zsyscall_plan9_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/zsysnum_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/plan9/zsysnum_plan9.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/creds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/creds_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/dev_linux_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/errors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/errors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/export_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/linux/Dockerfile -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/mkall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/linux/mkall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/mksysnum.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/linux/mksysnum.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/linux/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/linux/types.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/mksyscall.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksyscall_solaris.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_darwin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mmap_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/mmap_unix_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/openbsd_pledge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/openbsd_pledge.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/openbsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/openbsd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/timestruct_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/types_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/types_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/types_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/types_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/types_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/types_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/types_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/xattr_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptrace386_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zptrace386_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptracearm_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zptracearm_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptracemips_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zptracemips_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/asm_windows_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/asm_windows_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/exec_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/memory_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/memory_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/registry/key.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/registry/value.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/debug/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/svc/debug/log.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/svc/event.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/svc/go12.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/svc/go12.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/svc/go13.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/mgr/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/svc/mgr/config.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/mgr/mgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/svc/mgr/mgr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/mgr/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/svc/mgr/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/svc/security.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/svc/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/svc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/svc/svc_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/sys_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/svc/sys_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/sys_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/svc/sys_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/syscall_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/syscall_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/sys/windows/types_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/.gitattributes -------------------------------------------------------------------------------- /vendor/golang.org/x/text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/.gitignore -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cases/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cases/context_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cases/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/fold_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cases/fold_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cases/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/gen_trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cases/gen_trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/icu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cases/icu_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cases/map_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cases/tables10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cases/tables9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/tables9.0.0_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cases/tables9.0.0_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cases/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cases/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cmd/gotext/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cmd/gotext/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cmd/gotext/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cmd/gotext/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cmd/gotext/extract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cmd/gotext/extract.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cmd/gotext/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cmd/gotext/generate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cmd/gotext/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cmd/gotext/main.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cmd/gotext/rewrite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cmd/gotext/rewrite.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/cmd/gotext/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/cmd/gotext/update.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/build/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/build/builder.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/build/colelem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/build/colelem.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/build/contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/build/contract.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/build/order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/build/order.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/build/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/build/table.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/build/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/build/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/collate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/collate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/collate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/collate_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/export_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/maketables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/maketables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/option.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/option_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/reg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/reg_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/sort.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/sort_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/sort_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/table_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/collate/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/collate/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/currency/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/currency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/currency/currency.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/currency_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/currency/currency_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/currency/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/currency/format.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/currency/format_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/currency/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/gen_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/currency/gen_common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/currency/query.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/currency/query_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/currency/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/currency/tables_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/currency/tables_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/date/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/date/data_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/date/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/date/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/date/gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/date/gen_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/date/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/date/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/encoding/encoding.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/encoding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/encoding/encoding_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/encoding/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/htmlindex/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/encoding/htmlindex/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/htmlindex/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/encoding/htmlindex/map.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/ianaindex/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/encoding/ianaindex/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/japanese/all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/encoding/japanese/all.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/korean/euckr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/encoding/korean/euckr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/encoding/korean/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/encoding/korean/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/feature/plural/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/feature/plural/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/feature/plural/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/feature/plural/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/feature/plural/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/feature/plural/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/feature/plural/plural.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/feature/plural/plural.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/feature/plural/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/feature/plural/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/catmsg/catmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/catmsg/catmsg.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/catmsg/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/catmsg/codec.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/catmsg/varint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/catmsg/varint.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/cldrtree/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/cldrtree/tree.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/cldrtree/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/cldrtree/type.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/colltab/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/colltab/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/colltab/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/colltab/table.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/colltab/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/colltab/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/export/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/export/README -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/format/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/format/format.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/format/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/format/parser.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/gen/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/gen/code.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/gen/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/gen/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/internal.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/internal_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/language/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/match_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/number/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/number/common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/number/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/number/format.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/number/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/number/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/number/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/number/number.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/number/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/number/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/stringset/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/stringset/set.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/tag/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/tag/tag.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/tag/tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/tag/tag_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/testtext/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/testtext/flag.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/testtext/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/testtext/gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/testtext/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/testtext/text.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/triegen/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/triegen/print.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/ucd/ucd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/ucd/ucd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/internal/ucd/ucd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/internal/ucd/ucd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/coverage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/language/coverage.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/coverage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/language/coverage_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/display/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/language/display/dict.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/language/examples_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/go1_1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/language/go1_1.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/language/go1_2.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/language/language.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/language_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/language/language_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/language/match_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/language/parse_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/language/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/message/catalog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/catalog/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/message/catalog/dict.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/catalog/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/message/catalog/go19.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/catalog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/message/catalog_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/message/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/message/examples_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/fmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/message/fmt_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/message/format.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/message/message.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/message/message_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/message/print.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/number/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/number/examples_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/number/format.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/number/format_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/number/number.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/number_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/number/number_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/number/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/number/option.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/runes/cond_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/runes/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/runes/runes_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/search/index.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/search/pattern.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/pattern_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/search/pattern_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/search/search.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/search/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/search/tables.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/secure/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/class.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/secure/precis/class.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/secure/precis/context.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/secure/precis/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/secure/precis/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/nickname.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/secure/precis/nickname.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/secure/precis/options.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/secure/precis/profile.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/profiles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/secure/precis/profiles.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/secure/precis/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/secure/precis/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/transform/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/transform/transform.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/bidi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/bidi/bidi.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/bracket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/bidi/bracket.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/bidi/core.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/core_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/bidi/core_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/bidi/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/bidi/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/bidi/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/bidi/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/cldr/base.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/cldr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/cldr/cldr.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/cldr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/cldr/cldr_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/collate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/cldr/collate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/cldr/data_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/cldr/decode.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/makexml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/cldr/makexml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/cldr/resolve.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/cldr/slice.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/cldr/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/cldr/xml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/forminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/norm/forminfo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/norm/input.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/norm/iter.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/iter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/norm/iter_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/normalize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/norm/normalize.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/norm/transform.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/norm/trie.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/triegen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/norm/triegen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/norm/ucd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/norm/ucd_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/rangetable/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/rangetable/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/unicode/runenames/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/unicode/runenames/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/width/common_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/width/example_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/width/gen.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/gen_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/width/gen_common.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/gen_trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/width/gen_trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/kind_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/width/kind_string.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/runes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/width/runes_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/width/tables10.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/width/tables9.0.0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/tables_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/width/tables_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/width/transform.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/transform_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/width/transform_test.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/width/trieval.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/example_embedded_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/example_embedded_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaljirman/fmidevice/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go --------------------------------------------------------------------------------