buildx/vendor/github.com/containerd/console
Jonathan A. Sternberg e1adeee898
vendor: github.com/moby/buildkit v0.23.0-rc1
Signed-off-by: Jonathan A. Sternberg <jonathan.sternberg@docker.com>
2025-06-11 16:29:31 -05:00
..
.golangci.yml vendor: github.com/containerd/console 8f6c4e4 2024-02-05 12:16:39 +01:00
LICENSE vendor: add buildkit 2019-03-23 23:11:26 -07:00
README.md vendor: github.com/containerd/console 8f6c4e4 2024-02-05 12:16:39 +01:00
console.go vendor: github.com/containerd/console 8f6c4e4 2024-02-05 12:16:39 +01:00
console_linux.go vendor: github.com/containerd/console 8f6c4e4 2024-02-05 12:16:39 +01:00
console_other.go vendor: github.com/moby/buildkit v0.23.0-rc1 2025-06-11 16:29:31 -05:00
console_unix.go vendor: github.com/moby/buildkit v0.23.0-rc1 2025-06-11 16:29:31 -05:00
console_windows.go vendor: github.com/containerd/console 8f6c4e4 2024-02-05 12:16:39 +01:00
pty_freebsd_cgo.go vendor: github.com/containerd/console 8f6c4e4 2024-02-05 12:16:39 +01:00
pty_freebsd_nocgo.go vendor: github.com/containerd/console 8f6c4e4 2024-02-05 12:16:39 +01:00
pty_unix.go vendor: github.com/containerd/console 8f6c4e4 2024-02-05 12:16:39 +01:00
pty_zos.go vendor: github.com/containerd/console 8f6c4e4 2024-02-05 12:16:39 +01:00
tc_darwin.go vendor: github.com/moby/buildkit v0.23.0-rc1 2025-06-11 16:29:31 -05:00
tc_freebsd_cgo.go vendor: github.com/moby/buildkit v0.23.0-rc1 2025-06-11 16:29:31 -05:00
tc_freebsd_nocgo.go vendor: github.com/moby/buildkit v0.23.0-rc1 2025-06-11 16:29:31 -05:00
tc_linux.go vendor: github.com/moby/buildkit v0.23.0-rc1 2025-06-11 16:29:31 -05:00
tc_netbsd.go vendor: github.com/moby/buildkit v0.23.0-rc1 2025-06-11 16:29:31 -05:00
tc_openbsd_cgo.go vendor: github.com/moby/buildkit v0.23.0-rc1 2025-06-11 16:29:31 -05:00
tc_openbsd_nocgo.go vendor: github.com/moby/buildkit v0.23.0-rc1 2025-06-11 16:29:31 -05:00
tc_unix.go vendor: github.com/containerd/console 8f6c4e4 2024-02-05 12:16:39 +01:00
tc_zos.go vendor: github.com/moby/buildkit v0.23.0-rc1 2025-06-11 16:29:31 -05:00

README.md

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.