├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── azure-pipelines.yml ├── cni ├── cni.go └── plugin.go ├── common ├── args.go ├── config.go ├── core │ ├── core.go │ └── network.go ├── plugin.go └── utils.go ├── example ├── flannel_l2bridge.conf ├── flannel_overlay.conf ├── l2bridge-dualstack-cni-template.conf ├── l2bridge.conf ├── l2bridgedualstack_host-local_ipam.conf ├── l2tunnel.conf └── nat.conf ├── go.mod ├── go.sum ├── network ├── endpoint.go ├── manager.go ├── network.go └── policy.go ├── plugins ├── nat │ ├── nat_windows.go │ └── nat_windows_test.go ├── sdnbridge │ ├── sdnbridge_windows.go │ └── sdnbridge_windows_test.go └── sdnoverlay │ ├── sdnoverlay_windows.go │ └── sdnoverlay_windows_test.go ├── test ├── container │ └── container_windows.go └── utilities │ ├── connectivity_testing.go │ ├── container_testing.go │ ├── plugin_testing.go │ └── testing_windows.go └── vendor ├── cyphar.com └── go-pathrs │ ├── .golangci.yml │ ├── COPYING │ ├── doc.go │ ├── handle_linux.go │ ├── internal │ ├── fdutils │ │ └── fd_linux.go │ └── libpathrs │ │ ├── error_unix.go │ │ └── libpathrs_linux.go │ ├── procfs │ └── procfs_linux.go │ ├── root_linux.go │ └── utils_linux.go ├── github.com ├── Microsoft │ ├── go-winio │ │ ├── .gitignore │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── backup.go │ │ ├── ea.go │ │ ├── file.go │ │ ├── fileinfo.go │ │ ├── hvsock.go │ │ ├── pipe.go │ │ ├── pkg │ │ │ ├── etw │ │ │ │ ├── etw.go │ │ │ │ ├── eventdata.go │ │ │ │ ├── eventdatadescriptor.go │ │ │ │ ├── eventdescriptor.go │ │ │ │ ├── eventmetadata.go │ │ │ │ ├── eventopt.go │ │ │ │ ├── fieldopt.go │ │ │ │ ├── newprovider.go │ │ │ │ ├── newprovider_unsupported.go │ │ │ │ ├── provider.go │ │ │ │ ├── providerglobal.go │ │ │ │ ├── ptr64_32.go │ │ │ │ ├── ptr64_64.go │ │ │ │ ├── wrapper_32.go │ │ │ │ ├── wrapper_64.go │ │ │ │ └── zsyscall_windows.go │ │ │ ├── etwlogrus │ │ │ │ ├── HookTest.wprp │ │ │ │ └── hook.go │ │ │ ├── guid │ │ │ │ ├── guid.go │ │ │ │ ├── guid_nonwindows.go │ │ │ │ └── guid_windows.go │ │ │ └── security │ │ │ │ ├── grantvmgroupaccess.go │ │ │ │ ├── syscall_windows.go │ │ │ │ └── zsyscall_windows.go │ │ ├── privilege.go │ │ ├── reparse.go │ │ ├── sd.go │ │ ├── syscall.go │ │ ├── vhd │ │ │ ├── vhd.go │ │ │ └── zvhd_windows.go │ │ └── zsyscall_windows.go │ └── hcsshim │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── Protobuild.toml │ │ ├── README.md │ │ ├── computestorage │ │ ├── attach.go │ │ ├── destroy.go │ │ ├── detach.go │ │ ├── export.go │ │ ├── format.go │ │ ├── helpers.go │ │ ├── import.go │ │ ├── initialize.go │ │ ├── mount.go │ │ ├── setup.go │ │ ├── storage.go │ │ └── zsyscall_windows.go │ │ ├── container.go │ │ ├── errors.go │ │ ├── functional_tests.ps1 │ │ ├── hcn │ │ ├── hcn.go │ │ ├── hcnendpoint.go │ │ ├── hcnerrors.go │ │ ├── hcnglobals.go │ │ ├── hcnloadbalancer.go │ │ ├── hcnnamespace.go │ │ ├── hcnnetwork.go │ │ ├── hcnpolicy.go │ │ ├── hcnroute.go │ │ ├── hcnsupport.go │ │ └── zsyscall_windows.go │ │ ├── hcsshim.go │ │ ├── hnsendpoint.go │ │ ├── hnsglobals.go │ │ ├── hnsnetwork.go │ │ ├── hnspolicy.go │ │ ├── hnspolicylist.go │ │ ├── hnssupport.go │ │ ├── interface.go │ │ ├── internal │ │ ├── cni │ │ │ └── registry.go │ │ ├── cow │ │ │ └── cow.go │ │ ├── hcs │ │ │ ├── callback.go │ │ │ ├── errors.go │ │ │ ├── process.go │ │ │ ├── schema1 │ │ │ │ └── schema1.go │ │ │ ├── schema2 │ │ │ │ ├── attachment.go │ │ │ │ ├── battery.go │ │ │ │ ├── cache_query_stats_response.go │ │ │ │ ├── chipset.go │ │ │ │ ├── close_handle.go │ │ │ │ ├── com_port.go │ │ │ │ ├── compute_system.go │ │ │ │ ├── configuration.go │ │ │ │ ├── console_size.go │ │ │ │ ├── container.go │ │ │ │ ├── container_credential_guard_add_instance_request.go │ │ │ │ ├── container_credential_guard_hv_socket_service_config.go │ │ │ │ ├── container_credential_guard_instance.go │ │ │ │ ├── container_credential_guard_modify_operation.go │ │ │ │ ├── container_credential_guard_operation_request.go │ │ │ │ ├── container_credential_guard_remove_instance_request.go │ │ │ │ ├── container_credential_guard_state.go │ │ │ │ ├── container_credential_guard_system_info.go │ │ │ │ ├── container_memory_information.go │ │ │ │ ├── cpu_group.go │ │ │ │ ├── cpu_group_affinity.go │ │ │ │ ├── cpu_group_config.go │ │ │ │ ├── cpu_group_configurations.go │ │ │ │ ├── cpu_group_operations.go │ │ │ │ ├── cpu_group_property.go │ │ │ │ ├── create_group_operation.go │ │ │ │ ├── delete_group_operation.go │ │ │ │ ├── device.go │ │ │ │ ├── devices.go │ │ │ │ ├── enhanced_mode_video.go │ │ │ │ ├── flexible_io_device.go │ │ │ │ ├── guest_connection.go │ │ │ │ ├── guest_connection_info.go │ │ │ │ ├── guest_crash_reporting.go │ │ │ │ ├── guest_os.go │ │ │ │ ├── guest_state.go │ │ │ │ ├── host_processor_modify_request.go │ │ │ │ ├── hosted_system.go │ │ │ │ ├── hv_socket.go │ │ │ │ ├── hv_socket_2.go │ │ │ │ ├── hv_socket_address.go │ │ │ │ ├── hv_socket_service_config.go │ │ │ │ ├── hv_socket_system_config.go │ │ │ │ ├── interrupt_moderation_mode.go │ │ │ │ ├── iov_settings.go │ │ │ │ ├── keyboard.go │ │ │ │ ├── layer.go │ │ │ │ ├── linux_kernel_direct.go │ │ │ │ ├── logical_processor.go │ │ │ │ ├── mapped_directory.go │ │ │ │ ├── mapped_pipe.go │ │ │ │ ├── memory.go │ │ │ │ ├── memory_2.go │ │ │ │ ├── memory_information_for_vm.go │ │ │ │ ├── memory_stats.go │ │ │ │ ├── modification_request.go │ │ │ │ ├── modify_setting_request.go │ │ │ │ ├── mouse.go │ │ │ │ ├── network_adapter.go │ │ │ │ ├── networking.go │ │ │ │ ├── pause_notification.go │ │ │ │ ├── pause_options.go │ │ │ │ ├── plan9.go │ │ │ │ ├── plan9_share.go │ │ │ │ ├── process_details.go │ │ │ │ ├── process_modify_request.go │ │ │ │ ├── process_parameters.go │ │ │ │ ├── process_status.go │ │ │ │ ├── processor.go │ │ │ │ ├── processor_2.go │ │ │ │ ├── processor_stats.go │ │ │ │ ├── processor_topology.go │ │ │ │ ├── properties.go │ │ │ │ ├── property_query.go │ │ │ │ ├── property_type.go │ │ │ │ ├── rdp_connection_options.go │ │ │ │ ├── registry_changes.go │ │ │ │ ├── registry_key.go │ │ │ │ ├── registry_value.go │ │ │ │ ├── restore_state.go │ │ │ │ ├── save_options.go │ │ │ │ ├── scsi.go │ │ │ │ ├── service_properties.go │ │ │ │ ├── shared_memory_configuration.go │ │ │ │ ├── shared_memory_region.go │ │ │ │ ├── shared_memory_region_info.go │ │ │ │ ├── silo_properties.go │ │ │ │ ├── statistics.go │ │ │ │ ├── storage.go │ │ │ │ ├── storage_qo_s.go │ │ │ │ ├── storage_stats.go │ │ │ │ ├── topology.go │ │ │ │ ├── uefi.go │ │ │ │ ├── uefi_boot_entry.go │ │ │ │ ├── version.go │ │ │ │ ├── video_monitor.go │ │ │ │ ├── virtual_machine.go │ │ │ │ ├── virtual_node_info.go │ │ │ │ ├── virtual_p_mem_controller.go │ │ │ │ ├── virtual_p_mem_device.go │ │ │ │ ├── virtual_pci_device.go │ │ │ │ ├── virtual_pci_function.go │ │ │ │ ├── virtual_smb.go │ │ │ │ ├── virtual_smb_share.go │ │ │ │ ├── virtual_smb_share_options.go │ │ │ │ ├── vm_memory.go │ │ │ │ ├── vm_processor_limits.go │ │ │ │ └── windows_crash_reporting.go │ │ │ ├── service.go │ │ │ ├── system.go │ │ │ ├── utils.go │ │ │ └── waithelper.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 │ │ ├── log │ │ │ └── g.go │ │ ├── logfields │ │ │ └── fields.go │ │ ├── longpath │ │ │ └── longpath.go │ │ ├── mergemaps │ │ │ └── merge.go │ │ ├── oc │ │ │ ├── exporter.go │ │ │ └── span.go │ │ ├── regstate │ │ │ ├── regstate.go │ │ │ └── zsyscall_windows.go │ │ ├── runhcs │ │ │ ├── container.go │ │ │ ├── util.go │ │ │ └── vm.go │ │ ├── safefile │ │ │ └── safeopen.go │ │ ├── timeout │ │ │ └── timeout.go │ │ ├── vmcompute │ │ │ ├── vmcompute.go │ │ │ └── zsyscall_windows.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 │ │ └── winapi │ │ │ ├── devices.go │ │ │ ├── errors.go │ │ │ ├── filesystem.go │ │ │ ├── iocp.go │ │ │ ├── jobobject.go │ │ │ ├── logon.go │ │ │ ├── memory.go │ │ │ ├── net.go │ │ │ ├── path.go │ │ │ ├── process.go │ │ │ ├── processor.go │ │ │ ├── system.go │ │ │ ├── thread.go │ │ │ ├── utils.go │ │ │ ├── winapi.go │ │ │ └── zsyscall_windows.go │ │ ├── layer.go │ │ ├── osversion │ │ ├── osversion_windows.go │ │ └── windowsbuilds.go │ │ ├── pkg │ │ └── go-runhcs │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── runhcs.go │ │ │ ├── runhcs_create-scratch.go │ │ │ ├── runhcs_create.go │ │ │ ├── runhcs_delete.go │ │ │ ├── runhcs_exec.go │ │ │ ├── runhcs_kill.go │ │ │ ├── runhcs_list.go │ │ │ ├── runhcs_pause.go │ │ │ ├── runhcs_ps.go │ │ │ ├── runhcs_resize-tty.go │ │ │ ├── runhcs_resume.go │ │ │ ├── runhcs_start.go │ │ │ └── runhcs_state.go │ │ ├── process.go │ │ └── zsyscall_windows.go ├── blang │ └── semver │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── json.go │ │ ├── package.json │ │ ├── range.go │ │ ├── semver.go │ │ ├── sort.go │ │ └── sql.go ├── containerd │ ├── cgroups │ │ ├── LICENSE │ │ └── stats │ │ │ └── v1 │ │ │ ├── doc.go │ │ │ ├── metrics.pb.go │ │ │ ├── metrics.pb.txt │ │ │ └── metrics.proto │ ├── console │ │ ├── .golangci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── console.go │ │ ├── console_linux.go │ │ ├── console_unix.go │ │ ├── console_windows.go │ │ ├── console_zos.go │ │ ├── pty_freebsd_cgo.go │ │ ├── pty_freebsd_nocgo.go │ │ ├── pty_unix.go │ │ ├── tc_darwin.go │ │ ├── tc_freebsd_cgo.go │ │ ├── tc_freebsd_nocgo.go │ │ ├── tc_linux.go │ │ ├── tc_netbsd.go │ │ ├── tc_openbsd_cgo.go │ │ ├── tc_openbsd_nocgo.go │ │ ├── tc_solaris_cgo.go │ │ ├── tc_solaris_nocgo.go │ │ ├── tc_unix.go │ │ └── tc_zos.go │ └── go-runc │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── command_linux.go │ │ ├── command_other.go │ │ ├── console.go │ │ ├── container.go │ │ ├── events.go │ │ ├── io.go │ │ ├── io_unix.go │ │ ├── io_windows.go │ │ ├── monitor.go │ │ ├── runc.go │ │ ├── runc_unix.go │ │ ├── runc_windows.go │ │ └── utils.go ├── containernetworking │ └── cni │ │ ├── LICENSE │ │ └── pkg │ │ ├── invoke │ │ ├── args.go │ │ ├── delegate.go │ │ ├── exec.go │ │ ├── find.go │ │ ├── os_unix.go │ │ ├── os_windows.go │ │ └── raw_exec.go │ │ ├── skel │ │ └── skel.go │ │ ├── types │ │ ├── 100 │ │ │ └── types.go │ │ ├── 020 │ │ │ └── types.go │ │ ├── 040 │ │ │ └── types.go │ │ ├── args.go │ │ ├── create │ │ │ └── create.go │ │ ├── internal │ │ │ ├── convert.go │ │ │ └── create.go │ │ └── types.go │ │ ├── utils │ │ └── utils.go │ │ └── version │ │ ├── conf.go │ │ ├── plugin.go │ │ ├── reconcile.go │ │ └── version.go ├── cyphar │ └── filepath-securejoin │ │ ├── COPYING.md │ │ ├── LICENSE.BSD │ │ ├── LICENSE.MPL-2.0 │ │ ├── internal │ │ └── consts │ │ │ └── consts.go │ │ └── pathrs-lite │ │ ├── README.md │ │ ├── doc.go │ │ ├── internal │ │ ├── assert │ │ │ └── assert.go │ │ ├── errors_linux.go │ │ ├── fd │ │ │ ├── at_linux.go │ │ │ ├── fd.go │ │ │ ├── fd_linux.go │ │ │ ├── mount_linux.go │ │ │ └── openat2_linux.go │ │ ├── gocompat │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── gocompat_errors_go120.go │ │ │ ├── gocompat_errors_unsupported.go │ │ │ ├── gocompat_generics_go121.go │ │ │ └── gocompat_generics_unsupported.go │ │ ├── gopathrs │ │ │ ├── doc.go │ │ │ ├── lookup_linux.go │ │ │ ├── mkdir_linux.go │ │ │ ├── open_linux.go │ │ │ └── openat2_linux.go │ │ ├── kernelversion │ │ │ └── kernel_linux.go │ │ ├── linux │ │ │ ├── doc.go │ │ │ ├── mount_linux.go │ │ │ └── openat2_linux.go │ │ └── procfs │ │ │ ├── procfs_linux.go │ │ │ └── procfs_lookup_linux.go │ │ ├── mkdir.go │ │ ├── mkdir_libpathrs.go │ │ ├── mkdir_purego.go │ │ ├── open.go │ │ ├── open_libpathrs.go │ │ ├── open_purego.go │ │ └── procfs │ │ ├── procfs_libpathrs.go │ │ └── procfs_purego.go ├── gogo │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── gogoproto │ │ ├── Makefile │ │ ├── doc.go │ │ ├── gogo.pb.go │ │ ├── gogo.pb.golden │ │ ├── gogo.proto │ │ └── helper.go │ │ ├── proto │ │ ├── Makefile │ │ ├── clone.go │ │ ├── custom_gogo.go │ │ ├── decode.go │ │ ├── deprecated.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 │ │ ├── table_marshal.go │ │ ├── table_marshal_gogo.go │ │ ├── table_merge.go │ │ ├── table_unmarshal.go │ │ ├── table_unmarshal_gogo.go │ │ ├── text.go │ │ ├── text_gogo.go │ │ ├── text_parser.go │ │ ├── timestamp.go │ │ ├── timestamp_gogo.go │ │ ├── wrappers.go │ │ └── wrappers_gogo.go │ │ └── protoc-gen-gogo │ │ └── descriptor │ │ ├── Makefile │ │ ├── descriptor.go │ │ ├── descriptor.pb.go │ │ ├── descriptor_gostring.gen.go │ │ └── helper.go ├── golang │ └── groupcache │ │ ├── LICENSE │ │ └── lru │ │ └── lru.go ├── hashicorp │ ├── errwrap │ │ ├── LICENSE │ │ ├── README.md │ │ └── errwrap.go │ └── go-multierror │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── append.go │ │ ├── flatten.go │ │ ├── format.go │ │ ├── multierror.go │ │ ├── prefix.go │ │ └── sort.go ├── opencontainers │ ├── runtime-spec │ │ ├── LICENSE │ │ └── specs-go │ │ │ ├── config.go │ │ │ ├── state.go │ │ │ └── version.go │ ├── runtime-tools │ │ ├── LICENSE │ │ ├── error │ │ │ └── error.go │ │ ├── filepath │ │ │ ├── abs.go │ │ │ ├── ancestor.go │ │ │ ├── clean.go │ │ │ ├── doc.go │ │ │ ├── join.go │ │ │ └── separator.go │ │ ├── generate │ │ │ ├── config.go │ │ │ ├── generate.go │ │ │ └── seccomp │ │ │ │ ├── consts.go │ │ │ │ ├── parse_action.go │ │ │ │ ├── parse_architecture.go │ │ │ │ ├── parse_arguments.go │ │ │ │ ├── parse_remove.go │ │ │ │ ├── seccomp_default.go │ │ │ │ ├── seccomp_default_linux.go │ │ │ │ ├── seccomp_default_unsupported.go │ │ │ │ └── syscall_compare.go │ │ ├── specerror │ │ │ ├── bundle.go │ │ │ ├── config-linux.go │ │ │ ├── config-windows.go │ │ │ ├── config.go │ │ │ ├── error.go │ │ │ ├── runtime-linux.go │ │ │ └── runtime.go │ │ └── validate │ │ │ ├── validate.go │ │ │ ├── validate_linux.go │ │ │ └── validate_unsupported.go │ └── selinux │ │ ├── LICENSE │ │ ├── go-selinux │ │ ├── doc.go │ │ ├── label │ │ │ ├── label.go │ │ │ ├── label_linux.go │ │ │ └── label_stub.go │ │ ├── selinux.go │ │ ├── selinux_linux.go │ │ ├── selinux_stub.go │ │ └── xattrs_linux.go │ │ └── pkg │ │ └── pwalkdir │ │ ├── README.md │ │ └── pwalkdir.go ├── pkg │ └── errors │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── errors.go │ │ ├── go113.go │ │ └── stack.go ├── sirupsen │ └── logrus │ │ ├── .gitignore │ │ ├── .golangci.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── alt_exit.go │ │ ├── appveyor.yml │ │ ├── buffer_pool.go │ │ ├── doc.go │ │ ├── entry.go │ │ ├── exported.go │ │ ├── formatter.go │ │ ├── hooks.go │ │ ├── json_formatter.go │ │ ├── logger.go │ │ ├── logrus.go │ │ ├── terminal_check_appengine.go │ │ ├── terminal_check_bsd.go │ │ ├── terminal_check_js.go │ │ ├── terminal_check_no_terminal.go │ │ ├── terminal_check_notappengine.go │ │ ├── terminal_check_solaris.go │ │ ├── terminal_check_unix.go │ │ ├── terminal_check_windows.go │ │ ├── text_formatter.go │ │ └── writer.go ├── syndtr │ └── gocapability │ │ ├── LICENSE │ │ └── capability │ │ ├── capability.go │ │ ├── capability_linux.go │ │ ├── capability_noop.go │ │ ├── enum.go │ │ ├── enum_gen.go │ │ └── syscall_linux.go └── xeipuuv │ ├── gojsonpointer │ ├── LICENSE-APACHE-2.0.txt │ ├── README.md │ └── pointer.go │ ├── gojsonreference │ ├── LICENSE-APACHE-2.0.txt │ ├── README.md │ └── reference.go │ └── gojsonschema │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE-APACHE-2.0.txt │ ├── README.md │ ├── draft.go │ ├── errors.go │ ├── format_checkers.go │ ├── glide.yaml │ ├── internalLog.go │ ├── jsonContext.go │ ├── jsonLoader.go │ ├── locales.go │ ├── result.go │ ├── schema.go │ ├── schemaLoader.go │ ├── schemaPool.go │ ├── schemaReferencePool.go │ ├── schemaType.go │ ├── subSchema.go │ ├── types.go │ ├── utils.go │ └── validation.go ├── go.opencensus.io ├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── appveyor.yml ├── internal │ ├── internal.go │ ├── sanitize.go │ └── traceinternals.go ├── opencensus.go └── trace │ ├── basetypes.go │ ├── config.go │ ├── doc.go │ ├── evictedqueue.go │ ├── export.go │ ├── internal │ └── internal.go │ ├── lrumap.go │ ├── sampling.go │ ├── spanbucket.go │ ├── spanstore.go │ ├── status_codes.go │ ├── trace.go │ ├── trace_api.go │ ├── trace_go11.go │ ├── trace_nongo11.go │ └── tracestate │ └── tracestate.go ├── golang.org └── x │ ├── sync │ ├── LICENSE │ ├── PATENTS │ └── errgroup │ │ ├── errgroup.go │ │ ├── go120.go │ │ └── pre_go120.go │ └── sys │ ├── LICENSE │ ├── PATENTS │ ├── internal │ └── unsafeheader │ │ └── unsafeheader.go │ ├── unix │ ├── .gitignore │ ├── README.md │ ├── affinity_linux.go │ ├── aliases.go │ ├── asm_aix_ppc64.s │ ├── asm_bsd_386.s │ ├── asm_bsd_amd64.s │ ├── asm_bsd_arm.s │ ├── asm_bsd_arm64.s │ ├── asm_bsd_ppc64.s │ ├── asm_bsd_riscv64.s │ ├── asm_linux_386.s │ ├── asm_linux_amd64.s │ ├── asm_linux_arm.s │ ├── asm_linux_arm64.s │ ├── asm_linux_loong64.s │ ├── asm_linux_mips64x.s │ ├── asm_linux_mipsx.s │ ├── asm_linux_ppc64x.s │ ├── asm_linux_riscv64.s │ ├── asm_linux_s390x.s │ ├── asm_openbsd_mips64.s │ ├── asm_solaris_amd64.s │ ├── asm_zos_s390x.s │ ├── bluetooth_linux.go │ ├── cap_freebsd.go │ ├── constants.go │ ├── dev_aix_ppc.go │ ├── dev_aix_ppc64.go │ ├── dev_darwin.go │ ├── dev_dragonfly.go │ ├── dev_freebsd.go │ ├── dev_linux.go │ ├── dev_netbsd.go │ ├── dev_openbsd.go │ ├── dev_zos.go │ ├── dirent.go │ ├── endian_big.go │ ├── endian_little.go │ ├── env_unix.go │ ├── epoll_zos.go │ ├── fcntl.go │ ├── fcntl_darwin.go │ ├── fcntl_linux_32bit.go │ ├── fdset.go │ ├── fstatfs_zos.go │ ├── gccgo.go │ ├── gccgo_c.c │ ├── gccgo_linux_amd64.go │ ├── ifreq_linux.go │ ├── ioctl.go │ ├── ioctl_linux.go │ ├── ioctl_zos.go │ ├── mkall.sh │ ├── mkerrors.sh │ ├── pagesize_unix.go │ ├── pledge_openbsd.go │ ├── ptrace_darwin.go │ ├── ptrace_ios.go │ ├── race.go │ ├── race0.go │ ├── readdirent_getdents.go │ ├── readdirent_getdirentries.go │ ├── sockcmsg_dragonfly.go │ ├── sockcmsg_linux.go │ ├── sockcmsg_unix.go │ ├── sockcmsg_unix_other.go │ ├── syscall.go │ ├── syscall_aix.go │ ├── syscall_aix_ppc.go │ ├── syscall_aix_ppc64.go │ ├── syscall_bsd.go │ ├── syscall_darwin.go │ ├── syscall_darwin_amd64.go │ ├── syscall_darwin_arm64.go │ ├── syscall_darwin_libSystem.go │ ├── syscall_dragonfly.go │ ├── syscall_dragonfly_amd64.go │ ├── syscall_freebsd.go │ ├── syscall_freebsd_386.go │ ├── syscall_freebsd_amd64.go │ ├── syscall_freebsd_arm.go │ ├── syscall_freebsd_arm64.go │ ├── syscall_freebsd_riscv64.go │ ├── syscall_illumos.go │ ├── syscall_linux.go │ ├── syscall_linux_386.go │ ├── syscall_linux_alarm.go │ ├── syscall_linux_amd64.go │ ├── syscall_linux_amd64_gc.go │ ├── syscall_linux_arm.go │ ├── syscall_linux_arm64.go │ ├── syscall_linux_gc.go │ ├── syscall_linux_gc_386.go │ ├── syscall_linux_gc_arm.go │ ├── syscall_linux_gccgo_386.go │ ├── syscall_linux_gccgo_arm.go │ ├── syscall_linux_loong64.go │ ├── syscall_linux_mips64x.go │ ├── syscall_linux_mipsx.go │ ├── syscall_linux_ppc.go │ ├── syscall_linux_ppc64x.go │ ├── syscall_linux_riscv64.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_netbsd_arm64.go │ ├── syscall_openbsd.go │ ├── syscall_openbsd_386.go │ ├── syscall_openbsd_amd64.go │ ├── syscall_openbsd_arm.go │ ├── syscall_openbsd_arm64.go │ ├── syscall_openbsd_libc.go │ ├── syscall_openbsd_mips64.go │ ├── syscall_openbsd_ppc64.go │ ├── syscall_openbsd_riscv64.go │ ├── syscall_solaris.go │ ├── syscall_solaris_amd64.go │ ├── syscall_unix.go │ ├── syscall_unix_gc.go │ ├── syscall_unix_gc_ppc64x.go │ ├── syscall_zos_s390x.go │ ├── sysvshm_linux.go │ ├── sysvshm_unix.go │ ├── sysvshm_unix_other.go │ ├── timestruct.go │ ├── unveil_openbsd.go │ ├── xattr_bsd.go │ ├── zerrors_aix_ppc.go │ ├── zerrors_aix_ppc64.go │ ├── zerrors_darwin_amd64.go │ ├── zerrors_darwin_arm64.go │ ├── zerrors_dragonfly_amd64.go │ ├── zerrors_freebsd_386.go │ ├── zerrors_freebsd_amd64.go │ ├── zerrors_freebsd_arm.go │ ├── zerrors_freebsd_arm64.go │ ├── zerrors_freebsd_riscv64.go │ ├── zerrors_linux.go │ ├── zerrors_linux_386.go │ ├── zerrors_linux_amd64.go │ ├── zerrors_linux_arm.go │ ├── zerrors_linux_arm64.go │ ├── zerrors_linux_loong64.go │ ├── zerrors_linux_mips.go │ ├── zerrors_linux_mips64.go │ ├── zerrors_linux_mips64le.go │ ├── zerrors_linux_mipsle.go │ ├── zerrors_linux_ppc.go │ ├── zerrors_linux_ppc64.go │ ├── zerrors_linux_ppc64le.go │ ├── zerrors_linux_riscv64.go │ ├── zerrors_linux_s390x.go │ ├── zerrors_linux_sparc64.go │ ├── zerrors_netbsd_386.go │ ├── zerrors_netbsd_amd64.go │ ├── zerrors_netbsd_arm.go │ ├── zerrors_netbsd_arm64.go │ ├── zerrors_openbsd_386.go │ ├── zerrors_openbsd_amd64.go │ ├── zerrors_openbsd_arm.go │ ├── zerrors_openbsd_arm64.go │ ├── zerrors_openbsd_mips64.go │ ├── zerrors_openbsd_ppc64.go │ ├── zerrors_openbsd_riscv64.go │ ├── zerrors_solaris_amd64.go │ ├── zerrors_zos_s390x.go │ ├── zptrace_armnn_linux.go │ ├── zptrace_linux_arm64.go │ ├── zptrace_mipsnn_linux.go │ ├── zptrace_mipsnnle_linux.go │ ├── zptrace_x86_linux.go │ ├── zsyscall_aix_ppc.go │ ├── zsyscall_aix_ppc64.go │ ├── zsyscall_aix_ppc64_gc.go │ ├── zsyscall_aix_ppc64_gccgo.go │ ├── zsyscall_darwin_amd64.go │ ├── zsyscall_darwin_amd64.s │ ├── zsyscall_darwin_arm64.go │ ├── zsyscall_darwin_arm64.s │ ├── zsyscall_dragonfly_amd64.go │ ├── zsyscall_freebsd_386.go │ ├── zsyscall_freebsd_amd64.go │ ├── zsyscall_freebsd_arm.go │ ├── zsyscall_freebsd_arm64.go │ ├── zsyscall_freebsd_riscv64.go │ ├── zsyscall_illumos_amd64.go │ ├── zsyscall_linux.go │ ├── zsyscall_linux_386.go │ ├── zsyscall_linux_amd64.go │ ├── zsyscall_linux_arm.go │ ├── zsyscall_linux_arm64.go │ ├── zsyscall_linux_loong64.go │ ├── zsyscall_linux_mips.go │ ├── zsyscall_linux_mips64.go │ ├── zsyscall_linux_mips64le.go │ ├── zsyscall_linux_mipsle.go │ ├── zsyscall_linux_ppc.go │ ├── zsyscall_linux_ppc64.go │ ├── zsyscall_linux_ppc64le.go │ ├── zsyscall_linux_riscv64.go │ ├── zsyscall_linux_s390x.go │ ├── zsyscall_linux_sparc64.go │ ├── zsyscall_netbsd_386.go │ ├── zsyscall_netbsd_amd64.go │ ├── zsyscall_netbsd_arm.go │ ├── zsyscall_netbsd_arm64.go │ ├── zsyscall_openbsd_386.go │ ├── zsyscall_openbsd_386.s │ ├── zsyscall_openbsd_amd64.go │ ├── zsyscall_openbsd_amd64.s │ ├── zsyscall_openbsd_arm.go │ ├── zsyscall_openbsd_arm.s │ ├── zsyscall_openbsd_arm64.go │ ├── zsyscall_openbsd_arm64.s │ ├── zsyscall_openbsd_mips64.go │ ├── zsyscall_openbsd_ppc64.go │ ├── zsyscall_openbsd_ppc64.s │ ├── zsyscall_openbsd_riscv64.go │ ├── zsyscall_openbsd_riscv64.s │ ├── zsyscall_solaris_amd64.go │ ├── zsyscall_zos_s390x.go │ ├── zsysctl_openbsd_386.go │ ├── zsysctl_openbsd_amd64.go │ ├── zsysctl_openbsd_arm.go │ ├── zsysctl_openbsd_arm64.go │ ├── zsysctl_openbsd_mips64.go │ ├── zsysctl_openbsd_ppc64.go │ ├── zsysctl_openbsd_riscv64.go │ ├── zsysnum_darwin_amd64.go │ ├── zsysnum_darwin_arm64.go │ ├── zsysnum_dragonfly_amd64.go │ ├── zsysnum_freebsd_386.go │ ├── zsysnum_freebsd_amd64.go │ ├── zsysnum_freebsd_arm.go │ ├── zsysnum_freebsd_arm64.go │ ├── zsysnum_freebsd_riscv64.go │ ├── zsysnum_linux_386.go │ ├── zsysnum_linux_amd64.go │ ├── zsysnum_linux_arm.go │ ├── zsysnum_linux_arm64.go │ ├── zsysnum_linux_loong64.go │ ├── zsysnum_linux_mips.go │ ├── zsysnum_linux_mips64.go │ ├── zsysnum_linux_mips64le.go │ ├── zsysnum_linux_mipsle.go │ ├── zsysnum_linux_ppc.go │ ├── zsysnum_linux_ppc64.go │ ├── zsysnum_linux_ppc64le.go │ ├── zsysnum_linux_riscv64.go │ ├── zsysnum_linux_s390x.go │ ├── zsysnum_linux_sparc64.go │ ├── zsysnum_netbsd_386.go │ ├── zsysnum_netbsd_amd64.go │ ├── zsysnum_netbsd_arm.go │ ├── zsysnum_netbsd_arm64.go │ ├── zsysnum_openbsd_386.go │ ├── zsysnum_openbsd_amd64.go │ ├── zsysnum_openbsd_arm.go │ ├── zsysnum_openbsd_arm64.go │ ├── zsysnum_openbsd_mips64.go │ ├── zsysnum_openbsd_ppc64.go │ ├── zsysnum_openbsd_riscv64.go │ ├── zsysnum_zos_s390x.go │ ├── ztypes_aix_ppc.go │ ├── ztypes_aix_ppc64.go │ ├── ztypes_darwin_amd64.go │ ├── ztypes_darwin_arm64.go │ ├── ztypes_dragonfly_amd64.go │ ├── ztypes_freebsd_386.go │ ├── ztypes_freebsd_amd64.go │ ├── ztypes_freebsd_arm.go │ ├── ztypes_freebsd_arm64.go │ ├── ztypes_freebsd_riscv64.go │ ├── ztypes_linux.go │ ├── ztypes_linux_386.go │ ├── ztypes_linux_amd64.go │ ├── ztypes_linux_arm.go │ ├── ztypes_linux_arm64.go │ ├── ztypes_linux_loong64.go │ ├── ztypes_linux_mips.go │ ├── ztypes_linux_mips64.go │ ├── ztypes_linux_mips64le.go │ ├── ztypes_linux_mipsle.go │ ├── ztypes_linux_ppc.go │ ├── ztypes_linux_ppc64.go │ ├── ztypes_linux_ppc64le.go │ ├── ztypes_linux_riscv64.go │ ├── ztypes_linux_s390x.go │ ├── ztypes_linux_sparc64.go │ ├── ztypes_netbsd_386.go │ ├── ztypes_netbsd_amd64.go │ ├── ztypes_netbsd_arm.go │ ├── ztypes_netbsd_arm64.go │ ├── ztypes_openbsd_386.go │ ├── ztypes_openbsd_amd64.go │ ├── ztypes_openbsd_arm.go │ ├── ztypes_openbsd_arm64.go │ ├── ztypes_openbsd_mips64.go │ ├── ztypes_openbsd_ppc64.go │ ├── ztypes_openbsd_riscv64.go │ ├── ztypes_solaris_amd64.go │ └── ztypes_zos_s390x.go │ └── windows │ ├── aliases.go │ ├── dll_windows.go │ ├── empty.s │ ├── env_windows.go │ ├── eventlog.go │ ├── exec_windows.go │ ├── memory_windows.go │ ├── mkerrors.bash │ ├── mkknownfolderids.bash │ ├── mksyscall.go │ ├── race.go │ ├── race0.go │ ├── registry │ ├── key.go │ ├── mksyscall.go │ ├── syscall.go │ ├── value.go │ └── zsyscall_windows.go │ ├── security_windows.go │ ├── service.go │ ├── setupapi_windows.go │ ├── str.go │ ├── syscall.go │ ├── syscall_windows.go │ ├── types_windows.go │ ├── types_windows_386.go │ ├── types_windows_amd64.go │ ├── types_windows_arm.go │ ├── types_windows_arm64.go │ ├── zerrors_windows.go │ ├── zknownfolderids_windows.go │ └── zsyscall_windows.go └── modules.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /cni/cni.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/cni/cni.go -------------------------------------------------------------------------------- /cni/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/cni/plugin.go -------------------------------------------------------------------------------- /common/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/common/args.go -------------------------------------------------------------------------------- /common/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/common/config.go -------------------------------------------------------------------------------- /common/core/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/common/core/core.go -------------------------------------------------------------------------------- /common/core/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/common/core/network.go -------------------------------------------------------------------------------- /common/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/common/plugin.go -------------------------------------------------------------------------------- /common/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/common/utils.go -------------------------------------------------------------------------------- /example/flannel_l2bridge.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/example/flannel_l2bridge.conf -------------------------------------------------------------------------------- /example/flannel_overlay.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/example/flannel_overlay.conf -------------------------------------------------------------------------------- /example/l2bridge-dualstack-cni-template.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/example/l2bridge-dualstack-cni-template.conf -------------------------------------------------------------------------------- /example/l2bridge.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/example/l2bridge.conf -------------------------------------------------------------------------------- /example/l2bridgedualstack_host-local_ipam.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/example/l2bridgedualstack_host-local_ipam.conf -------------------------------------------------------------------------------- /example/l2tunnel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/example/l2tunnel.conf -------------------------------------------------------------------------------- /example/nat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/example/nat.conf -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/go.sum -------------------------------------------------------------------------------- /network/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/network/endpoint.go -------------------------------------------------------------------------------- /network/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/network/manager.go -------------------------------------------------------------------------------- /network/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/network/network.go -------------------------------------------------------------------------------- /network/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/network/policy.go -------------------------------------------------------------------------------- /plugins/nat/nat_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/plugins/nat/nat_windows.go -------------------------------------------------------------------------------- /plugins/nat/nat_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/plugins/nat/nat_windows_test.go -------------------------------------------------------------------------------- /plugins/sdnbridge/sdnbridge_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/plugins/sdnbridge/sdnbridge_windows.go -------------------------------------------------------------------------------- /plugins/sdnbridge/sdnbridge_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/plugins/sdnbridge/sdnbridge_windows_test.go -------------------------------------------------------------------------------- /plugins/sdnoverlay/sdnoverlay_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/plugins/sdnoverlay/sdnoverlay_windows.go -------------------------------------------------------------------------------- /plugins/sdnoverlay/sdnoverlay_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/plugins/sdnoverlay/sdnoverlay_windows_test.go -------------------------------------------------------------------------------- /test/container/container_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/test/container/container_windows.go -------------------------------------------------------------------------------- /test/utilities/connectivity_testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/test/utilities/connectivity_testing.go -------------------------------------------------------------------------------- /test/utilities/container_testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/test/utilities/container_testing.go -------------------------------------------------------------------------------- /test/utilities/plugin_testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/test/utilities/plugin_testing.go -------------------------------------------------------------------------------- /test/utilities/testing_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/test/utilities/testing_windows.go -------------------------------------------------------------------------------- /vendor/cyphar.com/go-pathrs/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/cyphar.com/go-pathrs/.golangci.yml -------------------------------------------------------------------------------- /vendor/cyphar.com/go-pathrs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/cyphar.com/go-pathrs/COPYING -------------------------------------------------------------------------------- /vendor/cyphar.com/go-pathrs/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/cyphar.com/go-pathrs/doc.go -------------------------------------------------------------------------------- /vendor/cyphar.com/go-pathrs/handle_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/cyphar.com/go-pathrs/handle_linux.go -------------------------------------------------------------------------------- /vendor/cyphar.com/go-pathrs/internal/fdutils/fd_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/cyphar.com/go-pathrs/internal/fdutils/fd_linux.go -------------------------------------------------------------------------------- /vendor/cyphar.com/go-pathrs/internal/libpathrs/error_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/cyphar.com/go-pathrs/internal/libpathrs/error_unix.go -------------------------------------------------------------------------------- /vendor/cyphar.com/go-pathrs/procfs/procfs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/cyphar.com/go-pathrs/procfs/procfs_linux.go -------------------------------------------------------------------------------- /vendor/cyphar.com/go-pathrs/root_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/cyphar.com/go-pathrs/root_linux.go -------------------------------------------------------------------------------- /vendor/cyphar.com/go-pathrs/utils_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/cyphar.com/go-pathrs/utils_linux.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/containerplat 2 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/README.md -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/backup.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/ea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/ea.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/file.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/fileinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/fileinfo.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/hvsock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/hvsock.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/pipe.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pkg/etw/etw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/pkg/etw/etw.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pkg/etw/eventdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/pkg/etw/eventdata.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pkg/etw/eventmetadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/pkg/etw/eventmetadata.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pkg/etw/eventopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/pkg/etw/eventopt.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pkg/etw/fieldopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/pkg/etw/fieldopt.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pkg/etw/newprovider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/pkg/etw/newprovider.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pkg/etw/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/pkg/etw/provider.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pkg/etw/providerglobal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/pkg/etw/providerglobal.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pkg/etw/ptr64_32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/pkg/etw/ptr64_32.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pkg/etw/ptr64_64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/pkg/etw/ptr64_64.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pkg/etw/wrapper_32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/pkg/etw/wrapper_32.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pkg/etw/wrapper_64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/pkg/etw/wrapper_64.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pkg/etwlogrus/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/pkg/etwlogrus/hook.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pkg/guid/guid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/pkg/guid/guid.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/pkg/guid/guid_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/pkg/guid/guid_windows.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/privilege.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/privilege.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/reparse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/reparse.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/sd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/sd.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/syscall.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/vhd/vhd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/vhd/vhd.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/vhd/zvhd_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/vhd/zvhd_windows.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/go-winio/zsyscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/go-winio/zsyscall_windows.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | .idea 3 | .vscode 4 | -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @microsoft/containerplat -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/Protobuild.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/Protobuild.toml -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/README.md -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/computestorage/attach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/computestorage/attach.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/computestorage/destroy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/computestorage/destroy.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/computestorage/detach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/computestorage/detach.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/computestorage/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/computestorage/export.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/computestorage/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/computestorage/format.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/computestorage/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/computestorage/helpers.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/computestorage/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/computestorage/import.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/computestorage/mount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/computestorage/mount.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/computestorage/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/computestorage/setup.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/computestorage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/computestorage/storage.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/container.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/errors.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/functional_tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/functional_tests.ps1 -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hcn/hcn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hcn/hcn.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hcn/hcnendpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hcn/hcnendpoint.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hcn/hcnerrors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hcn/hcnerrors.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hcn/hcnglobals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hcn/hcnglobals.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hcn/hcnloadbalancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hcn/hcnloadbalancer.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hcn/hcnnamespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hcn/hcnnamespace.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hcn/hcnnetwork.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hcn/hcnnetwork.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hcn/hcnpolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hcn/hcnpolicy.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hcn/hcnroute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hcn/hcnroute.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hcn/hcnsupport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hcn/hcnsupport.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hcn/zsyscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hcn/zsyscall_windows.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hcsshim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hcsshim.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hnsendpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hnsendpoint.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hnsglobals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hnsglobals.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hnsnetwork.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hnsnetwork.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hnspolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hnspolicy.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hnspolicylist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hnspolicylist.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/hnssupport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/hnssupport.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/interface.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/cni/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/cni/registry.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/cow/cow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/cow/cow.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hcs/callback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/hcs/callback.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hcs/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/hcs/errors.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hcs/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/hcs/process.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hcs/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/hcs/service.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hcs/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/hcs/system.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hcs/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/hcs/utils.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hcs/waithelper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/hcs/waithelper.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hns/hns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/hns/hns.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hns/hnsfuncs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/hns/hnsfuncs.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hns/hnsglobals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/hns/hnsglobals.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hns/hnsnetwork.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/hns/hnsnetwork.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hns/hnspolicy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/hns/hnspolicy.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hns/hnssupport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/hns/hnssupport.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/hns/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/hns/namespace.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/log/g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/log/g.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/oc/exporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/oc/exporter.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/oc/span.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/oc/span.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/runhcs/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/runhcs/util.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/runhcs/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/runhcs/vm.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/wclayer/legacy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/wclayer/legacy.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/winapi/devices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/winapi/devices.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/winapi/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/winapi/errors.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/winapi/iocp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/winapi/iocp.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/winapi/logon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/winapi/logon.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/winapi/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/winapi/memory.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/winapi/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/winapi/net.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/winapi/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/winapi/path.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/winapi/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/winapi/process.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/winapi/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/winapi/system.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/winapi/thread.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/winapi/thread.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/winapi/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/winapi/utils.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/internal/winapi/winapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/internal/winapi/winapi.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/layer.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/osversion/windowsbuilds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/osversion/windowsbuilds.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/pkg/go-runhcs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/pkg/go-runhcs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/pkg/go-runhcs/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/pkg/go-runhcs/NOTICE -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/pkg/go-runhcs/runhcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/pkg/go-runhcs/runhcs.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/pkg/go-runhcs/runhcs_ps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/pkg/go-runhcs/runhcs_ps.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/process.go -------------------------------------------------------------------------------- /vendor/github.com/Microsoft/hcsshim/zsyscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/Microsoft/hcsshim/zsyscall_windows.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/blang/semver/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/blang/semver/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/blang/semver/README.md -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/blang/semver/json.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/blang/semver/package.json -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/blang/semver/range.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/blang/semver/semver.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/blang/semver/sort.go -------------------------------------------------------------------------------- /vendor/github.com/blang/semver/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/blang/semver/sql.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/cgroups/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/cgroups/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/containerd/cgroups/stats/v1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/cgroups/stats/v1/doc.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/cgroups/stats/v1/metrics.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/cgroups/stats/v1/metrics.pb.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/cgroups/stats/v1/metrics.pb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/cgroups/stats/v1/metrics.pb.txt -------------------------------------------------------------------------------- /vendor/github.com/containerd/cgroups/stats/v1/metrics.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/cgroups/stats/v1/metrics.proto -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/README.md -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/console.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/console_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/console_linux.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/console_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/console_unix.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/console_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/console_windows.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/console_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/console_zos.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/pty_freebsd_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/pty_freebsd_cgo.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/pty_freebsd_nocgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/pty_freebsd_nocgo.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/pty_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/pty_unix.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/tc_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/tc_darwin.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/tc_freebsd_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/tc_freebsd_cgo.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/tc_freebsd_nocgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/tc_freebsd_nocgo.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/tc_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/tc_linux.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/tc_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/tc_netbsd.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/tc_openbsd_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/tc_openbsd_cgo.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/tc_openbsd_nocgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/tc_openbsd_nocgo.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/tc_solaris_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/tc_solaris_cgo.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/tc_solaris_nocgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/tc_solaris_nocgo.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/tc_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/tc_unix.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/console/tc_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/console/tc_zos.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/go-runc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/go-runc/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/containerd/go-runc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/go-runc/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/containerd/go-runc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/go-runc/README.md -------------------------------------------------------------------------------- /vendor/github.com/containerd/go-runc/command_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/go-runc/command_linux.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/go-runc/command_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/go-runc/command_other.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/go-runc/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/go-runc/console.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/go-runc/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/go-runc/container.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/go-runc/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/go-runc/events.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/go-runc/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/go-runc/io.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/go-runc/io_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/go-runc/io_unix.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/go-runc/io_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/go-runc/io_windows.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/go-runc/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/go-runc/monitor.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/go-runc/runc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/go-runc/runc.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/go-runc/runc_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/go-runc/runc_unix.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/go-runc/runc_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/go-runc/runc_windows.go -------------------------------------------------------------------------------- /vendor/github.com/containerd/go-runc/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containerd/go-runc/utils.go -------------------------------------------------------------------------------- /vendor/github.com/containernetworking/cni/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containernetworking/cni/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/containernetworking/cni/pkg/invoke/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containernetworking/cni/pkg/invoke/args.go -------------------------------------------------------------------------------- /vendor/github.com/containernetworking/cni/pkg/invoke/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containernetworking/cni/pkg/invoke/exec.go -------------------------------------------------------------------------------- /vendor/github.com/containernetworking/cni/pkg/invoke/find.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containernetworking/cni/pkg/invoke/find.go -------------------------------------------------------------------------------- /vendor/github.com/containernetworking/cni/pkg/skel/skel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containernetworking/cni/pkg/skel/skel.go -------------------------------------------------------------------------------- /vendor/github.com/containernetworking/cni/pkg/types/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containernetworking/cni/pkg/types/args.go -------------------------------------------------------------------------------- /vendor/github.com/containernetworking/cni/pkg/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containernetworking/cni/pkg/types/types.go -------------------------------------------------------------------------------- /vendor/github.com/containernetworking/cni/pkg/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containernetworking/cni/pkg/utils/utils.go -------------------------------------------------------------------------------- /vendor/github.com/containernetworking/cni/pkg/version/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/containernetworking/cni/pkg/version/conf.go -------------------------------------------------------------------------------- /vendor/github.com/cyphar/filepath-securejoin/COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/cyphar/filepath-securejoin/COPYING.md -------------------------------------------------------------------------------- /vendor/github.com/cyphar/filepath-securejoin/LICENSE.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/cyphar/filepath-securejoin/LICENSE.BSD -------------------------------------------------------------------------------- /vendor/github.com/cyphar/filepath-securejoin/LICENSE.MPL-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/cyphar/filepath-securejoin/LICENSE.MPL-2.0 -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/gogoproto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/gogoproto/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/gogoproto/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/gogoproto/doc.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/gogoproto/gogo.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/gogoproto/gogo.pb.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/gogoproto/gogo.pb.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/gogoproto/gogo.pb.golden -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/gogoproto/gogo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/gogoproto/gogo.proto -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/gogoproto/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/gogoproto/helper.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/Makefile -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/clone.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/custom_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/custom_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/decode.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/deprecated.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/discard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/discard.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/duration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/duration.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/duration_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/duration_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/encode.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/encode_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/encode_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/equal.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/extensions.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/extensions_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/extensions_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/lib.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/lib_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/lib_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/message_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/message_set.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/pointer_reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/pointer_reflect.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/pointer_reflect_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/pointer_reflect_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/pointer_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/pointer_unsafe.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/pointer_unsafe_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/pointer_unsafe_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/properties.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/properties_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/properties_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/skip_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/skip_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/table_marshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/table_marshal.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/table_marshal_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/table_marshal_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/table_merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/table_merge.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/table_unmarshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/table_unmarshal.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/table_unmarshal_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/table_unmarshal_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/text.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/text_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/text_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/text_parser.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/timestamp.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/timestamp_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/timestamp_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/wrappers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/wrappers.go -------------------------------------------------------------------------------- /vendor/github.com/gogo/protobuf/proto/wrappers_gogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/gogo/protobuf/proto/wrappers_gogo.go -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/golang/groupcache/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/golang/groupcache/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/golang/groupcache/lru/lru.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/errwrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/hashicorp/errwrap/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/errwrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/hashicorp/errwrap/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/errwrap/errwrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/hashicorp/errwrap/errwrap.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-multierror/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/hashicorp/go-multierror/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-multierror/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/hashicorp/go-multierror/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-multierror/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/hashicorp/go-multierror/Makefile -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-multierror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/hashicorp/go-multierror/README.md -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-multierror/append.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/hashicorp/go-multierror/append.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-multierror/flatten.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/hashicorp/go-multierror/flatten.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-multierror/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/hashicorp/go-multierror/format.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-multierror/multierror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/hashicorp/go-multierror/multierror.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-multierror/prefix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/hashicorp/go-multierror/prefix.go -------------------------------------------------------------------------------- /vendor/github.com/hashicorp/go-multierror/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/hashicorp/go-multierror/sort.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runtime-spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/opencontainers/runtime-spec/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runtime-tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/opencontainers/runtime-tools/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runtime-tools/error/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/opencontainers/runtime-tools/error/error.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runtime-tools/filepath/abs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/opencontainers/runtime-tools/filepath/abs.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/runtime-tools/filepath/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/opencontainers/runtime-tools/filepath/doc.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/selinux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/opencontainers/selinux/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/selinux/go-selinux/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/opencontainers/selinux/go-selinux/doc.go -------------------------------------------------------------------------------- /vendor/github.com/opencontainers/selinux/go-selinux/selinux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/opencontainers/selinux/go-selinux/selinux.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/pkg/errors/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.gitignore: -------------------------------------------------------------------------------- 1 | logrus 2 | vendor 3 | 4 | .idea/ 5 | -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/.golangci.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/README.md -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/alt_exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/alt_exit.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/appveyor.yml -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/buffer_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/buffer_pool.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/doc.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/entry.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/exported.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/exported.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/formatter.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/hooks.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/json_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/json_formatter.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/logger.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/logrus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/logrus.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/terminal_check_bsd.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/terminal_check_js.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/terminal_check_solaris.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/terminal_check_unix.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/terminal_check_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/terminal_check_windows.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/text_formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/text_formatter.go -------------------------------------------------------------------------------- /vendor/github.com/sirupsen/logrus/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/sirupsen/logrus/writer.go -------------------------------------------------------------------------------- /vendor/github.com/syndtr/gocapability/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/syndtr/gocapability/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/syndtr/gocapability/capability/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/syndtr/gocapability/capability/enum.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonpointer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonpointer/README.md -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonpointer/pointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonpointer/pointer.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonreference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonreference/README.md -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonreference/reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonreference/reference.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/.gitignore: -------------------------------------------------------------------------------- 1 | *.sw[nop] 2 | *.iml 3 | .vscode/ 4 | -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/README.md -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/draft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/draft.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/errors.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/format_checkers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/format_checkers.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/glide.yaml -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/internalLog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/internalLog.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/jsonContext.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/jsonContext.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/jsonLoader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/jsonLoader.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/locales.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/locales.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/result.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/schema.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/schemaLoader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/schemaLoader.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/schemaPool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/schemaPool.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/schemaType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/schemaType.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/subSchema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/subSchema.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/types.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/utils.go -------------------------------------------------------------------------------- /vendor/github.com/xeipuuv/gojsonschema/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/github.com/xeipuuv/gojsonschema/validation.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/.gitignore -------------------------------------------------------------------------------- /vendor/go.opencensus.io/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /vendor/go.opencensus.io/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /vendor/go.opencensus.io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/Makefile -------------------------------------------------------------------------------- /vendor/go.opencensus.io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/README.md -------------------------------------------------------------------------------- /vendor/go.opencensus.io/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/appveyor.yml -------------------------------------------------------------------------------- /vendor/go.opencensus.io/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/internal/internal.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/internal/sanitize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/internal/sanitize.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/internal/traceinternals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/internal/traceinternals.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/opencensus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/opencensus.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/basetypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/trace/basetypes.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/trace/config.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/trace/doc.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/evictedqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/trace/evictedqueue.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/trace/export.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/internal/internal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/trace/internal/internal.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/lrumap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/trace/lrumap.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/sampling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/trace/sampling.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/spanbucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/trace/spanbucket.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/spanstore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/trace/spanstore.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/status_codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/trace/status_codes.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/trace/trace.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/trace/trace_api.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace_go11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/trace/trace_go11.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/trace_nongo11.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/trace/trace_nongo11.go -------------------------------------------------------------------------------- /vendor/go.opencensus.io/trace/tracestate/tracestate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/go.opencensus.io/trace/tracestate/tracestate.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sync/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/errgroup/errgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sync/errgroup/errgroup.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/errgroup/go120.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sync/errgroup/go120.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sync/errgroup/pre_go120.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sync/errgroup/pre_go120.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_loong64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_linux_loong64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_riscv64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm_zos_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/asm_zos_s390x.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/epoll_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/epoll_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/fcntl_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fstatfs_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/fstatfs_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ifreq_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ifreq_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ioctl_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ioctl_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/pledge_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/pledge_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ptrace_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ptrace_ios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ptrace_ios.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/readdirent_getdents.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/readdirent_getdents.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/readdirent_getdirentries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/readdirent_getdirentries.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_illumos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_illumos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_alarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_alarm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_loong64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_libc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_libc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_openbsd_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_openbsd_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sysvshm_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/sysvshm_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sysvshm_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/sysvshm_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/sysvshm_unix_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/sysvshm_unix_other.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/unveil_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/unveil_openbsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zptrace_x86_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_freebsd_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_freebsd_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysctl_openbsd_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysctl_openbsd_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_openbsd_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_openbsd_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_ppc64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_openbsd_riscv64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_openbsd_riscv64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/dll_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/dll_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/empty.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/env_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/env_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/eventlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/eventlog.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/exec_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/exec_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/memory_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/memory_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mkerrors.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/mkerrors.bash -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mkknownfolderids.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/mkknownfolderids.bash -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/registry/key.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/registry/mksyscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/registry/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/registry/value.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/security_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/security_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/service.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/setupapi_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/setupapi_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/syscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/syscall_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/types_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/types_windows_386.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/types_windows_amd64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/types_windows_arm.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/types_windows_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/types_windows_arm64.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/zerrors_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/zerrors_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/zknownfolderids_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/zknownfolderids_windows.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/zsyscall_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/golang.org/x/sys/windows/zsyscall_windows.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/windows-container-networking/HEAD/vendor/modules.txt --------------------------------------------------------------------------------