const syscall.ETIMEDOUT

3 uses

	syscall (current package)
		syscall_unix.go#L139: 	return e == EAGAIN || e == EWOULDBLOCK || e == ETIMEDOUT
		zerrors_linux_amd64.go#L1306: 	ETIMEDOUT       = Errno(0x6e)

	google.golang.org/grpc
		clientconn.go#L1587: 	case errors.Is(err, syscall.ETIMEDOUT), errors.Is(err, context.DeadlineExceeded), errors.Is(err, os.ErrDeadlineExceeded):