kubernetes/vendor/github.com/containerd/console
Kirtana Ashok 3fba9930b7 Update cadvisor and hcsshim versions
Signed-off-by: Kirtana Ashok <kiashok@microsoft.com>
2024-09-22 11:50:45 -07:00
..
.golangci.yml Update cadvisor and hcsshim versions 2024-09-22 11:50:45 -07:00
console.go Update cadvisor and hcsshim versions 2024-09-22 11:50:45 -07:00
console_linux.go Update cadvisor and hcsshim versions 2024-09-22 11:50:45 -07:00
console_other.go Update cadvisor and hcsshim versions 2024-09-22 11:50:45 -07:00
console_unix.go Update cadvisor and hcsshim versions 2024-09-22 11:50:45 -07:00
console_windows.go Update cadvisor and hcsshim versions 2024-09-22 11:50:45 -07:00
LICENSE update vendor 2020-03-25 17:11:16 -04:00
pty_freebsd_cgo.go Update cadvisor and hcsshim versions 2024-09-22 11:50:45 -07:00
pty_freebsd_nocgo.go Update cadvisor and hcsshim versions 2024-09-22 11:50:45 -07:00
pty_unix.go Update cadvisor and hcsshim versions 2024-09-22 11:50:45 -07:00
pty_zos.go Update cadvisor and hcsshim versions 2024-09-22 11:50:45 -07:00
README.md Update cadvisor and hcsshim versions 2024-09-22 11:50:45 -07:00
tc_darwin.go vendor: cadvisor v0.39.0 2021-03-08 22:10:29 -08:00
tc_freebsd_cgo.go Update cadvisor and hcsshim versions 2024-09-22 11:50:45 -07:00
tc_freebsd_nocgo.go Update cadvisor and hcsshim versions 2024-09-22 11:50:45 -07:00
tc_linux.go vendor: bump runc to rc95 2021-05-19 23:51:59 -07:00
tc_netbsd.go vendor: cadvisor v0.39.0 2021-03-08 22:10:29 -08:00
tc_openbsd_cgo.go Update cadvisor and hcsshim versions 2024-09-22 11:50:45 -07:00
tc_openbsd_nocgo.go Update cadvisor and hcsshim versions 2024-09-22 11:50:45 -07:00
tc_unix.go Update cadvisor and hcsshim versions 2024-09-22 11:50:45 -07:00
tc_zos.go Update cadvisor and hcsshim versions 2024-09-22 11:50:45 -07:00

console

PkgGoDev Build Status Go Report Card

Golang package for dealing with consoles. Light on deps and a simple API.

Modifying the current process

current := console.Current()
defer current.Reset()

if err := current.SetRaw(); err != nil {
}
ws, err := current.Size()
current.Resize(ws)

Project details

console is a containerd sub-project, licensed under the Apache 2.0 license. As a containerd sub-project, you will find the:

information in our containerd/project repository.