├── Godeps ├── Godeps.json ├── Readme └── _workspace │ ├── .gitignore │ └── src │ ├── code.google.com │ └── p │ │ └── goauth2 │ │ └── oauth │ │ ├── example │ │ └── oauthreq.go │ │ ├── jwt │ │ ├── example │ │ │ ├── example.client_secrets.json │ │ │ ├── example.pem │ │ │ └── main.go │ │ ├── jwt.go │ │ └── jwt_test.go │ │ ├── oauth.go │ │ └── oauth_test.go │ ├── github.com │ ├── MSOpenTech │ │ └── azure-sdk-for-go │ │ │ ├── LICENSE-2.0.txt │ │ │ ├── README.md │ │ │ ├── clients │ │ │ ├── imageClient │ │ │ │ ├── entities.go │ │ │ │ └── imageClient.go │ │ │ ├── locationClient │ │ │ │ ├── entities.go │ │ │ │ └── locationClient.go │ │ │ ├── storageServiceClient │ │ │ │ ├── entities.go │ │ │ │ └── storageServiceClient.go │ │ │ ├── vmClient │ │ │ │ ├── entities.go │ │ │ │ └── vmClient.go │ │ │ └── vmDiskClient │ │ │ │ └── vmDiskClient.go │ │ │ ├── common.go │ │ │ ├── core │ │ │ ├── http │ │ │ │ ├── cgi │ │ │ │ │ ├── child.go │ │ │ │ │ ├── child_test.go │ │ │ │ │ ├── host.go │ │ │ │ │ ├── host_test.go │ │ │ │ │ ├── matryoshka_test.go │ │ │ │ │ ├── plan9_test.go │ │ │ │ │ ├── posix_test.go │ │ │ │ │ └── testdata │ │ │ │ │ │ └── test.cgi │ │ │ │ ├── chunked.go │ │ │ │ ├── chunked_test.go │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── cookie.go │ │ │ │ ├── cookie_test.go │ │ │ │ ├── cookiejar │ │ │ │ │ ├── jar.go │ │ │ │ │ ├── jar_test.go │ │ │ │ │ ├── punycode.go │ │ │ │ │ └── punycode_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── example_test.go │ │ │ │ ├── export_test.go │ │ │ │ ├── fcgi │ │ │ │ │ ├── child.go │ │ │ │ │ ├── fcgi.go │ │ │ │ │ └── fcgi_test.go │ │ │ │ ├── filetransport.go │ │ │ │ ├── filetransport_test.go │ │ │ │ ├── fs.go │ │ │ │ ├── fs_test.go │ │ │ │ ├── header.go │ │ │ │ ├── header_test.go │ │ │ │ ├── httptest │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── recorder.go │ │ │ │ │ ├── recorder_test.go │ │ │ │ │ ├── server.go │ │ │ │ │ └── server_test.go │ │ │ │ ├── httputil │ │ │ │ │ ├── chunked.go │ │ │ │ │ ├── chunked_test.go │ │ │ │ │ ├── dump.go │ │ │ │ │ ├── dump_test.go │ │ │ │ │ ├── httputil.go │ │ │ │ │ ├── persist.go │ │ │ │ │ ├── reverseproxy.go │ │ │ │ │ └── reverseproxy_test.go │ │ │ │ ├── jar.go │ │ │ │ ├── lex.go │ │ │ │ ├── lex_test.go │ │ │ │ ├── npn_test.go │ │ │ │ ├── pprof │ │ │ │ │ └── pprof.go │ │ │ │ ├── proxy_test.go │ │ │ │ ├── race.go │ │ │ │ ├── range_test.go │ │ │ │ ├── readrequest_test.go │ │ │ │ ├── request.go │ │ │ │ ├── request_test.go │ │ │ │ ├── requestwrite_test.go │ │ │ │ ├── response.go │ │ │ │ ├── response_test.go │ │ │ │ ├── responsewrite_test.go │ │ │ │ ├── serve_test.go │ │ │ │ ├── server.go │ │ │ │ ├── sniff.go │ │ │ │ ├── sniff_test.go │ │ │ │ ├── status.go │ │ │ │ ├── testdata │ │ │ │ │ ├── file │ │ │ │ │ ├── index.html │ │ │ │ │ └── style.css │ │ │ │ ├── transfer.go │ │ │ │ ├── transfer_test.go │ │ │ │ ├── transport.go │ │ │ │ ├── transport_test.go │ │ │ │ ├── triv.go │ │ │ │ └── z_last_test.go │ │ │ └── tls │ │ │ │ ├── alert.go │ │ │ │ ├── cipher_suites.go │ │ │ │ ├── common.go │ │ │ │ ├── conn.go │ │ │ │ ├── conn_test.go │ │ │ │ ├── generate_cert.go │ │ │ │ ├── handshake_client.go │ │ │ │ ├── handshake_client_test.go │ │ │ │ ├── handshake_messages.go │ │ │ │ ├── handshake_messages_test.go │ │ │ │ ├── handshake_server.go │ │ │ │ ├── handshake_server_test.go │ │ │ │ ├── key_agreement.go │ │ │ │ ├── prf.go │ │ │ │ ├── prf_test.go │ │ │ │ ├── ticket.go │ │ │ │ ├── tls.go │ │ │ │ └── tls_test.go │ │ │ └── publishSettings.go │ ├── Sirupsen │ │ └── logrus │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── entry.go │ │ │ ├── entry_test.go │ │ │ ├── examples │ │ │ ├── basic │ │ │ │ └── basic.go │ │ │ └── hook │ │ │ │ └── hook.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── formatter_bench_test.go │ │ │ ├── formatters │ │ │ └── logstash │ │ │ │ ├── logstash.go │ │ │ │ └── logstash_test.go │ │ │ ├── hook_test.go │ │ │ ├── hooks.go │ │ │ ├── hooks │ │ │ ├── airbrake │ │ │ │ ├── airbrake.go │ │ │ │ └── airbrake_test.go │ │ │ ├── bugsnag │ │ │ │ ├── bugsnag.go │ │ │ │ └── bugsnag_test.go │ │ │ ├── papertrail │ │ │ │ ├── README.md │ │ │ │ ├── papertrail.go │ │ │ │ └── papertrail_test.go │ │ │ ├── sentry │ │ │ │ ├── README.md │ │ │ │ ├── sentry.go │ │ │ │ └── sentry_test.go │ │ │ └── syslog │ │ │ │ ├── README.md │ │ │ │ ├── syslog.go │ │ │ │ └── syslog_test.go │ │ │ ├── json_formatter.go │ │ │ ├── json_formatter_test.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── logrus_test.go │ │ │ ├── terminal_bsd.go │ │ │ ├── terminal_linux.go │ │ │ ├── terminal_notwindows.go │ │ │ ├── terminal_windows.go │ │ │ ├── text_formatter.go │ │ │ ├── text_formatter_test.go │ │ │ └── writer.go │ ├── cenkalti │ │ └── backoff │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backoff.go │ │ │ ├── backoff_test.go │ │ │ ├── exponential.go │ │ │ ├── exponential_test.go │ │ │ ├── retry.go │ │ │ ├── retry_test.go │ │ │ ├── ticker.go │ │ │ └── ticker_test.go │ ├── codegangsta │ │ └── cli │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app.go │ │ │ ├── app_test.go │ │ │ ├── autocomplete │ │ │ ├── bash_autocomplete │ │ │ └── zsh_autocomplete │ │ │ ├── cli.go │ │ │ ├── cli_test.go │ │ │ ├── command.go │ │ │ ├── command_test.go │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── flag.go │ │ │ ├── flag_test.go │ │ │ ├── help.go │ │ │ ├── help_test.go │ │ │ └── helpers_test.go │ ├── digitalocean │ │ └── godo │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── action.go │ │ │ ├── action_request.go │ │ │ ├── action_request_test.go │ │ │ ├── action_test.go │ │ │ ├── doc.go │ │ │ ├── domains.go │ │ │ ├── domains_test.go │ │ │ ├── droplet_actions.go │ │ │ ├── droplet_actions_test.go │ │ │ ├── droplets.go │ │ │ ├── droplets_test.go │ │ │ ├── godo.go │ │ │ ├── godo_test.go │ │ │ ├── image_actions.go │ │ │ ├── image_actions_test.go │ │ │ ├── images.go │ │ │ ├── images_test.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── links.go │ │ │ ├── links_test.go │ │ │ ├── regions.go │ │ │ ├── regions_test.go │ │ │ ├── sizes.go │ │ │ ├── sizes_test.go │ │ │ ├── strings.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp_test.go │ │ │ └── util │ │ │ └── droplet.go │ ├── docker │ │ ├── docker │ │ │ └── pkg │ │ │ │ ├── homedir │ │ │ │ ├── homedir.go │ │ │ │ └── homedir_test.go │ │ │ │ ├── mflag │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── example │ │ │ │ │ └── example.go │ │ │ │ ├── flag.go │ │ │ │ └── flag_test.go │ │ │ │ ├── term │ │ │ │ ├── tc_linux_cgo.go │ │ │ │ ├── tc_other.go │ │ │ │ ├── term.go │ │ │ │ ├── term_windows.go │ │ │ │ ├── termios_darwin.go │ │ │ │ ├── termios_freebsd.go │ │ │ │ ├── termios_linux.go │ │ │ │ └── windows │ │ │ │ │ ├── ansi_reader.go │ │ │ │ │ ├── ansi_writer.go │ │ │ │ │ ├── console.go │ │ │ │ │ ├── windows.go │ │ │ │ │ └── windows_test.go │ │ │ │ └── units │ │ │ │ ├── duration.go │ │ │ │ ├── duration_test.go │ │ │ │ ├── size.go │ │ │ │ └── size_test.go │ │ └── machine │ │ │ ├── commands │ │ │ ├── active.go │ │ │ ├── active_test.go │ │ │ ├── commands.go │ │ │ ├── commands_test.go │ │ │ ├── config.go │ │ │ ├── config_test.go │ │ │ ├── create.go │ │ │ ├── create_test.go │ │ │ ├── env.go │ │ │ ├── env_test.go │ │ │ ├── inspect.go │ │ │ ├── inspect_test.go │ │ │ ├── ip.go │ │ │ ├── ip_test.go │ │ │ ├── kill.go │ │ │ ├── kill_test.go │ │ │ ├── ls.go │ │ │ ├── ls_test.go │ │ │ ├── regeneratecerts.go │ │ │ ├── regeneratecerts_test.go │ │ │ ├── restart.go │ │ │ ├── restart_test.go │ │ │ ├── rm.go │ │ │ ├── rm_test.go │ │ │ ├── scp.go │ │ │ ├── scp_test.go │ │ │ ├── ssh.go │ │ │ ├── ssh_test.go │ │ │ ├── start.go │ │ │ ├── start_test.go │ │ │ ├── status.go │ │ │ ├── status_test.go │ │ │ ├── stop.go │ │ │ ├── stop_test.go │ │ │ ├── upgrade.go │ │ │ ├── upgrade_test.go │ │ │ ├── url.go │ │ │ └── url_test.go │ │ │ ├── drivers │ │ │ ├── amazonec2 │ │ │ │ ├── amazonec2.go │ │ │ │ ├── amazonec2_test.go │ │ │ │ ├── amz │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── auth_test.go │ │ │ │ │ ├── block_device_mapping.go │ │ │ │ │ ├── block_device_mapping_test.go │ │ │ │ │ ├── describe_instances.go │ │ │ │ │ ├── describe_instances_test.go │ │ │ │ │ ├── describe_keypairs.go │ │ │ │ │ ├── describe_keypairs_test.go │ │ │ │ │ ├── describe_security_groups.go │ │ │ │ │ ├── describe_security_groups_test.go │ │ │ │ │ ├── describe_spot_instance_requests.go │ │ │ │ │ ├── describe_subnets.go │ │ │ │ │ ├── describe_subnets_test.go │ │ │ │ │ ├── ec2.go │ │ │ │ │ ├── ec2_test.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── error_codes.go │ │ │ │ │ ├── error_codes_test.go │ │ │ │ │ ├── error_test.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── ip_permission.go │ │ │ │ │ ├── ip_permission_test.go │ │ │ │ │ ├── keypair.go │ │ │ │ │ ├── keypair_test.go │ │ │ │ │ ├── security_group.go │ │ │ │ │ ├── security_group_test.go │ │ │ │ │ ├── tags.go │ │ │ │ │ └── tags_test.go │ │ │ │ └── utils.go │ │ │ ├── azure │ │ │ │ ├── azure.go │ │ │ │ └── azure_test.go │ │ │ ├── base.go │ │ │ ├── digitalocean │ │ │ │ ├── digitalocean.go │ │ │ │ └── digitalocean_test.go │ │ │ ├── drivers.go │ │ │ ├── drivers_test.go │ │ │ ├── exoscale │ │ │ │ ├── exoscale.go │ │ │ │ └── exoscale_test.go │ │ │ ├── fakedriver │ │ │ │ ├── fakedriver.go │ │ │ │ └── fakedriver_test.go │ │ │ ├── flag_sort.go │ │ │ ├── generic │ │ │ │ ├── generic.go │ │ │ │ └── generic_test.go │ │ │ ├── google │ │ │ │ ├── auth_util.go │ │ │ │ ├── auth_util_test.go │ │ │ │ ├── compute_util.go │ │ │ │ ├── compute_util_test.go │ │ │ │ ├── google.go │ │ │ │ └── google_test.go │ │ │ ├── hyperv │ │ │ │ ├── hyperv.go │ │ │ │ ├── hyperv_test.go │ │ │ │ ├── hyperv_windows.go │ │ │ │ └── powershell_windows.go │ │ │ ├── none │ │ │ │ ├── none.go │ │ │ │ └── none_test.go │ │ │ ├── openstack │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── openstack.go │ │ │ │ └── openstack_test.go │ │ │ ├── rackspace │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── rackspace.go │ │ │ │ └── rackspace_test.go │ │ │ ├── softlayer │ │ │ │ ├── driver.go │ │ │ │ ├── driver_test.go │ │ │ │ ├── softlayer.go │ │ │ │ └── softlayer_test.go │ │ │ ├── utils.go │ │ │ ├── virtualbox │ │ │ │ ├── disk.go │ │ │ │ ├── disk_test.go │ │ │ │ ├── network.go │ │ │ │ ├── network_test.go │ │ │ │ ├── vbm.go │ │ │ │ ├── vbm_test.go │ │ │ │ ├── virtualbox.go │ │ │ │ ├── virtualbox_test.go │ │ │ │ ├── vm.go │ │ │ │ └── vm_test.go │ │ │ ├── vmwarefusion │ │ │ │ ├── fusion_darwin.go │ │ │ │ ├── fusion_test.go │ │ │ │ ├── vmrun_darwin.go │ │ │ │ ├── vmrun_test.go │ │ │ │ ├── vmwarefusion.go │ │ │ │ ├── vmx_darwin.go │ │ │ │ └── vmx_test.go │ │ │ ├── vmwarevcloudair │ │ │ │ ├── vcloudair.go │ │ │ │ └── vcloudair_test.go │ │ │ └── vmwarevsphere │ │ │ │ ├── errors │ │ │ │ ├── config_error.go │ │ │ │ ├── config_error_test.go │ │ │ │ ├── datastore_error.go │ │ │ │ ├── datastore_error_test.go │ │ │ │ ├── errors.go │ │ │ │ ├── errors_test.go │ │ │ │ ├── govc_error.go │ │ │ │ ├── govc_error_test.go │ │ │ │ ├── guest_error.go │ │ │ │ ├── guest_error_test.go │ │ │ │ ├── login_error.go │ │ │ │ ├── login_error_test.go │ │ │ │ ├── state_error.go │ │ │ │ ├── state_error_test.go │ │ │ │ ├── vm_error.go │ │ │ │ └── vm_error_test.go │ │ │ │ ├── govc.go │ │ │ │ ├── govc_test.go │ │ │ │ ├── vc_conn.go │ │ │ │ ├── vc_conn_test.go │ │ │ │ ├── vsphere.go │ │ │ │ └── vsphere_test.go │ │ │ ├── libmachine │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ └── auth_test.go │ │ │ ├── certs.go │ │ │ ├── engine │ │ │ │ ├── engine.go │ │ │ │ └── engine_test.go │ │ │ ├── errors.go │ │ │ ├── filestore.go │ │ │ ├── filestore_test.go │ │ │ ├── host.go │ │ │ ├── host_test.go │ │ │ ├── host_v0.go │ │ │ ├── migrate.go │ │ │ ├── migrate_v0_v1.go │ │ │ ├── migrate_v0_v1_test.go │ │ │ ├── provider.go │ │ │ ├── provider_test.go │ │ │ ├── provision │ │ │ │ ├── boot2docker.go │ │ │ │ ├── centos.go │ │ │ │ ├── centos_test.go │ │ │ │ ├── configure_swarm.go │ │ │ │ ├── debian.go │ │ │ │ ├── engine_config_context.go │ │ │ │ ├── errors.go │ │ │ │ ├── fedora.go │ │ │ │ ├── fedora_test.go │ │ │ │ ├── generic.go │ │ │ │ ├── os_release.go │ │ │ │ ├── os_release_test.go │ │ │ │ ├── pkgaction │ │ │ │ │ ├── action.go │ │ │ │ │ └── action_test.go │ │ │ │ ├── provisioner.go │ │ │ │ ├── rancheros.go │ │ │ │ ├── redhat.go │ │ │ │ ├── redhat_test.go │ │ │ │ ├── ubuntu.go │ │ │ │ ├── utils.go │ │ │ │ └── utils_test.go │ │ │ ├── store.go │ │ │ └── swarm │ │ │ │ ├── swarm.go │ │ │ │ └── swarm_test.go │ │ │ ├── log │ │ │ ├── log.go │ │ │ ├── log_test.go │ │ │ └── terminal.go │ │ │ ├── ssh │ │ │ ├── client.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── ssh.go │ │ │ └── ssh_test.go │ │ │ ├── state │ │ │ ├── state.go │ │ │ └── state_test.go │ │ │ ├── utils │ │ │ ├── b2d.go │ │ │ ├── b2d_test.go │ │ │ ├── certs.go │ │ │ ├── certs_test.go │ │ │ ├── utils.go │ │ │ └── utils_test.go │ │ │ └── version │ │ │ ├── version.go │ │ │ └── version_test.go │ ├── google │ │ └── go-querystring │ │ │ └── query │ │ │ ├── encode.go │ │ │ └── encode_test.go │ ├── ivpusic │ │ ├── go-clicolor │ │ │ └── clicolor │ │ │ │ ├── clicolor.go │ │ │ │ └── clicolor_test.go │ │ └── golog │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appender.go │ │ │ ├── appenders │ │ │ ├── file.go │ │ │ ├── file_test.go │ │ │ ├── mongo.go │ │ │ └── mongo_test.go │ │ │ ├── examples │ │ │ ├── advanced.go │ │ │ ├── appenders.go │ │ │ ├── customappender.go │ │ │ ├── formatting.go │ │ │ └── simple.go │ │ │ ├── golog.go │ │ │ ├── golog_test.go │ │ │ ├── logger.go │ │ │ └── logger_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 │ ├── opencontainers │ │ └── runc │ │ │ └── libcontainer │ │ │ └── user │ │ │ ├── MAINTAINERS │ │ │ ├── lookup.go │ │ │ ├── lookup_unix.go │ │ │ ├── lookup_unsupported.go │ │ │ ├── user.go │ │ │ └── user_test.go │ ├── pyr │ │ └── egoscale │ │ │ └── src │ │ │ └── egoscale │ │ │ ├── async.go │ │ │ ├── error.go │ │ │ ├── groups.go │ │ │ ├── init.go │ │ │ ├── keypair.go │ │ │ ├── request.go │ │ │ ├── topology.go │ │ │ ├── types.go │ │ │ └── vm.go │ ├── rackspace │ │ └── gophercloud │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── UPGRADING.md │ │ │ ├── acceptance │ │ │ ├── README.md │ │ │ ├── openstack │ │ │ │ ├── blockstorage │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── snapshots_test.go │ │ │ │ │ │ ├── volumes_test.go │ │ │ │ │ │ └── volumetypes_test.go │ │ │ │ ├── client_test.go │ │ │ │ ├── compute │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── bootfromvolume_test.go │ │ │ │ │ │ ├── compute_test.go │ │ │ │ │ │ ├── extension_test.go │ │ │ │ │ │ ├── flavors_test.go │ │ │ │ │ │ ├── floatingip_test.go │ │ │ │ │ │ ├── images_test.go │ │ │ │ │ │ ├── keypairs_test.go │ │ │ │ │ │ ├── pkg.go │ │ │ │ │ │ ├── secdefrules_test.go │ │ │ │ │ │ ├── secgroup_test.go │ │ │ │ │ │ ├── servergroup_test.go │ │ │ │ │ │ ├── servers_test.go │ │ │ │ │ │ ├── tenantnetworks_test.go │ │ │ │ │ │ └── volumeattach_test.go │ │ │ │ ├── identity │ │ │ │ │ ├── v2 │ │ │ │ │ │ ├── extension_test.go │ │ │ │ │ │ ├── identity_test.go │ │ │ │ │ │ ├── pkg.go │ │ │ │ │ │ ├── role_test.go │ │ │ │ │ │ ├── tenant_test.go │ │ │ │ │ │ ├── token_test.go │ │ │ │ │ │ └── user_test.go │ │ │ │ │ └── v3 │ │ │ │ │ │ ├── endpoint_test.go │ │ │ │ │ │ ├── identity_test.go │ │ │ │ │ │ ├── pkg.go │ │ │ │ │ │ ├── service_test.go │ │ │ │ │ │ └── token_test.go │ │ │ │ ├── networking │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── apiversion_test.go │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── extension_test.go │ │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── fwaas │ │ │ │ │ │ │ ├── firewall_test.go │ │ │ │ │ │ │ ├── pkg.go │ │ │ │ │ │ │ ├── policy_test.go │ │ │ │ │ │ │ └── rule_test.go │ │ │ │ │ │ ├── layer3_test.go │ │ │ │ │ │ ├── lbaas │ │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ │ ├── member_test.go │ │ │ │ │ │ │ ├── monitor_test.go │ │ │ │ │ │ │ ├── pkg.go │ │ │ │ │ │ │ ├── pool_test.go │ │ │ │ │ │ │ └── vip_test.go │ │ │ │ │ │ ├── pkg.go │ │ │ │ │ │ ├── provider_test.go │ │ │ │ │ │ └── security_test.go │ │ │ │ │ │ ├── network_test.go │ │ │ │ │ │ ├── pkg.go │ │ │ │ │ │ ├── port_test.go │ │ │ │ │ │ └── subnet_test.go │ │ │ │ ├── objectstorage │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── accounts_test.go │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── containers_test.go │ │ │ │ │ │ └── objects_test.go │ │ │ │ ├── orchestration │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── buildinfo_test.go │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── hello-compute.json │ │ │ │ │ │ ├── stackevents_test.go │ │ │ │ │ │ ├── stackresources_test.go │ │ │ │ │ │ ├── stacks_test.go │ │ │ │ │ │ └── stacktemplates_test.go │ │ │ │ └── pkg.go │ │ │ ├── rackspace │ │ │ │ ├── blockstorage │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── snapshot_test.go │ │ │ │ │ │ ├── volume_test.go │ │ │ │ │ │ └── volume_type_test.go │ │ │ │ ├── cdn │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── base_test.go │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── flavor_test.go │ │ │ │ │ │ ├── service_test.go │ │ │ │ │ │ └── serviceasset_test.go │ │ │ │ ├── client_test.go │ │ │ │ ├── compute │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── bootfromvolume_test.go │ │ │ │ │ │ ├── compute_test.go │ │ │ │ │ │ ├── flavors_test.go │ │ │ │ │ │ ├── images_test.go │ │ │ │ │ │ ├── keypairs_test.go │ │ │ │ │ │ ├── networks_test.go │ │ │ │ │ │ ├── pkg.go │ │ │ │ │ │ ├── servers_test.go │ │ │ │ │ │ ├── virtualinterfaces_test.go │ │ │ │ │ │ └── volumeattach_test.go │ │ │ │ ├── identity │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── extension_test.go │ │ │ │ │ │ ├── identity_test.go │ │ │ │ │ │ ├── pkg.go │ │ │ │ │ │ ├── role_test.go │ │ │ │ │ │ ├── tenant_test.go │ │ │ │ │ │ └── user_test.go │ │ │ │ ├── lb │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── acl_test.go │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── lb_test.go │ │ │ │ │ │ ├── monitor_test.go │ │ │ │ │ │ ├── node_test.go │ │ │ │ │ │ ├── session_test.go │ │ │ │ │ │ ├── throttle_test.go │ │ │ │ │ │ └── vip_test.go │ │ │ │ ├── networking │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── network_test.go │ │ │ │ │ │ ├── port_test.go │ │ │ │ │ │ ├── security_test.go │ │ │ │ │ │ └── subnet_test.go │ │ │ │ ├── objectstorage │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── accounts_test.go │ │ │ │ │ │ ├── bulk_test.go │ │ │ │ │ │ ├── cdncontainers_test.go │ │ │ │ │ │ ├── cdnobjects_test.go │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── containers_test.go │ │ │ │ │ │ └── objects_test.go │ │ │ │ ├── orchestration │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── buildinfo_test.go │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── stackevents_test.go │ │ │ │ │ │ ├── stackresources_test.go │ │ │ │ │ │ ├── stacks_test.go │ │ │ │ │ │ └── stacktemplates_test.go │ │ │ │ ├── pkg.go │ │ │ │ └── rackconnect │ │ │ │ │ └── v3 │ │ │ │ │ ├── cloudnetworks_test.go │ │ │ │ │ ├── common.go │ │ │ │ │ ├── lbpools_test.go │ │ │ │ │ └── publicips_test.go │ │ │ └── tools │ │ │ │ ├── pkg.go │ │ │ │ └── tools.go │ │ │ ├── auth_options.go │ │ │ ├── auth_results.go │ │ │ ├── doc.go │ │ │ ├── endpoint_search.go │ │ │ ├── endpoint_search_test.go │ │ │ ├── openstack │ │ │ ├── auth_env.go │ │ │ ├── blockstorage │ │ │ │ └── v1 │ │ │ │ │ ├── apiversions │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ │ │ ├── snapshots │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ ├── urls_test.go │ │ │ │ │ └── util.go │ │ │ │ │ ├── volumes │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ ├── urls_test.go │ │ │ │ │ └── util.go │ │ │ │ │ └── volumetypes │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ ├── cdn │ │ │ │ └── v1 │ │ │ │ │ ├── base │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ │ ├── flavors │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ │ ├── serviceassets │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ │ └── services │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── common │ │ │ │ ├── README.md │ │ │ │ └── extensions │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ ├── compute │ │ │ │ └── v2 │ │ │ │ │ ├── extensions │ │ │ │ │ ├── bootfromvolume │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ ├── urls.go │ │ │ │ │ │ └── urls_test.go │ │ │ │ │ ├── defsecrules │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fixtures.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ ├── diskconfig │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── results_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── floatingip │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fixtures.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ ├── urls.go │ │ │ │ │ │ └── urls_test.go │ │ │ │ │ ├── keypairs │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fixtures.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ ├── urls.go │ │ │ │ │ │ └── urls_test.go │ │ │ │ │ ├── schedulerhints │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ └── requests_test.go │ │ │ │ │ ├── secgroups │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fixtures.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── servergroups │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fixtures.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ ├── urls.go │ │ │ │ │ │ └── urls_test.go │ │ │ │ │ ├── startstop │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fixtures.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ └── requests_test.go │ │ │ │ │ ├── tenantnetworks │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fixtures.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ ├── urls.go │ │ │ │ │ │ └── urls_test.go │ │ │ │ │ └── volumeattach │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fixtures.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ ├── urls.go │ │ │ │ │ │ └── urls_test.go │ │ │ │ │ ├── flavors │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ │ │ ├── images │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ │ │ └── servers │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ ├── urls_test.go │ │ │ │ │ └── util.go │ │ │ ├── endpoint_location.go │ │ │ ├── endpoint_location_test.go │ │ │ ├── identity │ │ │ │ ├── v2 │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ └── roles │ │ │ │ │ │ │ │ ├── docs.go │ │ │ │ │ │ │ │ ├── fixtures.go │ │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ ├── delegate.go │ │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ └── fixtures.go │ │ │ │ │ ├── tenants │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fixtures.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── tokens │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── fixtures.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ └── users │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── fixtures.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ └── v3 │ │ │ │ │ ├── endpoints │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ │ │ ├── services │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ │ │ └── tokens │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ ├── networking │ │ │ │ └── v2 │ │ │ │ │ ├── apiversions │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ │ │ ├── common │ │ │ │ │ └── common_tests.go │ │ │ │ │ ├── extensions │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ ├── external │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── results_test.go │ │ │ │ │ ├── fwaas │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── firewalls │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ ├── policies │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ └── rules │ │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── layer3 │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── floatingips │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ └── routers │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── lbaas │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── members │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ ├── monitors │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ ├── pools │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ └── vips │ │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── provider │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── results_test.go │ │ │ │ │ └── security │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── groups │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ │ └── rules │ │ │ │ │ │ ├── requests.go │ │ │ │ │ │ ├── requests_test.go │ │ │ │ │ │ ├── results.go │ │ │ │ │ │ └── urls.go │ │ │ │ │ ├── networks │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ │ │ ├── ports │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ │ │ └── subnets │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ ├── objectstorage │ │ │ │ └── v1 │ │ │ │ │ ├── accounts │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ │ │ ├── containers │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ │ │ └── objects │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ ├── orchestration │ │ │ │ └── v1 │ │ │ │ │ ├── apiversions │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ │ ├── buildinfo │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ │ ├── stackevents │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ │ ├── stackresources │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ │ ├── stacks │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ │ └── stacktemplates │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ └── utils │ │ │ │ ├── choose_version.go │ │ │ │ └── choose_version_test.go │ │ │ ├── pagination │ │ │ ├── http.go │ │ │ ├── linked.go │ │ │ ├── linked_test.go │ │ │ ├── marker.go │ │ │ ├── marker_test.go │ │ │ ├── null.go │ │ │ ├── pager.go │ │ │ ├── pagination_test.go │ │ │ ├── pkg.go │ │ │ ├── single.go │ │ │ └── single_test.go │ │ │ ├── params.go │ │ │ ├── params_test.go │ │ │ ├── provider_client.go │ │ │ ├── provider_client_test.go │ │ │ ├── rackspace │ │ │ ├── auth_env.go │ │ │ ├── blockstorage │ │ │ │ └── v1 │ │ │ │ │ ├── snapshots │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── results.go │ │ │ │ │ ├── volumes │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── results.go │ │ │ │ │ └── volumetypes │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── results.go │ │ │ ├── cdn │ │ │ │ └── v1 │ │ │ │ │ ├── base │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ └── doc.go │ │ │ │ │ ├── flavors │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ └── doc.go │ │ │ │ │ ├── serviceassets │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ └── doc.go │ │ │ │ │ └── services │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ └── doc.go │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── compute │ │ │ │ └── v2 │ │ │ │ │ ├── bootfromvolume │ │ │ │ │ ├── delegate.go │ │ │ │ │ └── delegate_test.go │ │ │ │ │ ├── flavors │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── fixtures.go │ │ │ │ │ ├── images │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── fixtures.go │ │ │ │ │ ├── keypairs │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ └── doc.go │ │ │ │ │ ├── networks │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ │ │ ├── servers │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ └── requests_test.go │ │ │ │ │ ├── virtualinterfaces │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ │ │ └── volumeattach │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ └── doc.go │ │ │ ├── identity │ │ │ │ └── v2 │ │ │ │ │ ├── extensions │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ └── doc.go │ │ │ │ │ ├── roles │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ └── fixtures.go │ │ │ │ │ ├── tenants │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ └── doc.go │ │ │ │ │ ├── tokens │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ └── doc.go │ │ │ │ │ └── users │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ ├── lb │ │ │ │ └── v1 │ │ │ │ │ ├── acl │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ │ ├── lbs │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ │ ├── monitors │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ │ ├── nodes │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ │ ├── sessions │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ │ ├── ssl │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ │ ├── throttle │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ │ │ └── vips │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── fixtures.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ └── urls.go │ │ │ ├── networking │ │ │ │ └── v2 │ │ │ │ │ ├── common │ │ │ │ │ └── common_tests.go │ │ │ │ │ ├── networks │ │ │ │ │ ├── delegate.go │ │ │ │ │ └── delegate_test.go │ │ │ │ │ ├── ports │ │ │ │ │ ├── delegate.go │ │ │ │ │ └── delegate_test.go │ │ │ │ │ ├── security │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── groups │ │ │ │ │ │ ├── delegate.go │ │ │ │ │ │ └── delegate_test.go │ │ │ │ │ └── rules │ │ │ │ │ │ ├── delegate.go │ │ │ │ │ │ └── delegate_test.go │ │ │ │ │ └── subnets │ │ │ │ │ ├── delegate.go │ │ │ │ │ └── delegate_test.go │ │ │ ├── objectstorage │ │ │ │ └── v1 │ │ │ │ │ ├── accounts │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ └── doc.go │ │ │ │ │ ├── bulk │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ │ │ ├── cdncontainers │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── requests.go │ │ │ │ │ ├── requests_test.go │ │ │ │ │ ├── results.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urls_test.go │ │ │ │ │ ├── cdnobjects │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── request.go │ │ │ │ │ ├── containers │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ └── doc.go │ │ │ │ │ └── objects │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ └── doc.go │ │ │ ├── orchestration │ │ │ │ └── v1 │ │ │ │ │ ├── buildinfo │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ └── doc.go │ │ │ │ │ ├── stackevents │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ └── doc.go │ │ │ │ │ ├── stackresources │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ └── doc.go │ │ │ │ │ ├── stacks │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ └── fixtures.go │ │ │ │ │ └── stacktemplates │ │ │ │ │ ├── delegate.go │ │ │ │ │ ├── delegate_test.go │ │ │ │ │ └── doc.go │ │ │ └── rackconnect │ │ │ │ └── v3 │ │ │ │ ├── cloudnetworks │ │ │ │ ├── requests.go │ │ │ │ ├── requests_test.go │ │ │ │ ├── results.go │ │ │ │ └── urls.go │ │ │ │ ├── doc.go │ │ │ │ ├── lbpools │ │ │ │ ├── doc.go │ │ │ │ ├── requests.go │ │ │ │ ├── requests_test.go │ │ │ │ ├── results.go │ │ │ │ └── urls.go │ │ │ │ └── publicips │ │ │ │ ├── requests.go │ │ │ │ ├── requests_test.go │ │ │ │ ├── results.go │ │ │ │ └── urls.go │ │ │ ├── results.go │ │ │ ├── script │ │ │ ├── acceptancetest │ │ │ ├── bootstrap │ │ │ ├── cibuild │ │ │ ├── test │ │ │ └── unittest │ │ │ ├── service_client.go │ │ │ ├── service_client_test.go │ │ │ ├── testhelper │ │ │ ├── client │ │ │ │ └── fake.go │ │ │ ├── convenience.go │ │ │ ├── doc.go │ │ │ └── http_responses.go │ │ │ ├── util.go │ │ │ └── util_test.go │ ├── samalba │ │ └── dockerclient │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── auth.go │ │ │ ├── auth_test.go │ │ │ ├── dockerclient.go │ │ │ ├── dockerclient_test.go │ │ │ ├── engine_mock_test.go │ │ │ ├── example_responses.go │ │ │ ├── examples │ │ │ ├── events.go │ │ │ └── stats │ │ │ │ └── stats.go │ │ │ ├── interface.go │ │ │ ├── mockclient │ │ │ ├── mock.go │ │ │ └── mock_test.go │ │ │ ├── nopclient │ │ │ └── nop.go │ │ │ ├── types.go │ │ │ └── utils.go │ ├── shiena │ │ └── ansicolor │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ansicolor.go │ │ │ ├── ansicolor │ │ │ └── main.go │ │ │ ├── ansicolor_ansi.go │ │ │ ├── ansicolor_test.go │ │ │ ├── ansicolor_windows.go │ │ │ ├── ansicolor_windows_test.go │ │ │ ├── example_test.go │ │ │ └── export_test.go │ ├── skarademir │ │ └── naturalsort │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── naturalsort.go │ │ │ └── naturalsort_test.go │ ├── smartystreets │ │ └── go-aws-auth │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── awsauth.go │ │ │ ├── awsauth_test.go │ │ │ ├── common.go │ │ │ ├── common_test.go │ │ │ ├── s3.go │ │ │ ├── s3_test.go │ │ │ ├── sign2.go │ │ │ ├── sign2_test.go │ │ │ ├── sign3.go │ │ │ ├── sign3_test.go │ │ │ ├── sign4.go │ │ │ └── sign4_test.go │ ├── tent │ │ └── http-link-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── link.go │ │ │ └── link_test.go │ └── vmware │ │ └── govcloudair │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── api.go │ │ ├── api_test.go │ │ ├── catalog.go │ │ ├── catalog_test.go │ │ ├── catalogitem.go │ │ ├── catalogitem_test.go │ │ ├── edgegateway.go │ │ ├── edgegateway_test.go │ │ ├── org.go │ │ ├── org_test.go │ │ ├── orgvdcnetwork.go │ │ ├── orgvdcnetwork_test.go │ │ ├── script │ │ └── coverage │ │ ├── task.go │ │ ├── task_test.go │ │ ├── testutil │ │ └── http.go │ │ ├── types │ │ └── v56 │ │ │ └── types.go │ │ ├── vapp.go │ │ ├── vapp_test.go │ │ ├── vapptemplate.go │ │ ├── vapptemplate_test.go │ │ ├── vdc.go │ │ └── vdc_test.go │ ├── golang.org │ └── x │ │ ├── crypto │ │ └── ssh │ │ │ ├── agent │ │ │ ├── client.go │ │ │ ├── client_test.go │ │ │ ├── forward.go │ │ │ ├── keyring.go │ │ │ ├── server.go │ │ │ ├── server_test.go │ │ │ └── testdata_test.go │ │ │ ├── benchmark_test.go │ │ │ ├── buffer.go │ │ │ ├── buffer_test.go │ │ │ ├── certs.go │ │ │ ├── certs_test.go │ │ │ ├── channel.go │ │ │ ├── cipher.go │ │ │ ├── cipher_test.go │ │ │ ├── client.go │ │ │ ├── client_auth.go │ │ │ ├── client_auth_test.go │ │ │ ├── client_test.go │ │ │ ├── common.go │ │ │ ├── connection.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── handshake.go │ │ │ ├── handshake_test.go │ │ │ ├── kex.go │ │ │ ├── kex_test.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── mac.go │ │ │ ├── mempipe_test.go │ │ │ ├── messages.go │ │ │ ├── messages_test.go │ │ │ ├── mux.go │ │ │ ├── mux_test.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── session_test.go │ │ │ ├── tcpip.go │ │ │ ├── tcpip_test.go │ │ │ ├── terminal │ │ │ ├── terminal.go │ │ │ ├── terminal_test.go │ │ │ ├── util.go │ │ │ ├── util_bsd.go │ │ │ ├── util_linux.go │ │ │ └── util_windows.go │ │ │ ├── test │ │ │ ├── agent_unix_test.go │ │ │ ├── cert_test.go │ │ │ ├── doc.go │ │ │ ├── forward_unix_test.go │ │ │ ├── session_test.go │ │ │ ├── tcpip_test.go │ │ │ ├── test_unix_test.go │ │ │ └── testdata_test.go │ │ │ ├── testdata │ │ │ ├── doc.go │ │ │ └── keys.go │ │ │ ├── testdata_test.go │ │ │ ├── transport.go │ │ │ └── transport_test.go │ │ └── net │ │ └── context │ │ ├── context.go │ │ ├── context_test.go │ │ └── withtimeout_test.go │ ├── google.golang.org │ └── api │ │ ├── compute │ │ └── v1 │ │ │ ├── compute-api.json │ │ │ └── compute-gen.go │ │ └── googleapi │ │ ├── googleapi.go │ │ ├── googleapi_test.go │ │ ├── internal │ │ └── uritemplates │ │ │ ├── LICENSE │ │ │ ├── uritemplates.go │ │ │ └── utils.go │ │ ├── transport │ │ └── apikey.go │ │ ├── types.go │ │ └── types_test.go │ └── gopkg.in │ ├── mgo.v2 │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── auth.go │ ├── auth_test.go │ ├── bson │ │ ├── LICENSE │ │ ├── bson.go │ │ ├── bson_test.go │ │ ├── decode.go │ │ └── encode.go │ ├── bulk.go │ ├── bulk_test.go │ ├── cluster.go │ ├── cluster_test.go │ ├── dbtest │ │ ├── dbserver.go │ │ ├── dbserver_test.go │ │ └── export_test.go │ ├── doc.go │ ├── export_test.go │ ├── gridfs.go │ ├── gridfs_test.go │ ├── internal │ │ ├── sasl │ │ │ ├── sasl.c │ │ │ ├── sasl.go │ │ │ ├── sasl_windows.c │ │ │ ├── sasl_windows.go │ │ │ ├── sasl_windows.h │ │ │ ├── sspi_windows.c │ │ │ └── sspi_windows.h │ │ └── scram │ │ │ ├── scram.go │ │ │ └── scram_test.go │ ├── log.go │ ├── queue.go │ ├── queue_test.go │ ├── raceoff.go │ ├── raceon.go │ ├── saslimpl.go │ ├── saslstub.go │ ├── server.go │ ├── session.go │ ├── session_test.go │ ├── socket.go │ ├── stats.go │ ├── suite_test.go │ ├── syscall_test.go │ ├── syscall_windows_test.go │ ├── testdb │ │ ├── client.pem │ │ ├── dropall.js │ │ ├── init.js │ │ ├── server.pem │ │ ├── setup.sh │ │ ├── supervisord.conf │ │ └── wait.js │ ├── testserver │ │ ├── export_test.go │ │ ├── testserver.go │ │ └── testserver_test.go │ └── txn │ │ ├── chaos.go │ │ ├── debug.go │ │ ├── dockey_test.go │ │ ├── flusher.go │ │ ├── mgo_test.go │ │ ├── sim_test.go │ │ ├── tarjan.go │ │ ├── tarjan_test.go │ │ ├── txn.go │ │ └── txn_test.go │ └── yaml.v2 │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── decode_test.go │ ├── emitterc.go │ ├── encode.go │ ├── encode_test.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── suite_test.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── Makefile ├── README.md ├── api └── client │ ├── README.md │ ├── cli.go │ ├── cluster_flags.go │ ├── cmd_cluster.go │ └── help.go ├── cluster.aliyun.usertag.multiprofile.yml ├── cluster.aliyun.usertag.yml ├── cluster ├── cluster.go ├── cluster_test.go ├── context │ └── context.go └── portbindings.go ├── container ├── cluster │ ├── add.go │ ├── clusters.go │ ├── drivers │ │ ├── drivers.go │ │ └── swarm │ │ │ ├── callback.go │ │ │ ├── options.go │ │ │ └── swarm.go │ ├── events.go │ ├── impl.go │ └── run.go ├── container.go ├── dependancy.go ├── description.go ├── docker_client.go ├── docker_proxy.go ├── filter │ ├── filter.go │ ├── group_filter.go │ ├── ip_filter.go │ ├── machinename_filter.go │ └── percent_filter.go ├── name.go ├── name_test.go └── tls.go ├── dflag └── flag.go ├── discovery ├── discovery.go └── drivers │ ├── dns.go │ ├── etcd.go │ ├── haproxy-consul.go │ ├── nginx-consul.go │ └── nginx-push.go ├── dlog └── log.go ├── events └── events.go ├── flags.go ├── log.go ├── machine ├── app.go ├── auth.go ├── cluster.go ├── create.go ├── delete.go ├── description.go ├── engine.go ├── list.go ├── machine.go ├── machine_cluster_proxy.go ├── machine_proxy.go ├── name.go ├── options │ ├── .DS_Store │ ├── aliyun.go │ ├── options.go │ └── virtualbox.go ├── opts │ └── options.go ├── start.go └── states.go ├── main.go ├── maintest.go ├── options └── options.go ├── profile.yml ├── resources └── resources.go ├── sequence └── sequence.go ├── topology ├── cmd_machine.go ├── deploy.go ├── descriptions │ ├── container.go │ ├── descriptions.go │ └── machine.go ├── events.go ├── name.go ├── numbers.go ├── scalecontainer.go ├── scalemachine.go └── topologies.go └── utils ├── capacity.go ├── httpclient.go ├── random.go ├── strings.go └── utils.go /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | /bin 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/goauth2/oauth/example/oauthreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/code.google.com/p/goauth2/oauth/example/oauthreq.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/example/example.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/example/example.pem -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/example/main.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/jwt.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/jwt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/jwt_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/goauth2/oauth/oauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/code.google.com/p/goauth2/oauth/oauth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/goauth2/oauth/oauth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/code.google.com/p/goauth2/oauth/oauth_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/LICENSE-2.0.txt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/common.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/cookie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/cookie.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/fs.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/header.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/jar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/jar.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/lex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/lex.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/race.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/server.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/sniff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/sniff.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/status.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/testdata/file: -------------------------------------------------------------------------------- 1 | 0123456789 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/testdata/index.html: -------------------------------------------------------------------------------- 1 | index.html says hello 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/testdata/style.css: -------------------------------------------------------------------------------- 1 | body {} 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/triv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/http/triv.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/tls/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/tls/alert.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/tls/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/tls/common.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/tls/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/tls/conn.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/tls/prf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/tls/prf.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/tls/ticket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/tls/ticket.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/tls/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/core/tls/tls.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/publishSettings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/MSOpenTech/azure-sdk-for-go/publishSettings.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/entry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/entry_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/basic/basic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/examples/hook/hook.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatter_bench_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/formatters/logstash/logstash.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hook_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/airbrake/airbrake_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/bugsnag/bugsnag_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/papertrail/papertrail.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/sentry/sentry_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/json_formatter_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/logrus_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_bsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_notwindows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/terminal_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/text_formatter_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/Sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/cenkalti/backoff/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/cenkalti/backoff/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/cenkalti/backoff/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 1.3.3 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/cenkalti/backoff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/cenkalti/backoff/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/cenkalti/backoff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/cenkalti/backoff/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/cenkalti/backoff/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/cenkalti/backoff/backoff.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/cenkalti/backoff/backoff_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/cenkalti/backoff/backoff_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/cenkalti/backoff/exponential.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/cenkalti/backoff/exponential.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/cenkalti/backoff/exponential_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/cenkalti/backoff/exponential_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/cenkalti/backoff/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/cenkalti/backoff/retry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/cenkalti/backoff/retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/cenkalti/backoff/retry_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/cenkalti/backoff/ticker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/cenkalti/backoff/ticker.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/cenkalti/backoff/ticker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/cenkalti/backoff/ticker_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/app.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/app_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/bash_autocomplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/bash_autocomplete -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/zsh_autocomplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/zsh_autocomplete -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/cli.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/cli_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/command.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/command_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/context.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/context_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/flag.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/flag_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/help.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/help_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/help_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/helpers_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/LICENSE.txt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/Makefile -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/action.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/action_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/action_request.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/action_request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/action_request_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/action_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/domains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/domains.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/domains_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/domains_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/droplet_actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/droplet_actions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/droplet_actions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/droplet_actions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/droplets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/droplets.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/droplets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/droplets_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/godo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/godo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/godo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/godo_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/image_actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/image_actions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/image_actions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/image_actions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/images.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/images_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/keys.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/keys_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/links.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/links.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/links_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/links_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/regions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/regions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/regions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/regions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/sizes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/sizes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/sizes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/sizes_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/strings.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/timestamp.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/timestamp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/timestamp_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/util/droplet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/util/droplet.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/homedir/homedir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/homedir/homedir.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/homedir/homedir_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/homedir/homedir_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/example/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/example/example.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/flag.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/mflag/flag_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_linux_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_linux_cgo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_other.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/term.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/term_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/term_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_darwin.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_freebsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/ansi_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/ansi_reader.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/ansi_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/ansi_writer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/console.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/windows_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/units/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/units/duration.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/units/duration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/units/duration_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/units/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/units/size.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/units/size_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/units/size_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/active.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/active.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/active_test.go: -------------------------------------------------------------------------------- 1 | package commands 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/commands.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/commands_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/commands_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/config.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/config_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/create.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/create_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/env.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/env_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/inspect.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/inspect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/inspect_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/ip.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/ip_test.go: -------------------------------------------------------------------------------- 1 | package commands 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/kill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/kill.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/kill_test.go: -------------------------------------------------------------------------------- 1 | package commands 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/ls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/ls.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/ls_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/ls_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/regeneratecerts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/regeneratecerts.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/regeneratecerts_test.go: -------------------------------------------------------------------------------- 1 | package commands 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/restart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/restart.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/restart_test.go: -------------------------------------------------------------------------------- 1 | package commands 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/rm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/rm_test.go: -------------------------------------------------------------------------------- 1 | package commands 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/scp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/scp.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/scp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/scp_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/ssh.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/ssh_test.go: -------------------------------------------------------------------------------- 1 | package commands 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/start.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/start_test.go: -------------------------------------------------------------------------------- 1 | package commands 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/status.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/status_test.go: -------------------------------------------------------------------------------- 1 | package commands 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/stop.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/stop_test.go: -------------------------------------------------------------------------------- 1 | package commands 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/upgrade.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/upgrade_test.go: -------------------------------------------------------------------------------- 1 | package commands 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/commands/url.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/commands/url_test.go: -------------------------------------------------------------------------------- 1 | package commands 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amazonec2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amazonec2.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/auth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/auth_test.go: -------------------------------------------------------------------------------- 1 | package amz 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/block_device_mapping_test.go: -------------------------------------------------------------------------------- 1 | package amz 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/describe_instances_test.go: -------------------------------------------------------------------------------- 1 | package amz 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/describe_keypairs_test.go: -------------------------------------------------------------------------------- 1 | package amz 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/describe_security_groups_test.go: -------------------------------------------------------------------------------- 1 | package amz 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/describe_subnets_test.go: -------------------------------------------------------------------------------- 1 | package amz 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/ec2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/ec2.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/ec2_test.go: -------------------------------------------------------------------------------- 1 | package amz 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/error.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/error_codes_test.go: -------------------------------------------------------------------------------- 1 | package amz 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/error_test.go: -------------------------------------------------------------------------------- 1 | package amz 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/filter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/ip_permission_test.go: -------------------------------------------------------------------------------- 1 | package amz 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/keypair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/keypair.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/keypair_test.go: -------------------------------------------------------------------------------- 1 | package amz 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/security_group_test.go: -------------------------------------------------------------------------------- 1 | package amz 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/tags.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/amz/tags_test.go: -------------------------------------------------------------------------------- 1 | package amz 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/amazonec2/utils.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/azure/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/azure/azure.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/azure/azure_test.go: -------------------------------------------------------------------------------- 1 | package azure 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/base.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/digitalocean/digitalocean_test.go: -------------------------------------------------------------------------------- 1 | package digitalocean 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/drivers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/drivers.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/drivers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/drivers_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/exoscale/exoscale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/exoscale/exoscale.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/exoscale/exoscale_test.go: -------------------------------------------------------------------------------- 1 | package exoscale 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/fakedriver/fakedriver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/fakedriver/fakedriver.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/fakedriver/fakedriver_test.go: -------------------------------------------------------------------------------- 1 | package fakedriver 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/flag_sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/flag_sort.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/generic/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/generic/generic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/generic/generic_test.go: -------------------------------------------------------------------------------- 1 | package generic 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/google/auth_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/google/auth_util.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/google/auth_util_test.go: -------------------------------------------------------------------------------- 1 | package google 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/google/compute_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/google/compute_util.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/google/compute_util_test.go: -------------------------------------------------------------------------------- 1 | package google 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/google/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/google/google.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/google/google_test.go: -------------------------------------------------------------------------------- 1 | package google 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/hyperv/hyperv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/hyperv/hyperv.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/hyperv/hyperv_test.go: -------------------------------------------------------------------------------- 1 | package hyperv 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/hyperv/hyperv_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/hyperv/hyperv_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/none/none.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/none/none.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/none/none_test.go: -------------------------------------------------------------------------------- 1 | package none 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/openstack/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/openstack/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/openstack/client_test.go: -------------------------------------------------------------------------------- 1 | package openstack 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/openstack/openstack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/openstack/openstack.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/openstack/openstack_test.go: -------------------------------------------------------------------------------- 1 | package openstack 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/rackspace/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/rackspace/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/rackspace/client_test.go: -------------------------------------------------------------------------------- 1 | package rackspace 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/rackspace/rackspace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/rackspace/rackspace.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/rackspace/rackspace_test.go: -------------------------------------------------------------------------------- 1 | package rackspace 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/softlayer/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/softlayer/driver.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/softlayer/driver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/softlayer/driver_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/softlayer/softlayer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/softlayer/softlayer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/softlayer/softlayer_test.go: -------------------------------------------------------------------------------- 1 | package softlayer 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/utils.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/virtualbox/disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/virtualbox/disk.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/virtualbox/disk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/virtualbox/disk_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/virtualbox/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/virtualbox/network.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/virtualbox/network_test.go: -------------------------------------------------------------------------------- 1 | package virtualbox 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/virtualbox/vbm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/virtualbox/vbm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/virtualbox/vbm_test.go: -------------------------------------------------------------------------------- 1 | package virtualbox 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/virtualbox/virtualbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/virtualbox/virtualbox.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/virtualbox/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/virtualbox/vm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/virtualbox/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/virtualbox/vm_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarefusion/fusion_test.go: -------------------------------------------------------------------------------- 1 | package vmwarefusion 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarefusion/vmrun_test.go: -------------------------------------------------------------------------------- 1 | package vmwarefusion 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarefusion/vmx_test.go: -------------------------------------------------------------------------------- 1 | package vmwarefusion 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevcloudair/vcloudair_test.go: -------------------------------------------------------------------------------- 1 | package vmwarevcloudair 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevsphere/errors/config_error_test.go: -------------------------------------------------------------------------------- 1 | package errors 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevsphere/errors/datastore_error_test.go: -------------------------------------------------------------------------------- 1 | package errors 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevsphere/errors/errors_test.go: -------------------------------------------------------------------------------- 1 | package errors 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevsphere/errors/govc_error_test.go: -------------------------------------------------------------------------------- 1 | package errors 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevsphere/errors/guest_error_test.go: -------------------------------------------------------------------------------- 1 | package errors 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevsphere/errors/login_error_test.go: -------------------------------------------------------------------------------- 1 | package errors 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevsphere/errors/state_error_test.go: -------------------------------------------------------------------------------- 1 | package errors 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevsphere/errors/vm_error_test.go: -------------------------------------------------------------------------------- 1 | package errors 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevsphere/govc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevsphere/govc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevsphere/govc_test.go: -------------------------------------------------------------------------------- 1 | package vmwarevsphere 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevsphere/vc_conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevsphere/vc_conn.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevsphere/vc_conn_test.go: -------------------------------------------------------------------------------- 1 | package vmwarevsphere 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevsphere/vsphere.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevsphere/vsphere.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/drivers/vmwarevsphere/vsphere_test.go: -------------------------------------------------------------------------------- 1 | package vmwarevsphere 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/auth/auth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/auth/auth_test.go: -------------------------------------------------------------------------------- 1 | package auth 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/certs.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/engine/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/engine/engine.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/engine/engine_test.go: -------------------------------------------------------------------------------- 1 | package engine 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/filestore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/filestore.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/filestore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/filestore_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/host.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/host_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/host_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/host_v0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/host_v0.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/migrate.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/migrate_v0_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/migrate_v0_v1.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/migrate_v0_v1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/migrate_v0_v1_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provider.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provider_test.go: -------------------------------------------------------------------------------- 1 | package libmachine 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/centos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/centos.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/debian.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/debian.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/fedora.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/fedora.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/generic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/redhat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/redhat.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/ubuntu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/ubuntu.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/utils.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/store.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/swarm/swarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/swarm/swarm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/swarm/swarm_test.go: -------------------------------------------------------------------------------- 1 | package swarm 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/log/log.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/log/log_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/log/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/log/terminal.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/ssh/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/ssh/keys.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/ssh/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/ssh/keys_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/ssh/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/ssh/ssh.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/ssh/ssh_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/ssh/ssh_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/state/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/state/state.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/state/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/state/state_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/utils/b2d.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/utils/b2d.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/utils/b2d_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/utils/b2d_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/utils/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/utils/certs.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/utils/certs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/utils/certs_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/utils/utils.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/utils/utils_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/docker/machine/version/version.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/version/version_test.go: -------------------------------------------------------------------------------- 1 | package version 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/google/go-querystring/query/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/google/go-querystring/query/encode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/google/go-querystring/query/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/google/go-querystring/query/encode_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/go-clicolor/clicolor/clicolor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/go-clicolor/clicolor/clicolor.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/go-clicolor/clicolor/clicolor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/go-clicolor/clicolor/clicolor_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/appender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/appender.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/appenders/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/appenders/file.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/appenders/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/appenders/file_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/appenders/mongo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/appenders/mongo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/appenders/mongo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/appenders/mongo_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/examples/advanced.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/examples/advanced.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/examples/appenders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/examples/appenders.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/examples/customappender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/examples/customappender.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/examples/formatting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/examples/formatting.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/examples/simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/examples/simple.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/golog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/golog.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/golog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/golog_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/logger.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ivpusic/golog/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/ivpusic/golog/logger_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/mapstructure/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/mitchellh/mapstructure/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/mapstructure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/mitchellh/mapstructure/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/mapstructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/mitchellh/mapstructure/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/mapstructure/decode_hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/mitchellh/mapstructure/decode_hooks.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/mapstructure/decode_hooks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/mitchellh/mapstructure/decode_hooks_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/mapstructure/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/mitchellh/mapstructure/error.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/mitchellh/mapstructure/mapstructure_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/lookup.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/opencontainers/runc/libcontainer/user/user.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/async.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/async.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/error.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/groups.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/init.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/keypair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/keypair.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/request.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/topology.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/topology.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/types.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/pyr/egoscale/src/egoscale/vm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/CONTRIBUTING.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/UPGRADING.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/acceptance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/acceptance/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/acceptance/openstack/identity/v2/pkg.go: -------------------------------------------------------------------------------- 1 | package v2 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/acceptance/openstack/identity/v3/pkg.go: -------------------------------------------------------------------------------- 1 | package v3 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/acceptance/openstack/networking/v2/extensions/fwaas/pkg.go: -------------------------------------------------------------------------------- 1 | package fwaas 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/acceptance/openstack/networking/v2/extensions/lbaas/pkg.go: -------------------------------------------------------------------------------- 1 | package lbaas 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/acceptance/openstack/networking/v2/extensions/pkg.go: -------------------------------------------------------------------------------- 1 | package extensions 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/acceptance/openstack/networking/v2/pkg.go: -------------------------------------------------------------------------------- 1 | package v2 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/acceptance/openstack/pkg.go: -------------------------------------------------------------------------------- 1 | // +build acceptance 2 | 3 | package openstack 4 | 5 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/acceptance/rackspace/compute/v2/pkg.go: -------------------------------------------------------------------------------- 1 | package v2 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/acceptance/rackspace/identity/v2/pkg.go: -------------------------------------------------------------------------------- 1 | package v2 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/acceptance/rackspace/pkg.go: -------------------------------------------------------------------------------- 1 | package rackspace 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/acceptance/tools/pkg.go: -------------------------------------------------------------------------------- 1 | package tools 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/auth_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/auth_options.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/auth_results.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/auth_results.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/endpoint_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/endpoint_search.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/endpoint_search_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/endpoint_search_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/openstack/auth_env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/openstack/auth_env.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/openstack/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/openstack/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/openstack/common/extensions/errors.go: -------------------------------------------------------------------------------- 1 | package extensions 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/openstack/compute/v2/extensions/defsecrules/doc.go: -------------------------------------------------------------------------------- 1 | package defsecrules 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/openstack/compute/v2/extensions/secgroups/doc.go: -------------------------------------------------------------------------------- 1 | package secgroups 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/openstack/identity/v2/users/doc.go: -------------------------------------------------------------------------------- 1 | package users 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/openstack/networking/v2/apiversions/errors.go: -------------------------------------------------------------------------------- 1 | package apiversions 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/openstack/networking/v2/networks/errors.go: -------------------------------------------------------------------------------- 1 | package networks 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/pagination/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/pagination/http.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/pagination/linked.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/pagination/linked.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/pagination/marker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/pagination/marker.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/pagination/null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/pagination/null.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/pagination/pager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/pagination/pager.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/pagination/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/pagination/pkg.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/pagination/single.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/pagination/single.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/params.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/params_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/provider_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/provider_client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/provider_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/provider_client_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/rackspace/auth_env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/rackspace/auth_env.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/rackspace/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/rackspace/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/results.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/results.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/script/acceptancetest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/script/acceptancetest -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/script/bootstrap -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/script/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/script/cibuild -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/script/test -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/script/unittest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/script/unittest -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/service_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/service_client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/service_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/service_client_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/testhelper/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/testhelper/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/util.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rackspace/gophercloud/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/rackspace/gophercloud/util_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/samalba/dockerclient/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/samalba/dockerclient/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/samalba/dockerclient/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/samalba/dockerclient/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/samalba/dockerclient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/samalba/dockerclient/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/samalba/dockerclient/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/samalba/dockerclient/auth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/samalba/dockerclient/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/samalba/dockerclient/auth_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/samalba/dockerclient/dockerclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/samalba/dockerclient/dockerclient.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/samalba/dockerclient/dockerclient_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/samalba/dockerclient/dockerclient_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/samalba/dockerclient/engine_mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/samalba/dockerclient/engine_mock_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/samalba/dockerclient/example_responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/samalba/dockerclient/example_responses.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/samalba/dockerclient/examples/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/samalba/dockerclient/examples/events.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/samalba/dockerclient/examples/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/samalba/dockerclient/examples/stats/stats.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/samalba/dockerclient/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/samalba/dockerclient/interface.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/samalba/dockerclient/mockclient/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/samalba/dockerclient/mockclient/mock.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/samalba/dockerclient/mockclient/mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/samalba/dockerclient/mockclient/mock_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/samalba/dockerclient/nopclient/nop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/samalba/dockerclient/nopclient/nop.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/samalba/dockerclient/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/samalba/dockerclient/types.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/samalba/dockerclient/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/samalba/dockerclient/utils.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor/main.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor_ansi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor_ansi.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/ansicolor_windows_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/example_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/shiena/ansicolor/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/shiena/ansicolor/export_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/skarademir/naturalsort/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/skarademir/naturalsort/LICENSE.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/skarademir/naturalsort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/skarademir/naturalsort/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/skarademir/naturalsort/naturalsort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/skarademir/naturalsort/naturalsort.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/skarademir/naturalsort/naturalsort_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/skarademir/naturalsort/naturalsort_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/awsauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/awsauth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/awsauth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/awsauth_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/common.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/common_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/s3.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/s3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/s3_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/sign2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/sign2.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/sign2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/sign2_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/sign3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/sign3.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/sign3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/sign3_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/sign4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/sign4.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/sign4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/smartystreets/go-aws-auth/sign4_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tent/http-link-go/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tent/http-link-go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/tent/http-link-go/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tent/http-link-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/tent/http-link-go/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tent/http-link-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/tent/http-link-go/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tent/http-link-go/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/tent/http-link-go/link.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tent/http-link-go/link_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/tent/http-link-go/link_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/Readme.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/api.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/api_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/catalog.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/catalog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/catalog_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/catalogitem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/catalogitem.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/catalogitem_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/catalogitem_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/edgegateway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/edgegateway.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/edgegateway_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/edgegateway_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/org.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/org.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/org_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/org_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/orgvdcnetwork.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/orgvdcnetwork.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/orgvdcnetwork_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/orgvdcnetwork_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/script/coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/script/coverage -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/task.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/task_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/task_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/testutil/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/testutil/http.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/types/v56/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/types/v56/types.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/vapp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/vapp.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/vapp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/vapp_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/vapptemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/vapptemplate.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/vapptemplate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/vapptemplate_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/vdc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/vdc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/vmware/govcloudair/vdc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/github.com/vmware/govcloudair/vdc_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/client_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/forward.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/keyring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/keyring.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/server.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/server_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/testdata_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/benchmark_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/buffer_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/certs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/certs_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/cipher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/cipher_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/client_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/client_auth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/client_auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/client_auth_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/client_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/connection.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/example_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/handshake.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/handshake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/handshake_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/kex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/kex_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/keys_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/mempipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/mempipe_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/messages.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/messages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/messages_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/mux_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/session_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/tcpip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/tcpip_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/terminal.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/terminal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/terminal_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_bsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/agent_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/agent_unix_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/cert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/cert_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/forward_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/forward_unix_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/session_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/tcpip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/tcpip_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/test_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/test_unix_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/testdata_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata/keys.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/transport.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/transport_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/context/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/net/context/context_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/net/context/withtimeout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/golang.org/x/net/context/withtimeout_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/google.golang.org/api/compute/v1/compute-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/google.golang.org/api/compute/v1/compute-api.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/google.golang.org/api/compute/v1/compute-gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/google.golang.org/api/compute/v1/compute-gen.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/google.golang.org/api/googleapi/googleapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/google.golang.org/api/googleapi/googleapi.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/google.golang.org/api/googleapi/googleapi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/google.golang.org/api/googleapi/googleapi_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/google.golang.org/api/googleapi/transport/apikey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/google.golang.org/api/googleapi/transport/apikey.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/google.golang.org/api/googleapi/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/google.golang.org/api/googleapi/types.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/google.golang.org/api/googleapi/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/google.golang.org/api/googleapi/types_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/Makefile -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/auth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/auth_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/bson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/bson/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/bson/bson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/bson/bson.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/bson/bson_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/bson/bson_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/bson/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/bson/decode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/bson/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/bson/encode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/bulk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/bulk.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/bulk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/bulk_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/cluster.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/cluster_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/dbtest/dbserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/dbtest/dbserver.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/dbtest/dbserver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/dbtest/dbserver_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/dbtest/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/dbtest/export_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/export_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/gridfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/gridfs.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/gridfs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/gridfs_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/internal/sasl/sasl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/internal/sasl/sasl.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/internal/sasl/sasl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/internal/sasl/sasl.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/internal/sasl/sasl_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/internal/sasl/sasl_windows.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/internal/sasl/sasl_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/internal/sasl/sasl_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/internal/sasl/sasl_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/internal/sasl/sasl_windows.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/internal/sasl/sspi_windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/internal/sasl/sspi_windows.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/internal/sasl/sspi_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/internal/sasl/sspi_windows.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/internal/scram/scram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/internal/scram/scram.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/internal/scram/scram_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/internal/scram/scram_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/log.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/queue.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/queue_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/raceoff.go: -------------------------------------------------------------------------------- 1 | // +build !race 2 | 3 | package mgo 4 | 5 | const raceDetector = false 6 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/raceon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/raceon.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/saslimpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/saslimpl.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/saslstub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/saslstub.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/server.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/session.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/session_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/socket.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/stats.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/suite_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/syscall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/syscall_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/syscall_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/syscall_windows_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/testdb/client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/testdb/client.pem -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/testdb/dropall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/testdb/dropall.js -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/testdb/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/testdb/init.js -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/testdb/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/testdb/server.pem -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/testdb/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/testdb/setup.sh -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/testdb/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/testdb/supervisord.conf -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/testdb/wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/testdb/wait.js -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/testserver/export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/testserver/export_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/testserver/testserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/testserver/testserver.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/testserver/testserver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/testserver/testserver_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/txn/chaos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/txn/chaos.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/txn/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/txn/debug.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/txn/dockey_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/txn/dockey_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/txn/flusher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/txn/flusher.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/txn/mgo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/txn/mgo_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/txn/sim_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/txn/sim_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/txn/tarjan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/txn/tarjan.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/txn/tarjan_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/txn/tarjan_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/txn/txn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/txn/txn.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/mgo.v2/txn/txn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/mgo.v2/txn/txn_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/README.md -------------------------------------------------------------------------------- /api/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/api/client/README.md -------------------------------------------------------------------------------- /api/client/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/api/client/cli.go -------------------------------------------------------------------------------- /api/client/cluster_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/api/client/cluster_flags.go -------------------------------------------------------------------------------- /api/client/cmd_cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/api/client/cmd_cluster.go -------------------------------------------------------------------------------- /api/client/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/api/client/help.go -------------------------------------------------------------------------------- /cluster.aliyun.usertag.multiprofile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/cluster.aliyun.usertag.multiprofile.yml -------------------------------------------------------------------------------- /cluster.aliyun.usertag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/cluster.aliyun.usertag.yml -------------------------------------------------------------------------------- /cluster/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/cluster/cluster.go -------------------------------------------------------------------------------- /cluster/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/cluster/cluster_test.go -------------------------------------------------------------------------------- /cluster/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/cluster/context/context.go -------------------------------------------------------------------------------- /cluster/portbindings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/cluster/portbindings.go -------------------------------------------------------------------------------- /container/cluster/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/cluster/add.go -------------------------------------------------------------------------------- /container/cluster/clusters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/cluster/clusters.go -------------------------------------------------------------------------------- /container/cluster/drivers/drivers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/cluster/drivers/drivers.go -------------------------------------------------------------------------------- /container/cluster/drivers/swarm/callback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/cluster/drivers/swarm/callback.go -------------------------------------------------------------------------------- /container/cluster/drivers/swarm/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/cluster/drivers/swarm/options.go -------------------------------------------------------------------------------- /container/cluster/drivers/swarm/swarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/cluster/drivers/swarm/swarm.go -------------------------------------------------------------------------------- /container/cluster/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/cluster/events.go -------------------------------------------------------------------------------- /container/cluster/impl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/cluster/impl.go -------------------------------------------------------------------------------- /container/cluster/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/cluster/run.go -------------------------------------------------------------------------------- /container/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/container.go -------------------------------------------------------------------------------- /container/dependancy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/dependancy.go -------------------------------------------------------------------------------- /container/description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/description.go -------------------------------------------------------------------------------- /container/docker_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/docker_client.go -------------------------------------------------------------------------------- /container/docker_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/docker_proxy.go -------------------------------------------------------------------------------- /container/filter/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/filter/filter.go -------------------------------------------------------------------------------- /container/filter/group_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/filter/group_filter.go -------------------------------------------------------------------------------- /container/filter/ip_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/filter/ip_filter.go -------------------------------------------------------------------------------- /container/filter/machinename_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/filter/machinename_filter.go -------------------------------------------------------------------------------- /container/filter/percent_filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/filter/percent_filter.go -------------------------------------------------------------------------------- /container/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/name.go -------------------------------------------------------------------------------- /container/name_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/name_test.go -------------------------------------------------------------------------------- /container/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/container/tls.go -------------------------------------------------------------------------------- /dflag/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/dflag/flag.go -------------------------------------------------------------------------------- /discovery/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/discovery/discovery.go -------------------------------------------------------------------------------- /discovery/drivers/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/discovery/drivers/dns.go -------------------------------------------------------------------------------- /discovery/drivers/etcd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/discovery/drivers/etcd.go -------------------------------------------------------------------------------- /discovery/drivers/haproxy-consul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/discovery/drivers/haproxy-consul.go -------------------------------------------------------------------------------- /discovery/drivers/nginx-consul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/discovery/drivers/nginx-consul.go -------------------------------------------------------------------------------- /discovery/drivers/nginx-push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/discovery/drivers/nginx-push.go -------------------------------------------------------------------------------- /dlog/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/dlog/log.go -------------------------------------------------------------------------------- /events/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/events/events.go -------------------------------------------------------------------------------- /flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/flags.go -------------------------------------------------------------------------------- /log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/log.go -------------------------------------------------------------------------------- /machine/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/app.go -------------------------------------------------------------------------------- /machine/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/auth.go -------------------------------------------------------------------------------- /machine/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/cluster.go -------------------------------------------------------------------------------- /machine/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/create.go -------------------------------------------------------------------------------- /machine/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/delete.go -------------------------------------------------------------------------------- /machine/description.go: -------------------------------------------------------------------------------- 1 | package machine 2 | -------------------------------------------------------------------------------- /machine/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/engine.go -------------------------------------------------------------------------------- /machine/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/list.go -------------------------------------------------------------------------------- /machine/machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/machine.go -------------------------------------------------------------------------------- /machine/machine_cluster_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/machine_cluster_proxy.go -------------------------------------------------------------------------------- /machine/machine_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/machine_proxy.go -------------------------------------------------------------------------------- /machine/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/name.go -------------------------------------------------------------------------------- /machine/options/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/options/.DS_Store -------------------------------------------------------------------------------- /machine/options/aliyun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/options/aliyun.go -------------------------------------------------------------------------------- /machine/options/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/options/options.go -------------------------------------------------------------------------------- /machine/options/virtualbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/options/virtualbox.go -------------------------------------------------------------------------------- /machine/opts/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/opts/options.go -------------------------------------------------------------------------------- /machine/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/start.go -------------------------------------------------------------------------------- /machine/states.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/machine/states.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/main.go -------------------------------------------------------------------------------- /maintest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/maintest.go -------------------------------------------------------------------------------- /options/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/options/options.go -------------------------------------------------------------------------------- /profile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/profile.yml -------------------------------------------------------------------------------- /resources/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/resources/resources.go -------------------------------------------------------------------------------- /sequence/sequence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/sequence/sequence.go -------------------------------------------------------------------------------- /topology/cmd_machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/topology/cmd_machine.go -------------------------------------------------------------------------------- /topology/deploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/topology/deploy.go -------------------------------------------------------------------------------- /topology/descriptions/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/topology/descriptions/container.go -------------------------------------------------------------------------------- /topology/descriptions/descriptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/topology/descriptions/descriptions.go -------------------------------------------------------------------------------- /topology/descriptions/machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/topology/descriptions/machine.go -------------------------------------------------------------------------------- /topology/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/topology/events.go -------------------------------------------------------------------------------- /topology/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/topology/name.go -------------------------------------------------------------------------------- /topology/numbers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/topology/numbers.go -------------------------------------------------------------------------------- /topology/scalecontainer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/topology/scalecontainer.go -------------------------------------------------------------------------------- /topology/scalemachine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/topology/scalemachine.go -------------------------------------------------------------------------------- /topology/topologies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/topology/topologies.go -------------------------------------------------------------------------------- /utils/capacity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/utils/capacity.go -------------------------------------------------------------------------------- /utils/httpclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/utils/httpclient.go -------------------------------------------------------------------------------- /utils/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/utils/random.go -------------------------------------------------------------------------------- /utils/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/utils/strings.go -------------------------------------------------------------------------------- /utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weibocom/dockerf/HEAD/utils/utils.go --------------------------------------------------------------------------------