├── .circleci └── config.yml ├── .codecov.yml ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature-request.md │ └── question-about-pouchcontainer.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gometalinter.json ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── Dockerfile ├── Dockerfile.amd64.cross ├── Dockerfile.arm64.cross ├── Dockerfile.ppc64le.cross ├── FAQ.md ├── INSTALLATION.md ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── README.md ├── ROADMAP.md ├── VAGRANT.md ├── Vagrantfile ├── adoptors.md ├── apis ├── README.md ├── filters │ ├── parse.go │ └── parse_test.go ├── metrics │ └── metrics.go ├── opts │ ├── config │ │ ├── blkio.go │ │ ├── blkio_test.go │ │ ├── runtime.go │ │ ├── runtime_test.go │ │ ├── ulimit.go │ │ ├── ulimit_test.go │ │ ├── volumes.go │ │ └── volumes_test.go │ ├── devicemappings.go │ ├── devicemappings_test.go │ ├── diskquota.go │ ├── diskquota_test.go │ ├── env.go │ ├── env_test.go │ ├── hosts.go │ ├── hosts_test.go │ ├── intel_rdt.go │ ├── intel_rdt_test.go │ ├── labels.go │ ├── labels_test.go │ ├── log_options.go │ ├── log_options_test.go │ ├── memory.go │ ├── memory_reservation.go │ ├── memory_reservation_test.go │ ├── memory_swap.go │ ├── memory_swap_test.go │ ├── memory_test.go │ ├── mountpoint.go │ ├── mountpoint_test.go │ ├── networks.go │ ├── networks_test.go │ ├── portbindings.go │ ├── portbindings_test.go │ ├── ports.go │ ├── ports_test.go │ ├── restart_policy.go │ ├── restart_policy_test.go │ ├── shm_size.go │ ├── shm_size_test.go │ ├── spec_annotation.go │ ├── spec_annotation_test.go │ ├── sysctl.go │ └── sysctl_test.go ├── server │ ├── container_bridge.go │ ├── copy_bridge.go │ ├── cri_bridge.go │ ├── exec_bridge.go │ ├── image_bridge.go │ ├── image_bridge_test.go │ ├── log_filter_writer.go │ ├── network_bridge.go │ ├── router.go │ ├── server.go │ ├── system_bridge.go │ ├── types │ │ └── handler.go │ ├── utils.go │ └── volume_bridge.go ├── swagger.yml └── types │ ├── auth_config.go │ ├── auth_response.go │ ├── blkio_stat_entry.go │ ├── blkio_stats.go │ ├── checkpoint.go │ ├── checkpoint_create_options.go │ ├── checkpoint_delete_options.go │ ├── checkpoint_list_options.go │ ├── commit.go │ ├── container.go │ ├── container_commit_options.go │ ├── container_commit_resp.go │ ├── container_config.go │ ├── container_create_config.go │ ├── container_create_resp.go │ ├── container_exec_inspect.go │ ├── container_json.go │ ├── container_list_options.go │ ├── container_logs_options.go │ ├── container_path_stat.go │ ├── container_process_list.go │ ├── container_remove_options.go │ ├── container_start_options.go │ ├── container_state.go │ ├── container_stats.go │ ├── container_upgrade_config.go │ ├── container_wait_okbody.go │ ├── cpu_stats.go │ ├── cpu_usage.go │ ├── daemon_update_config.go │ ├── device_mapping.go │ ├── endpoint_ip_a_m_config.go │ ├── endpoint_resource.go │ ├── endpoint_settings.go │ ├── error.go │ ├── event_type.go │ ├── events_actor.go │ ├── events_message.go │ ├── exec_create_config.go │ ├── exec_create_resp.go │ ├── exec_start_config.go │ ├── graph_driver_data.go │ ├── history_result_item.go │ ├── host_config.go │ ├── image_info.go │ ├── index_info.go │ ├── ip_a_m.go │ ├── ip_a_m_config.go │ ├── ip_address.go │ ├── log_config.go │ ├── memory_stats.go │ ├── mount_point.go │ ├── network_connect.go │ ├── network_create.go │ ├── network_create_config.go │ ├── network_create_resp.go │ ├── network_disconnect.go │ ├── network_inspect_resp.go │ ├── network_resource.go │ ├── network_settings.go │ ├── network_stats.go │ ├── networking_config.go │ ├── nvidia_config.go │ ├── pids_stats.go │ ├── port_binding.go │ ├── port_map.go │ ├── process_config.go │ ├── registry_service_config.go │ ├── resize_options.go │ ├── resources.go │ ├── restart_policy.go │ ├── runtime.go │ ├── search_result_item.go │ ├── snapshotter_data.go │ ├── status.go │ ├── system_info.go │ ├── system_version.go │ ├── throttle_device.go │ ├── throttling_data.go │ ├── ulimit.go │ ├── update_config.go │ ├── volume_create_config.go │ ├── volume_info.go │ ├── volume_list_resp.go │ └── weight_device.go ├── cli ├── build.go ├── build │ ├── build.go │ └── opts.go ├── checkpoint.go ├── cli.go ├── command.go ├── commit.go ├── common_flags.go ├── container.go ├── cp.go ├── create.go ├── display.go ├── envfile.go ├── envfile_test.go ├── events.go ├── exec.go ├── formatter │ ├── container.go │ ├── container_test.go │ ├── formatter.go │ └── formatter_test.go ├── generate_doc.go ├── history.go ├── image.go ├── image_inspect.go ├── image_list.go ├── info.go ├── inspect.go ├── inspect │ ├── inspector.go │ └── inspector_test.go ├── kill.go ├── load.go ├── login.go ├── logout.go ├── logs.go ├── main.go ├── network.go ├── pause.go ├── port.go ├── ps.go ├── pull.go ├── push.go ├── remount_lxcfs.go ├── rename.go ├── restart.go ├── rm.go ├── rmi.go ├── run.go ├── save.go ├── search.go ├── start.go ├── stats.go ├── stats_helpers.go ├── stop.go ├── tag.go ├── top.go ├── unpause.go ├── update.go ├── update_daemon.go ├── upgrade.go ├── version.go ├── volume.go ├── volume_test.go └── wait.go ├── client ├── checkpoint_create.go ├── checkpoint_create_test.go ├── checkpoint_delete.go ├── checkpoint_delete_test.go ├── checkpoint_list.go ├── checkpoint_list_test.go ├── client.go ├── client_mock_test.go ├── client_test.go ├── container_attach.go ├── container_commit.go ├── container_commit_test.go ├── container_copy.go ├── container_create.go ├── container_create_test.go ├── container_exec.go ├── container_exec_test.go ├── container_get.go ├── container_get_test.go ├── container_kill.go ├── container_kill_test.go ├── container_list.go ├── container_list_test.go ├── container_logs.go ├── container_logs_test.go ├── container_pause.go ├── container_pause_test.go ├── container_remove.go ├── container_remove_test.go ├── container_rename.go ├── container_rename_test.go ├── container_resize.go ├── container_resize_test.go ├── container_restart.go ├── container_restart_test.go ├── container_start.go ├── container_start_test.go ├── container_stats.go ├── container_stop.go ├── container_stop_test.go ├── container_top.go ├── container_top_test.go ├── container_unpause.go ├── container_unpause_test.go ├── container_update.go ├── container_update_test.go ├── container_upgrade.go ├── container_upgrade_test.go ├── container_wait.go ├── container_wait_test.go ├── daemon_update.go ├── daemon_update_test.go ├── image_history.go ├── image_history_test.go ├── image_inspect.go ├── image_inspect_test.go ├── image_list.go ├── image_list_test.go ├── image_load.go ├── image_load_test.go ├── image_pull.go ├── image_pull_test.go ├── image_push.go ├── image_push_test.go ├── image_remove.go ├── image_remove_test.go ├── image_save.go ├── image_save_test.go ├── image_search.go ├── image_search_test.go ├── image_tag.go ├── image_tag_test.go ├── interface.go ├── network_connect.go ├── network_connect_test.go ├── network_create.go ├── network_create_test.go ├── network_disconnect.go ├── network_disconnect_test.go ├── network_inspect.go ├── network_inspect_test.go ├── network_list.go ├── network_list_test.go ├── network_remove.go ├── network_remove_test.go ├── registry_login.go ├── registry_login_test.go ├── request.go ├── system_events.go ├── system_events_test.go ├── system_info.go ├── system_info_test.go ├── system_ping.go ├── system_ping_test.go ├── system_version.go ├── system_version_test.go ├── utils.go ├── volume_create.go ├── volume_create_test.go ├── volume_inspect.go ├── volume_inspect_test.go ├── volume_list.go ├── volume_list_test.go ├── volume_remove.go └── volume_remove_test.go ├── contrib └── completion │ └── bash │ └── pouch ├── credential ├── config_file.go ├── credential.go ├── file_store.go ├── helpers.go ├── helpers_test.go └── store.go ├── cri ├── annotations │ └── annotations.go ├── apis │ └── v1alpha2 │ │ ├── BUILD │ │ ├── api.pb.go │ │ ├── api.proto │ │ └── constants.go ├── config │ └── config.go ├── criservice.go ├── metrics │ └── metrics.go ├── ocicni │ ├── cni_manager.go │ ├── interface.go │ └── netns.go ├── stream │ ├── config.go │ ├── constant │ │ ├── protocols.go │ │ └── types.go │ ├── docs.go │ ├── errors.go │ ├── errors_test.go │ ├── httpstream │ │ ├── httpstream.go │ │ ├── httpstream_test.go │ │ └── spdy │ │ │ ├── connection.go │ │ │ └── upgrade.go │ ├── portforward │ │ ├── httpstream.go │ │ └── portforward.go │ ├── remotecommand │ │ ├── attach.go │ │ ├── errors.go │ │ ├── exec.go │ │ ├── httpstream.go │ │ └── websocket.go │ ├── request_cache.go │ ├── request_cache_test.go │ ├── router.go │ └── runtime.go └── v1alpha2 │ ├── container_pause.go │ ├── container_unpause.go │ ├── cri.go │ ├── cri_utils.go │ ├── cri_utils_test.go │ ├── service.go │ ├── stream_server.go │ └── types │ └── sandbox_meta.go ├── ctrd ├── README.md ├── client.go ├── client_opts.go ├── client_opts_test.go ├── container.go ├── container_lock.go ├── container_lock_test.go ├── container_types.go ├── events.go ├── image.go ├── image_commit.go ├── image_proxy_util.go ├── image_proxy_util_test.go ├── interface.go ├── snapshot.go ├── snapshotter_key.go ├── snapshotter_key_test.go ├── supervisord │ ├── config.go │ ├── daemon.go │ └── option.go ├── utils.go ├── utils_test.go ├── watch.go └── wrapper_client.go ├── daemon ├── builder.go ├── config │ ├── config.go │ └── config_test.go ├── containerio │ ├── cache.go │ ├── cache_test.go │ ├── cio.go │ └── io.go ├── daemon.go ├── daemon_utils.go ├── daemon_utils_test.go ├── events │ ├── events.go │ ├── events_test.go │ ├── filter.go │ └── filter_test.go ├── logger │ ├── copier.go │ ├── copier_test.go │ ├── crilog │ │ └── log.go │ ├── info.go │ ├── info_test.go │ ├── jsonfile │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── jsonfile.go │ │ ├── jsonfile_read.go │ │ ├── jsonfile_read_test.go │ │ ├── utils.go │ │ └── utils_test.go │ ├── logbuffer │ │ ├── list.go │ │ ├── logbuff.go │ │ ├── ringbuff.go │ │ └── ringbuff_test.go │ ├── loggerutils │ │ ├── tag.go │ │ └── tag_test.go │ ├── logmessage.go │ ├── syslog │ │ ├── conn.go │ │ ├── const.go │ │ ├── dialer.go │ │ ├── fmt.go │ │ ├── syslog.go │ │ ├── syslog_test.go │ │ ├── test │ │ │ ├── ca-key.pem │ │ │ ├── ca.pem │ │ │ └── generate_x509_pair.sh │ │ ├── validate.go │ │ └── validate_test.go │ └── types.go └── mgr │ ├── container.go │ ├── container_checkpoint.go │ ├── container_checkpoint_test.go │ ├── container_commit.go │ ├── container_copy.go │ ├── container_envs.go │ ├── container_envs_test.go │ ├── container_exec.go │ ├── container_list.go │ ├── container_list_test.go │ ├── container_logger.go │ ├── container_logs.go │ ├── container_logs_test.go │ ├── container_monitor.go │ ├── container_rich_mode.go │ ├── container_rich_mode_test.go │ ├── container_state.go │ ├── container_stats.go │ ├── container_storage.go │ ├── container_storage_test.go │ ├── container_types.go │ ├── container_types_test.go │ ├── container_upgrade.go │ ├── container_utils.go │ ├── container_utils_test.go │ ├── container_validation.go │ ├── container_validation_test.go │ ├── events.go │ ├── image.go │ ├── image_load.go │ ├── image_save.go │ ├── image_store.go │ ├── image_store_test.go │ ├── image_types.go │ ├── image_utils.go │ ├── image_utils_test.go │ ├── network.go │ ├── network_test.go │ ├── network_utils.go │ ├── snapshot.go │ ├── snapshot_test.go │ ├── spec.go │ ├── spec_annotations.go │ ├── spec_apparmor_linux.go │ ├── spec_apparmor_linux_unsupported.go │ ├── spec_hook.go │ ├── spec_linux.go │ ├── spec_mount.go │ ├── spec_mount_test.go │ ├── spec_nvidia_hook.go │ ├── spec_nvidia_hook_test.go │ ├── spec_process.go │ ├── spec_seccomp_linux.go │ ├── spec_seccomp_unsupported.go │ ├── system.go │ └── volume.go ├── docs ├── README.md ├── api │ ├── CRI_API.html │ ├── GRPC_API.md │ ├── GRPC_API_CHANGELOG.md │ ├── HTTP_API.md │ └── HTTP_API_CHANGELOG.md ├── architecture.md ├── commandline │ ├── README.md │ ├── pouch.md │ ├── pouch_build.md │ ├── pouch_checkpoint.md │ ├── pouch_checkpoint_create.md │ ├── pouch_checkpoint_ls.md │ ├── pouch_checkpoint_rm.md │ ├── pouch_commit.md │ ├── pouch_cp.md │ ├── pouch_create.md │ ├── pouch_events.md │ ├── pouch_exec.md │ ├── pouch_gen-doc.md │ ├── pouch_history.md │ ├── pouch_image.md │ ├── pouch_image_inspect.md │ ├── pouch_images.md │ ├── pouch_info.md │ ├── pouch_inspect.md │ ├── pouch_kill.md │ ├── pouch_load.md │ ├── pouch_login.md │ ├── pouch_logout.md │ ├── pouch_logs.md │ ├── pouch_network.md │ ├── pouch_network_connect.md │ ├── pouch_network_create.md │ ├── pouch_network_disconnect.md │ ├── pouch_network_inspect.md │ ├── pouch_network_list.md │ ├── pouch_network_remove.md │ ├── pouch_pause.md │ ├── pouch_port.md │ ├── pouch_ps.md │ ├── pouch_pull.md │ ├── pouch_push.md │ ├── pouch_remount-lxcfs.md │ ├── pouch_rename.md │ ├── pouch_restart.md │ ├── pouch_rm.md │ ├── pouch_rmi.md │ ├── pouch_run.md │ ├── pouch_save.md │ ├── pouch_search.md │ ├── pouch_start.md │ ├── pouch_stats.md │ ├── pouch_stop.md │ ├── pouch_tag.md │ ├── pouch_top.md │ ├── pouch_unpause.md │ ├── pouch_update.md │ ├── pouch_updatedaemon.md │ ├── pouch_upgrade.md │ ├── pouch_version.md │ ├── pouch_volume.md │ ├── pouch_volume_create.md │ ├── pouch_volume_inspect.md │ ├── pouch_volume_list.md │ ├── pouch_volume_remove.md │ ├── pouch_wait.md │ ├── pouchd.md │ └── pouchd_gen-doc.md ├── contributions │ ├── code_styles.md │ └── gitflow.md ├── features │ ├── pouch_with_criu.md │ ├── pouch_with_diskquota.md │ ├── pouch_with_dragonfly.md │ ├── pouch_with_gVisor.md │ ├── pouch_with_gpu.md │ ├── pouch_with_kata.md │ ├── pouch_with_log_driver.md │ ├── pouch_with_lxcfs.md │ ├── pouch_with_plugin.md │ ├── pouch_with_prometheus.md │ ├── pouch_with_rich_container.md │ ├── pouch_with_runV.md │ ├── pouch_with_tls.md │ └── pouch_with_upgrade.md ├── kubernetes │ ├── pouch_cri_annotations_supported.md │ ├── pouch_cri_api_changelog.md │ ├── pouch_with_cri_introduction.md │ ├── pouch_with_cri_verification.md │ ├── pouch_with_kubernetes_deploying.md │ ├── pouch_with_kubernetes_deploying_aliyun.md │ └── troubleshooting.md ├── static_files │ ├── adoptors_logo │ │ ├── AlibabaCloud.png │ │ ├── AlibabaGroup.jpg │ │ ├── AntFinancial.png │ │ ├── CaiNiao.gif │ │ ├── HarmonyCloud.png │ │ ├── amap.png │ │ ├── cloudj.png │ │ ├── didi.png │ │ ├── eleme.png │ │ ├── iFLYTEK.png │ │ ├── lazada.png │ │ └── ucloud.png │ ├── logo │ │ ├── pouchcontainer_10x10_orange.png │ │ ├── pouchcontainer_10x10_underorange.png │ │ ├── pouchcontainer_10x10_white.png │ │ ├── pouchcontainer_10x1_orange.png │ │ ├── pouchcontainer_10x1_underorange.png │ │ └── pouchcontainer_10x1_white.png │ ├── pouch_component_architecture.png │ ├── pouch_cri_works.png │ ├── pouch_ecosystem_architecture.png │ ├── pouch_ecosystem_architecture_no_logo.png │ ├── pouch_volume_architecture.png │ ├── pouch_with_cri_work_flow.png │ ├── pouch_with_gpu.png │ ├── pouch_with_kubernetes.png │ ├── pouch_with_lxcfs.png │ ├── pouch_with_rich_container.png │ ├── pouch_with_runv_architecture.png │ └── pouch_with_upgrade.png ├── test │ ├── debug_in_travis.md │ └── test.md ├── underlying_tech │ ├── cgroup.md │ └── namespace.md └── user │ └── config_file.md ├── gen_doc.go ├── hack ├── boilerplate │ └── boilerplate.go.txt ├── codegen │ └── swagger.sh ├── generate-contributors.sh ├── generate-swagger-models.sh ├── install │ ├── check.sh │ ├── config.sh │ ├── install_ci_related.sh │ ├── install_cni.sh │ ├── install_containerd.sh │ ├── install_critest.sh │ ├── install_criu.sh │ ├── install_dumb_init.sh │ ├── install_etcd.sh │ ├── install_ginkgo.sh │ ├── install_local_persist.sh │ ├── install_lxcfs.sh │ ├── install_nsenter.sh │ └── install_runc.sh ├── install_lxcfs_on_centos.sh ├── kubernetes │ ├── allinone.sh │ └── allinone_aliyun.sh ├── module ├── protoc │ ├── html.tmpl │ └── protoc.sh ├── testing │ ├── run_daemon_cri_e2e.sh │ ├── run_daemon_cri_integration.sh │ ├── run_daemon_integration.sh │ └── utils.sh └── validate_swagger.sh ├── hookplugins ├── APIPlugin.go ├── ContainerPlugin.go ├── CriPlugin.go ├── DaemonPlugin.go ├── VolumePlugin.go ├── apiplugin │ └── apiplugin.go ├── containerplugin │ ├── create_hook.go │ ├── start_hook.go │ └── update_hook.go ├── criplugin │ └── cri_hook.go ├── daemonplugin │ └── daemon_hook.go ├── image_plugin.go ├── imageplugin │ └── image_hook.go └── volumeplugin │ └── volume_hook.go ├── internal └── generator.go ├── lxcfs └── lxcfs.go ├── main.go ├── main_test.go ├── network ├── config.go ├── mode │ ├── bridge │ │ ├── bridge.go │ │ └── vars.go │ └── init.go └── types │ ├── endpoint.go │ └── network.go ├── oci └── spec_default.go ├── pkg ├── archive │ ├── archive.go │ └── archive_test.go ├── bytefmt │ ├── bytefmt.go │ └── bytefmt_test.go ├── collect │ ├── safe_map.go │ └── safe_map_test.go ├── debug │ └── debug.go ├── errtypes │ ├── errors.go │ ├── errors_test.go │ └── volume_errors.go ├── exec │ ├── command.go │ └── command_test.go ├── grpc │ └── interceptor │ │ ├── chain.go │ │ ├── chain_test.go │ │ └── logging.go ├── httputils │ ├── client.go │ ├── client_test.go │ ├── http_error.go │ ├── http_utils.go │ └── http_utils_test.go ├── ioutils │ ├── reader.go │ └── writer.go ├── jsonstream │ ├── format.go │ ├── image_progress.go │ ├── image_push.go │ ├── stream.go │ └── types.go ├── kernel │ ├── kernel.go │ └── kernel_test.go ├── kmutex │ ├── kmutex.go │ └── kmutex_test.go ├── log │ └── content.go ├── meta │ ├── backend.go │ ├── boltdb.go │ ├── errors.go │ ├── local.go │ ├── store.go │ └── store_test.go ├── mount │ ├── mount.go │ └── mount_test.go ├── multierror │ ├── def.go │ └── def_test.go ├── netutils │ ├── doc.go │ ├── interface.go │ ├── interface_test.go │ ├── listener.go │ └── listener_test.go ├── randomid │ ├── id.go │ └── id_test.go ├── reference │ ├── def.go │ ├── parse.go │ ├── parse_test.go │ ├── regexp.go │ └── regexp_test.go ├── scheduler │ ├── scheduler.go │ └── scheduler_test.go ├── streams │ ├── multi.go │ ├── multi_test.go │ ├── stream.go │ ├── utils.go │ └── utils_test.go ├── system │ ├── cgroup.go │ ├── cgroup_test.go │ └── system.go ├── term │ └── term.go ├── user │ ├── user.go │ └── user_test.go └── utils │ ├── filters │ ├── filter.go │ └── filter_test.go │ ├── identify.go │ ├── identify_test.go │ ├── metrics │ ├── actions.go │ ├── metrics.go │ └── unit.go │ ├── mount.go │ ├── random_string.go │ ├── random_string_test.go │ ├── signal │ ├── signal.go │ └── signal_test.go │ ├── templates │ ├── templates.go │ └── templates_test.go │ ├── timeutils.go │ ├── timeutils_test.go │ ├── utils.go │ └── utils_test.go ├── registry ├── auth.go ├── auth_challenge.go ├── client.go ├── config.go └── types │ └── search_result_resp.go ├── storage ├── plugins │ ├── client.go │ ├── client_test.go │ ├── error.go │ ├── manager.go │ ├── manager_test.go │ ├── plugin.go │ └── plugins.go ├── quota │ ├── grpquota.go │ ├── prjquota.go │ ├── quota.go │ ├── quota_test.go │ └── type.go └── volume │ ├── README.md │ ├── config.go │ ├── core.go │ ├── core_test.go │ ├── core_util.go │ ├── driver │ ├── driver.go │ ├── driver_interface.go │ ├── driver_test.go │ ├── fake_driver.go │ ├── proxy.go │ ├── proxy_test.go │ ├── remote.go │ └── types.go │ ├── modules │ ├── local │ │ └── local.go │ └── tmpfs │ │ └── tmpfs.go │ └── types │ ├── meta │ ├── meta.go │ └── types.go │ ├── types.go │ ├── volume.go │ ├── volume_util.go │ └── volume_util_test.go ├── test ├── api_checkpoint_test.go ├── api_container_attach_test.go ├── api_container_commit_test.go ├── api_container_cp_test.go ├── api_container_create_test.go ├── api_container_delete_test.go ├── api_container_exec_create_test.go ├── api_container_exec_inspect_test.go ├── api_container_exec_start_test.go ├── api_container_inspect_test.go ├── api_container_list_test.go ├── api_container_logs_test.go ├── api_container_metrics_test.go ├── api_container_pause_test.go ├── api_container_rename_test.go ├── api_container_resize_test.go ├── api_container_restart_test.go ├── api_container_start_test.go ├── api_container_stats_test.go ├── api_container_stop_test.go ├── api_container_top_test.go ├── api_container_upgrade_test.go ├── api_container_wait_test.go ├── api_daemon_update_test.go ├── api_image_create_test.go ├── api_image_delete_test.go ├── api_image_history_test.go ├── api_image_inspect_test.go ├── api_image_list_test.go ├── api_image_metrics_test.go ├── api_image_push_test.go ├── api_image_save_and_load_test.go ├── api_image_search_test.go ├── api_image_tag_test.go ├── api_network_create_test.go ├── api_network_delete_test.go ├── api_network_inspect_test.go ├── api_network_list_test.go ├── api_system_metrics_test.go ├── api_system_test.go ├── api_version_parameter_test.go ├── api_volume_create_test.go ├── api_volume_delete_test.go ├── api_volume_inspect_test.go ├── api_volume_list_test.go ├── cli_alikernel_test.go ├── cli_build_test.go ├── cli_checkpoint_test.go ├── cli_container_commit_test.go ├── cli_container_cp_test.go ├── cli_container_port_test.go ├── cli_create_log_options_test.go ├── cli_create_test.go ├── cli_events_test.go ├── cli_exec_test.go ├── cli_help_test.go ├── cli_history_test.go ├── cli_images_test.go ├── cli_inspect_test.go ├── cli_kill_test.go ├── cli_logs_test.go ├── cli_network_test.go ├── cli_pause_test.go ├── cli_ps_test.go ├── cli_pull_test.go ├── cli_rename_test.go ├── cli_restart_test.go ├── cli_rich_container_test.go ├── cli_rm_test.go ├── cli_rmi_test.go ├── cli_run_blkio_test.go ├── cli_run_cgroup_test.go ├── cli_run_cpu_test.go ├── cli_run_device_test.go ├── cli_run_dns_test.go ├── cli_run_interactive_test.go ├── cli_run_lxcfs_test.go ├── cli_run_memory_test.go ├── cli_run_network_test.go ├── cli_run_pid_test.go ├── cli_run_syslog_test.go ├── cli_run_test.go ├── cli_run_ulimit_test.go ├── cli_run_user_test.go ├── cli_run_volume_test.go ├── cli_run_with_privileged_test.go ├── cli_run_working_dir_test.go ├── cli_save_and_load_test.go ├── cli_search_test.go ├── cli_snapshotter_test.go ├── cli_start_test.go ├── cli_stats_test.go ├── cli_stop_test.go ├── cli_tag_test.go ├── cli_top_test.go ├── cli_unpause_test.go ├── cli_update_test.go ├── cli_upgrade_test.go ├── cli_version_test.go ├── cli_volume_test.go ├── cli_wait_test.go ├── command │ └── command.go ├── daemon │ └── daemon.go ├── daemonv2 │ ├── daemon.go │ └── types.go ├── environment │ ├── cleanup.go │ └── env.go ├── main_test.go ├── request │ └── request.go ├── testdata │ ├── build │ │ └── multiplestage │ │ │ ├── Dockerfile │ │ │ └── hello.go │ └── images │ │ └── docker-busybox_1_25-and-alpine_3_7.tar ├── tls │ ├── a_client │ │ ├── a_client.csr │ │ ├── ca.pem │ │ ├── ca_wrong.pem │ │ ├── cert.pem │ │ └── key.pem │ ├── ca-key.pem │ ├── ca.pem │ ├── ca.srl │ ├── extfile.out │ ├── generate_tls.sh │ └── server │ │ ├── ca.pem │ │ ├── cert.pem │ │ ├── key.pem │ │ └── server.csr ├── util │ ├── goroutine.go │ └── util.go ├── util_api.go ├── util_daemon.go ├── utils.go └── z_cli_daemon_test.go ├── tools └── fix_quota_id │ └── fix_quota_id.go ├── travis_ci.sh ├── vendor ├── README.md ├── github.com │ ├── BurntSushi │ │ └── toml │ │ │ ├── COMPATIBLE │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── decode.go │ │ │ ├── decode_meta.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encoding_types.go │ │ │ ├── encoding_types_1.1.go │ │ │ ├── lex.go │ │ │ ├── parse.go │ │ │ ├── session.vim │ │ │ ├── type_check.go │ │ │ └── type_fields.go │ ├── Microsoft │ │ ├── go-winio │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backup.go │ │ │ ├── ea.go │ │ │ ├── file.go │ │ │ ├── fileinfo.go │ │ │ ├── pipe.go │ │ │ ├── privilege.go │ │ │ ├── reparse.go │ │ │ ├── sd.go │ │ │ ├── syscall.go │ │ │ └── zsyscall_windows.go │ │ └── hcsshim │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── container.go │ │ │ ├── errors.go │ │ │ ├── functional_tests.ps1 │ │ │ ├── hcsshim.go │ │ │ ├── hnsendpoint.go │ │ │ ├── hnsglobals.go │ │ │ ├── hnsnetwork.go │ │ │ ├── hnspolicy.go │ │ │ ├── hnspolicylist.go │ │ │ ├── hnssupport.go │ │ │ ├── interface.go │ │ │ ├── internal │ │ │ ├── guid │ │ │ │ └── guid.go │ │ │ ├── hcs │ │ │ │ ├── callback.go │ │ │ │ ├── cgo.go │ │ │ │ ├── errors.go │ │ │ │ ├── hcs.go │ │ │ │ ├── process.go │ │ │ │ ├── system.go │ │ │ │ ├── utils.go │ │ │ │ ├── waithelper.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── hcserror │ │ │ │ └── hcserror.go │ │ │ ├── hns │ │ │ │ ├── hns.go │ │ │ │ ├── hnsendpoint.go │ │ │ │ ├── hnsfuncs.go │ │ │ │ ├── hnsglobals.go │ │ │ │ ├── hnsnetwork.go │ │ │ │ ├── hnspolicy.go │ │ │ │ ├── hnspolicylist.go │ │ │ │ ├── hnssupport.go │ │ │ │ ├── namespace.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── interop │ │ │ │ ├── interop.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── longpath │ │ │ │ └── longpath.go │ │ │ ├── mergemaps │ │ │ │ └── merge.go │ │ │ ├── safefile │ │ │ │ ├── safeopen.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── schema1 │ │ │ │ └── schema1.go │ │ │ └── wclayer │ │ │ │ ├── activatelayer.go │ │ │ │ ├── baselayer.go │ │ │ │ ├── createlayer.go │ │ │ │ ├── createscratchlayer.go │ │ │ │ ├── deactivatelayer.go │ │ │ │ ├── destroylayer.go │ │ │ │ ├── expandscratchsize.go │ │ │ │ ├── exportlayer.go │ │ │ │ ├── getlayermountpath.go │ │ │ │ ├── getsharedbaseimages.go │ │ │ │ ├── grantvmaccess.go │ │ │ │ ├── importlayer.go │ │ │ │ ├── layerexists.go │ │ │ │ ├── layerid.go │ │ │ │ ├── layerutils.go │ │ │ │ ├── legacy.go │ │ │ │ ├── nametoguid.go │ │ │ │ ├── preparelayer.go │ │ │ │ ├── processimage.go │ │ │ │ ├── unpreparelayer.go │ │ │ │ ├── wclayer.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── layer.go │ │ │ ├── process.go │ │ │ └── version.go │ ├── PuerkitoBio │ │ ├── purell │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── purell.go │ │ └── urlesc │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── urlesc.go │ ├── RackSec │ │ └── srslog │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── constants.go │ │ │ ├── dialer.go │ │ │ ├── formatter.go │ │ │ ├── framer.go │ │ │ ├── net_conn.go │ │ │ ├── srslog.go │ │ │ ├── srslog_unix.go │ │ │ └── writer.go │ ├── armon │ │ ├── go-metrics │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── const_unix.go │ │ │ ├── const_windows.go │ │ │ ├── inmem.go │ │ │ ├── inmem_endpoint.go │ │ │ ├── inmem_signal.go │ │ │ ├── metrics.go │ │ │ ├── sink.go │ │ │ ├── start.go │ │ │ ├── statsd.go │ │ │ └── statsite.go │ │ └── go-radix │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── radix.go │ ├── asaskevich │ │ └── govalidator │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arrays.go │ │ │ ├── converter.go │ │ │ ├── error.go │ │ │ ├── numerics.go │ │ │ ├── patterns.go │ │ │ ├── types.go │ │ │ ├── utils.go │ │ │ ├── validator.go │ │ │ └── wercker.yml │ ├── beorn7 │ │ └── perks │ │ │ └── quantile │ │ │ ├── exampledata.txt │ │ │ └── stream.go │ ├── boltdb │ │ └── bolt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bolt_386.go │ │ │ ├── bolt_amd64.go │ │ │ ├── bolt_arm.go │ │ │ ├── bolt_arm64.go │ │ │ ├── bolt_linux.go │ │ │ ├── bolt_openbsd.go │ │ │ ├── bolt_ppc.go │ │ │ ├── bolt_ppc64.go │ │ │ ├── bolt_ppc64le.go │ │ │ ├── bolt_s390x.go │ │ │ ├── bolt_unix.go │ │ │ ├── bolt_unix_solaris.go │ │ │ ├── bolt_windows.go │ │ │ ├── boltsync_unix.go │ │ │ ├── bucket.go │ │ │ ├── cursor.go │ │ │ ├── db.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── freelist.go │ │ │ ├── node.go │ │ │ ├── page.go │ │ │ └── tx.go │ ├── containerd │ │ ├── cgroups │ │ │ ├── LICENSE │ │ │ ├── Protobuild.toml │ │ │ ├── README.md │ │ │ ├── blkio.go │ │ │ ├── cgroup.go │ │ │ ├── control.go │ │ │ ├── cpu.go │ │ │ ├── cpuacct.go │ │ │ ├── cpuset.go │ │ │ ├── devices.go │ │ │ ├── errors.go │ │ │ ├── freezer.go │ │ │ ├── hierarchy.go │ │ │ ├── hugetlb.go │ │ │ ├── memory.go │ │ │ ├── metrics.pb.go │ │ │ ├── metrics.pb.txt │ │ │ ├── metrics.proto │ │ │ ├── named.go │ │ │ ├── net_cls.go │ │ │ ├── net_prio.go │ │ │ ├── paths.go │ │ │ ├── perf_event.go │ │ │ ├── pids.go │ │ │ ├── rdma.go │ │ │ ├── state.go │ │ │ ├── subsystem.go │ │ │ ├── systemd.go │ │ │ ├── ticks.go │ │ │ ├── utils.go │ │ │ └── v1.go │ │ ├── console │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── console.go │ │ │ ├── console_linux.go │ │ │ ├── console_unix.go │ │ │ ├── console_windows.go │ │ │ ├── tc_darwin.go │ │ │ ├── tc_freebsd.go │ │ │ ├── tc_linux.go │ │ │ ├── tc_solaris_cgo.go │ │ │ ├── tc_solaris_nocgo.go │ │ │ └── tc_unix.go │ │ ├── containerd │ │ │ ├── BUILDING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Makefile.darwin │ │ │ ├── Makefile.freebsd │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.windows │ │ │ ├── NOTICE │ │ │ ├── PLUGINS.md │ │ │ ├── Protobuild.toml │ │ │ ├── README.md │ │ │ ├── RELEASES.md │ │ │ ├── ROADMAP.md │ │ │ ├── RUNC.md │ │ │ ├── SCOPE.md │ │ │ ├── api │ │ │ │ ├── events │ │ │ │ │ ├── container.pb.go │ │ │ │ │ ├── container.proto │ │ │ │ │ ├── content.pb.go │ │ │ │ │ ├── content.proto │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── image.pb.go │ │ │ │ │ ├── image.proto │ │ │ │ │ ├── namespace.pb.go │ │ │ │ │ ├── namespace.proto │ │ │ │ │ ├── snapshot.pb.go │ │ │ │ │ ├── snapshot.proto │ │ │ │ │ ├── task.pb.go │ │ │ │ │ └── task.proto │ │ │ │ ├── services │ │ │ │ │ ├── containers │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── containers.pb.go │ │ │ │ │ │ │ └── containers.proto │ │ │ │ │ ├── content │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── content.pb.go │ │ │ │ │ │ │ └── content.proto │ │ │ │ │ ├── diff │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── diff.pb.go │ │ │ │ │ │ │ └── diff.proto │ │ │ │ │ ├── events │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── events.pb.go │ │ │ │ │ │ │ └── events.proto │ │ │ │ │ ├── images │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── docs.go │ │ │ │ │ │ │ ├── images.pb.go │ │ │ │ │ │ │ └── images.proto │ │ │ │ │ ├── introspection │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── introspection.pb.go │ │ │ │ │ │ │ └── introspection.proto │ │ │ │ │ ├── leases │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ │ ├── leases.pb.go │ │ │ │ │ │ │ └── leases.proto │ │ │ │ │ ├── namespaces │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── namespace.pb.go │ │ │ │ │ │ │ └── namespace.proto │ │ │ │ │ ├── snapshots │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── snapshots.pb.go │ │ │ │ │ │ │ └── snapshots.proto │ │ │ │ │ ├── tasks │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── tasks.pb.go │ │ │ │ │ │ │ └── tasks.proto │ │ │ │ │ └── version │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── version.pb.go │ │ │ │ │ │ └── version.proto │ │ │ │ └── types │ │ │ │ │ ├── descriptor.pb.go │ │ │ │ │ ├── descriptor.proto │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── metrics.pb.go │ │ │ │ │ ├── metrics.proto │ │ │ │ │ ├── mount.pb.go │ │ │ │ │ ├── mount.proto │ │ │ │ │ ├── platform.pb.go │ │ │ │ │ ├── platform.proto │ │ │ │ │ └── task │ │ │ │ │ ├── task.pb.go │ │ │ │ │ └── task.proto │ │ │ ├── archive │ │ │ │ ├── compression │ │ │ │ │ └── compression.go │ │ │ │ ├── strconv.go │ │ │ │ ├── tar.go │ │ │ │ ├── tar_opts.go │ │ │ │ ├── tar_opts_unix.go │ │ │ │ ├── tar_opts_windows.go │ │ │ │ ├── tar_unix.go │ │ │ │ ├── tar_windows.go │ │ │ │ ├── time.go │ │ │ │ ├── time_darwin.go │ │ │ │ ├── time_unix.go │ │ │ │ └── time_windows.go │ │ │ ├── cio │ │ │ │ ├── io.go │ │ │ │ ├── io_unix.go │ │ │ │ └── io_windows.go │ │ │ ├── client.go │ │ │ ├── client_opts.go │ │ │ ├── code-of-conduct.md │ │ │ ├── container.go │ │ │ ├── container_opts.go │ │ │ ├── container_opts_unix.go │ │ │ ├── containerd.service │ │ │ ├── containers │ │ │ │ └── containers.go │ │ │ ├── containerstore.go │ │ │ ├── content │ │ │ │ ├── content.go │ │ │ │ ├── helpers.go │ │ │ │ ├── local │ │ │ │ │ ├── locks.go │ │ │ │ │ ├── readerat.go │ │ │ │ │ ├── store.go │ │ │ │ │ ├── store_unix.go │ │ │ │ │ ├── store_windows.go │ │ │ │ │ └── writer.go │ │ │ │ └── proxy │ │ │ │ │ ├── content_reader.go │ │ │ │ │ ├── content_store.go │ │ │ │ │ └── content_writer.go │ │ │ ├── contrib │ │ │ │ └── seccomp │ │ │ │ │ ├── seccomp.go │ │ │ │ │ └── seccomp_default.go │ │ │ ├── defaults │ │ │ │ ├── defaults.go │ │ │ │ ├── defaults_unix.go │ │ │ │ ├── defaults_windows.go │ │ │ │ └── doc.go │ │ │ ├── diff.go │ │ │ ├── diff │ │ │ │ └── diff.go │ │ │ ├── errdefs │ │ │ │ ├── errors.go │ │ │ │ └── grpc.go │ │ │ ├── events.go │ │ │ ├── events │ │ │ │ ├── events.go │ │ │ │ └── exchange │ │ │ │ │ └── exchange.go │ │ │ ├── export.go │ │ │ ├── filters │ │ │ │ ├── adaptor.go │ │ │ │ ├── filter.go │ │ │ │ ├── parser.go │ │ │ │ ├── quote.go │ │ │ │ └── scanner.go │ │ │ ├── grpc.go │ │ │ ├── identifiers │ │ │ │ └── validate.go │ │ │ ├── image.go │ │ │ ├── image_store.go │ │ │ ├── images │ │ │ │ ├── archive │ │ │ │ │ ├── importer.go │ │ │ │ │ └── reference.go │ │ │ │ ├── handlers.go │ │ │ │ ├── image.go │ │ │ │ ├── importexport.go │ │ │ │ ├── mediatypes.go │ │ │ │ └── oci │ │ │ │ │ └── exporter.go │ │ │ ├── import.go │ │ │ ├── install.go │ │ │ ├── install_opts.go │ │ │ ├── lease.go │ │ │ ├── leases │ │ │ │ ├── context.go │ │ │ │ ├── grpc.go │ │ │ │ ├── id.go │ │ │ │ ├── lease.go │ │ │ │ └── proxy │ │ │ │ │ └── manager.go │ │ │ ├── log │ │ │ │ └── context.go │ │ │ ├── mount │ │ │ │ ├── lookup_unix.go │ │ │ │ ├── lookup_unsupported.go │ │ │ │ ├── mount.go │ │ │ │ ├── mount_linux.go │ │ │ │ ├── mount_unix.go │ │ │ │ ├── mount_windows.go │ │ │ │ ├── mountinfo.go │ │ │ │ ├── mountinfo_bsd.go │ │ │ │ ├── mountinfo_linux.go │ │ │ │ ├── mountinfo_unsupported.go │ │ │ │ ├── temp.go │ │ │ │ ├── temp_unix.go │ │ │ │ └── temp_unsupported.go │ │ │ ├── namespaces.go │ │ │ ├── namespaces │ │ │ │ ├── context.go │ │ │ │ ├── grpc.go │ │ │ │ ├── store.go │ │ │ │ └── validate.go │ │ │ ├── oci │ │ │ │ ├── client.go │ │ │ │ ├── spec.go │ │ │ │ └── spec_opts.go │ │ │ ├── pkg │ │ │ │ ├── dialer │ │ │ │ │ ├── dialer.go │ │ │ │ │ ├── dialer_unix.go │ │ │ │ │ └── dialer_windows.go │ │ │ │ └── progress │ │ │ │ │ ├── bar.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── escape.go │ │ │ │ │ ├── humaans.go │ │ │ │ │ └── writer.go │ │ │ ├── platforms │ │ │ │ ├── compare.go │ │ │ │ ├── cpuinfo.go │ │ │ │ ├── database.go │ │ │ │ ├── defaults.go │ │ │ │ ├── defaults_unix.go │ │ │ │ ├── defaults_windows.go │ │ │ │ └── platforms.go │ │ │ ├── plugin │ │ │ │ ├── context.go │ │ │ │ ├── plugin.go │ │ │ │ ├── plugin_go18.go │ │ │ │ └── plugin_other.go │ │ │ ├── process.go │ │ │ ├── reference │ │ │ │ └── reference.go │ │ │ ├── remotes │ │ │ │ ├── docker │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── authorizer.go │ │ │ │ │ ├── converter.go │ │ │ │ │ ├── fetcher.go │ │ │ │ │ ├── httpreadseeker.go │ │ │ │ │ ├── pusher.go │ │ │ │ │ ├── resolver.go │ │ │ │ │ ├── schema1 │ │ │ │ │ │ └── converter.go │ │ │ │ │ ├── scope.go │ │ │ │ │ └── status.go │ │ │ │ ├── handlers.go │ │ │ │ └── resolver.go │ │ │ ├── rootfs │ │ │ │ ├── apply.go │ │ │ │ ├── diff.go │ │ │ │ ├── init.go │ │ │ │ ├── init_linux.go │ │ │ │ └── init_other.go │ │ │ ├── runtime │ │ │ │ ├── events.go │ │ │ │ ├── linux │ │ │ │ │ └── runctypes │ │ │ │ │ │ ├── 1.0.pb.txt │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── next.pb.txt │ │ │ │ │ │ ├── runc.pb.go │ │ │ │ │ │ └── runc.proto │ │ │ │ ├── monitor.go │ │ │ │ ├── runtime.go │ │ │ │ ├── task.go │ │ │ │ ├── task_list.go │ │ │ │ ├── typeurl.go │ │ │ │ └── v2 │ │ │ │ │ └── runc │ │ │ │ │ └── options │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── next.pb.txt │ │ │ │ │ ├── oci.pb.go │ │ │ │ │ └── oci.proto │ │ │ ├── services.go │ │ │ ├── signal_map_linux.go │ │ │ ├── signal_map_unix.go │ │ │ ├── signal_map_windows.go │ │ │ ├── signals.go │ │ │ ├── snapshots │ │ │ │ ├── proxy │ │ │ │ │ └── proxy.go │ │ │ │ └── snapshotter.go │ │ │ ├── snapshotter_default_linux.go │ │ │ ├── snapshotter_default_unix.go │ │ │ ├── snapshotter_default_windows.go │ │ │ ├── sys │ │ │ │ ├── env.go │ │ │ │ ├── epoll.go │ │ │ │ ├── fds.go │ │ │ │ ├── filesys_unix.go │ │ │ │ ├── filesys_windows.go │ │ │ │ ├── mount_linux.go │ │ │ │ ├── oom_unix.go │ │ │ │ ├── oom_windows.go │ │ │ │ ├── proc.go │ │ │ │ ├── reaper.go │ │ │ │ ├── reaper_linux.go │ │ │ │ ├── socket_unix.go │ │ │ │ ├── socket_windows.go │ │ │ │ ├── stat_bsd.go │ │ │ │ ├── stat_unix.go │ │ │ │ ├── subprocess_unsafe_linux.go │ │ │ │ └── subprocess_unsafe_linux.s │ │ │ ├── task.go │ │ │ ├── task_opts.go │ │ │ ├── task_opts_unix.go │ │ │ └── vendor.conf │ │ ├── continuity │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── devices │ │ │ │ ├── devices.go │ │ │ │ ├── devices_unix.go │ │ │ │ └── devices_windows.go │ │ │ ├── digests.go │ │ │ ├── driver │ │ │ │ ├── driver.go │ │ │ │ ├── driver_unix.go │ │ │ │ ├── driver_windows.go │ │ │ │ ├── lchmod_linux.go │ │ │ │ ├── lchmod_unix.go │ │ │ │ └── utils.go │ │ │ ├── fs │ │ │ │ ├── copy.go │ │ │ │ ├── copy_linux.go │ │ │ │ ├── copy_unix.go │ │ │ │ ├── copy_windows.go │ │ │ │ ├── diff.go │ │ │ │ ├── diff_unix.go │ │ │ │ ├── diff_windows.go │ │ │ │ ├── dtype_linux.go │ │ │ │ ├── du.go │ │ │ │ ├── du_unix.go │ │ │ │ ├── du_windows.go │ │ │ │ ├── hardlink.go │ │ │ │ ├── hardlink_unix.go │ │ │ │ ├── hardlink_windows.go │ │ │ │ ├── path.go │ │ │ │ ├── stat_bsd.go │ │ │ │ ├── stat_linux.go │ │ │ │ └── time.go │ │ │ ├── groups_unix.go │ │ │ ├── hardlinks.go │ │ │ ├── hardlinks_unix.go │ │ │ ├── hardlinks_windows.go │ │ │ ├── ioutils.go │ │ │ ├── manifest.go │ │ │ ├── pathdriver │ │ │ │ └── path_driver.go │ │ │ ├── proto │ │ │ │ ├── gen.go │ │ │ │ ├── manifest.pb.go │ │ │ │ └── manifest.proto │ │ │ ├── resource.go │ │ │ ├── resource_unix.go │ │ │ ├── resource_windows.go │ │ │ ├── sysx │ │ │ │ ├── asm.s │ │ │ │ ├── chmod_darwin.go │ │ │ │ ├── chmod_darwin_386.go │ │ │ │ ├── chmod_darwin_amd64.go │ │ │ │ ├── chmod_freebsd.go │ │ │ │ ├── chmod_freebsd_amd64.go │ │ │ │ ├── chmod_linux.go │ │ │ │ ├── chmod_solaris.go │ │ │ │ ├── copy_linux.go │ │ │ │ ├── copy_linux_386.go │ │ │ │ ├── copy_linux_amd64.go │ │ │ │ ├── copy_linux_arm.go │ │ │ │ ├── copy_linux_arm64.go │ │ │ │ ├── copy_linux_ppc64le.go │ │ │ │ ├── copy_linux_s390x.go │ │ │ │ ├── generate.sh │ │ │ │ ├── nodata_linux.go │ │ │ │ ├── nodata_solaris.go │ │ │ │ ├── nodata_unix.go │ │ │ │ ├── sys.go │ │ │ │ ├── sysnum_linux_386.go │ │ │ │ ├── sysnum_linux_amd64.go │ │ │ │ ├── sysnum_linux_arm.go │ │ │ │ ├── sysnum_linux_arm64.go │ │ │ │ ├── sysnum_linux_ppc64le.go │ │ │ │ ├── sysnum_linux_s390x.go │ │ │ │ ├── xattr.go │ │ │ │ ├── xattr_darwin.go │ │ │ │ ├── xattr_darwin_386.go │ │ │ │ ├── xattr_darwin_amd64.go │ │ │ │ ├── xattr_freebsd.go │ │ │ │ ├── xattr_linux.go │ │ │ │ ├── xattr_linux_386.go │ │ │ │ ├── xattr_linux_amd64.go │ │ │ │ ├── xattr_linux_arm.go │ │ │ │ ├── xattr_linux_arm64.go │ │ │ │ ├── xattr_linux_ppc64.go │ │ │ │ ├── xattr_linux_ppc64le.go │ │ │ │ ├── xattr_linux_s390x.go │ │ │ │ ├── xattr_solaris.go │ │ │ │ └── xattr_unsupported.go │ │ │ └── vendor.conf │ │ ├── fifo │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── fifo.go │ │ │ ├── handle_linux.go │ │ │ ├── handle_nolinux.go │ │ │ ├── mkfifo_nosolaris.go │ │ │ ├── mkfifo_solaris.go │ │ │ └── readme.md │ │ └── typeurl │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── types.go │ ├── containernetworking │ │ ├── cni │ │ │ ├── LICENSE │ │ │ ├── libcni │ │ │ │ ├── api.go │ │ │ │ └── conf.go │ │ │ └── pkg │ │ │ │ ├── invoke │ │ │ │ ├── args.go │ │ │ │ ├── delegate.go │ │ │ │ ├── exec.go │ │ │ │ ├── find.go │ │ │ │ ├── os_unix.go │ │ │ │ ├── os_windows.go │ │ │ │ └── raw_exec.go │ │ │ │ ├── types │ │ │ │ ├── 020 │ │ │ │ │ └── types.go │ │ │ │ ├── args.go │ │ │ │ ├── current │ │ │ │ │ └── types.go │ │ │ │ └── types.go │ │ │ │ └── version │ │ │ │ ├── conf.go │ │ │ │ ├── plugin.go │ │ │ │ ├── reconcile.go │ │ │ │ └── version.go │ │ └── plugins │ │ │ ├── LICENSE │ │ │ └── pkg │ │ │ └── ns │ │ │ ├── README.md │ │ │ └── ns_linux.go │ ├── contiv │ │ └── executor │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── executor.go │ ├── coreos │ │ ├── etcd │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── client │ │ │ │ ├── README.md │ │ │ │ ├── auth_role.go │ │ │ │ ├── auth_user.go │ │ │ │ ├── cancelreq.go │ │ │ │ ├── client.go │ │ │ │ ├── cluster_error.go │ │ │ │ ├── curl.go │ │ │ │ ├── discover.go │ │ │ │ ├── doc.go │ │ │ │ ├── keys.generated.go │ │ │ │ ├── keys.go │ │ │ │ ├── members.go │ │ │ │ └── util.go │ │ │ ├── pkg │ │ │ │ ├── pathutil │ │ │ │ │ └── path.go │ │ │ │ ├── srv │ │ │ │ │ └── srv.go │ │ │ │ └── types │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── id.go │ │ │ │ │ ├── set.go │ │ │ │ │ ├── slice.go │ │ │ │ │ ├── urls.go │ │ │ │ │ └── urlsmap.go │ │ │ └── version │ │ │ │ └── version.go │ │ ├── go-semver │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── semver │ │ │ │ ├── semver.go │ │ │ │ └── sort.go │ │ ├── go-systemd │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── daemon │ │ │ │ ├── sdnotify.go │ │ │ │ └── watchdog.go │ │ │ ├── dbus │ │ │ │ ├── dbus.go │ │ │ │ ├── methods.go │ │ │ │ ├── properties.go │ │ │ │ ├── set.go │ │ │ │ ├── subscription.go │ │ │ │ └── subscription_set.go │ │ │ └── util │ │ │ │ ├── util.go │ │ │ │ ├── util_cgo.go │ │ │ │ └── util_stub.go │ │ └── pkg │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── dlopen │ │ │ ├── dlopen.go │ │ │ └── dlopen_example.go │ ├── cpuguy83 │ │ └── go-md2man │ │ │ ├── LICENSE.md │ │ │ └── md2man │ │ │ ├── md2man.go │ │ │ └── roff.go │ ├── cri-o │ │ └── ocicni │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── OWNERS │ │ │ ├── README.md │ │ │ ├── pkg │ │ │ └── ocicni │ │ │ │ ├── ocicni.go │ │ │ │ ├── types.go │ │ │ │ ├── types_unix.go │ │ │ │ ├── types_windows.go │ │ │ │ ├── util.go │ │ │ │ ├── util_linux.go │ │ │ │ └── util_unsupported.go │ │ │ └── vendor.conf │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── deckarep │ │ └── golang-set │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── iterator.go │ │ │ ├── set.go │ │ │ ├── threadsafe.go │ │ │ └── threadunsafe.go │ ├── dmcgowan │ │ └── go-tar │ │ │ ├── LICENSE │ │ │ ├── common.go │ │ │ ├── format.go │ │ │ ├── reader.go │ │ │ ├── sparse_unix.go │ │ │ ├── sparse_windows.go │ │ │ ├── stat_actime1.go │ │ │ ├── stat_actime2.go │ │ │ ├── stat_unix.go │ │ │ ├── strconv.go │ │ │ └── writer.go │ ├── docker │ │ ├── cli │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── cli │ │ │ │ └── connhelper │ │ │ │ └── commandconn │ │ │ │ ├── commandconn.go │ │ │ │ ├── commandconn_linux.go │ │ │ │ └── commandconn_nolinux.go │ │ ├── distribution │ │ │ ├── LICENSE │ │ │ ├── digestset │ │ │ │ └── set.go │ │ │ └── reference │ │ │ │ ├── helpers.go │ │ │ │ ├── normalize.go │ │ │ │ ├── reference.go │ │ │ │ └── regexp.go │ │ ├── docker │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── api │ │ │ │ └── types │ │ │ │ │ ├── blkiodev │ │ │ │ │ └── blkio.go │ │ │ │ │ ├── container │ │ │ │ │ ├── config.go │ │ │ │ │ ├── container_changes.go │ │ │ │ │ ├── container_create.go │ │ │ │ │ ├── container_top.go │ │ │ │ │ ├── container_update.go │ │ │ │ │ ├── container_wait.go │ │ │ │ │ ├── host_config.go │ │ │ │ │ ├── hostconfig_unix.go │ │ │ │ │ ├── hostconfig_windows.go │ │ │ │ │ └── waitcondition.go │ │ │ │ │ ├── mount │ │ │ │ │ └── mount.go │ │ │ │ │ ├── network │ │ │ │ │ └── network.go │ │ │ │ │ └── strslice │ │ │ │ │ └── strslice.go │ │ │ ├── builder │ │ │ │ └── dockerignore │ │ │ │ │ └── dockerignore.go │ │ │ ├── daemon │ │ │ │ └── caps │ │ │ │ │ └── utils_unix.go │ │ │ └── pkg │ │ │ │ ├── archive │ │ │ │ ├── README.md │ │ │ │ ├── archive.go │ │ │ │ ├── archive_linux.go │ │ │ │ ├── archive_other.go │ │ │ │ ├── archive_unix.go │ │ │ │ ├── archive_windows.go │ │ │ │ ├── changes.go │ │ │ │ ├── changes_linux.go │ │ │ │ ├── changes_other.go │ │ │ │ ├── changes_unix.go │ │ │ │ ├── changes_windows.go │ │ │ │ ├── copy.go │ │ │ │ ├── copy_unix.go │ │ │ │ ├── copy_windows.go │ │ │ │ ├── diff.go │ │ │ │ ├── time_linux.go │ │ │ │ ├── time_unsupported.go │ │ │ │ ├── whiteouts.go │ │ │ │ └── wrap.go │ │ │ │ ├── chrootarchive │ │ │ │ ├── archive.go │ │ │ │ ├── archive_unix.go │ │ │ │ ├── archive_windows.go │ │ │ │ ├── chroot_linux.go │ │ │ │ ├── chroot_unix.go │ │ │ │ ├── diff.go │ │ │ │ ├── diff_unix.go │ │ │ │ ├── diff_windows.go │ │ │ │ ├── init_unix.go │ │ │ │ └── init_windows.go │ │ │ │ ├── discovery │ │ │ │ ├── README.md │ │ │ │ ├── backends.go │ │ │ │ ├── discovery.go │ │ │ │ ├── entry.go │ │ │ │ ├── generator.go │ │ │ │ └── kv │ │ │ │ │ └── kv.go │ │ │ │ ├── fileutils │ │ │ │ ├── fileutils.go │ │ │ │ ├── fileutils_darwin.go │ │ │ │ ├── fileutils_unix.go │ │ │ │ └── fileutils_windows.go │ │ │ │ ├── idtools │ │ │ │ ├── idtools.go │ │ │ │ ├── idtools_unix.go │ │ │ │ ├── idtools_windows.go │ │ │ │ ├── usergroupadd_linux.go │ │ │ │ ├── usergroupadd_unsupported.go │ │ │ │ └── utils_unix.go │ │ │ │ ├── ioutils │ │ │ │ ├── buffer.go │ │ │ │ ├── bytespipe.go │ │ │ │ ├── fswriters.go │ │ │ │ ├── readers.go │ │ │ │ ├── temp_unix.go │ │ │ │ ├── temp_windows.go │ │ │ │ ├── writeflusher.go │ │ │ │ └── writers.go │ │ │ │ ├── locker │ │ │ │ ├── README.md │ │ │ │ └── locker.go │ │ │ │ ├── longpath │ │ │ │ └── longpath.go │ │ │ │ ├── mount │ │ │ │ ├── flags.go │ │ │ │ ├── flags_freebsd.go │ │ │ │ ├── flags_linux.go │ │ │ │ ├── flags_unsupported.go │ │ │ │ ├── mount.go │ │ │ │ ├── mounter_freebsd.go │ │ │ │ ├── mounter_linux.go │ │ │ │ ├── mounter_unsupported.go │ │ │ │ ├── mountinfo.go │ │ │ │ ├── mountinfo_freebsd.go │ │ │ │ ├── mountinfo_linux.go │ │ │ │ ├── mountinfo_unsupported.go │ │ │ │ ├── mountinfo_windows.go │ │ │ │ └── sharedsubtree_linux.go │ │ │ │ ├── parsers │ │ │ │ └── kernel │ │ │ │ │ ├── kernel.go │ │ │ │ │ ├── kernel_darwin.go │ │ │ │ │ ├── kernel_unix.go │ │ │ │ │ ├── kernel_windows.go │ │ │ │ │ ├── uname_linux.go │ │ │ │ │ ├── uname_solaris.go │ │ │ │ │ └── uname_unsupported.go │ │ │ │ ├── plugingetter │ │ │ │ └── getter.go │ │ │ │ ├── plugins │ │ │ │ ├── client.go │ │ │ │ ├── discovery.go │ │ │ │ ├── discovery_unix.go │ │ │ │ ├── discovery_windows.go │ │ │ │ ├── errors.go │ │ │ │ ├── plugins.go │ │ │ │ ├── plugins_unix.go │ │ │ │ ├── plugins_windows.go │ │ │ │ └── transport │ │ │ │ │ ├── http.go │ │ │ │ │ └── transport.go │ │ │ │ ├── pools │ │ │ │ └── pools.go │ │ │ │ ├── reexec │ │ │ │ ├── README.md │ │ │ │ ├── command_linux.go │ │ │ │ ├── command_unix.go │ │ │ │ ├── command_unsupported.go │ │ │ │ ├── command_windows.go │ │ │ │ └── reexec.go │ │ │ │ ├── signal │ │ │ │ ├── README.md │ │ │ │ ├── signal.go │ │ │ │ ├── signal_darwin.go │ │ │ │ ├── signal_freebsd.go │ │ │ │ ├── signal_linux.go │ │ │ │ ├── signal_unix.go │ │ │ │ ├── signal_unsupported.go │ │ │ │ ├── signal_windows.go │ │ │ │ └── trap.go │ │ │ │ ├── stdcopy │ │ │ │ └── stdcopy.go │ │ │ │ ├── stringid │ │ │ │ ├── README.md │ │ │ │ └── stringid.go │ │ │ │ └── system │ │ │ │ ├── chtimes.go │ │ │ │ ├── chtimes_unix.go │ │ │ │ ├── chtimes_windows.go │ │ │ │ ├── errors.go │ │ │ │ ├── exitcode.go │ │ │ │ ├── filesys.go │ │ │ │ ├── filesys_windows.go │ │ │ │ ├── init.go │ │ │ │ ├── init_unix.go │ │ │ │ ├── init_windows.go │ │ │ │ ├── lcow.go │ │ │ │ ├── lcow_unix.go │ │ │ │ ├── lcow_windows.go │ │ │ │ ├── lstat_unix.go │ │ │ │ ├── lstat_windows.go │ │ │ │ ├── meminfo.go │ │ │ │ ├── meminfo_linux.go │ │ │ │ ├── meminfo_unsupported.go │ │ │ │ ├── meminfo_windows.go │ │ │ │ ├── mknod.go │ │ │ │ ├── mknod_windows.go │ │ │ │ ├── path.go │ │ │ │ ├── process_unix.go │ │ │ │ ├── process_windows.go │ │ │ │ ├── rm.go │ │ │ │ ├── stat_darwin.go │ │ │ │ ├── stat_freebsd.go │ │ │ │ ├── stat_linux.go │ │ │ │ ├── stat_openbsd.go │ │ │ │ ├── stat_solaris.go │ │ │ │ ├── stat_unix.go │ │ │ │ ├── stat_windows.go │ │ │ │ ├── syscall_unix.go │ │ │ │ ├── syscall_windows.go │ │ │ │ ├── umask.go │ │ │ │ ├── umask_windows.go │ │ │ │ ├── utimes_freebsd.go │ │ │ │ ├── utimes_linux.go │ │ │ │ ├── utimes_unsupported.go │ │ │ │ ├── xattrs_linux.go │ │ │ │ └── xattrs_unsupported.go │ │ ├── go-connections │ │ │ ├── LICENSE │ │ │ ├── nat │ │ │ │ ├── nat.go │ │ │ │ ├── parse.go │ │ │ │ └── sort.go │ │ │ ├── sockets │ │ │ │ ├── README.md │ │ │ │ ├── inmem_socket.go │ │ │ │ ├── proxy.go │ │ │ │ ├── sockets.go │ │ │ │ ├── sockets_unix.go │ │ │ │ ├── sockets_windows.go │ │ │ │ ├── tcp_socket.go │ │ │ │ └── unix_socket.go │ │ │ └── tlsconfig │ │ │ │ ├── certpool_go17.go │ │ │ │ ├── certpool_other.go │ │ │ │ ├── config.go │ │ │ │ ├── config_client_ciphers.go │ │ │ │ └── config_legacy_client_ciphers.go │ │ ├── go-events │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── broadcast.go │ │ │ ├── channel.go │ │ │ ├── errors.go │ │ │ ├── event.go │ │ │ ├── filter.go │ │ │ ├── queue.go │ │ │ └── retry.go │ │ ├── go-units │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── circle.yml │ │ │ ├── duration.go │ │ │ ├── size.go │ │ │ └── ulimit.go │ │ ├── libkv │ │ │ ├── LICENSE.code │ │ │ ├── LICENSE.docs │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── libkv.go │ │ │ └── store │ │ │ │ ├── boltdb │ │ │ │ └── boltdb.go │ │ │ │ ├── consul │ │ │ │ └── consul.go │ │ │ │ ├── etcd │ │ │ │ └── etcd.go │ │ │ │ ├── helpers.go │ │ │ │ ├── store.go │ │ │ │ └── zookeeper │ │ │ │ └── zookeeper.go │ │ ├── libnetwork │ │ │ ├── CHANGELOG.md │ │ │ ├── Dockerfile.build │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── ROADMAP.md │ │ │ ├── Vagrantfile │ │ │ ├── agent.go │ │ │ ├── agent.pb.go │ │ │ ├── agent.proto │ │ │ ├── bitseq │ │ │ │ ├── sequence.go │ │ │ │ └── store.go │ │ │ ├── circle.yml │ │ │ ├── cluster │ │ │ │ └── provider.go │ │ │ ├── common │ │ │ │ ├── caller.go │ │ │ │ └── setmatrix.go │ │ │ ├── config │ │ │ │ ├── config.go │ │ │ │ └── libnetwork.toml │ │ │ ├── controller.go │ │ │ ├── datastore │ │ │ │ ├── cache.go │ │ │ │ ├── datastore.go │ │ │ │ └── mock_store.go │ │ │ ├── default_gateway.go │ │ │ ├── default_gateway_freebsd.go │ │ │ ├── default_gateway_linux.go │ │ │ ├── default_gateway_windows.go │ │ │ ├── diagnostic │ │ │ │ ├── server.go │ │ │ │ └── types.go │ │ │ ├── discoverapi │ │ │ │ └── discoverapi.go │ │ │ ├── driverapi │ │ │ │ ├── driverapi.go │ │ │ │ ├── errors.go │ │ │ │ └── ipamdata.go │ │ │ ├── drivers │ │ │ │ ├── bridge │ │ │ │ │ ├── bridge.go │ │ │ │ │ ├── bridge_store.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── link.go │ │ │ │ │ ├── netlink_deprecated_linux.go │ │ │ │ │ ├── netlink_deprecated_linux_armppc64.go │ │ │ │ │ ├── netlink_deprecated_linux_notarm.go │ │ │ │ │ ├── netlink_deprecated_unsupported.go │ │ │ │ │ ├── port_mapping.go │ │ │ │ │ ├── setup.go │ │ │ │ │ ├── setup_bridgenetfiltering.go │ │ │ │ │ ├── setup_device.go │ │ │ │ │ ├── setup_firewalld.go │ │ │ │ │ ├── setup_ip_forwarding.go │ │ │ │ │ ├── setup_ip_tables.go │ │ │ │ │ ├── setup_ipv4.go │ │ │ │ │ ├── setup_ipv6.go │ │ │ │ │ └── setup_verify.go │ │ │ │ ├── host │ │ │ │ │ └── host.go │ │ │ │ ├── ipvlan │ │ │ │ │ ├── ipvlan.go │ │ │ │ │ ├── ipvlan_endpoint.go │ │ │ │ │ ├── ipvlan_joinleave.go │ │ │ │ │ ├── ipvlan_network.go │ │ │ │ │ ├── ipvlan_setup.go │ │ │ │ │ ├── ipvlan_state.go │ │ │ │ │ └── ipvlan_store.go │ │ │ │ ├── macvlan │ │ │ │ │ ├── macvlan.go │ │ │ │ │ ├── macvlan_endpoint.go │ │ │ │ │ ├── macvlan_joinleave.go │ │ │ │ │ ├── macvlan_network.go │ │ │ │ │ ├── macvlan_setup.go │ │ │ │ │ ├── macvlan_state.go │ │ │ │ │ └── macvlan_store.go │ │ │ │ ├── null │ │ │ │ │ └── null.go │ │ │ │ ├── overlay │ │ │ │ │ ├── encryption.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── joinleave.go │ │ │ │ │ ├── ostweaks_linux.go │ │ │ │ │ ├── ostweaks_unsupported.go │ │ │ │ │ ├── ov_endpoint.go │ │ │ │ │ ├── ov_network.go │ │ │ │ │ ├── ov_serf.go │ │ │ │ │ ├── ov_utils.go │ │ │ │ │ ├── overlay.go │ │ │ │ │ ├── overlay.pb.go │ │ │ │ │ ├── overlay.proto │ │ │ │ │ └── peerdb.go │ │ │ │ ├── remote │ │ │ │ │ ├── api │ │ │ │ │ │ └── api.go │ │ │ │ │ └── driver.go │ │ │ │ └── windows │ │ │ │ │ ├── labels.go │ │ │ │ │ ├── overlay │ │ │ │ │ ├── joinleave_windows.go │ │ │ │ │ ├── ov_endpoint_windows.go │ │ │ │ │ ├── ov_network_windows.go │ │ │ │ │ ├── overlay.pb.go │ │ │ │ │ ├── overlay.proto │ │ │ │ │ ├── overlay_windows.go │ │ │ │ │ └── peerdb_windows.go │ │ │ │ │ ├── windows.go │ │ │ │ │ └── windows_store.go │ │ │ ├── drivers_experimental_linux.go │ │ │ ├── drivers_freebsd.go │ │ │ ├── drivers_ipam.go │ │ │ ├── drivers_linux.go │ │ │ ├── drivers_windows.go │ │ │ ├── drvregistry │ │ │ │ └── drvregistry.go │ │ │ ├── endpoint.go │ │ │ ├── endpoint_cnt.go │ │ │ ├── endpoint_info.go │ │ │ ├── endpoint_info_unix.go │ │ │ ├── endpoint_info_windows.go │ │ │ ├── error.go │ │ │ ├── etchosts │ │ │ │ └── etchosts.go │ │ │ ├── firewall_linux.go │ │ │ ├── firewall_others.go │ │ │ ├── hostdiscovery │ │ │ │ ├── hostdiscovery.go │ │ │ │ ├── hostdiscovery_api.go │ │ │ │ └── libnetwork.toml │ │ │ ├── idm │ │ │ │ └── idm.go │ │ │ ├── ipam │ │ │ │ ├── allocator.go │ │ │ │ ├── store.go │ │ │ │ ├── structures.go │ │ │ │ └── utils.go │ │ │ ├── ipamapi │ │ │ │ ├── contract.go │ │ │ │ └── labels.go │ │ │ ├── ipams │ │ │ │ ├── builtin │ │ │ │ │ ├── builtin_unix.go │ │ │ │ │ └── builtin_windows.go │ │ │ │ ├── null │ │ │ │ │ └── null.go │ │ │ │ ├── remote │ │ │ │ │ ├── api │ │ │ │ │ │ └── api.go │ │ │ │ │ └── remote.go │ │ │ │ └── windowsipam │ │ │ │ │ └── windowsipam.go │ │ │ ├── ipamutils │ │ │ │ └── utils.go │ │ │ ├── iptables │ │ │ │ ├── conntrack.go │ │ │ │ ├── firewalld.go │ │ │ │ └── iptables.go │ │ │ ├── ipvs │ │ │ │ ├── constants.go │ │ │ │ ├── ipvs.go │ │ │ │ └── netlink.go │ │ │ ├── machines │ │ │ ├── netlabel │ │ │ │ └── labels.go │ │ │ ├── netutils │ │ │ │ ├── utils.go │ │ │ │ ├── utils_freebsd.go │ │ │ │ ├── utils_linux.go │ │ │ │ └── utils_windows.go │ │ │ ├── network.go │ │ │ ├── network_unix.go │ │ │ ├── network_windows.go │ │ │ ├── networkdb │ │ │ │ ├── broadcast.go │ │ │ │ ├── cluster.go │ │ │ │ ├── delegate.go │ │ │ │ ├── event_delegate.go │ │ │ │ ├── message.go │ │ │ │ ├── networkdb.go │ │ │ │ ├── networkdb.pb.go │ │ │ │ ├── networkdb.proto │ │ │ │ ├── networkdbdiagnostic.go │ │ │ │ ├── nodemgmt.go │ │ │ │ └── watch.go │ │ │ ├── ns │ │ │ │ └── init_linux.go │ │ │ ├── options │ │ │ │ └── options.go │ │ │ ├── osl │ │ │ │ ├── interface_freebsd.go │ │ │ │ ├── interface_linux.go │ │ │ │ ├── interface_windows.go │ │ │ │ ├── namespace_linux.go │ │ │ │ ├── namespace_unsupported.go │ │ │ │ ├── namespace_windows.go │ │ │ │ ├── neigh_freebsd.go │ │ │ │ ├── neigh_linux.go │ │ │ │ ├── neigh_windows.go │ │ │ │ ├── options_linux.go │ │ │ │ ├── route_linux.go │ │ │ │ ├── sandbox.go │ │ │ │ ├── sandbox_freebsd.go │ │ │ │ └── sandbox_unsupported.go │ │ │ ├── portallocator │ │ │ │ ├── portallocator.go │ │ │ │ ├── portallocator_freebsd.go │ │ │ │ └── portallocator_linux.go │ │ │ ├── portmapper │ │ │ │ ├── mapper.go │ │ │ │ ├── mock_proxy.go │ │ │ │ ├── proxy.go │ │ │ │ └── proxy_linux.go │ │ │ ├── resolvconf │ │ │ │ ├── README.md │ │ │ │ ├── dns │ │ │ │ │ └── resolvconf.go │ │ │ │ └── resolvconf.go │ │ │ ├── resolver.go │ │ │ ├── resolver_unix.go │ │ │ ├── resolver_windows.go │ │ │ ├── sandbox.go │ │ │ ├── sandbox_dns_unix.go │ │ │ ├── sandbox_dns_windows.go │ │ │ ├── sandbox_externalkey.go │ │ │ ├── sandbox_externalkey_unix.go │ │ │ ├── sandbox_externalkey_windows.go │ │ │ ├── sandbox_store.go │ │ │ ├── service.go │ │ │ ├── service_common.go │ │ │ ├── service_linux.go │ │ │ ├── service_unsupported.go │ │ │ ├── service_windows.go │ │ │ ├── store.go │ │ │ ├── support.sh │ │ │ ├── types │ │ │ │ └── types.go │ │ │ ├── vendor.conf │ │ │ └── wrapmake.sh │ │ └── spdystream │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── LICENSE.docs │ │ │ ├── MAINTAINERS │ │ │ ├── README.md │ │ │ ├── connection.go │ │ │ ├── handlers.go │ │ │ ├── priority.go │ │ │ ├── spdy │ │ │ ├── dictionary.go │ │ │ ├── read.go │ │ │ ├── types.go │ │ │ └── write.go │ │ │ ├── stream.go │ │ │ └── utils.go │ ├── fatih │ │ └── structs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── field.go │ │ │ ├── structs.go │ │ │ └── tags.go │ ├── fsnotify │ │ └── fsnotify │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fen.go │ │ │ ├── fsnotify.go │ │ │ ├── inotify.go │ │ │ ├── inotify_poller.go │ │ │ ├── kqueue.go │ │ │ ├── open_mode_bsd.go │ │ │ ├── open_mode_darwin.go │ │ │ └── windows.go │ ├── go-check │ │ └── check │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── TODO │ │ │ ├── benchmark.go │ │ │ ├── check.go │ │ │ ├── checkers.go │ │ │ ├── helpers.go │ │ │ ├── printer.go │ │ │ ├── reporter.go │ │ │ └── run.go │ ├── go-openapi │ │ ├── analysis │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── analyzer.go │ │ │ ├── flatten.go │ │ │ ├── mixin.go │ │ │ └── schema.go │ │ ├── errors │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── api.go │ │ │ ├── auth.go │ │ │ ├── headers.go │ │ │ ├── middleware.go │ │ │ ├── parsing.go │ │ │ └── schema.go │ │ ├── jsonpointer │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── pointer.go │ │ ├── jsonreference │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── reference.go │ │ ├── loads │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── spec.go │ │ ├── runtime │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bytestream.go │ │ │ ├── client_auth_info.go │ │ │ ├── client_operation.go │ │ │ ├── client_request.go │ │ │ ├── client_response.go │ │ │ ├── constants.go │ │ │ ├── discard.go │ │ │ ├── file.go │ │ │ ├── headers.go │ │ │ ├── interfaces.go │ │ │ ├── json.go │ │ │ ├── request.go │ │ │ ├── statuses.go │ │ │ ├── text.go │ │ │ ├── values.go │ │ │ └── xml.go │ │ ├── spec │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bindata.go │ │ │ ├── contact_info.go │ │ │ ├── expander.go │ │ │ ├── external_docs.go │ │ │ ├── header.go │ │ │ ├── info.go │ │ │ ├── items.go │ │ │ ├── license.go │ │ │ ├── operation.go │ │ │ ├── parameter.go │ │ │ ├── path_item.go │ │ │ ├── paths.go │ │ │ ├── ref.go │ │ │ ├── response.go │ │ │ ├── responses.go │ │ │ ├── schema.go │ │ │ ├── security_scheme.go │ │ │ ├── spec.go │ │ │ ├── swagger.go │ │ │ ├── tag.go │ │ │ └── xml_object.go │ │ ├── strfmt │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bson.go │ │ │ ├── date.go │ │ │ ├── default.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── format.go │ │ │ └── time.go │ │ ├── swag │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── convert.go │ │ │ ├── convert_types.go │ │ │ ├── json.go │ │ │ ├── loading.go │ │ │ ├── net.go │ │ │ ├── path.go │ │ │ ├── util.go │ │ │ └── yaml.go │ │ └── validate │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── formats.go │ │ │ ├── object_validator.go │ │ │ ├── result.go │ │ │ ├── schema.go │ │ │ ├── schema_props.go │ │ │ ├── slice_validator.go │ │ │ ├── spec.go │ │ │ ├── type.go │ │ │ ├── update-fixtures.sh │ │ │ ├── validator.go │ │ │ └── values.go │ ├── godbus │ │ └── dbus │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS │ │ │ ├── README.markdown │ │ │ ├── auth.go │ │ │ ├── auth_anonymous.go │ │ │ ├── auth_external.go │ │ │ ├── auth_sha1.go │ │ │ ├── call.go │ │ │ ├── conn.go │ │ │ ├── conn_darwin.go │ │ │ ├── conn_other.go │ │ │ ├── conn_unix.go │ │ │ ├── conn_windows.go │ │ │ ├── dbus.go │ │ │ ├── decoder.go │ │ │ ├── default_handler.go │ │ │ ├── doc.go │ │ │ ├── encoder.go │ │ │ ├── export.go │ │ │ ├── homedir.go │ │ │ ├── homedir_dynamic.go │ │ │ ├── homedir_static.go │ │ │ ├── message.go │ │ │ ├── object.go │ │ │ ├── server_interfaces.go │ │ │ ├── sig.go │ │ │ ├── transport_darwin.go │ │ │ ├── transport_generic.go │ │ │ ├── transport_tcp.go │ │ │ ├── transport_unix.go │ │ │ ├── transport_unixcred_dragonfly.go │ │ │ ├── transport_unixcred_freebsd.go │ │ │ ├── transport_unixcred_linux.go │ │ │ ├── transport_unixcred_openbsd.go │ │ │ ├── variant.go │ │ │ ├── variant_lexer.go │ │ │ └── variant_parser.go │ ├── gofrs │ │ └── flock │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── flock.go │ │ │ ├── flock_unix.go │ │ │ ├── flock_winapi.go │ │ │ └── flock_windows.go │ ├── gogo │ │ ├── googleapis │ │ │ ├── LICENSE │ │ │ └── google │ │ │ │ └── rpc │ │ │ │ ├── code.pb.go │ │ │ │ ├── code.proto │ │ │ │ ├── error_details.pb.go │ │ │ │ ├── error_details.proto │ │ │ │ ├── status.pb.go │ │ │ │ └── status.proto │ │ └── protobuf │ │ │ ├── LICENSE │ │ │ ├── gogoproto │ │ │ ├── Makefile │ │ │ ├── doc.go │ │ │ ├── gogo.pb.go │ │ │ ├── gogo.pb.golden │ │ │ ├── gogo.proto │ │ │ └── helper.go │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── decode_gogo.go │ │ │ ├── discard.go │ │ │ ├── duration.go │ │ │ ├── duration_gogo.go │ │ │ ├── encode.go │ │ │ ├── encode_gogo.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── extensions_gogo.go │ │ │ ├── lib.go │ │ │ ├── lib_gogo.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_reflect_gogo.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── pointer_unsafe_gogo.go │ │ │ ├── properties.go │ │ │ ├── properties_gogo.go │ │ │ ├── skip_gogo.go │ │ │ ├── text.go │ │ │ ├── text_gogo.go │ │ │ ├── text_parser.go │ │ │ ├── timestamp.go │ │ │ └── timestamp_gogo.go │ │ │ ├── protoc-gen-gogo │ │ │ └── descriptor │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor.go │ │ │ │ ├── descriptor.pb.go │ │ │ │ ├── descriptor_gostring.gen.go │ │ │ │ └── helper.go │ │ │ ├── sortkeys │ │ │ └── sortkeys.go │ │ │ └── types │ │ │ ├── Makefile │ │ │ ├── any.go │ │ │ ├── any.pb.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration.pb.go │ │ │ ├── duration_gogo.go │ │ │ ├── empty.pb.go │ │ │ ├── field_mask.pb.go │ │ │ ├── struct.pb.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp.pb.go │ │ │ ├── timestamp_gogo.go │ │ │ └── wrappers.pb.go │ ├── golang │ │ ├── glog │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── glog.go │ │ │ └── glog_file.go │ │ └── protobuf │ │ │ ├── LICENSE │ │ │ ├── jsonpb │ │ │ └── jsonpb.go │ │ │ ├── proto │ │ │ ├── clone.go │ │ │ ├── decode.go │ │ │ ├── discard.go │ │ │ ├── encode.go │ │ │ ├── equal.go │ │ │ ├── extensions.go │ │ │ ├── lib.go │ │ │ ├── message_set.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── table_marshal.go │ │ │ ├── table_merge.go │ │ │ ├── table_unmarshal.go │ │ │ ├── text.go │ │ │ └── text_parser.go │ │ │ └── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ ├── any.pb.go │ │ │ └── any.proto │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ ├── duration.pb.go │ │ │ └── duration.proto │ │ │ ├── struct │ │ │ ├── struct.pb.go │ │ │ └── struct.proto │ │ │ ├── timestamp.go │ │ │ └── timestamp │ │ │ ├── timestamp.pb.go │ │ │ └── timestamp.proto │ ├── google │ │ ├── go-cmp │ │ │ ├── LICENSE │ │ │ └── cmp │ │ │ │ ├── cmpopts │ │ │ │ ├── equate.go │ │ │ │ ├── ignore.go │ │ │ │ ├── sort.go │ │ │ │ ├── struct_filter.go │ │ │ │ └── xform.go │ │ │ │ ├── compare.go │ │ │ │ ├── internal │ │ │ │ ├── diff │ │ │ │ │ ├── debug_disable.go │ │ │ │ │ ├── debug_enable.go │ │ │ │ │ └── diff.go │ │ │ │ ├── function │ │ │ │ │ └── func.go │ │ │ │ └── value │ │ │ │ │ ├── format.go │ │ │ │ │ ├── pointer_purego.go │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ └── sort.go │ │ │ │ ├── options.go │ │ │ │ ├── path.go │ │ │ │ ├── reporter.go │ │ │ │ ├── unsafe_panic.go │ │ │ │ └── unsafe_reflect.go │ │ ├── gops │ │ │ ├── LICENSE │ │ │ ├── agent │ │ │ │ └── agent.go │ │ │ ├── internal │ │ │ │ └── internal.go │ │ │ └── signal │ │ │ │ └── signal.go │ │ └── shlex │ │ │ ├── COPYING │ │ │ ├── README │ │ │ └── shlex.go │ ├── gorilla │ │ ├── context │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ └── doc.go │ │ └── mux │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context_gorilla.go │ │ │ ├── context_native.go │ │ │ ├── doc.go │ │ │ ├── mux.go │ │ │ ├── regexp.go │ │ │ └── route.go │ ├── gotestyourself │ │ └── gotestyourself │ │ │ ├── LICENSE │ │ │ └── icmd │ │ │ ├── command.go │ │ │ ├── exitcode.go │ │ │ └── ops.go │ ├── grpc-ecosystem │ │ ├── go-grpc-prometheus │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── client_metrics.go │ │ │ ├── client_reporter.go │ │ │ ├── makefile │ │ │ ├── metric_options.go │ │ │ ├── server.go │ │ │ ├── server_metrics.go │ │ │ ├── server_reporter.go │ │ │ └── util.go │ │ └── grpc-opentracing │ │ │ ├── LICENSE │ │ │ ├── PATENTS │ │ │ └── go │ │ │ └── otgrpc │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── errors.go │ │ │ ├── options.go │ │ │ ├── package.go │ │ │ ├── server.go │ │ │ └── shared.go │ ├── hashicorp │ │ ├── consul │ │ │ ├── LICENSE │ │ │ └── api │ │ │ │ ├── README.md │ │ │ │ ├── acl.go │ │ │ │ ├── agent.go │ │ │ │ ├── api.go │ │ │ │ ├── catalog.go │ │ │ │ ├── coordinate.go │ │ │ │ ├── event.go │ │ │ │ ├── health.go │ │ │ │ ├── kv.go │ │ │ │ ├── lock.go │ │ │ │ ├── operator.go │ │ │ │ ├── operator_area.go │ │ │ │ ├── operator_autopilot.go │ │ │ │ ├── operator_keyring.go │ │ │ │ ├── operator_raft.go │ │ │ │ ├── operator_segment.go │ │ │ │ ├── prepared_query.go │ │ │ │ ├── raw.go │ │ │ │ ├── semaphore.go │ │ │ │ ├── session.go │ │ │ │ ├── snapshot.go │ │ │ │ └── status.go │ │ ├── errwrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── errwrap.go │ │ ├── go-cleanhttp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cleanhttp.go │ │ │ ├── doc.go │ │ │ └── handlers.go │ │ ├── go-immutable-radix │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── edges.go │ │ │ ├── iradix.go │ │ │ ├── iter.go │ │ │ ├── node.go │ │ │ └── raw_iter.go │ │ ├── go-msgpack │ │ │ ├── LICENSE │ │ │ └── codec │ │ │ │ ├── 0doc.go │ │ │ │ ├── README.md │ │ │ │ ├── binc.go │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── helper.go │ │ │ │ ├── helper_internal.go │ │ │ │ ├── msgpack.go │ │ │ │ ├── msgpack_test.py │ │ │ │ ├── rpc.go │ │ │ │ ├── simple.go │ │ │ │ └── time.go │ │ ├── go-multierror │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── append.go │ │ │ ├── flatten.go │ │ │ ├── format.go │ │ │ ├── multierror.go │ │ │ └── prefix.go │ │ ├── go-rootcerts │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── rootcerts.go │ │ │ ├── rootcerts_base.go │ │ │ └── rootcerts_darwin.go │ │ ├── go-sockaddr │ │ │ ├── GNUmakefile │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── ifaddr.go │ │ │ ├── ifaddrs.go │ │ │ ├── ifattr.go │ │ │ ├── ipaddr.go │ │ │ ├── ipaddrs.go │ │ │ ├── ipv4addr.go │ │ │ ├── ipv6addr.go │ │ │ ├── rfc.go │ │ │ ├── route_info.go │ │ │ ├── route_info_bsd.go │ │ │ ├── route_info_default.go │ │ │ ├── route_info_linux.go │ │ │ ├── route_info_solaris.go │ │ │ ├── route_info_windows.go │ │ │ ├── sockaddr.go │ │ │ ├── sockaddrs.go │ │ │ └── unixsock.go │ │ ├── golang-lru │ │ │ ├── LICENSE │ │ │ └── simplelru │ │ │ │ ├── lru.go │ │ │ │ └── lru_interface.go │ │ ├── memberlist │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── alive_delegate.go │ │ │ ├── awareness.go │ │ │ ├── broadcast.go │ │ │ ├── config.go │ │ │ ├── conflict_delegate.go │ │ │ ├── delegate.go │ │ │ ├── event_delegate.go │ │ │ ├── keyring.go │ │ │ ├── logging.go │ │ │ ├── memberlist.go │ │ │ ├── merge_delegate.go │ │ │ ├── mock_transport.go │ │ │ ├── net.go │ │ │ ├── net_transport.go │ │ │ ├── ping_delegate.go │ │ │ ├── queue.go │ │ │ ├── security.go │ │ │ ├── state.go │ │ │ ├── suspicion.go │ │ │ ├── tag.sh │ │ │ ├── todo.md │ │ │ ├── transport.go │ │ │ └── util.go │ │ └── serf │ │ │ ├── LICENSE │ │ │ ├── coordinate │ │ │ ├── client.go │ │ │ ├── config.go │ │ │ ├── coordinate.go │ │ │ └── phantom.go │ │ │ └── serf │ │ │ ├── broadcast.go │ │ │ ├── coalesce.go │ │ │ ├── coalesce_member.go │ │ │ ├── coalesce_user.go │ │ │ ├── config.go │ │ │ ├── conflict_delegate.go │ │ │ ├── delegate.go │ │ │ ├── event.go │ │ │ ├── event_delegate.go │ │ │ ├── internal_query.go │ │ │ ├── keymanager.go │ │ │ ├── lamport.go │ │ │ ├── merge_delegate.go │ │ │ ├── messages.go │ │ │ ├── ping_delegate.go │ │ │ ├── query.go │ │ │ ├── serf.go │ │ │ └── snapshot.go │ ├── ishidawataru │ │ └── sctp │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── example │ │ │ └── sctp.go │ │ │ ├── sctp.go │ │ │ ├── sctp_linux.go │ │ │ └── sctp_unsupported.go │ ├── kardianos │ │ └── osext │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── osext.go │ │ │ ├── osext_go18.go │ │ │ ├── osext_plan9.go │ │ │ ├── osext_procfs.go │ │ │ ├── osext_sysctl.go │ │ │ └── osext_windows.go │ ├── mailru │ │ └── easyjson │ │ │ ├── LICENSE │ │ │ ├── buffer │ │ │ └── pool.go │ │ │ ├── jlexer │ │ │ ├── bytestostr.go │ │ │ ├── bytestostr_nounsafe.go │ │ │ ├── error.go │ │ │ └── lexer.go │ │ │ └── jwriter │ │ │ └── writer.go │ ├── mattn │ │ └── go-shellwords │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── shellwords.go │ │ │ ├── util_go15.go │ │ │ ├── util_posix.go │ │ │ └── util_windows.go │ ├── matttproud │ │ └── golang_protobuf_extensions │ │ │ └── pbutil │ │ │ ├── Makefile │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ └── encode.go │ ├── miekg │ │ └── dns │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── COPYRIGHT │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── Makefile.fuzz │ │ │ ├── Makefile.release │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── clientconfig.go │ │ │ ├── compress_generate.go │ │ │ ├── dane.go │ │ │ ├── defaults.go │ │ │ ├── dns.go │ │ │ ├── dnssec.go │ │ │ ├── dnssec_keygen.go │ │ │ ├── dnssec_keyscan.go │ │ │ ├── dnssec_privkey.go │ │ │ ├── doc.go │ │ │ ├── edns.go │ │ │ ├── format.go │ │ │ ├── fuzz.go │ │ │ ├── generate.go │ │ │ ├── labels.go │ │ │ ├── msg.go │ │ │ ├── msg_generate.go │ │ │ ├── msg_helpers.go │ │ │ ├── nsecx.go │ │ │ ├── privaterr.go │ │ │ ├── rawmsg.go │ │ │ ├── reverse.go │ │ │ ├── sanitize.go │ │ │ ├── scan.go │ │ │ ├── scan_rr.go │ │ │ ├── scanner.go │ │ │ ├── server.go │ │ │ ├── sig0.go │ │ │ ├── singleinflight.go │ │ │ ├── smimea.go │ │ │ ├── tlsa.go │ │ │ ├── tsig.go │ │ │ ├── types.go │ │ │ ├── types_generate.go │ │ │ ├── udp.go │ │ │ ├── udp_windows.go │ │ │ ├── update.go │ │ │ ├── version.go │ │ │ ├── xfr.go │ │ │ ├── zcompress.go │ │ │ ├── zmsg.go │ │ │ └── ztypes.go │ ├── mitchellh │ │ ├── go-homedir │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── homedir.go │ │ ├── hashstructure │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go.mod │ │ │ ├── hashstructure.go │ │ │ └── include.go │ │ └── mapstructure │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode_hooks.go │ │ │ ├── error.go │ │ │ └── mapstructure.go │ ├── moby │ │ └── buildkit │ │ │ ├── LICENSE │ │ │ ├── api │ │ │ ├── services │ │ │ │ └── control │ │ │ │ │ ├── control.pb.go │ │ │ │ │ ├── control.proto │ │ │ │ │ └── generate.go │ │ │ └── types │ │ │ │ ├── generate.go │ │ │ │ ├── worker.pb.go │ │ │ │ └── worker.proto │ │ │ ├── cache │ │ │ ├── blobs │ │ │ │ └── blobs.go │ │ │ ├── contenthash │ │ │ │ ├── checksum.go │ │ │ │ ├── checksum.pb.go │ │ │ │ ├── checksum.proto │ │ │ │ ├── filehash.go │ │ │ │ ├── filehash_unix.go │ │ │ │ ├── filehash_windows.go │ │ │ │ ├── generate.go │ │ │ │ ├── path.go │ │ │ │ └── tarsum.go │ │ │ ├── manager.go │ │ │ ├── metadata.go │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ ├── refs.go │ │ │ ├── remotecache │ │ │ │ ├── export.go │ │ │ │ ├── import.go │ │ │ │ └── v1 │ │ │ │ │ ├── cachestorage.go │ │ │ │ │ ├── chains.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── parse.go │ │ │ │ │ ├── spec.go │ │ │ │ │ └── utils.go │ │ │ └── util │ │ │ │ └── fsutil.go │ │ │ ├── client │ │ │ ├── build.go │ │ │ ├── buildid │ │ │ │ └── metadata.go │ │ │ ├── client.go │ │ │ ├── client_unix.go │ │ │ ├── client_windows.go │ │ │ ├── diskusage.go │ │ │ ├── exporters.go │ │ │ ├── filter.go │ │ │ ├── graph.go │ │ │ ├── llb │ │ │ │ ├── exec.go │ │ │ │ ├── imagemetaresolver │ │ │ │ │ └── resolver.go │ │ │ │ ├── marshal.go │ │ │ │ ├── meta.go │ │ │ │ ├── resolver.go │ │ │ │ ├── source.go │ │ │ │ └── state.go │ │ │ ├── prune.go │ │ │ ├── solve.go │ │ │ └── workers.go │ │ │ ├── control │ │ │ ├── control.go │ │ │ └── gateway │ │ │ │ └── gateway.go │ │ │ ├── executor │ │ │ ├── containerdexecutor │ │ │ │ └── executor.go │ │ │ ├── executor.go │ │ │ └── oci │ │ │ │ ├── hosts.go │ │ │ │ ├── mounts.go │ │ │ │ ├── resolvconf.go │ │ │ │ ├── spec_unix.go │ │ │ │ └── user.go │ │ │ ├── exporter │ │ │ ├── containerimage │ │ │ │ ├── export.go │ │ │ │ ├── exptypes │ │ │ │ │ └── types.go │ │ │ │ └── writer.go │ │ │ ├── exporter.go │ │ │ ├── local │ │ │ │ └── export.go │ │ │ └── oci │ │ │ │ └── export.go │ │ │ ├── frontend │ │ │ ├── dockerfile │ │ │ │ ├── builder │ │ │ │ │ └── build.go │ │ │ │ ├── command │ │ │ │ │ └── command.go │ │ │ │ ├── dockerfile2llb │ │ │ │ │ ├── convert.go │ │ │ │ │ ├── convert_norunmount.go │ │ │ │ │ ├── convert_nosecrets.go │ │ │ │ │ ├── convert_nossh.go │ │ │ │ │ ├── convert_runmount.go │ │ │ │ │ ├── convert_secrets.go │ │ │ │ │ ├── convert_ssh.go │ │ │ │ │ ├── defaultshell_unix.go │ │ │ │ │ ├── defaultshell_windows.go │ │ │ │ │ ├── directives.go │ │ │ │ │ ├── image.go │ │ │ │ │ └── platform.go │ │ │ │ ├── instructions │ │ │ │ │ ├── bflag.go │ │ │ │ │ ├── commands.go │ │ │ │ │ ├── commands_nosecrets.go │ │ │ │ │ ├── commands_nossh.go │ │ │ │ │ ├── commands_runmount.go │ │ │ │ │ ├── commands_secrets.go │ │ │ │ │ ├── commands_ssh.go │ │ │ │ │ ├── errors_unix.go │ │ │ │ │ ├── errors_windows.go │ │ │ │ │ ├── parse.go │ │ │ │ │ └── support.go │ │ │ │ ├── parser │ │ │ │ │ ├── line_parsers.go │ │ │ │ │ ├── parser.go │ │ │ │ │ └── split_command.go │ │ │ │ └── shell │ │ │ │ │ ├── envVarTest │ │ │ │ │ ├── equal_env_unix.go │ │ │ │ │ ├── equal_env_windows.go │ │ │ │ │ ├── lex.go │ │ │ │ │ └── wordsTest │ │ │ ├── frontend.go │ │ │ ├── gateway │ │ │ │ ├── client │ │ │ │ │ ├── client.go │ │ │ │ │ └── result.go │ │ │ │ ├── forwarder │ │ │ │ │ ├── forward.go │ │ │ │ │ └── frontend.go │ │ │ │ ├── gateway.go │ │ │ │ ├── grpcclient │ │ │ │ │ └── client.go │ │ │ │ └── pb │ │ │ │ │ ├── caps.go │ │ │ │ │ ├── gateway.pb.go │ │ │ │ │ ├── gateway.proto │ │ │ │ │ └── generate.go │ │ │ └── result.go │ │ │ ├── identity │ │ │ └── randomid.go │ │ │ ├── session │ │ │ ├── auth │ │ │ │ ├── auth.go │ │ │ │ ├── auth.pb.go │ │ │ │ ├── auth.proto │ │ │ │ └── generate.go │ │ │ ├── context.go │ │ │ ├── filesync │ │ │ │ ├── diffcopy.go │ │ │ │ ├── filesync.go │ │ │ │ ├── filesync.pb.go │ │ │ │ ├── filesync.proto │ │ │ │ └── generate.go │ │ │ ├── grpc.go │ │ │ ├── grpchijack │ │ │ │ ├── dial.go │ │ │ │ └── hijack.go │ │ │ ├── manager.go │ │ │ ├── secrets │ │ │ │ ├── generate.go │ │ │ │ ├── secrets.go │ │ │ │ ├── secrets.pb.go │ │ │ │ └── secrets.proto │ │ │ ├── session.go │ │ │ └── sshforward │ │ │ │ ├── copy.go │ │ │ │ ├── generate.go │ │ │ │ ├── ssh.go │ │ │ │ ├── ssh.pb.go │ │ │ │ └── ssh.proto │ │ │ ├── snapshot │ │ │ ├── blobmapping │ │ │ │ └── snapshotter.go │ │ │ ├── containerd │ │ │ │ ├── content.go │ │ │ │ └── snapshotter.go │ │ │ ├── imagerefchecker │ │ │ │ └── checker.go │ │ │ ├── localmounter.go │ │ │ ├── localmounter_unix.go │ │ │ ├── localmounter_windows.go │ │ │ └── snapshotter.go │ │ │ ├── solver │ │ │ ├── bboltcachestorage │ │ │ │ └── storage.go │ │ │ ├── cachekey.go │ │ │ ├── cachemanager.go │ │ │ ├── cachestorage.go │ │ │ ├── combinedcache.go │ │ │ ├── edge.go │ │ │ ├── exporter.go │ │ │ ├── index.go │ │ │ ├── internal │ │ │ │ └── pipe │ │ │ │ │ └── pipe.go │ │ │ ├── jobs.go │ │ │ ├── llbsolver │ │ │ │ ├── bridge.go │ │ │ │ ├── ops │ │ │ │ │ ├── build.go │ │ │ │ │ ├── exec.go │ │ │ │ │ └── source.go │ │ │ │ ├── result.go │ │ │ │ ├── solver.go │ │ │ │ └── vertex.go │ │ │ ├── memorycachestorage.go │ │ │ ├── pb │ │ │ │ ├── attr.go │ │ │ │ ├── caps.go │ │ │ │ ├── const.go │ │ │ │ ├── generate.go │ │ │ │ ├── ops.pb.go │ │ │ │ ├── ops.proto │ │ │ │ └── platform.go │ │ │ ├── progress.go │ │ │ ├── result.go │ │ │ ├── scheduler.go │ │ │ └── types.go │ │ │ ├── source │ │ │ ├── containerimage │ │ │ │ └── pull.go │ │ │ ├── git │ │ │ │ ├── gitsource.go │ │ │ │ ├── gitsource_unix.go │ │ │ │ └── gitsource_windows.go │ │ │ ├── gitidentifier.go │ │ │ ├── http │ │ │ │ └── httpsource.go │ │ │ ├── identifier.go │ │ │ ├── local │ │ │ │ └── local.go │ │ │ └── manager.go │ │ │ ├── util │ │ │ ├── apicaps │ │ │ │ ├── caps.go │ │ │ │ └── pb │ │ │ │ │ ├── caps.pb.go │ │ │ │ │ ├── caps.proto │ │ │ │ │ └── generate.go │ │ │ ├── appdefaults │ │ │ │ ├── appdefaults_unix.go │ │ │ │ └── appdefaults_windows.go │ │ │ ├── cond │ │ │ │ └── cond.go │ │ │ ├── contentutil │ │ │ │ ├── buffer.go │ │ │ │ ├── copy.go │ │ │ │ ├── fetcher.go │ │ │ │ ├── multiprovider.go │ │ │ │ ├── pusher.go │ │ │ │ └── refs.go │ │ │ ├── dockerexporter │ │ │ │ └── dockerexporter.go │ │ │ ├── entitlements │ │ │ │ └── entitlements.go │ │ │ ├── flightcontrol │ │ │ │ └── flightcontrol.go │ │ │ ├── imageutil │ │ │ │ ├── config.go │ │ │ │ └── schema1.go │ │ │ ├── network │ │ │ │ ├── host.go │ │ │ │ ├── network.go │ │ │ │ └── none.go │ │ │ ├── progress │ │ │ │ ├── logs │ │ │ │ │ └── logs.go │ │ │ │ ├── multireader.go │ │ │ │ ├── multiwriter.go │ │ │ │ ├── progress.go │ │ │ │ └── progressui │ │ │ │ │ ├── display.go │ │ │ │ │ └── printer.go │ │ │ ├── pull │ │ │ │ ├── pull.go │ │ │ │ └── resolver.go │ │ │ ├── push │ │ │ │ └── push.go │ │ │ ├── resolver │ │ │ │ └── resolver.go │ │ │ ├── system │ │ │ │ ├── path_unix.go │ │ │ │ ├── path_windows.go │ │ │ │ ├── seccomp_linux.go │ │ │ │ ├── seccomp_nolinux.go │ │ │ │ └── seccomp_noseccomp.go │ │ │ ├── throttle │ │ │ │ └── throttle.go │ │ │ ├── tracing │ │ │ │ ├── multispan.go │ │ │ │ └── tracing.go │ │ │ └── winlayers │ │ │ │ ├── applier.go │ │ │ │ ├── context.go │ │ │ │ └── differ.go │ │ │ └── worker │ │ │ ├── base │ │ │ └── worker.go │ │ │ ├── cacheresult.go │ │ │ ├── containerd │ │ │ └── containerd.go │ │ │ ├── filter.go │ │ │ ├── result.go │ │ │ ├── worker.go │ │ │ └── workercontroller.go │ ├── morikuni │ │ └── aec │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── aec.go │ │ │ ├── ansi.go │ │ │ ├── builder.go │ │ │ ├── sample.gif │ │ │ └── sgr.go │ ├── opencontainers │ │ ├── go-digest │ │ │ ├── LICENSE.code │ │ │ ├── LICENSE.docs │ │ │ ├── README.md │ │ │ ├── algorithm.go │ │ │ ├── digest.go │ │ │ ├── digester.go │ │ │ ├── doc.go │ │ │ └── verifiers.go │ │ ├── image-spec │ │ │ ├── LICENSE │ │ │ ├── identity │ │ │ │ ├── chainid.go │ │ │ │ └── helpers.go │ │ │ └── specs-go │ │ │ │ ├── v1 │ │ │ │ ├── annotations.go │ │ │ │ ├── config.go │ │ │ │ ├── descriptor.go │ │ │ │ ├── index.go │ │ │ │ ├── layout.go │ │ │ │ ├── manifest.go │ │ │ │ └── mediatype.go │ │ │ │ ├── version.go │ │ │ │ └── versioned.go │ │ ├── runc │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ └── libcontainer │ │ │ │ ├── apparmor │ │ │ │ ├── apparmor.go │ │ │ │ └── apparmor_disabled.go │ │ │ │ ├── configs │ │ │ │ ├── blkio_device.go │ │ │ │ ├── cgroup_linux.go │ │ │ │ ├── cgroup_windows.go │ │ │ │ ├── config.go │ │ │ │ ├── config_linux.go │ │ │ │ ├── device.go │ │ │ │ ├── device_defaults.go │ │ │ │ ├── hugepage_limit.go │ │ │ │ ├── intelrdt.go │ │ │ │ ├── interface_priority_map.go │ │ │ │ ├── mount.go │ │ │ │ ├── namespaces.go │ │ │ │ ├── namespaces_linux.go │ │ │ │ ├── namespaces_syscall.go │ │ │ │ ├── namespaces_syscall_unsupported.go │ │ │ │ ├── namespaces_unsupported.go │ │ │ │ └── network.go │ │ │ │ ├── devices │ │ │ │ └── devices.go │ │ │ │ ├── system │ │ │ │ ├── linux.go │ │ │ │ ├── proc.go │ │ │ │ ├── syscall_linux_32.go │ │ │ │ ├── syscall_linux_64.go │ │ │ │ ├── sysconfig.go │ │ │ │ ├── sysconfig_notcgo.go │ │ │ │ ├── unsupported.go │ │ │ │ └── xattrs_linux.go │ │ │ │ └── user │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── lookup.go │ │ │ │ ├── lookup_unix.go │ │ │ │ └── user.go │ │ ├── runtime-spec │ │ │ ├── LICENSE │ │ │ └── specs-go │ │ │ │ ├── config.go │ │ │ │ ├── state.go │ │ │ │ └── version.go │ │ └── selinux │ │ │ ├── LICENSE │ │ │ └── go-selinux │ │ │ ├── label │ │ │ ├── label.go │ │ │ └── label_selinux.go │ │ │ ├── selinux.go │ │ │ └── xattrs.go │ ├── opentracing-contrib │ │ └── go-stdlib │ │ │ ├── LICENSE │ │ │ └── nethttp │ │ │ ├── client.go │ │ │ ├── doc.go │ │ │ ├── server.go │ │ │ ├── status-code-tracker-old.go │ │ │ └── status-code-tracker.go │ ├── opentracing │ │ └── opentracing-go │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── ext │ │ │ └── tags.go │ │ │ ├── globaltracer.go │ │ │ ├── gocontext.go │ │ │ ├── log │ │ │ ├── field.go │ │ │ └── util.go │ │ │ ├── noop.go │ │ │ ├── propagation.go │ │ │ ├── span.go │ │ │ └── tracer.go │ ├── pborman │ │ └── uuid │ │ │ ├── CONTRIBUTING.md │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dce.go │ │ │ ├── doc.go │ │ │ ├── hash.go │ │ │ ├── marshal.go │ │ │ ├── node.go │ │ │ ├── sql.go │ │ │ ├── time.go │ │ │ ├── util.go │ │ │ ├── uuid.go │ │ │ ├── version1.go │ │ │ └── version4.go │ ├── pkg │ │ ├── errors │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── errors.go │ │ │ └── stack.go │ │ └── term │ │ │ ├── LICENSE │ │ │ └── termios │ │ │ ├── doc.go │ │ │ ├── ioctl.go │ │ │ ├── ioctl_darwin.go │ │ │ ├── ioctl_solaris.go │ │ │ ├── pty.go │ │ │ ├── pty_bsd.go │ │ │ ├── pty_darwin.go │ │ │ ├── pty_linux.go │ │ │ ├── pty_solaris.go │ │ │ ├── termios.go │ │ │ ├── termios_bsd.go │ │ │ ├── termios_const.go │ │ │ ├── termios_const_solaris.go │ │ │ ├── termios_linux.go │ │ │ ├── termios_solaris.go │ │ │ └── termios_windows.go │ ├── pmezard │ │ └── go-difflib │ │ │ ├── LICENSE │ │ │ └── difflib │ │ │ └── difflib.go │ ├── prometheus │ │ ├── client_golang │ │ │ ├── AUTHORS.md │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── VERSION │ │ │ └── prometheus │ │ │ │ ├── README.md │ │ │ │ ├── collector.go │ │ │ │ ├── counter.go │ │ │ │ ├── desc.go │ │ │ │ ├── doc.go │ │ │ │ ├── expvar_collector.go │ │ │ │ ├── fnv.go │ │ │ │ ├── gauge.go │ │ │ │ ├── go_collector.go │ │ │ │ ├── histogram.go │ │ │ │ ├── http.go │ │ │ │ ├── labels.go │ │ │ │ ├── metric.go │ │ │ │ ├── observer.go │ │ │ │ ├── process_collector.go │ │ │ │ ├── promhttp │ │ │ │ ├── delegator.go │ │ │ │ ├── delegator_1_8.go │ │ │ │ ├── delegator_pre_1_8.go │ │ │ │ ├── http.go │ │ │ │ ├── instrument_client.go │ │ │ │ ├── instrument_client_1_8.go │ │ │ │ └── instrument_server.go │ │ │ │ ├── registry.go │ │ │ │ ├── summary.go │ │ │ │ ├── timer.go │ │ │ │ ├── untyped.go │ │ │ │ ├── value.go │ │ │ │ └── vec.go │ │ ├── client_model │ │ │ └── go │ │ │ │ └── metrics.pb.go │ │ ├── common │ │ │ ├── expfmt │ │ │ │ ├── decode.go │ │ │ │ ├── encode.go │ │ │ │ ├── expfmt.go │ │ │ │ ├── fuzz.go │ │ │ │ ├── text_create.go │ │ │ │ └── text_parse.go │ │ │ ├── internal │ │ │ │ └── bitbucket.org │ │ │ │ │ └── ww │ │ │ │ │ └── goautoneg │ │ │ │ │ ├── README.txt │ │ │ │ │ └── autoneg.go │ │ │ └── model │ │ │ │ ├── alert.go │ │ │ │ ├── fingerprinting.go │ │ │ │ ├── fnv.go │ │ │ │ ├── labels.go │ │ │ │ ├── labelset.go │ │ │ │ ├── metric.go │ │ │ │ ├── model.go │ │ │ │ ├── signature.go │ │ │ │ ├── silence.go │ │ │ │ ├── time.go │ │ │ │ └── value.go │ │ └── procfs │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── MAINTAINERS.md │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── buddyinfo.go │ │ │ ├── doc.go │ │ │ ├── fs.go │ │ │ ├── ipvs.go │ │ │ ├── mdstat.go │ │ │ ├── mountstats.go │ │ │ ├── proc.go │ │ │ ├── proc_io.go │ │ │ ├── proc_limits.go │ │ │ ├── proc_stat.go │ │ │ ├── stat.go │ │ │ ├── ttar │ │ │ ├── xfrm.go │ │ │ └── xfs │ │ │ ├── parse.go │ │ │ └── xfs.go │ ├── russross │ │ └── blackfriday │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── block.go │ │ │ ├── block_test.go │ │ │ ├── doc.go │ │ │ ├── html.go │ │ │ ├── inline.go │ │ │ ├── inline_test.go │ │ │ ├── latex.go │ │ │ ├── markdown.go │ │ │ ├── markdown_test.go │ │ │ ├── ref_test.go │ │ │ └── smartypants.go │ ├── samuel │ │ └── go-zookeeper │ │ │ ├── LICENSE │ │ │ └── zk │ │ │ ├── conn.go │ │ │ ├── constants.go │ │ │ ├── dnshostprovider.go │ │ │ ├── flw.go │ │ │ ├── lock.go │ │ │ ├── server_help.go │ │ │ ├── server_java.go │ │ │ ├── structs.go │ │ │ └── util.go │ ├── sean- │ │ └── seed │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── init.go │ ├── sirupsen │ │ └── logrus │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── alt_exit.go │ │ │ ├── doc.go │ │ │ ├── entry.go │ │ │ ├── exported.go │ │ │ ├── formatter.go │ │ │ ├── hooks.go │ │ │ ├── json_formatter.go │ │ │ ├── logger.go │ │ │ ├── logrus.go │ │ │ ├── terminal_appengine.go │ │ │ ├── terminal_bsd.go │ │ │ ├── terminal_linux.go │ │ │ ├── terminal_notwindows.go │ │ │ ├── terminal_solaris.go │ │ │ ├── terminal_windows.go │ │ │ ├── text_formatter.go │ │ │ └── writer.go │ ├── spf13 │ │ ├── cobra │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── args.go │ │ │ ├── bash_completions.go │ │ │ ├── bash_completions.md │ │ │ ├── cobra.go │ │ │ ├── cobra │ │ │ │ ├── README.md │ │ │ │ ├── cmd │ │ │ │ │ ├── add.go │ │ │ │ │ ├── helpers.go │ │ │ │ │ ├── init.go │ │ │ │ │ ├── license_agpl.go │ │ │ │ │ ├── license_apache_2.go │ │ │ │ │ ├── license_bsd_clause_2.go │ │ │ │ │ ├── license_bsd_clause_3.go │ │ │ │ │ ├── license_gpl_2.go │ │ │ │ │ ├── license_gpl_3.go │ │ │ │ │ ├── license_lgpl.go │ │ │ │ │ ├── license_mit.go │ │ │ │ │ ├── licenses.go │ │ │ │ │ ├── project.go │ │ │ │ │ └── root.go │ │ │ │ └── main.go │ │ │ ├── command.go │ │ │ ├── command_notwin.go │ │ │ ├── command_win.go │ │ │ ├── doc │ │ │ │ ├── man_docs.go │ │ │ │ ├── man_docs.md │ │ │ │ ├── md_docs.go │ │ │ │ ├── md_docs.md │ │ │ │ ├── rest_docs.go │ │ │ │ ├── rest_docs.md │ │ │ │ ├── util.go │ │ │ │ ├── yaml_docs.go │ │ │ │ └── yaml_docs.md │ │ │ └── zsh_completions.go │ │ └── pflag │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bool.go │ │ │ ├── bool_slice.go │ │ │ ├── count.go │ │ │ ├── duration.go │ │ │ ├── flag.go │ │ │ ├── float32.go │ │ │ ├── float64.go │ │ │ ├── golangflag.go │ │ │ ├── int.go │ │ │ ├── int16.go │ │ │ ├── int32.go │ │ │ ├── int64.go │ │ │ ├── int8.go │ │ │ ├── int_slice.go │ │ │ ├── ip.go │ │ │ ├── ip_slice.go │ │ │ ├── ipmask.go │ │ │ ├── ipnet.go │ │ │ ├── string.go │ │ │ ├── string_array.go │ │ │ ├── string_slice.go │ │ │ ├── uint.go │ │ │ ├── uint16.go │ │ │ ├── uint32.go │ │ │ ├── uint64.go │ │ │ ├── uint8.go │ │ │ └── uint_slice.go │ ├── stretchr │ │ └── testify │ │ │ ├── LICENSE │ │ │ └── assert │ │ │ ├── assertion_forward.go │ │ │ ├── assertions.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ └── http_assertions.go │ ├── syndtr │ │ └── gocapability │ │ │ ├── LICENSE │ │ │ └── capability │ │ │ ├── capability.go │ │ │ ├── capability_linux.go │ │ │ ├── capability_noop.go │ │ │ ├── enum.go │ │ │ ├── enum_gen.go │ │ │ └── syscall_linux.go │ ├── tchap │ │ └── go-patricia │ │ │ ├── LICENSE │ │ │ └── patricia │ │ │ ├── children.go │ │ │ └── patricia.go │ ├── tonistiigi │ │ ├── fsutil │ │ │ ├── LICENSE │ │ │ ├── chtimes_linux.go │ │ │ ├── chtimes_nolinux.go │ │ │ ├── copy │ │ │ │ ├── copy.go │ │ │ │ ├── copy_linux.go │ │ │ │ ├── copy_nowindows.go │ │ │ │ ├── copy_unix.go │ │ │ │ ├── copy_windows.go │ │ │ │ ├── hardlink.go │ │ │ │ ├── hardlink_unix.go │ │ │ │ ├── hardlink_windows.go │ │ │ │ ├── mkdir.go │ │ │ │ ├── mkdir_unix.go │ │ │ │ └── mkdir_windows.go │ │ │ ├── diff.go │ │ │ ├── diff_containerd.go │ │ │ ├── diff_containerd_linux.go │ │ │ ├── diskwriter.go │ │ │ ├── diskwriter_unix.go │ │ │ ├── diskwriter_windows.go │ │ │ ├── followlinks.go │ │ │ ├── fs.go │ │ │ ├── hardlinks.go │ │ │ ├── readme.md │ │ │ ├── receive.go │ │ │ ├── send.go │ │ │ ├── stat.go │ │ │ ├── stat_unix.go │ │ │ ├── stat_windows.go │ │ │ ├── types │ │ │ │ ├── generate.go │ │ │ │ ├── stat.pb.go │ │ │ │ ├── stat.proto │ │ │ │ ├── wire.pb.go │ │ │ │ └── wire.proto │ │ │ ├── validator.go │ │ │ └── walker.go │ │ └── units │ │ │ ├── LICENSE │ │ │ ├── bytes.go │ │ │ └── readme.md │ ├── ugorji │ │ └── go │ │ │ ├── LICENSE │ │ │ └── codec │ │ │ ├── 0doc.go │ │ │ ├── README.md │ │ │ ├── binc.go │ │ │ ├── cbor.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── fast-path.generated.go │ │ │ ├── fast-path.go.tmpl │ │ │ ├── fast-path.not.go │ │ │ ├── gen-dec-array.go.tmpl │ │ │ ├── gen-dec-map.go.tmpl │ │ │ ├── gen-enc-chan.go.tmpl │ │ │ ├── gen-helper.generated.go │ │ │ ├── gen-helper.go.tmpl │ │ │ ├── gen.generated.go │ │ │ ├── gen.go │ │ │ ├── goversion_arrayof_gte_go15.go │ │ │ ├── goversion_arrayof_lt_go15.go │ │ │ ├── goversion_makemap_gte_go19.go │ │ │ ├── goversion_makemap_lt_go19.go │ │ │ ├── goversion_unexportedembeddedptr_gte_go110.go │ │ │ ├── goversion_unexportedembeddedptr_lt_go110.go │ │ │ ├── goversion_unsupported_lt_go14.go │ │ │ ├── goversion_vendor_eq_go15.go │ │ │ ├── goversion_vendor_eq_go16.go │ │ │ ├── goversion_vendor_gte_go17.go │ │ │ ├── goversion_vendor_lt_go15.go │ │ │ ├── helper.go │ │ │ ├── helper_internal.go │ │ │ ├── helper_not_unsafe.go │ │ │ ├── helper_unsafe.go │ │ │ ├── json.go │ │ │ ├── mammoth-test.go.tmpl │ │ │ ├── mammoth2-test.go.tmpl │ │ │ ├── msgpack.go │ │ │ ├── rpc.go │ │ │ ├── simple.go │ │ │ ├── test-cbor-goldens.json │ │ │ └── test.py │ └── vishvananda │ │ ├── netlink │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── addr.go │ │ ├── addr_linux.go │ │ ├── bpf_linux.go │ │ ├── bridge_linux.go │ │ ├── class.go │ │ ├── class_linux.go │ │ ├── conntrack_linux.go │ │ ├── conntrack_unspecified.go │ │ ├── filter.go │ │ ├── filter_linux.go │ │ ├── genetlink_linux.go │ │ ├── genetlink_unspecified.go │ │ ├── gtp_linux.go │ │ ├── handle_linux.go │ │ ├── handle_unspecified.go │ │ ├── link.go │ │ ├── link_linux.go │ │ ├── link_tuntap_linux.go │ │ ├── neigh.go │ │ ├── neigh_linux.go │ │ ├── netlink.go │ │ ├── netlink_linux.go │ │ ├── netlink_unspecified.go │ │ ├── nl │ │ │ ├── addr_linux.go │ │ │ ├── bridge_linux.go │ │ │ ├── conntrack_linux.go │ │ │ ├── genetlink_linux.go │ │ │ ├── link_linux.go │ │ │ ├── mpls_linux.go │ │ │ ├── nl_linux.go │ │ │ ├── nl_unspecified.go │ │ │ ├── route_linux.go │ │ │ ├── syscall.go │ │ │ ├── tc_linux.go │ │ │ ├── xfrm_linux.go │ │ │ ├── xfrm_monitor_linux.go │ │ │ ├── xfrm_policy_linux.go │ │ │ └── xfrm_state_linux.go │ │ ├── order.go │ │ ├── protinfo.go │ │ ├── protinfo_linux.go │ │ ├── qdisc.go │ │ ├── qdisc_linux.go │ │ ├── route.go │ │ ├── route_linux.go │ │ ├── route_unspecified.go │ │ ├── rule.go │ │ ├── rule_linux.go │ │ ├── socket.go │ │ ├── socket_linux.go │ │ ├── xfrm.go │ │ ├── xfrm_monitor_linux.go │ │ ├── xfrm_policy.go │ │ ├── xfrm_policy_linux.go │ │ ├── xfrm_state.go │ │ └── xfrm_state_linux.go │ │ └── netns │ │ ├── LICENSE │ │ ├── README.md │ │ ├── netns.go │ │ ├── netns_linux.go │ │ ├── netns_linux_386.go │ │ ├── netns_linux_amd64.go │ │ ├── netns_linux_arm.go │ │ ├── netns_linux_arm64.go │ │ ├── netns_linux_ppc64le.go │ │ ├── netns_linux_s390x.go │ │ └── netns_unspecified.go ├── go.etcd.io │ └── bbolt │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── bolt_386.go │ │ ├── bolt_amd64.go │ │ ├── bolt_arm.go │ │ ├── bolt_arm64.go │ │ ├── bolt_linux.go │ │ ├── bolt_mips64x.go │ │ ├── bolt_mipsx.go │ │ ├── bolt_openbsd.go │ │ ├── bolt_ppc.go │ │ ├── bolt_ppc64.go │ │ ├── bolt_ppc64le.go │ │ ├── bolt_s390x.go │ │ ├── bolt_unix.go │ │ ├── bolt_unix_solaris.go │ │ ├── bolt_windows.go │ │ ├── boltsync_unix.go │ │ ├── bucket.go │ │ ├── cursor.go │ │ ├── db.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── freelist.go │ │ ├── freelist_hmap.go │ │ ├── node.go │ │ ├── page.go │ │ └── tx.go ├── go4.org │ ├── LICENSE │ └── syncutil │ │ └── singleflight │ │ └── singleflight.go ├── golang.org │ └── x │ │ ├── crypto │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── acme │ │ │ ├── acme.go │ │ │ ├── autocert │ │ │ │ ├── autocert.go │ │ │ │ ├── cache.go │ │ │ │ ├── listener.go │ │ │ │ └── renewal.go │ │ │ ├── jws.go │ │ │ └── types.go │ │ ├── bcrypt │ │ │ ├── base64.go │ │ │ └── bcrypt.go │ │ ├── blake2b │ │ │ ├── blake2b.go │ │ │ ├── blake2bAVX2_amd64.go │ │ │ ├── blake2bAVX2_amd64.s │ │ │ ├── blake2b_amd64.go │ │ │ ├── blake2b_amd64.s │ │ │ ├── blake2b_generic.go │ │ │ ├── blake2b_ref.go │ │ │ ├── blake2x.go │ │ │ └── register.go │ │ ├── blake2s │ │ │ ├── blake2s.go │ │ │ ├── blake2s_386.go │ │ │ ├── blake2s_386.s │ │ │ ├── blake2s_amd64.go │ │ │ ├── blake2s_amd64.s │ │ │ ├── blake2s_generic.go │ │ │ ├── blake2s_ref.go │ │ │ ├── blake2x.go │ │ │ └── register.go │ │ ├── blowfish │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── bn256 │ │ │ ├── bn256.go │ │ │ ├── constants.go │ │ │ ├── curve.go │ │ │ ├── gfp12.go │ │ │ ├── gfp2.go │ │ │ ├── gfp6.go │ │ │ ├── optate.go │ │ │ └── twist.go │ │ ├── cast5 │ │ │ └── cast5.go │ │ ├── chacha20poly1305 │ │ │ ├── chacha20poly1305.go │ │ │ ├── chacha20poly1305_amd64.go │ │ │ ├── chacha20poly1305_amd64.s │ │ │ ├── chacha20poly1305_generic.go │ │ │ ├── chacha20poly1305_noasm.go │ │ │ └── internal │ │ │ │ └── chacha20 │ │ │ │ └── chacha_generic.go │ │ ├── codereview.cfg │ │ ├── cryptobyte │ │ │ ├── asn1.go │ │ │ ├── builder.go │ │ │ └── string.go │ │ ├── curve25519 │ │ │ ├── const_amd64.h │ │ │ ├── const_amd64.s │ │ │ ├── cswap_amd64.s │ │ │ ├── curve25519.go │ │ │ ├── doc.go │ │ │ ├── freeze_amd64.s │ │ │ ├── ladderstep_amd64.s │ │ │ ├── mont25519_amd64.go │ │ │ ├── mul_amd64.s │ │ │ └── square_amd64.s │ │ ├── ed25519 │ │ │ ├── ed25519.go │ │ │ └── internal │ │ │ │ └── edwards25519 │ │ │ │ ├── const.go │ │ │ │ └── edwards25519.go │ │ ├── hkdf │ │ │ └── hkdf.go │ │ ├── md4 │ │ │ ├── md4.go │ │ │ └── md4block.go │ │ ├── nacl │ │ │ ├── box │ │ │ │ └── box.go │ │ │ └── secretbox │ │ │ │ └── secretbox.go │ │ ├── ocsp │ │ │ └── ocsp.go │ │ ├── openpgp │ │ │ ├── armor │ │ │ │ ├── armor.go │ │ │ │ └── encode.go │ │ │ ├── canonical_text.go │ │ │ ├── clearsign │ │ │ │ └── clearsign.go │ │ │ ├── elgamal │ │ │ │ └── elgamal.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── keys.go │ │ │ ├── packet │ │ │ │ ├── compressed.go │ │ │ │ ├── config.go │ │ │ │ ├── encrypted_key.go │ │ │ │ ├── literal.go │ │ │ │ ├── ocfb.go │ │ │ │ ├── one_pass_signature.go │ │ │ │ ├── opaque.go │ │ │ │ ├── packet.go │ │ │ │ ├── private_key.go │ │ │ │ ├── public_key.go │ │ │ │ ├── public_key_v3.go │ │ │ │ ├── reader.go │ │ │ │ ├── signature.go │ │ │ │ ├── signature_v3.go │ │ │ │ ├── symmetric_key_encrypted.go │ │ │ │ ├── symmetrically_encrypted.go │ │ │ │ ├── userattribute.go │ │ │ │ └── userid.go │ │ │ ├── read.go │ │ │ ├── s2k │ │ │ │ └── s2k.go │ │ │ └── write.go │ │ ├── otr │ │ │ ├── libotr_test_helper.c │ │ │ ├── otr.go │ │ │ └── smp.go │ │ ├── pbkdf2 │ │ │ └── pbkdf2.go │ │ ├── pkcs12 │ │ │ ├── bmp-string.go │ │ │ ├── crypto.go │ │ │ ├── errors.go │ │ │ ├── internal │ │ │ │ └── rc2 │ │ │ │ │ └── rc2.go │ │ │ ├── mac.go │ │ │ ├── pbkdf.go │ │ │ ├── pkcs12.go │ │ │ └── safebags.go │ │ ├── poly1305 │ │ │ ├── poly1305.go │ │ │ ├── sum_amd64.go │ │ │ ├── sum_amd64.s │ │ │ ├── sum_arm.go │ │ │ ├── sum_arm.s │ │ │ └── sum_ref.go │ │ ├── ripemd160 │ │ │ ├── ripemd160.go │ │ │ └── ripemd160block.go │ │ ├── salsa20 │ │ │ ├── salsa │ │ │ │ ├── hsalsa20.go │ │ │ │ ├── salsa2020_amd64.s │ │ │ │ ├── salsa208.go │ │ │ │ ├── salsa20_amd64.go │ │ │ │ └── salsa20_ref.go │ │ │ └── salsa20.go │ │ ├── scrypt │ │ │ └── scrypt.go │ │ ├── sha3 │ │ │ ├── doc.go │ │ │ ├── hashes.go │ │ │ ├── keccakf.go │ │ │ ├── keccakf_amd64.go │ │ │ ├── keccakf_amd64.s │ │ │ ├── register.go │ │ │ ├── sha3.go │ │ │ ├── shake.go │ │ │ ├── xor.go │ │ │ ├── xor_generic.go │ │ │ └── xor_unaligned.go │ │ ├── ssh │ │ │ ├── agent │ │ │ │ ├── client.go │ │ │ │ ├── forward.go │ │ │ │ ├── keyring.go │ │ │ │ └── server.go │ │ │ ├── buffer.go │ │ │ ├── certs.go │ │ │ ├── channel.go │ │ │ ├── cipher.go │ │ │ ├── client.go │ │ │ ├── client_auth.go │ │ │ ├── common.go │ │ │ ├── connection.go │ │ │ ├── doc.go │ │ │ ├── handshake.go │ │ │ ├── kex.go │ │ │ ├── keys.go │ │ │ ├── knownhosts │ │ │ │ └── knownhosts.go │ │ │ ├── mac.go │ │ │ ├── messages.go │ │ │ ├── mux.go │ │ │ ├── server.go │ │ │ ├── session.go │ │ │ ├── streamlocal.go │ │ │ ├── tcpip.go │ │ │ ├── terminal │ │ │ │ ├── terminal.go │ │ │ │ ├── util.go │ │ │ │ ├── util_bsd.go │ │ │ │ ├── util_linux.go │ │ │ │ ├── util_plan9.go │ │ │ │ ├── util_solaris.go │ │ │ │ └── util_windows.go │ │ │ ├── test │ │ │ │ └── doc.go │ │ │ └── transport.go │ │ ├── tea │ │ │ └── cipher.go │ │ ├── twofish │ │ │ └── twofish.go │ │ ├── xtea │ │ │ ├── block.go │ │ │ └── cipher.go │ │ └── xts │ │ │ └── xts.go │ │ ├── net │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── bpf │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── setter.go │ │ │ ├── vm.go │ │ │ └── vm_instructions.go │ │ ├── codereview.cfg │ │ ├── context │ │ │ ├── context.go │ │ │ ├── ctxhttp │ │ │ │ ├── ctxhttp.go │ │ │ │ └── ctxhttp_pre17.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ └── pre_go19.go │ │ ├── dict │ │ │ └── dict.go │ │ ├── dns │ │ │ └── dnsmessage │ │ │ │ └── message.go │ │ ├── html │ │ │ ├── atom │ │ │ │ ├── atom.go │ │ │ │ └── table.go │ │ │ ├── charset │ │ │ │ └── charset.go │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── doctype.go │ │ │ ├── entity.go │ │ │ ├── escape.go │ │ │ ├── foreign.go │ │ │ ├── node.go │ │ │ ├── parse.go │ │ │ ├── render.go │ │ │ └── token.go │ │ ├── http2 │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── client_conn_pool.go │ │ │ ├── configure_transport.go │ │ │ ├── databuffer.go │ │ │ ├── errors.go │ │ │ ├── flow.go │ │ │ ├── frame.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go17_not18.go │ │ │ ├── go18.go │ │ │ ├── go19.go │ │ │ ├── gotrack.go │ │ │ ├── h2demo │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── h2demo.go │ │ │ │ ├── rootCA.key │ │ │ │ ├── rootCA.pem │ │ │ │ ├── rootCA.srl │ │ │ │ ├── server.crt │ │ │ │ ├── server.key │ │ │ │ └── tmpl.go │ │ │ ├── h2i │ │ │ │ ├── README.md │ │ │ │ └── h2i.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── hpack.go │ │ │ │ ├── huffman.go │ │ │ │ └── tables.go │ │ │ ├── http2.go │ │ │ ├── not_go16.go │ │ │ ├── not_go17.go │ │ │ ├── not_go18.go │ │ │ ├── not_go19.go │ │ │ ├── pipe.go │ │ │ ├── server.go │ │ │ ├── transport.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ └── writesched_random.go │ │ ├── icmp │ │ │ ├── dstunreach.go │ │ │ ├── echo.go │ │ │ ├── endpoint.go │ │ │ ├── extension.go │ │ │ ├── helper_posix.go │ │ │ ├── interface.go │ │ │ ├── ipv4.go │ │ │ ├── ipv6.go │ │ │ ├── listen_posix.go │ │ │ ├── listen_stub.go │ │ │ ├── message.go │ │ │ ├── messagebody.go │ │ │ ├── mpls.go │ │ │ ├── multipart.go │ │ │ ├── packettoobig.go │ │ │ ├── paramprob.go │ │ │ ├── sys_freebsd.go │ │ │ └── timeexceeded.go │ │ ├── idna │ │ │ ├── idna.go │ │ │ ├── punycode.go │ │ │ ├── tables.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── iana │ │ │ │ └── const.go │ │ │ ├── nettest │ │ │ │ ├── helper_bsd.go │ │ │ │ ├── helper_nobsd.go │ │ │ │ ├── helper_posix.go │ │ │ │ ├── helper_stub.go │ │ │ │ ├── helper_unix.go │ │ │ │ ├── helper_windows.go │ │ │ │ ├── interface.go │ │ │ │ ├── rlimit.go │ │ │ │ └── stack.go │ │ │ ├── socket │ │ │ │ ├── cmsghdr.go │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ │ ├── cmsghdr_stub.go │ │ │ │ ├── error_unix.go │ │ │ │ ├── error_windows.go │ │ │ │ ├── iovec_32bit.go │ │ │ │ ├── iovec_64bit.go │ │ │ │ ├── iovec_solaris_64bit.go │ │ │ │ ├── iovec_stub.go │ │ │ │ ├── mmsghdr_stub.go │ │ │ │ ├── mmsghdr_unix.go │ │ │ │ ├── msghdr_bsd.go │ │ │ │ ├── msghdr_bsdvar.go │ │ │ │ ├── msghdr_linux.go │ │ │ │ ├── msghdr_linux_32bit.go │ │ │ │ ├── msghdr_linux_64bit.go │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ ├── msghdr_solaris_64bit.go │ │ │ │ ├── msghdr_stub.go │ │ │ │ ├── rawconn.go │ │ │ │ ├── rawconn_mmsg.go │ │ │ │ ├── rawconn_msg.go │ │ │ │ ├── rawconn_nommsg.go │ │ │ │ ├── rawconn_nomsg.go │ │ │ │ ├── rawconn_stub.go │ │ │ │ ├── reflect.go │ │ │ │ ├── socket.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_bsdvar.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_linux_386.go │ │ │ │ ├── sys_linux_386.s │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ ├── sys_linux_arm.go │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ ├── sys_linux_mips.go │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ ├── sys_linux_s390x.go │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ ├── sys_netbsd.go │ │ │ │ ├── sys_posix.go │ │ │ │ ├── sys_solaris.go │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_unix.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── zsys_darwin_386.go │ │ │ │ ├── zsys_darwin_amd64.go │ │ │ │ ├── zsys_darwin_arm.go │ │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd_386.go │ │ │ │ ├── zsys_netbsd_amd64.go │ │ │ │ ├── zsys_netbsd_arm.go │ │ │ │ ├── zsys_openbsd_386.go │ │ │ │ ├── zsys_openbsd_amd64.go │ │ │ │ ├── zsys_openbsd_arm.go │ │ │ │ └── zsys_solaris_amd64.go │ │ │ └── timeseries │ │ │ │ └── timeseries.go │ │ ├── ipv4 │ │ │ ├── batch.go │ │ │ ├── control.go │ │ │ ├── control_bsd.go │ │ │ ├── control_pktinfo.go │ │ │ ├── control_stub.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.go │ │ │ ├── packet.go │ │ │ ├── packet_go1_8.go │ │ │ ├── packet_go1_9.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_asmreqn.go │ │ │ ├── sys_asmreqn_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── ipv6 │ │ │ ├── batch.go │ │ │ ├── control.go │ │ │ ├── control_rfc2292_unix.go │ │ │ ├── control_rfc3542_unix.go │ │ │ ├── control_stub.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_bsd.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_solaris.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_windows.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── lex │ │ │ └── httplex │ │ │ │ └── httplex.go │ │ ├── lif │ │ │ ├── address.go │ │ │ ├── binary.go │ │ │ ├── lif.go │ │ │ ├── link.go │ │ │ ├── sys.go │ │ │ ├── sys_solaris_amd64.s │ │ │ ├── syscall.go │ │ │ └── zsys_solaris_amd64.go │ │ ├── nettest │ │ │ ├── conntest.go │ │ │ ├── conntest_go16.go │ │ │ └── conntest_go17.go │ │ ├── netutil │ │ │ └── listen.go │ │ ├── proxy │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── proxy.go │ │ │ └── socks5.go │ │ ├── publicsuffix │ │ │ ├── list.go │ │ │ └── table.go │ │ ├── route │ │ │ ├── address.go │ │ │ ├── binary.go │ │ │ ├── interface.go │ │ │ ├── interface_announce.go │ │ │ ├── interface_classic.go │ │ │ ├── interface_freebsd.go │ │ │ ├── interface_multicast.go │ │ │ ├── interface_openbsd.go │ │ │ ├── message.go │ │ │ ├── route.go │ │ │ ├── route_classic.go │ │ │ ├── route_openbsd.go │ │ │ ├── sys.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_openbsd.go │ │ │ ├── syscall.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_netbsd.go │ │ │ └── zsys_openbsd.go │ │ ├── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ ├── trace.go │ │ │ ├── trace_go16.go │ │ │ └── trace_go17.go │ │ ├── webdav │ │ │ ├── file.go │ │ │ ├── file_go1.6.go │ │ │ ├── file_go1.7.go │ │ │ ├── if.go │ │ │ ├── internal │ │ │ │ └── xml │ │ │ │ │ ├── README │ │ │ │ │ ├── marshal.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── typeinfo.go │ │ │ │ │ └── xml.go │ │ │ ├── lock.go │ │ │ ├── prop.go │ │ │ ├── webdav.go │ │ │ └── xml.go │ │ ├── websocket │ │ │ ├── client.go │ │ │ ├── dial.go │ │ │ ├── hybi.go │ │ │ ├── server.go │ │ │ └── websocket.go │ │ └── xsrftoken │ │ │ └── xsrf.go │ │ ├── sync │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── codereview.cfg │ │ ├── errgroup │ │ │ └── errgroup.go │ │ ├── semaphore │ │ │ └── semaphore.go │ │ ├── singleflight │ │ │ └── singleflight.go │ │ └── syncmap │ │ │ └── map.go │ │ ├── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── unix │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── asm_darwin_386.s │ │ │ ├── asm_darwin_amd64.s │ │ │ ├── asm_darwin_arm.s │ │ │ ├── asm_darwin_arm64.s │ │ │ ├── asm_dragonfly_amd64.s │ │ │ ├── asm_freebsd_386.s │ │ │ ├── asm_freebsd_amd64.s │ │ │ ├── asm_freebsd_arm.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_netbsd_386.s │ │ │ ├── asm_netbsd_amd64.s │ │ │ ├── asm_netbsd_arm.s │ │ │ ├── asm_openbsd_386.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_openbsd_arm.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── errors_freebsd_386.go │ │ │ ├── errors_freebsd_amd64.go │ │ │ ├── errors_freebsd_arm.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── mksyscall.pl │ │ │ ├── mksyscall_solaris.pl │ │ │ ├── mksysctl_openbsd.pl │ │ │ ├── mksysnum_darwin.pl │ │ │ ├── mksysnum_dragonfly.pl │ │ │ ├── mksysnum_freebsd.pl │ │ │ ├── mksysnum_netbsd.pl │ │ │ ├── mksysnum_openbsd.pl │ │ │ ├── openbsd_pledge.go │ │ │ ├── pagesize_unix.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_386.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gccgo.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── timestruct.go │ │ │ ├── zerrors_darwin_386.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zptrace386_linux.go │ │ │ ├── zptracearm_linux.go │ │ │ ├── zptracemips_linux.go │ │ │ ├── zptracemipsle_linux.go │ │ │ ├── zsyscall_darwin_386.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_arm.go │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysnum_darwin_386.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── ztypes_darwin_386.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ └── ztypes_solaris_amd64.go │ │ └── windows │ │ │ ├── aliases.go │ │ │ ├── asm_windows_386.s │ │ │ ├── asm_windows_amd64.s │ │ │ ├── asm_windows_arm.s │ │ │ ├── dll_windows.go │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_windows.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ ├── types_windows_arm.go │ │ │ └── zsyscall_windows.go │ │ ├── text │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README │ │ ├── cases │ │ │ ├── cases.go │ │ │ ├── context.go │ │ │ ├── fold.go │ │ │ ├── icu.go │ │ │ ├── info.go │ │ │ ├── map.go │ │ │ ├── tables.go │ │ │ └── trieval.go │ │ ├── cmd │ │ │ └── gotext │ │ │ │ ├── doc.go │ │ │ │ ├── extract.go │ │ │ │ ├── main.go │ │ │ │ └── message.go │ │ ├── codereview.cfg │ │ ├── collate │ │ │ ├── build │ │ │ │ ├── builder.go │ │ │ │ ├── colelem.go │ │ │ │ ├── contract.go │ │ │ │ ├── order.go │ │ │ │ ├── table.go │ │ │ │ └── trie.go │ │ │ ├── collate.go │ │ │ ├── index.go │ │ │ ├── option.go │ │ │ ├── sort.go │ │ │ ├── tables.go │ │ │ └── tools │ │ │ │ └── colcmp │ │ │ │ ├── Makefile │ │ │ │ ├── chars.go │ │ │ │ ├── col.go │ │ │ │ ├── colcmp.go │ │ │ │ ├── darwin.go │ │ │ │ ├── gen.go │ │ │ │ └── icu.go │ │ ├── currency │ │ │ ├── common.go │ │ │ ├── currency.go │ │ │ ├── format.go │ │ │ ├── query.go │ │ │ └── tables.go │ │ ├── doc.go │ │ ├── encoding │ │ │ ├── charmap │ │ │ │ ├── charmap.go │ │ │ │ └── tables.go │ │ │ ├── encoding.go │ │ │ ├── htmlindex │ │ │ │ ├── htmlindex.go │ │ │ │ ├── map.go │ │ │ │ └── tables.go │ │ │ ├── ianaindex │ │ │ │ └── ianaindex.go │ │ │ ├── internal │ │ │ │ ├── identifier │ │ │ │ │ ├── identifier.go │ │ │ │ │ └── mib.go │ │ │ │ └── internal.go │ │ │ ├── japanese │ │ │ │ ├── all.go │ │ │ │ ├── eucjp.go │ │ │ │ ├── iso2022jp.go │ │ │ │ ├── shiftjis.go │ │ │ │ └── tables.go │ │ │ ├── korean │ │ │ │ ├── euckr.go │ │ │ │ └── tables.go │ │ │ ├── simplifiedchinese │ │ │ │ ├── all.go │ │ │ │ ├── gbk.go │ │ │ │ ├── hzgb2312.go │ │ │ │ └── tables.go │ │ │ ├── traditionalchinese │ │ │ │ ├── big5.go │ │ │ │ └── tables.go │ │ │ └── unicode │ │ │ │ ├── override.go │ │ │ │ ├── unicode.go │ │ │ │ └── utf32 │ │ │ │ └── utf32.go │ │ ├── internal │ │ │ ├── colltab │ │ │ │ ├── collelem.go │ │ │ │ ├── colltab.go │ │ │ │ ├── contract.go │ │ │ │ ├── iter.go │ │ │ │ ├── numeric.go │ │ │ │ ├── table.go │ │ │ │ ├── trie.go │ │ │ │ └── weighter.go │ │ │ ├── export │ │ │ │ ├── README │ │ │ │ └── idna │ │ │ │ │ ├── idna.go │ │ │ │ │ ├── punycode.go │ │ │ │ │ ├── tables.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── trieval.go │ │ │ ├── format │ │ │ │ ├── format.go │ │ │ │ └── plural │ │ │ │ │ └── plural.go │ │ │ ├── gen │ │ │ │ ├── code.go │ │ │ │ └── gen.go │ │ │ ├── internal.go │ │ │ ├── match.go │ │ │ ├── number │ │ │ │ ├── common.go │ │ │ │ ├── decimal.go │ │ │ │ ├── extfloat.go │ │ │ │ ├── ftoa.go │ │ │ │ ├── itoa.go │ │ │ │ ├── number.go │ │ │ │ ├── pattern.go │ │ │ │ ├── plural.go │ │ │ │ └── tables.go │ │ │ ├── stringset │ │ │ │ └── set.go │ │ │ ├── tables.go │ │ │ ├── tag │ │ │ │ └── tag.go │ │ │ ├── testtext │ │ │ │ ├── codesize.go │ │ │ │ ├── flag.go │ │ │ │ ├── gc.go │ │ │ │ ├── gccgo.go │ │ │ │ ├── go1_6.go │ │ │ │ ├── go1_7.go │ │ │ │ └── text.go │ │ │ ├── triegen │ │ │ │ ├── compact.go │ │ │ │ ├── print.go │ │ │ │ └── triegen.go │ │ │ ├── ucd │ │ │ │ └── ucd.go │ │ │ └── utf8internal │ │ │ │ └── utf8internal.go │ │ ├── language │ │ │ ├── Makefile │ │ │ ├── common.go │ │ │ ├── coverage.go │ │ │ ├── display │ │ │ │ ├── dict.go │ │ │ │ ├── display.go │ │ │ │ ├── lookup.go │ │ │ │ └── tables.go │ │ │ ├── go1_1.go │ │ │ ├── go1_2.go │ │ │ ├── index.go │ │ │ ├── language.go │ │ │ ├── lookup.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── message │ │ │ ├── catalog.go │ │ │ └── message.go │ │ ├── runes │ │ │ ├── cond.go │ │ │ └── runes.go │ │ ├── search │ │ │ ├── index.go │ │ │ ├── pattern.go │ │ │ ├── search.go │ │ │ └── tables.go │ │ ├── secure │ │ │ ├── bidirule │ │ │ │ └── bidirule.go │ │ │ ├── doc.go │ │ │ └── precis │ │ │ │ ├── class.go │ │ │ │ ├── context.go │ │ │ │ ├── doc.go │ │ │ │ ├── nickname.go │ │ │ │ ├── options.go │ │ │ │ ├── profile.go │ │ │ │ ├── profiles.go │ │ │ │ ├── tables.go │ │ │ │ ├── transformer.go │ │ │ │ └── trieval.go │ │ ├── transform │ │ │ └── transform.go │ │ ├── unicode │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables.go │ │ │ │ └── trieval.go │ │ │ ├── cldr │ │ │ │ ├── base.go │ │ │ │ ├── cldr.go │ │ │ │ ├── collate.go │ │ │ │ ├── decode.go │ │ │ │ ├── resolve.go │ │ │ │ ├── slice.go │ │ │ │ └── xml.go │ │ │ ├── doc.go │ │ │ ├── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables.go │ │ │ │ ├── transform.go │ │ │ │ └── trie.go │ │ │ ├── rangetable │ │ │ │ ├── merge.go │ │ │ │ ├── rangetable.go │ │ │ │ └── tables.go │ │ │ └── runenames │ │ │ │ ├── bits.go │ │ │ │ ├── runenames.go │ │ │ │ └── tables.go │ │ └── width │ │ │ ├── kind_string.go │ │ │ ├── tables.go │ │ │ ├── transform.go │ │ │ ├── trieval.go │ │ │ └── width.go │ │ ├── time │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── rate │ │ │ └── rate.go │ │ └── tools │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── go │ │ ├── ast │ │ └── astutil │ │ │ ├── enclosing.go │ │ │ ├── imports.go │ │ │ ├── rewrite.go │ │ │ └── util.go │ │ ├── buildutil │ │ ├── allpackages.go │ │ ├── fakecontext.go │ │ ├── overlay.go │ │ ├── tags.go │ │ └── util.go │ │ └── loader │ │ ├── cgo.go │ │ ├── cgo_pkgconfig.go │ │ ├── doc.go │ │ ├── loader.go │ │ └── util.go ├── google.golang.org │ ├── genproto │ │ ├── LICENSE │ │ └── googleapis │ │ │ └── rpc │ │ │ └── status │ │ │ └── status.pb.go │ └── grpc │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── backoff.go │ │ ├── balancer.go │ │ ├── balancer │ │ ├── balancer.go │ │ ├── base │ │ │ ├── balancer.go │ │ │ └── base.go │ │ └── roundrobin │ │ │ └── roundrobin.go │ │ ├── balancer_conn_wrappers.go │ │ ├── balancer_v1_wrapper.go │ │ ├── call.go │ │ ├── channelz │ │ ├── funcs.go │ │ └── types.go │ │ ├── clientconn.go │ │ ├── codec.go │ │ ├── codegen.sh │ │ ├── codes │ │ ├── code_string.go │ │ └── codes.go │ │ ├── connectivity │ │ └── connectivity.go │ │ ├── credentials │ │ ├── credentials.go │ │ ├── credentials_util_go17.go │ │ ├── credentials_util_go18.go │ │ └── credentials_util_pre_go17.go │ │ ├── doc.go │ │ ├── encoding │ │ ├── encoding.go │ │ └── proto │ │ │ └── proto.go │ │ ├── envconfig.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── grpclb.go │ │ ├── grpclb │ │ └── grpc_lb_v1 │ │ │ └── messages │ │ │ ├── messages.pb.go │ │ │ └── messages.proto │ │ ├── grpclb_picker.go │ │ ├── grpclb_remote_balancer.go │ │ ├── grpclb_util.go │ │ ├── grpclog │ │ ├── grpclog.go │ │ ├── logger.go │ │ └── loggerv2.go │ │ ├── health │ │ ├── grpc_health_v1 │ │ │ ├── health.pb.go │ │ │ └── health.proto │ │ └── health.go │ │ ├── interceptor.go │ │ ├── internal │ │ └── internal.go │ │ ├── keepalive │ │ └── keepalive.go │ │ ├── metadata │ │ └── metadata.go │ │ ├── naming │ │ ├── dns_resolver.go │ │ ├── go17.go │ │ ├── go18.go │ │ └── naming.go │ │ ├── peer │ │ └── peer.go │ │ ├── picker_wrapper.go │ │ ├── pickfirst.go │ │ ├── proxy.go │ │ ├── resolver │ │ ├── dns │ │ │ ├── dns_resolver.go │ │ │ ├── go17.go │ │ │ └── go18.go │ │ ├── passthrough │ │ │ └── passthrough.go │ │ └── resolver.go │ │ ├── resolver_conn_wrapper.go │ │ ├── rpc_util.go │ │ ├── server.go │ │ ├── service_config.go │ │ ├── stats │ │ ├── handlers.go │ │ └── stats.go │ │ ├── status │ │ └── status.go │ │ ├── stream.go │ │ ├── tap │ │ └── tap.go │ │ ├── trace.go │ │ ├── transport │ │ ├── bdp_estimator.go │ │ ├── controlbuf.go │ │ ├── flowcontrol.go │ │ ├── go16.go │ │ ├── go17.go │ │ ├── handler_server.go │ │ ├── http2_client.go │ │ ├── http2_server.go │ │ ├── http_util.go │ │ ├── log.go │ │ └── transport.go │ │ └── vet.sh ├── gopkg.in │ ├── mgo.v2 │ │ ├── LICENSE │ │ ├── bson │ │ │ ├── LICENSE │ │ │ ├── bson.go │ │ │ ├── decimal.go │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ └── json.go │ │ └── internal │ │ │ └── json │ │ │ ├── LICENSE │ │ │ ├── decode.go │ │ │ ├── encode.go │ │ │ ├── extension.go │ │ │ ├── fold.go │ │ │ ├── indent.go │ │ │ ├── scanner.go │ │ │ ├── stream.go │ │ │ └── tags.go │ └── yaml.v2 │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go ├── k8s.io │ ├── apimachinery │ │ ├── LICENSE │ │ ├── pkg │ │ │ ├── conversion │ │ │ │ ├── BUILD │ │ │ │ ├── cloner.go │ │ │ │ ├── converter.go │ │ │ │ ├── deep_equal.go │ │ │ │ ├── doc.go │ │ │ │ └── helper.go │ │ │ ├── fields │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── fields.go │ │ │ │ ├── requirements.go │ │ │ │ └── selector.go │ │ │ ├── labels │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ ├── labels.go │ │ │ │ ├── selector.go │ │ │ │ └── zz_generated.deepcopy.go │ │ │ ├── selection │ │ │ │ ├── BUILD │ │ │ │ └── operator.go │ │ │ └── util │ │ │ │ ├── errors │ │ │ │ ├── BUILD │ │ │ │ ├── doc.go │ │ │ │ └── errors.go │ │ │ │ ├── runtime │ │ │ │ └── runtime.go │ │ │ │ ├── sets │ │ │ │ ├── BUILD │ │ │ │ ├── byte.go │ │ │ │ ├── doc.go │ │ │ │ ├── empty.go │ │ │ │ ├── int.go │ │ │ │ ├── int64.go │ │ │ │ └── string.go │ │ │ │ └── validation │ │ │ │ ├── BUILD │ │ │ │ ├── field │ │ │ │ ├── BUILD │ │ │ │ ├── errors.go │ │ │ │ └── path.go │ │ │ │ └── validation.go │ │ └── third_party │ │ │ └── forked │ │ │ └── golang │ │ │ └── reflect │ │ │ ├── BUILD │ │ │ └── deep_equal.go │ ├── apiserver │ │ └── pkg │ │ │ └── util │ │ │ └── wsstream │ │ │ ├── BUILD │ │ │ ├── conn.go │ │ │ ├── doc.go │ │ │ └── stream.go │ └── kubernetes │ │ ├── LICENSE │ │ └── pkg │ │ └── kubelet │ │ └── apis │ │ └── cri │ │ └── v1alpha1 │ │ └── runtime │ │ ├── BUILD │ │ ├── api.pb.go │ │ ├── api.proto │ │ └── constants.go └── vendor.json └── version └── version.go /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/.gitignore -------------------------------------------------------------------------------- /.gometalinter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/.gometalinter.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.amd64.cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/Dockerfile.amd64.cross -------------------------------------------------------------------------------- /Dockerfile.arm64.cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/Dockerfile.arm64.cross -------------------------------------------------------------------------------- /Dockerfile.ppc64le.cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/Dockerfile.ppc64le.cross -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/FAQ.md -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/INSTALLATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /VAGRANT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/VAGRANT.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/Vagrantfile -------------------------------------------------------------------------------- /adoptors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/adoptors.md -------------------------------------------------------------------------------- /apis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/README.md -------------------------------------------------------------------------------- /apis/filters/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/filters/parse.go -------------------------------------------------------------------------------- /apis/filters/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/filters/parse_test.go -------------------------------------------------------------------------------- /apis/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/metrics/metrics.go -------------------------------------------------------------------------------- /apis/opts/config/blkio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/config/blkio.go -------------------------------------------------------------------------------- /apis/opts/config/blkio_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/config/blkio_test.go -------------------------------------------------------------------------------- /apis/opts/config/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/config/runtime.go -------------------------------------------------------------------------------- /apis/opts/config/runtime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/config/runtime_test.go -------------------------------------------------------------------------------- /apis/opts/config/ulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/config/ulimit.go -------------------------------------------------------------------------------- /apis/opts/config/ulimit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/config/ulimit_test.go -------------------------------------------------------------------------------- /apis/opts/config/volumes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/config/volumes.go -------------------------------------------------------------------------------- /apis/opts/config/volumes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/config/volumes_test.go -------------------------------------------------------------------------------- /apis/opts/devicemappings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/devicemappings.go -------------------------------------------------------------------------------- /apis/opts/devicemappings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/devicemappings_test.go -------------------------------------------------------------------------------- /apis/opts/diskquota.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/diskquota.go -------------------------------------------------------------------------------- /apis/opts/diskquota_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/diskquota_test.go -------------------------------------------------------------------------------- /apis/opts/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/env.go -------------------------------------------------------------------------------- /apis/opts/env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/env_test.go -------------------------------------------------------------------------------- /apis/opts/hosts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/hosts.go -------------------------------------------------------------------------------- /apis/opts/hosts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/hosts_test.go -------------------------------------------------------------------------------- /apis/opts/intel_rdt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/intel_rdt.go -------------------------------------------------------------------------------- /apis/opts/intel_rdt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/intel_rdt_test.go -------------------------------------------------------------------------------- /apis/opts/labels.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/labels.go -------------------------------------------------------------------------------- /apis/opts/labels_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/labels_test.go -------------------------------------------------------------------------------- /apis/opts/log_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/log_options.go -------------------------------------------------------------------------------- /apis/opts/log_options_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/log_options_test.go -------------------------------------------------------------------------------- /apis/opts/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/memory.go -------------------------------------------------------------------------------- /apis/opts/memory_reservation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/memory_reservation.go -------------------------------------------------------------------------------- /apis/opts/memory_swap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/memory_swap.go -------------------------------------------------------------------------------- /apis/opts/memory_swap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/memory_swap_test.go -------------------------------------------------------------------------------- /apis/opts/memory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/memory_test.go -------------------------------------------------------------------------------- /apis/opts/mountpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/mountpoint.go -------------------------------------------------------------------------------- /apis/opts/mountpoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/mountpoint_test.go -------------------------------------------------------------------------------- /apis/opts/networks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/networks.go -------------------------------------------------------------------------------- /apis/opts/networks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/networks_test.go -------------------------------------------------------------------------------- /apis/opts/portbindings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/portbindings.go -------------------------------------------------------------------------------- /apis/opts/portbindings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/portbindings_test.go -------------------------------------------------------------------------------- /apis/opts/ports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/ports.go -------------------------------------------------------------------------------- /apis/opts/ports_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/ports_test.go -------------------------------------------------------------------------------- /apis/opts/restart_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/restart_policy.go -------------------------------------------------------------------------------- /apis/opts/restart_policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/restart_policy_test.go -------------------------------------------------------------------------------- /apis/opts/shm_size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/shm_size.go -------------------------------------------------------------------------------- /apis/opts/shm_size_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/shm_size_test.go -------------------------------------------------------------------------------- /apis/opts/spec_annotation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/spec_annotation.go -------------------------------------------------------------------------------- /apis/opts/spec_annotation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/spec_annotation_test.go -------------------------------------------------------------------------------- /apis/opts/sysctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/sysctl.go -------------------------------------------------------------------------------- /apis/opts/sysctl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/opts/sysctl_test.go -------------------------------------------------------------------------------- /apis/server/container_bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/server/container_bridge.go -------------------------------------------------------------------------------- /apis/server/copy_bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/server/copy_bridge.go -------------------------------------------------------------------------------- /apis/server/cri_bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/server/cri_bridge.go -------------------------------------------------------------------------------- /apis/server/exec_bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/server/exec_bridge.go -------------------------------------------------------------------------------- /apis/server/image_bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/server/image_bridge.go -------------------------------------------------------------------------------- /apis/server/image_bridge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/server/image_bridge_test.go -------------------------------------------------------------------------------- /apis/server/log_filter_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/server/log_filter_writer.go -------------------------------------------------------------------------------- /apis/server/network_bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/server/network_bridge.go -------------------------------------------------------------------------------- /apis/server/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/server/router.go -------------------------------------------------------------------------------- /apis/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/server/server.go -------------------------------------------------------------------------------- /apis/server/system_bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/server/system_bridge.go -------------------------------------------------------------------------------- /apis/server/types/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/server/types/handler.go -------------------------------------------------------------------------------- /apis/server/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/server/utils.go -------------------------------------------------------------------------------- /apis/server/volume_bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/server/volume_bridge.go -------------------------------------------------------------------------------- /apis/swagger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/swagger.yml -------------------------------------------------------------------------------- /apis/types/auth_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/auth_config.go -------------------------------------------------------------------------------- /apis/types/auth_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/auth_response.go -------------------------------------------------------------------------------- /apis/types/blkio_stat_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/blkio_stat_entry.go -------------------------------------------------------------------------------- /apis/types/blkio_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/blkio_stats.go -------------------------------------------------------------------------------- /apis/types/checkpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/checkpoint.go -------------------------------------------------------------------------------- /apis/types/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/commit.go -------------------------------------------------------------------------------- /apis/types/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/container.go -------------------------------------------------------------------------------- /apis/types/container_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/container_config.go -------------------------------------------------------------------------------- /apis/types/container_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/container_json.go -------------------------------------------------------------------------------- /apis/types/container_path_stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/container_path_stat.go -------------------------------------------------------------------------------- /apis/types/container_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/container_state.go -------------------------------------------------------------------------------- /apis/types/container_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/container_stats.go -------------------------------------------------------------------------------- /apis/types/cpu_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/cpu_stats.go -------------------------------------------------------------------------------- /apis/types/cpu_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/cpu_usage.go -------------------------------------------------------------------------------- /apis/types/daemon_update_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/daemon_update_config.go -------------------------------------------------------------------------------- /apis/types/device_mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/device_mapping.go -------------------------------------------------------------------------------- /apis/types/endpoint_resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/endpoint_resource.go -------------------------------------------------------------------------------- /apis/types/endpoint_settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/endpoint_settings.go -------------------------------------------------------------------------------- /apis/types/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/error.go -------------------------------------------------------------------------------- /apis/types/event_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/event_type.go -------------------------------------------------------------------------------- /apis/types/events_actor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/events_actor.go -------------------------------------------------------------------------------- /apis/types/events_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/events_message.go -------------------------------------------------------------------------------- /apis/types/exec_create_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/exec_create_config.go -------------------------------------------------------------------------------- /apis/types/exec_create_resp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/exec_create_resp.go -------------------------------------------------------------------------------- /apis/types/exec_start_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/exec_start_config.go -------------------------------------------------------------------------------- /apis/types/graph_driver_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/graph_driver_data.go -------------------------------------------------------------------------------- /apis/types/history_result_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/history_result_item.go -------------------------------------------------------------------------------- /apis/types/host_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/host_config.go -------------------------------------------------------------------------------- /apis/types/image_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/image_info.go -------------------------------------------------------------------------------- /apis/types/index_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/index_info.go -------------------------------------------------------------------------------- /apis/types/ip_a_m.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/ip_a_m.go -------------------------------------------------------------------------------- /apis/types/ip_a_m_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/ip_a_m_config.go -------------------------------------------------------------------------------- /apis/types/ip_address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/ip_address.go -------------------------------------------------------------------------------- /apis/types/log_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/log_config.go -------------------------------------------------------------------------------- /apis/types/memory_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/memory_stats.go -------------------------------------------------------------------------------- /apis/types/mount_point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/mount_point.go -------------------------------------------------------------------------------- /apis/types/network_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/network_connect.go -------------------------------------------------------------------------------- /apis/types/network_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/network_create.go -------------------------------------------------------------------------------- /apis/types/network_create_resp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/network_create_resp.go -------------------------------------------------------------------------------- /apis/types/network_disconnect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/network_disconnect.go -------------------------------------------------------------------------------- /apis/types/network_inspect_resp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/network_inspect_resp.go -------------------------------------------------------------------------------- /apis/types/network_resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/network_resource.go -------------------------------------------------------------------------------- /apis/types/network_settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/network_settings.go -------------------------------------------------------------------------------- /apis/types/network_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/network_stats.go -------------------------------------------------------------------------------- /apis/types/networking_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/networking_config.go -------------------------------------------------------------------------------- /apis/types/nvidia_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/nvidia_config.go -------------------------------------------------------------------------------- /apis/types/pids_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/pids_stats.go -------------------------------------------------------------------------------- /apis/types/port_binding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/port_binding.go -------------------------------------------------------------------------------- /apis/types/port_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/port_map.go -------------------------------------------------------------------------------- /apis/types/process_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/process_config.go -------------------------------------------------------------------------------- /apis/types/resize_options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/resize_options.go -------------------------------------------------------------------------------- /apis/types/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/resources.go -------------------------------------------------------------------------------- /apis/types/restart_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/restart_policy.go -------------------------------------------------------------------------------- /apis/types/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/runtime.go -------------------------------------------------------------------------------- /apis/types/search_result_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/search_result_item.go -------------------------------------------------------------------------------- /apis/types/snapshotter_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/snapshotter_data.go -------------------------------------------------------------------------------- /apis/types/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/status.go -------------------------------------------------------------------------------- /apis/types/system_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/system_info.go -------------------------------------------------------------------------------- /apis/types/system_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/system_version.go -------------------------------------------------------------------------------- /apis/types/throttle_device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/throttle_device.go -------------------------------------------------------------------------------- /apis/types/throttling_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/throttling_data.go -------------------------------------------------------------------------------- /apis/types/ulimit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/ulimit.go -------------------------------------------------------------------------------- /apis/types/update_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/update_config.go -------------------------------------------------------------------------------- /apis/types/volume_create_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/volume_create_config.go -------------------------------------------------------------------------------- /apis/types/volume_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/volume_info.go -------------------------------------------------------------------------------- /apis/types/volume_list_resp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/volume_list_resp.go -------------------------------------------------------------------------------- /apis/types/weight_device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/apis/types/weight_device.go -------------------------------------------------------------------------------- /cli/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/build.go -------------------------------------------------------------------------------- /cli/build/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/build/build.go -------------------------------------------------------------------------------- /cli/build/opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/build/opts.go -------------------------------------------------------------------------------- /cli/checkpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/checkpoint.go -------------------------------------------------------------------------------- /cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/cli.go -------------------------------------------------------------------------------- /cli/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/command.go -------------------------------------------------------------------------------- /cli/commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/commit.go -------------------------------------------------------------------------------- /cli/common_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/common_flags.go -------------------------------------------------------------------------------- /cli/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/container.go -------------------------------------------------------------------------------- /cli/cp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/cp.go -------------------------------------------------------------------------------- /cli/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/create.go -------------------------------------------------------------------------------- /cli/display.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/display.go -------------------------------------------------------------------------------- /cli/envfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/envfile.go -------------------------------------------------------------------------------- /cli/envfile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/envfile_test.go -------------------------------------------------------------------------------- /cli/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/events.go -------------------------------------------------------------------------------- /cli/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/exec.go -------------------------------------------------------------------------------- /cli/formatter/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/formatter/container.go -------------------------------------------------------------------------------- /cli/formatter/container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/formatter/container_test.go -------------------------------------------------------------------------------- /cli/formatter/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/formatter/formatter.go -------------------------------------------------------------------------------- /cli/formatter/formatter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/formatter/formatter_test.go -------------------------------------------------------------------------------- /cli/generate_doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/generate_doc.go -------------------------------------------------------------------------------- /cli/history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/history.go -------------------------------------------------------------------------------- /cli/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/image.go -------------------------------------------------------------------------------- /cli/image_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/image_inspect.go -------------------------------------------------------------------------------- /cli/image_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/image_list.go -------------------------------------------------------------------------------- /cli/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/info.go -------------------------------------------------------------------------------- /cli/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/inspect.go -------------------------------------------------------------------------------- /cli/inspect/inspector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/inspect/inspector.go -------------------------------------------------------------------------------- /cli/inspect/inspector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/inspect/inspector_test.go -------------------------------------------------------------------------------- /cli/kill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/kill.go -------------------------------------------------------------------------------- /cli/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/load.go -------------------------------------------------------------------------------- /cli/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/login.go -------------------------------------------------------------------------------- /cli/logout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/logout.go -------------------------------------------------------------------------------- /cli/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/logs.go -------------------------------------------------------------------------------- /cli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/main.go -------------------------------------------------------------------------------- /cli/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/network.go -------------------------------------------------------------------------------- /cli/pause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/pause.go -------------------------------------------------------------------------------- /cli/port.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/port.go -------------------------------------------------------------------------------- /cli/ps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/ps.go -------------------------------------------------------------------------------- /cli/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/pull.go -------------------------------------------------------------------------------- /cli/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/push.go -------------------------------------------------------------------------------- /cli/remount_lxcfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/remount_lxcfs.go -------------------------------------------------------------------------------- /cli/rename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/rename.go -------------------------------------------------------------------------------- /cli/restart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/restart.go -------------------------------------------------------------------------------- /cli/rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/rm.go -------------------------------------------------------------------------------- /cli/rmi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/rmi.go -------------------------------------------------------------------------------- /cli/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/run.go -------------------------------------------------------------------------------- /cli/save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/save.go -------------------------------------------------------------------------------- /cli/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/search.go -------------------------------------------------------------------------------- /cli/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/start.go -------------------------------------------------------------------------------- /cli/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/stats.go -------------------------------------------------------------------------------- /cli/stats_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/stats_helpers.go -------------------------------------------------------------------------------- /cli/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/stop.go -------------------------------------------------------------------------------- /cli/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/tag.go -------------------------------------------------------------------------------- /cli/top.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/top.go -------------------------------------------------------------------------------- /cli/unpause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/unpause.go -------------------------------------------------------------------------------- /cli/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/update.go -------------------------------------------------------------------------------- /cli/update_daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/update_daemon.go -------------------------------------------------------------------------------- /cli/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/upgrade.go -------------------------------------------------------------------------------- /cli/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/version.go -------------------------------------------------------------------------------- /cli/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/volume.go -------------------------------------------------------------------------------- /cli/volume_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/volume_test.go -------------------------------------------------------------------------------- /cli/wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cli/wait.go -------------------------------------------------------------------------------- /client/checkpoint_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/checkpoint_create.go -------------------------------------------------------------------------------- /client/checkpoint_create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/checkpoint_create_test.go -------------------------------------------------------------------------------- /client/checkpoint_delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/checkpoint_delete.go -------------------------------------------------------------------------------- /client/checkpoint_delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/checkpoint_delete_test.go -------------------------------------------------------------------------------- /client/checkpoint_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/checkpoint_list.go -------------------------------------------------------------------------------- /client/checkpoint_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/checkpoint_list_test.go -------------------------------------------------------------------------------- /client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/client.go -------------------------------------------------------------------------------- /client/client_mock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/client_mock_test.go -------------------------------------------------------------------------------- /client/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/client_test.go -------------------------------------------------------------------------------- /client/container_attach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_attach.go -------------------------------------------------------------------------------- /client/container_commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_commit.go -------------------------------------------------------------------------------- /client/container_commit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_commit_test.go -------------------------------------------------------------------------------- /client/container_copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_copy.go -------------------------------------------------------------------------------- /client/container_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_create.go -------------------------------------------------------------------------------- /client/container_create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_create_test.go -------------------------------------------------------------------------------- /client/container_exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_exec.go -------------------------------------------------------------------------------- /client/container_exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_exec_test.go -------------------------------------------------------------------------------- /client/container_get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_get.go -------------------------------------------------------------------------------- /client/container_get_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_get_test.go -------------------------------------------------------------------------------- /client/container_kill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_kill.go -------------------------------------------------------------------------------- /client/container_kill_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_kill_test.go -------------------------------------------------------------------------------- /client/container_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_list.go -------------------------------------------------------------------------------- /client/container_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_list_test.go -------------------------------------------------------------------------------- /client/container_logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_logs.go -------------------------------------------------------------------------------- /client/container_logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_logs_test.go -------------------------------------------------------------------------------- /client/container_pause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_pause.go -------------------------------------------------------------------------------- /client/container_pause_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_pause_test.go -------------------------------------------------------------------------------- /client/container_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_remove.go -------------------------------------------------------------------------------- /client/container_remove_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_remove_test.go -------------------------------------------------------------------------------- /client/container_rename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_rename.go -------------------------------------------------------------------------------- /client/container_rename_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_rename_test.go -------------------------------------------------------------------------------- /client/container_resize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_resize.go -------------------------------------------------------------------------------- /client/container_resize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_resize_test.go -------------------------------------------------------------------------------- /client/container_restart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_restart.go -------------------------------------------------------------------------------- /client/container_restart_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_restart_test.go -------------------------------------------------------------------------------- /client/container_start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_start.go -------------------------------------------------------------------------------- /client/container_start_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_start_test.go -------------------------------------------------------------------------------- /client/container_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_stats.go -------------------------------------------------------------------------------- /client/container_stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_stop.go -------------------------------------------------------------------------------- /client/container_stop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_stop_test.go -------------------------------------------------------------------------------- /client/container_top.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_top.go -------------------------------------------------------------------------------- /client/container_top_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_top_test.go -------------------------------------------------------------------------------- /client/container_unpause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_unpause.go -------------------------------------------------------------------------------- /client/container_unpause_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_unpause_test.go -------------------------------------------------------------------------------- /client/container_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_update.go -------------------------------------------------------------------------------- /client/container_update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_update_test.go -------------------------------------------------------------------------------- /client/container_upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_upgrade.go -------------------------------------------------------------------------------- /client/container_upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_upgrade_test.go -------------------------------------------------------------------------------- /client/container_wait.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_wait.go -------------------------------------------------------------------------------- /client/container_wait_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/container_wait_test.go -------------------------------------------------------------------------------- /client/daemon_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/daemon_update.go -------------------------------------------------------------------------------- /client/daemon_update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/daemon_update_test.go -------------------------------------------------------------------------------- /client/image_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_history.go -------------------------------------------------------------------------------- /client/image_history_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_history_test.go -------------------------------------------------------------------------------- /client/image_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_inspect.go -------------------------------------------------------------------------------- /client/image_inspect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_inspect_test.go -------------------------------------------------------------------------------- /client/image_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_list.go -------------------------------------------------------------------------------- /client/image_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_list_test.go -------------------------------------------------------------------------------- /client/image_load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_load.go -------------------------------------------------------------------------------- /client/image_load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_load_test.go -------------------------------------------------------------------------------- /client/image_pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_pull.go -------------------------------------------------------------------------------- /client/image_pull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_pull_test.go -------------------------------------------------------------------------------- /client/image_push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_push.go -------------------------------------------------------------------------------- /client/image_push_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_push_test.go -------------------------------------------------------------------------------- /client/image_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_remove.go -------------------------------------------------------------------------------- /client/image_remove_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_remove_test.go -------------------------------------------------------------------------------- /client/image_save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_save.go -------------------------------------------------------------------------------- /client/image_save_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_save_test.go -------------------------------------------------------------------------------- /client/image_search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_search.go -------------------------------------------------------------------------------- /client/image_search_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_search_test.go -------------------------------------------------------------------------------- /client/image_tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_tag.go -------------------------------------------------------------------------------- /client/image_tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/image_tag_test.go -------------------------------------------------------------------------------- /client/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/interface.go -------------------------------------------------------------------------------- /client/network_connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/network_connect.go -------------------------------------------------------------------------------- /client/network_connect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/network_connect_test.go -------------------------------------------------------------------------------- /client/network_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/network_create.go -------------------------------------------------------------------------------- /client/network_create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/network_create_test.go -------------------------------------------------------------------------------- /client/network_disconnect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/network_disconnect.go -------------------------------------------------------------------------------- /client/network_disconnect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/network_disconnect_test.go -------------------------------------------------------------------------------- /client/network_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/network_inspect.go -------------------------------------------------------------------------------- /client/network_inspect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/network_inspect_test.go -------------------------------------------------------------------------------- /client/network_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/network_list.go -------------------------------------------------------------------------------- /client/network_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/network_list_test.go -------------------------------------------------------------------------------- /client/network_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/network_remove.go -------------------------------------------------------------------------------- /client/network_remove_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/network_remove_test.go -------------------------------------------------------------------------------- /client/registry_login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/registry_login.go -------------------------------------------------------------------------------- /client/registry_login_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/registry_login_test.go -------------------------------------------------------------------------------- /client/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/request.go -------------------------------------------------------------------------------- /client/system_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/system_events.go -------------------------------------------------------------------------------- /client/system_events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/system_events_test.go -------------------------------------------------------------------------------- /client/system_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/system_info.go -------------------------------------------------------------------------------- /client/system_info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/system_info_test.go -------------------------------------------------------------------------------- /client/system_ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/system_ping.go -------------------------------------------------------------------------------- /client/system_ping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/system_ping_test.go -------------------------------------------------------------------------------- /client/system_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/system_version.go -------------------------------------------------------------------------------- /client/system_version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/system_version_test.go -------------------------------------------------------------------------------- /client/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/utils.go -------------------------------------------------------------------------------- /client/volume_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/volume_create.go -------------------------------------------------------------------------------- /client/volume_create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/volume_create_test.go -------------------------------------------------------------------------------- /client/volume_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/volume_inspect.go -------------------------------------------------------------------------------- /client/volume_inspect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/volume_inspect_test.go -------------------------------------------------------------------------------- /client/volume_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/volume_list.go -------------------------------------------------------------------------------- /client/volume_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/volume_list_test.go -------------------------------------------------------------------------------- /client/volume_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/volume_remove.go -------------------------------------------------------------------------------- /client/volume_remove_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/client/volume_remove_test.go -------------------------------------------------------------------------------- /contrib/completion/bash/pouch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/contrib/completion/bash/pouch -------------------------------------------------------------------------------- /credential/config_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/credential/config_file.go -------------------------------------------------------------------------------- /credential/credential.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/credential/credential.go -------------------------------------------------------------------------------- /credential/file_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/credential/file_store.go -------------------------------------------------------------------------------- /credential/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/credential/helpers.go -------------------------------------------------------------------------------- /credential/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/credential/helpers_test.go -------------------------------------------------------------------------------- /credential/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/credential/store.go -------------------------------------------------------------------------------- /cri/annotations/annotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/annotations/annotations.go -------------------------------------------------------------------------------- /cri/apis/v1alpha2/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/apis/v1alpha2/BUILD -------------------------------------------------------------------------------- /cri/apis/v1alpha2/api.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/apis/v1alpha2/api.pb.go -------------------------------------------------------------------------------- /cri/apis/v1alpha2/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/apis/v1alpha2/api.proto -------------------------------------------------------------------------------- /cri/apis/v1alpha2/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/apis/v1alpha2/constants.go -------------------------------------------------------------------------------- /cri/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/config/config.go -------------------------------------------------------------------------------- /cri/criservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/criservice.go -------------------------------------------------------------------------------- /cri/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/metrics/metrics.go -------------------------------------------------------------------------------- /cri/ocicni/cni_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/ocicni/cni_manager.go -------------------------------------------------------------------------------- /cri/ocicni/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/ocicni/interface.go -------------------------------------------------------------------------------- /cri/ocicni/netns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/ocicni/netns.go -------------------------------------------------------------------------------- /cri/stream/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/stream/config.go -------------------------------------------------------------------------------- /cri/stream/constant/protocols.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/stream/constant/protocols.go -------------------------------------------------------------------------------- /cri/stream/constant/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/stream/constant/types.go -------------------------------------------------------------------------------- /cri/stream/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/stream/docs.go -------------------------------------------------------------------------------- /cri/stream/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/stream/errors.go -------------------------------------------------------------------------------- /cri/stream/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/stream/errors_test.go -------------------------------------------------------------------------------- /cri/stream/remotecommand/attach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/stream/remotecommand/attach.go -------------------------------------------------------------------------------- /cri/stream/remotecommand/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/stream/remotecommand/errors.go -------------------------------------------------------------------------------- /cri/stream/remotecommand/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/stream/remotecommand/exec.go -------------------------------------------------------------------------------- /cri/stream/request_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/stream/request_cache.go -------------------------------------------------------------------------------- /cri/stream/request_cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/stream/request_cache_test.go -------------------------------------------------------------------------------- /cri/stream/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/stream/router.go -------------------------------------------------------------------------------- /cri/stream/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/stream/runtime.go -------------------------------------------------------------------------------- /cri/v1alpha2/container_pause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/v1alpha2/container_pause.go -------------------------------------------------------------------------------- /cri/v1alpha2/container_unpause.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/v1alpha2/container_unpause.go -------------------------------------------------------------------------------- /cri/v1alpha2/cri.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/v1alpha2/cri.go -------------------------------------------------------------------------------- /cri/v1alpha2/cri_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/v1alpha2/cri_utils.go -------------------------------------------------------------------------------- /cri/v1alpha2/cri_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/v1alpha2/cri_utils_test.go -------------------------------------------------------------------------------- /cri/v1alpha2/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/v1alpha2/service.go -------------------------------------------------------------------------------- /cri/v1alpha2/stream_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/v1alpha2/stream_server.go -------------------------------------------------------------------------------- /cri/v1alpha2/types/sandbox_meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/cri/v1alpha2/types/sandbox_meta.go -------------------------------------------------------------------------------- /ctrd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/README.md -------------------------------------------------------------------------------- /ctrd/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/client.go -------------------------------------------------------------------------------- /ctrd/client_opts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/client_opts.go -------------------------------------------------------------------------------- /ctrd/client_opts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/client_opts_test.go -------------------------------------------------------------------------------- /ctrd/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/container.go -------------------------------------------------------------------------------- /ctrd/container_lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/container_lock.go -------------------------------------------------------------------------------- /ctrd/container_lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/container_lock_test.go -------------------------------------------------------------------------------- /ctrd/container_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/container_types.go -------------------------------------------------------------------------------- /ctrd/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/events.go -------------------------------------------------------------------------------- /ctrd/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/image.go -------------------------------------------------------------------------------- /ctrd/image_commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/image_commit.go -------------------------------------------------------------------------------- /ctrd/image_proxy_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/image_proxy_util.go -------------------------------------------------------------------------------- /ctrd/image_proxy_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/image_proxy_util_test.go -------------------------------------------------------------------------------- /ctrd/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/interface.go -------------------------------------------------------------------------------- /ctrd/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/snapshot.go -------------------------------------------------------------------------------- /ctrd/snapshotter_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/snapshotter_key.go -------------------------------------------------------------------------------- /ctrd/snapshotter_key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/snapshotter_key_test.go -------------------------------------------------------------------------------- /ctrd/supervisord/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/supervisord/config.go -------------------------------------------------------------------------------- /ctrd/supervisord/daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/supervisord/daemon.go -------------------------------------------------------------------------------- /ctrd/supervisord/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/supervisord/option.go -------------------------------------------------------------------------------- /ctrd/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/utils.go -------------------------------------------------------------------------------- /ctrd/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/utils_test.go -------------------------------------------------------------------------------- /ctrd/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/watch.go -------------------------------------------------------------------------------- /ctrd/wrapper_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/ctrd/wrapper_client.go -------------------------------------------------------------------------------- /daemon/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/builder.go -------------------------------------------------------------------------------- /daemon/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/config/config.go -------------------------------------------------------------------------------- /daemon/config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/config/config_test.go -------------------------------------------------------------------------------- /daemon/containerio/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/containerio/cache.go -------------------------------------------------------------------------------- /daemon/containerio/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/containerio/cache_test.go -------------------------------------------------------------------------------- /daemon/containerio/cio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/containerio/cio.go -------------------------------------------------------------------------------- /daemon/containerio/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/containerio/io.go -------------------------------------------------------------------------------- /daemon/daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/daemon.go -------------------------------------------------------------------------------- /daemon/daemon_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/daemon_utils.go -------------------------------------------------------------------------------- /daemon/daemon_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/daemon_utils_test.go -------------------------------------------------------------------------------- /daemon/events/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/events/events.go -------------------------------------------------------------------------------- /daemon/events/events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/events/events_test.go -------------------------------------------------------------------------------- /daemon/events/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/events/filter.go -------------------------------------------------------------------------------- /daemon/events/filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/events/filter_test.go -------------------------------------------------------------------------------- /daemon/logger/copier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/copier.go -------------------------------------------------------------------------------- /daemon/logger/copier_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/copier_test.go -------------------------------------------------------------------------------- /daemon/logger/crilog/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/crilog/log.go -------------------------------------------------------------------------------- /daemon/logger/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/info.go -------------------------------------------------------------------------------- /daemon/logger/info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/info_test.go -------------------------------------------------------------------------------- /daemon/logger/jsonfile/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/jsonfile/encode.go -------------------------------------------------------------------------------- /daemon/logger/jsonfile/jsonfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/jsonfile/jsonfile.go -------------------------------------------------------------------------------- /daemon/logger/jsonfile/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/jsonfile/utils.go -------------------------------------------------------------------------------- /daemon/logger/logbuffer/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/logbuffer/list.go -------------------------------------------------------------------------------- /daemon/logger/logbuffer/logbuff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/logbuffer/logbuff.go -------------------------------------------------------------------------------- /daemon/logger/loggerutils/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/loggerutils/tag.go -------------------------------------------------------------------------------- /daemon/logger/logmessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/logmessage.go -------------------------------------------------------------------------------- /daemon/logger/syslog/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/syslog/conn.go -------------------------------------------------------------------------------- /daemon/logger/syslog/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/syslog/const.go -------------------------------------------------------------------------------- /daemon/logger/syslog/dialer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/syslog/dialer.go -------------------------------------------------------------------------------- /daemon/logger/syslog/fmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/syslog/fmt.go -------------------------------------------------------------------------------- /daemon/logger/syslog/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/syslog/syslog.go -------------------------------------------------------------------------------- /daemon/logger/syslog/test/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/syslog/test/ca.pem -------------------------------------------------------------------------------- /daemon/logger/syslog/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/syslog/validate.go -------------------------------------------------------------------------------- /daemon/logger/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/logger/types.go -------------------------------------------------------------------------------- /daemon/mgr/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container.go -------------------------------------------------------------------------------- /daemon/mgr/container_checkpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_checkpoint.go -------------------------------------------------------------------------------- /daemon/mgr/container_commit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_commit.go -------------------------------------------------------------------------------- /daemon/mgr/container_copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_copy.go -------------------------------------------------------------------------------- /daemon/mgr/container_envs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_envs.go -------------------------------------------------------------------------------- /daemon/mgr/container_envs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_envs_test.go -------------------------------------------------------------------------------- /daemon/mgr/container_exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_exec.go -------------------------------------------------------------------------------- /daemon/mgr/container_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_list.go -------------------------------------------------------------------------------- /daemon/mgr/container_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_list_test.go -------------------------------------------------------------------------------- /daemon/mgr/container_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_logger.go -------------------------------------------------------------------------------- /daemon/mgr/container_logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_logs.go -------------------------------------------------------------------------------- /daemon/mgr/container_logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_logs_test.go -------------------------------------------------------------------------------- /daemon/mgr/container_monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_monitor.go -------------------------------------------------------------------------------- /daemon/mgr/container_rich_mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_rich_mode.go -------------------------------------------------------------------------------- /daemon/mgr/container_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_state.go -------------------------------------------------------------------------------- /daemon/mgr/container_stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_stats.go -------------------------------------------------------------------------------- /daemon/mgr/container_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_storage.go -------------------------------------------------------------------------------- /daemon/mgr/container_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_types.go -------------------------------------------------------------------------------- /daemon/mgr/container_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_types_test.go -------------------------------------------------------------------------------- /daemon/mgr/container_upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_upgrade.go -------------------------------------------------------------------------------- /daemon/mgr/container_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_utils.go -------------------------------------------------------------------------------- /daemon/mgr/container_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_utils_test.go -------------------------------------------------------------------------------- /daemon/mgr/container_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/container_validation.go -------------------------------------------------------------------------------- /daemon/mgr/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/events.go -------------------------------------------------------------------------------- /daemon/mgr/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/image.go -------------------------------------------------------------------------------- /daemon/mgr/image_load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/image_load.go -------------------------------------------------------------------------------- /daemon/mgr/image_save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/image_save.go -------------------------------------------------------------------------------- /daemon/mgr/image_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/image_store.go -------------------------------------------------------------------------------- /daemon/mgr/image_store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/image_store_test.go -------------------------------------------------------------------------------- /daemon/mgr/image_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/image_types.go -------------------------------------------------------------------------------- /daemon/mgr/image_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/image_utils.go -------------------------------------------------------------------------------- /daemon/mgr/image_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/image_utils_test.go -------------------------------------------------------------------------------- /daemon/mgr/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/network.go -------------------------------------------------------------------------------- /daemon/mgr/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/network_test.go -------------------------------------------------------------------------------- /daemon/mgr/network_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/network_utils.go -------------------------------------------------------------------------------- /daemon/mgr/snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/snapshot.go -------------------------------------------------------------------------------- /daemon/mgr/snapshot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/snapshot_test.go -------------------------------------------------------------------------------- /daemon/mgr/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/spec.go -------------------------------------------------------------------------------- /daemon/mgr/spec_annotations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/spec_annotations.go -------------------------------------------------------------------------------- /daemon/mgr/spec_apparmor_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/spec_apparmor_linux.go -------------------------------------------------------------------------------- /daemon/mgr/spec_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/spec_hook.go -------------------------------------------------------------------------------- /daemon/mgr/spec_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/spec_linux.go -------------------------------------------------------------------------------- /daemon/mgr/spec_mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/spec_mount.go -------------------------------------------------------------------------------- /daemon/mgr/spec_mount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/spec_mount_test.go -------------------------------------------------------------------------------- /daemon/mgr/spec_nvidia_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/spec_nvidia_hook.go -------------------------------------------------------------------------------- /daemon/mgr/spec_process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/spec_process.go -------------------------------------------------------------------------------- /daemon/mgr/spec_seccomp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/spec_seccomp_linux.go -------------------------------------------------------------------------------- /daemon/mgr/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/system.go -------------------------------------------------------------------------------- /daemon/mgr/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/daemon/mgr/volume.go -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/api/CRI_API.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/api/CRI_API.html -------------------------------------------------------------------------------- /docs/api/GRPC_API.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api/GRPC_API_CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api/HTTP_API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/api/HTTP_API.md -------------------------------------------------------------------------------- /docs/api/HTTP_API_CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/api/HTTP_API_CHANGELOG.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/commandline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/README.md -------------------------------------------------------------------------------- /docs/commandline/pouch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch.md -------------------------------------------------------------------------------- /docs/commandline/pouch_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_build.md -------------------------------------------------------------------------------- /docs/commandline/pouch_commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_commit.md -------------------------------------------------------------------------------- /docs/commandline/pouch_cp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_cp.md -------------------------------------------------------------------------------- /docs/commandline/pouch_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_create.md -------------------------------------------------------------------------------- /docs/commandline/pouch_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_events.md -------------------------------------------------------------------------------- /docs/commandline/pouch_exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_exec.md -------------------------------------------------------------------------------- /docs/commandline/pouch_gen-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_gen-doc.md -------------------------------------------------------------------------------- /docs/commandline/pouch_history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_history.md -------------------------------------------------------------------------------- /docs/commandline/pouch_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_image.md -------------------------------------------------------------------------------- /docs/commandline/pouch_images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_images.md -------------------------------------------------------------------------------- /docs/commandline/pouch_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_info.md -------------------------------------------------------------------------------- /docs/commandline/pouch_inspect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_inspect.md -------------------------------------------------------------------------------- /docs/commandline/pouch_kill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_kill.md -------------------------------------------------------------------------------- /docs/commandline/pouch_load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_load.md -------------------------------------------------------------------------------- /docs/commandline/pouch_login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_login.md -------------------------------------------------------------------------------- /docs/commandline/pouch_logout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_logout.md -------------------------------------------------------------------------------- /docs/commandline/pouch_logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_logs.md -------------------------------------------------------------------------------- /docs/commandline/pouch_network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_network.md -------------------------------------------------------------------------------- /docs/commandline/pouch_pause.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_pause.md -------------------------------------------------------------------------------- /docs/commandline/pouch_port.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_port.md -------------------------------------------------------------------------------- /docs/commandline/pouch_ps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_ps.md -------------------------------------------------------------------------------- /docs/commandline/pouch_pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_pull.md -------------------------------------------------------------------------------- /docs/commandline/pouch_push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_push.md -------------------------------------------------------------------------------- /docs/commandline/pouch_rename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_rename.md -------------------------------------------------------------------------------- /docs/commandline/pouch_restart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_restart.md -------------------------------------------------------------------------------- /docs/commandline/pouch_rm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_rm.md -------------------------------------------------------------------------------- /docs/commandline/pouch_rmi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_rmi.md -------------------------------------------------------------------------------- /docs/commandline/pouch_run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_run.md -------------------------------------------------------------------------------- /docs/commandline/pouch_save.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_save.md -------------------------------------------------------------------------------- /docs/commandline/pouch_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_search.md -------------------------------------------------------------------------------- /docs/commandline/pouch_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_start.md -------------------------------------------------------------------------------- /docs/commandline/pouch_stats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_stats.md -------------------------------------------------------------------------------- /docs/commandline/pouch_stop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_stop.md -------------------------------------------------------------------------------- /docs/commandline/pouch_tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_tag.md -------------------------------------------------------------------------------- /docs/commandline/pouch_top.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_top.md -------------------------------------------------------------------------------- /docs/commandline/pouch_unpause.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_unpause.md -------------------------------------------------------------------------------- /docs/commandline/pouch_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_update.md -------------------------------------------------------------------------------- /docs/commandline/pouch_upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_upgrade.md -------------------------------------------------------------------------------- /docs/commandline/pouch_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_version.md -------------------------------------------------------------------------------- /docs/commandline/pouch_volume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_volume.md -------------------------------------------------------------------------------- /docs/commandline/pouch_wait.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouch_wait.md -------------------------------------------------------------------------------- /docs/commandline/pouchd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouchd.md -------------------------------------------------------------------------------- /docs/commandline/pouchd_gen-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/commandline/pouchd_gen-doc.md -------------------------------------------------------------------------------- /docs/contributions/code_styles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/contributions/code_styles.md -------------------------------------------------------------------------------- /docs/contributions/gitflow.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/features/pouch_with_criu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/features/pouch_with_criu.md -------------------------------------------------------------------------------- /docs/features/pouch_with_gVisor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/features/pouch_with_gVisor.md -------------------------------------------------------------------------------- /docs/features/pouch_with_gpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/features/pouch_with_gpu.md -------------------------------------------------------------------------------- /docs/features/pouch_with_kata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/features/pouch_with_kata.md -------------------------------------------------------------------------------- /docs/features/pouch_with_lxcfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/features/pouch_with_lxcfs.md -------------------------------------------------------------------------------- /docs/features/pouch_with_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/features/pouch_with_plugin.md -------------------------------------------------------------------------------- /docs/features/pouch_with_runV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/features/pouch_with_runV.md -------------------------------------------------------------------------------- /docs/features/pouch_with_tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/features/pouch_with_tls.md -------------------------------------------------------------------------------- /docs/kubernetes/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/kubernetes/troubleshooting.md -------------------------------------------------------------------------------- /docs/test/debug_in_travis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/test/debug_in_travis.md -------------------------------------------------------------------------------- /docs/test/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/test/test.md -------------------------------------------------------------------------------- /docs/underlying_tech/cgroup.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/underlying_tech/namespace.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/user/config_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/docs/user/config_file.md -------------------------------------------------------------------------------- /gen_doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/gen_doc.go -------------------------------------------------------------------------------- /hack/codegen/swagger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/codegen/swagger.sh -------------------------------------------------------------------------------- /hack/generate-contributors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/generate-contributors.sh -------------------------------------------------------------------------------- /hack/generate-swagger-models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/generate-swagger-models.sh -------------------------------------------------------------------------------- /hack/install/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/install/check.sh -------------------------------------------------------------------------------- /hack/install/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/install/config.sh -------------------------------------------------------------------------------- /hack/install/install_ci_related.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/install/install_ci_related.sh -------------------------------------------------------------------------------- /hack/install/install_cni.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/install/install_cni.sh -------------------------------------------------------------------------------- /hack/install/install_containerd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/install/install_containerd.sh -------------------------------------------------------------------------------- /hack/install/install_critest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/install/install_critest.sh -------------------------------------------------------------------------------- /hack/install/install_criu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/install/install_criu.sh -------------------------------------------------------------------------------- /hack/install/install_dumb_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/install/install_dumb_init.sh -------------------------------------------------------------------------------- /hack/install/install_etcd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/install/install_etcd.sh -------------------------------------------------------------------------------- /hack/install/install_ginkgo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/install/install_ginkgo.sh -------------------------------------------------------------------------------- /hack/install/install_lxcfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/install/install_lxcfs.sh -------------------------------------------------------------------------------- /hack/install/install_nsenter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/install/install_nsenter.sh -------------------------------------------------------------------------------- /hack/install/install_runc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/install/install_runc.sh -------------------------------------------------------------------------------- /hack/install_lxcfs_on_centos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/install_lxcfs_on_centos.sh -------------------------------------------------------------------------------- /hack/kubernetes/allinone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/kubernetes/allinone.sh -------------------------------------------------------------------------------- /hack/kubernetes/allinone_aliyun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/kubernetes/allinone_aliyun.sh -------------------------------------------------------------------------------- /hack/module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/module -------------------------------------------------------------------------------- /hack/protoc/html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/protoc/html.tmpl -------------------------------------------------------------------------------- /hack/protoc/protoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/protoc/protoc.sh -------------------------------------------------------------------------------- /hack/testing/run_daemon_cri_e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/testing/run_daemon_cri_e2e.sh -------------------------------------------------------------------------------- /hack/testing/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/testing/utils.sh -------------------------------------------------------------------------------- /hack/validate_swagger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hack/validate_swagger.sh -------------------------------------------------------------------------------- /hookplugins/APIPlugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hookplugins/APIPlugin.go -------------------------------------------------------------------------------- /hookplugins/ContainerPlugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hookplugins/ContainerPlugin.go -------------------------------------------------------------------------------- /hookplugins/CriPlugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hookplugins/CriPlugin.go -------------------------------------------------------------------------------- /hookplugins/DaemonPlugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hookplugins/DaemonPlugin.go -------------------------------------------------------------------------------- /hookplugins/VolumePlugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hookplugins/VolumePlugin.go -------------------------------------------------------------------------------- /hookplugins/apiplugin/apiplugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hookplugins/apiplugin/apiplugin.go -------------------------------------------------------------------------------- /hookplugins/criplugin/cri_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hookplugins/criplugin/cri_hook.go -------------------------------------------------------------------------------- /hookplugins/image_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/hookplugins/image_plugin.go -------------------------------------------------------------------------------- /internal/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/internal/generator.go -------------------------------------------------------------------------------- /lxcfs/lxcfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/lxcfs/lxcfs.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/main_test.go -------------------------------------------------------------------------------- /network/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/network/config.go -------------------------------------------------------------------------------- /network/mode/bridge/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/network/mode/bridge/bridge.go -------------------------------------------------------------------------------- /network/mode/bridge/vars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/network/mode/bridge/vars.go -------------------------------------------------------------------------------- /network/mode/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/network/mode/init.go -------------------------------------------------------------------------------- /network/types/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/network/types/endpoint.go -------------------------------------------------------------------------------- /network/types/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/network/types/network.go -------------------------------------------------------------------------------- /oci/spec_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/oci/spec_default.go -------------------------------------------------------------------------------- /pkg/archive/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/archive/archive.go -------------------------------------------------------------------------------- /pkg/archive/archive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/archive/archive_test.go -------------------------------------------------------------------------------- /pkg/bytefmt/bytefmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/bytefmt/bytefmt.go -------------------------------------------------------------------------------- /pkg/bytefmt/bytefmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/bytefmt/bytefmt_test.go -------------------------------------------------------------------------------- /pkg/collect/safe_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/collect/safe_map.go -------------------------------------------------------------------------------- /pkg/collect/safe_map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/collect/safe_map_test.go -------------------------------------------------------------------------------- /pkg/debug/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/debug/debug.go -------------------------------------------------------------------------------- /pkg/errtypes/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/errtypes/errors.go -------------------------------------------------------------------------------- /pkg/errtypes/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/errtypes/errors_test.go -------------------------------------------------------------------------------- /pkg/errtypes/volume_errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/errtypes/volume_errors.go -------------------------------------------------------------------------------- /pkg/exec/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/exec/command.go -------------------------------------------------------------------------------- /pkg/exec/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/exec/command_test.go -------------------------------------------------------------------------------- /pkg/grpc/interceptor/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/grpc/interceptor/chain.go -------------------------------------------------------------------------------- /pkg/grpc/interceptor/chain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/grpc/interceptor/chain_test.go -------------------------------------------------------------------------------- /pkg/grpc/interceptor/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/grpc/interceptor/logging.go -------------------------------------------------------------------------------- /pkg/httputils/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/httputils/client.go -------------------------------------------------------------------------------- /pkg/httputils/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/httputils/client_test.go -------------------------------------------------------------------------------- /pkg/httputils/http_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/httputils/http_error.go -------------------------------------------------------------------------------- /pkg/httputils/http_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/httputils/http_utils.go -------------------------------------------------------------------------------- /pkg/httputils/http_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/httputils/http_utils_test.go -------------------------------------------------------------------------------- /pkg/ioutils/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/ioutils/reader.go -------------------------------------------------------------------------------- /pkg/ioutils/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/ioutils/writer.go -------------------------------------------------------------------------------- /pkg/jsonstream/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/jsonstream/format.go -------------------------------------------------------------------------------- /pkg/jsonstream/image_progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/jsonstream/image_progress.go -------------------------------------------------------------------------------- /pkg/jsonstream/image_push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/jsonstream/image_push.go -------------------------------------------------------------------------------- /pkg/jsonstream/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/jsonstream/stream.go -------------------------------------------------------------------------------- /pkg/jsonstream/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/jsonstream/types.go -------------------------------------------------------------------------------- /pkg/kernel/kernel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/kernel/kernel.go -------------------------------------------------------------------------------- /pkg/kernel/kernel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/kernel/kernel_test.go -------------------------------------------------------------------------------- /pkg/kmutex/kmutex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/kmutex/kmutex.go -------------------------------------------------------------------------------- /pkg/kmutex/kmutex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/kmutex/kmutex_test.go -------------------------------------------------------------------------------- /pkg/log/content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/log/content.go -------------------------------------------------------------------------------- /pkg/meta/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/meta/backend.go -------------------------------------------------------------------------------- /pkg/meta/boltdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/meta/boltdb.go -------------------------------------------------------------------------------- /pkg/meta/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/meta/errors.go -------------------------------------------------------------------------------- /pkg/meta/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/meta/local.go -------------------------------------------------------------------------------- /pkg/meta/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/meta/store.go -------------------------------------------------------------------------------- /pkg/meta/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/meta/store_test.go -------------------------------------------------------------------------------- /pkg/mount/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/mount/mount.go -------------------------------------------------------------------------------- /pkg/mount/mount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/mount/mount_test.go -------------------------------------------------------------------------------- /pkg/multierror/def.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/multierror/def.go -------------------------------------------------------------------------------- /pkg/multierror/def_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/multierror/def_test.go -------------------------------------------------------------------------------- /pkg/netutils/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/netutils/doc.go -------------------------------------------------------------------------------- /pkg/netutils/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/netutils/interface.go -------------------------------------------------------------------------------- /pkg/netutils/interface_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/netutils/interface_test.go -------------------------------------------------------------------------------- /pkg/netutils/listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/netutils/listener.go -------------------------------------------------------------------------------- /pkg/netutils/listener_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/netutils/listener_test.go -------------------------------------------------------------------------------- /pkg/randomid/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/randomid/id.go -------------------------------------------------------------------------------- /pkg/randomid/id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/randomid/id_test.go -------------------------------------------------------------------------------- /pkg/reference/def.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/reference/def.go -------------------------------------------------------------------------------- /pkg/reference/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/reference/parse.go -------------------------------------------------------------------------------- /pkg/reference/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/reference/parse_test.go -------------------------------------------------------------------------------- /pkg/reference/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/reference/regexp.go -------------------------------------------------------------------------------- /pkg/reference/regexp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/reference/regexp_test.go -------------------------------------------------------------------------------- /pkg/scheduler/scheduler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/scheduler/scheduler.go -------------------------------------------------------------------------------- /pkg/scheduler/scheduler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/scheduler/scheduler_test.go -------------------------------------------------------------------------------- /pkg/streams/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/streams/multi.go -------------------------------------------------------------------------------- /pkg/streams/multi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/streams/multi_test.go -------------------------------------------------------------------------------- /pkg/streams/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/streams/stream.go -------------------------------------------------------------------------------- /pkg/streams/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/streams/utils.go -------------------------------------------------------------------------------- /pkg/streams/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/streams/utils_test.go -------------------------------------------------------------------------------- /pkg/system/cgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/system/cgroup.go -------------------------------------------------------------------------------- /pkg/system/cgroup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/system/cgroup_test.go -------------------------------------------------------------------------------- /pkg/system/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/system/system.go -------------------------------------------------------------------------------- /pkg/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/term/term.go -------------------------------------------------------------------------------- /pkg/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/user/user.go -------------------------------------------------------------------------------- /pkg/user/user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/user/user_test.go -------------------------------------------------------------------------------- /pkg/utils/filters/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/utils/filters/filter.go -------------------------------------------------------------------------------- /pkg/utils/filters/filter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/utils/filters/filter_test.go -------------------------------------------------------------------------------- /pkg/utils/identify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/utils/identify.go -------------------------------------------------------------------------------- /pkg/utils/identify_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/utils/identify_test.go -------------------------------------------------------------------------------- /pkg/utils/metrics/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/utils/metrics/actions.go -------------------------------------------------------------------------------- /pkg/utils/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/utils/metrics/metrics.go -------------------------------------------------------------------------------- /pkg/utils/metrics/unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/utils/metrics/unit.go -------------------------------------------------------------------------------- /pkg/utils/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/utils/mount.go -------------------------------------------------------------------------------- /pkg/utils/random_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/utils/random_string.go -------------------------------------------------------------------------------- /pkg/utils/random_string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/utils/random_string_test.go -------------------------------------------------------------------------------- /pkg/utils/signal/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/utils/signal/signal.go -------------------------------------------------------------------------------- /pkg/utils/signal/signal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/utils/signal/signal_test.go -------------------------------------------------------------------------------- /pkg/utils/templates/templates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/utils/templates/templates.go -------------------------------------------------------------------------------- /pkg/utils/timeutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/utils/timeutils.go -------------------------------------------------------------------------------- /pkg/utils/timeutils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/utils/timeutils_test.go -------------------------------------------------------------------------------- /pkg/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/utils/utils.go -------------------------------------------------------------------------------- /pkg/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/pkg/utils/utils_test.go -------------------------------------------------------------------------------- /registry/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/registry/auth.go -------------------------------------------------------------------------------- /registry/auth_challenge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/registry/auth_challenge.go -------------------------------------------------------------------------------- /registry/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/registry/client.go -------------------------------------------------------------------------------- /registry/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/registry/config.go -------------------------------------------------------------------------------- /storage/plugins/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/plugins/client.go -------------------------------------------------------------------------------- /storage/plugins/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/plugins/client_test.go -------------------------------------------------------------------------------- /storage/plugins/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/plugins/error.go -------------------------------------------------------------------------------- /storage/plugins/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/plugins/manager.go -------------------------------------------------------------------------------- /storage/plugins/manager_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/plugins/manager_test.go -------------------------------------------------------------------------------- /storage/plugins/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/plugins/plugin.go -------------------------------------------------------------------------------- /storage/plugins/plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/plugins/plugins.go -------------------------------------------------------------------------------- /storage/quota/grpquota.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/quota/grpquota.go -------------------------------------------------------------------------------- /storage/quota/prjquota.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/quota/prjquota.go -------------------------------------------------------------------------------- /storage/quota/quota.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/quota/quota.go -------------------------------------------------------------------------------- /storage/quota/quota_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/quota/quota_test.go -------------------------------------------------------------------------------- /storage/quota/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/quota/type.go -------------------------------------------------------------------------------- /storage/volume/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/volume/README.md -------------------------------------------------------------------------------- /storage/volume/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/volume/config.go -------------------------------------------------------------------------------- /storage/volume/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/volume/core.go -------------------------------------------------------------------------------- /storage/volume/core_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/volume/core_test.go -------------------------------------------------------------------------------- /storage/volume/core_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/volume/core_util.go -------------------------------------------------------------------------------- /storage/volume/driver/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/volume/driver/driver.go -------------------------------------------------------------------------------- /storage/volume/driver/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/volume/driver/proxy.go -------------------------------------------------------------------------------- /storage/volume/driver/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/volume/driver/remote.go -------------------------------------------------------------------------------- /storage/volume/driver/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/volume/driver/types.go -------------------------------------------------------------------------------- /storage/volume/types/meta/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/volume/types/meta/meta.go -------------------------------------------------------------------------------- /storage/volume/types/meta/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/volume/types/meta/types.go -------------------------------------------------------------------------------- /storage/volume/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/volume/types/types.go -------------------------------------------------------------------------------- /storage/volume/types/volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/storage/volume/types/volume.go -------------------------------------------------------------------------------- /test/api_checkpoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_checkpoint_test.go -------------------------------------------------------------------------------- /test/api_container_attach_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_attach_test.go -------------------------------------------------------------------------------- /test/api_container_commit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_commit_test.go -------------------------------------------------------------------------------- /test/api_container_cp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_cp_test.go -------------------------------------------------------------------------------- /test/api_container_create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_create_test.go -------------------------------------------------------------------------------- /test/api_container_delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_delete_test.go -------------------------------------------------------------------------------- /test/api_container_inspect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_inspect_test.go -------------------------------------------------------------------------------- /test/api_container_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_list_test.go -------------------------------------------------------------------------------- /test/api_container_logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_logs_test.go -------------------------------------------------------------------------------- /test/api_container_metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_metrics_test.go -------------------------------------------------------------------------------- /test/api_container_pause_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_pause_test.go -------------------------------------------------------------------------------- /test/api_container_rename_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_rename_test.go -------------------------------------------------------------------------------- /test/api_container_resize_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_resize_test.go -------------------------------------------------------------------------------- /test/api_container_restart_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_restart_test.go -------------------------------------------------------------------------------- /test/api_container_start_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_start_test.go -------------------------------------------------------------------------------- /test/api_container_stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_stats_test.go -------------------------------------------------------------------------------- /test/api_container_stop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_stop_test.go -------------------------------------------------------------------------------- /test/api_container_top_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_top_test.go -------------------------------------------------------------------------------- /test/api_container_upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_upgrade_test.go -------------------------------------------------------------------------------- /test/api_container_wait_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_container_wait_test.go -------------------------------------------------------------------------------- /test/api_daemon_update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_daemon_update_test.go -------------------------------------------------------------------------------- /test/api_image_create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_image_create_test.go -------------------------------------------------------------------------------- /test/api_image_delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_image_delete_test.go -------------------------------------------------------------------------------- /test/api_image_history_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_image_history_test.go -------------------------------------------------------------------------------- /test/api_image_inspect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_image_inspect_test.go -------------------------------------------------------------------------------- /test/api_image_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_image_list_test.go -------------------------------------------------------------------------------- /test/api_image_metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_image_metrics_test.go -------------------------------------------------------------------------------- /test/api_image_push_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_image_push_test.go -------------------------------------------------------------------------------- /test/api_image_search_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_image_search_test.go -------------------------------------------------------------------------------- /test/api_image_tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_image_tag_test.go -------------------------------------------------------------------------------- /test/api_network_create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_network_create_test.go -------------------------------------------------------------------------------- /test/api_network_delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_network_delete_test.go -------------------------------------------------------------------------------- /test/api_network_inspect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_network_inspect_test.go -------------------------------------------------------------------------------- /test/api_network_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_network_list_test.go -------------------------------------------------------------------------------- /test/api_system_metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_system_metrics_test.go -------------------------------------------------------------------------------- /test/api_system_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_system_test.go -------------------------------------------------------------------------------- /test/api_version_parameter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_version_parameter_test.go -------------------------------------------------------------------------------- /test/api_volume_create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_volume_create_test.go -------------------------------------------------------------------------------- /test/api_volume_delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_volume_delete_test.go -------------------------------------------------------------------------------- /test/api_volume_inspect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_volume_inspect_test.go -------------------------------------------------------------------------------- /test/api_volume_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/api_volume_list_test.go -------------------------------------------------------------------------------- /test/cli_alikernel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_alikernel_test.go -------------------------------------------------------------------------------- /test/cli_build_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_build_test.go -------------------------------------------------------------------------------- /test/cli_checkpoint_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_checkpoint_test.go -------------------------------------------------------------------------------- /test/cli_container_commit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_container_commit_test.go -------------------------------------------------------------------------------- /test/cli_container_cp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_container_cp_test.go -------------------------------------------------------------------------------- /test/cli_container_port_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_container_port_test.go -------------------------------------------------------------------------------- /test/cli_create_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_create_test.go -------------------------------------------------------------------------------- /test/cli_events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_events_test.go -------------------------------------------------------------------------------- /test/cli_exec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_exec_test.go -------------------------------------------------------------------------------- /test/cli_help_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_help_test.go -------------------------------------------------------------------------------- /test/cli_history_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_history_test.go -------------------------------------------------------------------------------- /test/cli_images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_images_test.go -------------------------------------------------------------------------------- /test/cli_inspect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_inspect_test.go -------------------------------------------------------------------------------- /test/cli_kill_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_kill_test.go -------------------------------------------------------------------------------- /test/cli_logs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_logs_test.go -------------------------------------------------------------------------------- /test/cli_network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_network_test.go -------------------------------------------------------------------------------- /test/cli_pause_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_pause_test.go -------------------------------------------------------------------------------- /test/cli_ps_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_ps_test.go -------------------------------------------------------------------------------- /test/cli_pull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_pull_test.go -------------------------------------------------------------------------------- /test/cli_rename_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_rename_test.go -------------------------------------------------------------------------------- /test/cli_restart_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_restart_test.go -------------------------------------------------------------------------------- /test/cli_rich_container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_rich_container_test.go -------------------------------------------------------------------------------- /test/cli_rm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_rm_test.go -------------------------------------------------------------------------------- /test/cli_rmi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_rmi_test.go -------------------------------------------------------------------------------- /test/cli_run_blkio_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_run_blkio_test.go -------------------------------------------------------------------------------- /test/cli_run_cgroup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_run_cgroup_test.go -------------------------------------------------------------------------------- /test/cli_run_cpu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_run_cpu_test.go -------------------------------------------------------------------------------- /test/cli_run_device_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_run_device_test.go -------------------------------------------------------------------------------- /test/cli_run_dns_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_run_dns_test.go -------------------------------------------------------------------------------- /test/cli_run_interactive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_run_interactive_test.go -------------------------------------------------------------------------------- /test/cli_run_lxcfs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_run_lxcfs_test.go -------------------------------------------------------------------------------- /test/cli_run_memory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_run_memory_test.go -------------------------------------------------------------------------------- /test/cli_run_network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_run_network_test.go -------------------------------------------------------------------------------- /test/cli_run_pid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_run_pid_test.go -------------------------------------------------------------------------------- /test/cli_run_syslog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_run_syslog_test.go -------------------------------------------------------------------------------- /test/cli_run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_run_test.go -------------------------------------------------------------------------------- /test/cli_run_ulimit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_run_ulimit_test.go -------------------------------------------------------------------------------- /test/cli_run_user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_run_user_test.go -------------------------------------------------------------------------------- /test/cli_run_volume_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_run_volume_test.go -------------------------------------------------------------------------------- /test/cli_run_working_dir_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_run_working_dir_test.go -------------------------------------------------------------------------------- /test/cli_save_and_load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_save_and_load_test.go -------------------------------------------------------------------------------- /test/cli_search_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_search_test.go -------------------------------------------------------------------------------- /test/cli_snapshotter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_snapshotter_test.go -------------------------------------------------------------------------------- /test/cli_start_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_start_test.go -------------------------------------------------------------------------------- /test/cli_stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_stats_test.go -------------------------------------------------------------------------------- /test/cli_stop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_stop_test.go -------------------------------------------------------------------------------- /test/cli_tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_tag_test.go -------------------------------------------------------------------------------- /test/cli_top_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_top_test.go -------------------------------------------------------------------------------- /test/cli_unpause_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_unpause_test.go -------------------------------------------------------------------------------- /test/cli_update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_update_test.go -------------------------------------------------------------------------------- /test/cli_upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_upgrade_test.go -------------------------------------------------------------------------------- /test/cli_version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_version_test.go -------------------------------------------------------------------------------- /test/cli_volume_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_volume_test.go -------------------------------------------------------------------------------- /test/cli_wait_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/cli_wait_test.go -------------------------------------------------------------------------------- /test/command/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/command/command.go -------------------------------------------------------------------------------- /test/daemon/daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/daemon/daemon.go -------------------------------------------------------------------------------- /test/daemonv2/daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/daemonv2/daemon.go -------------------------------------------------------------------------------- /test/daemonv2/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/daemonv2/types.go -------------------------------------------------------------------------------- /test/environment/cleanup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/environment/cleanup.go -------------------------------------------------------------------------------- /test/environment/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/environment/env.go -------------------------------------------------------------------------------- /test/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/main_test.go -------------------------------------------------------------------------------- /test/request/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/request/request.go -------------------------------------------------------------------------------- /test/tls/a_client/a_client.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/tls/a_client/a_client.csr -------------------------------------------------------------------------------- /test/tls/a_client/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/tls/a_client/ca.pem -------------------------------------------------------------------------------- /test/tls/a_client/ca_wrong.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/tls/a_client/ca_wrong.pem -------------------------------------------------------------------------------- /test/tls/a_client/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/tls/a_client/cert.pem -------------------------------------------------------------------------------- /test/tls/a_client/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/tls/a_client/key.pem -------------------------------------------------------------------------------- /test/tls/ca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/tls/ca-key.pem -------------------------------------------------------------------------------- /test/tls/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/tls/ca.pem -------------------------------------------------------------------------------- /test/tls/ca.srl: -------------------------------------------------------------------------------- 1 | D64AA8120CE80B9A 2 | -------------------------------------------------------------------------------- /test/tls/extfile.out: -------------------------------------------------------------------------------- 1 | extendedKeyUsage = clientAuth 2 | -------------------------------------------------------------------------------- /test/tls/generate_tls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/tls/generate_tls.sh -------------------------------------------------------------------------------- /test/tls/server/ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/tls/server/ca.pem -------------------------------------------------------------------------------- /test/tls/server/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/tls/server/cert.pem -------------------------------------------------------------------------------- /test/tls/server/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/tls/server/key.pem -------------------------------------------------------------------------------- /test/tls/server/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/tls/server/server.csr -------------------------------------------------------------------------------- /test/util/goroutine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/util/goroutine.go -------------------------------------------------------------------------------- /test/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/util/util.go -------------------------------------------------------------------------------- /test/util_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/util_api.go -------------------------------------------------------------------------------- /test/util_daemon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/util_daemon.go -------------------------------------------------------------------------------- /test/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/utils.go -------------------------------------------------------------------------------- /test/z_cli_daemon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/test/z_cli_daemon_test.go -------------------------------------------------------------------------------- /tools/fix_quota_id/fix_quota_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/tools/fix_quota_id/fix_quota_id.go -------------------------------------------------------------------------------- /travis_ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/travis_ci.sh -------------------------------------------------------------------------------- /vendor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/README.md -------------------------------------------------------------------------------- /vendor/github.com/BurntSushi/toml/session.vim: -------------------------------------------------------------------------------- 1 | au BufWritePost *.go silent!make tags > /dev/null 2>&1 2 | -------------------------------------------------------------------------------- /vendor/github.com/docker/go-connections/sockets/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/go-check/check/TODO: -------------------------------------------------------------------------------- 1 | - Assert(slice, Contains, item) 2 | - Parallel test support 3 | -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/github.com/miekg/dns/dns.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/github.com/miekg/dns/doc.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/github.com/miekg/dns/msg.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/udp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/github.com/miekg/dns/udp.go -------------------------------------------------------------------------------- /vendor/github.com/miekg/dns/xfr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/github.com/miekg/dns/xfr.go -------------------------------------------------------------------------------- /vendor/github.com/mitchellh/hashstructure/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mitchellh/hashstructure 2 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/term/termios/termios_windows.go: -------------------------------------------------------------------------------- 1 | package termios 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/client_golang/VERSION: -------------------------------------------------------------------------------- 1 | 0.8.0 2 | -------------------------------------------------------------------------------- /vendor/github.com/prometheus/procfs/MAINTAINERS.md: -------------------------------------------------------------------------------- 1 | * Tobias Schmidt 2 | -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/go.etcd.io/bbolt/LICENSE -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/go.etcd.io/bbolt/Makefile -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/go.etcd.io/bbolt/db.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/go.etcd.io/bbolt/doc.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/go.etcd.io/bbolt/node.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/go.etcd.io/bbolt/page.go -------------------------------------------------------------------------------- /vendor/go.etcd.io/bbolt/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/go.etcd.io/bbolt/tx.go -------------------------------------------------------------------------------- /vendor/go4.org/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/go4.org/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/golang.org/x/net/README -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/golang.org/x/sync/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/golang.org/x/text/README -------------------------------------------------------------------------------- /vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/golang.org/x/text/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/time/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/golang.org/x/time/PATENTS -------------------------------------------------------------------------------- /vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/gopkg.in/mgo.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/gopkg.in/mgo.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/k8s.io/kubernetes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/k8s.io/kubernetes/LICENSE -------------------------------------------------------------------------------- /vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/vendor/vendor.json -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliyunContainerService/pouch/HEAD/version/version.go --------------------------------------------------------------------------------