Chengxi

Results 5 issues of Chengxi

### Description I am trying to use the docker checkpoint feature https://docs.docker.com/reference/cli/docker/checkpoint/. I have done the following commands. ``` root@iZ2zef7sqxs9idaeluuxe0Z:~# docker run --init --security-opt=seccomp:unconfined --name cr -d busybox /bin/sh -c...

status/0-triage
kind/bug
kind/experimental
version/25.0
area/checkpoint

当前Docker部署该项目后使用docker stop命令需要等待10s才能关闭容器(其实就是时间太长了变成docker kill了)。遂希望能加个--init选项

I realized that we have this method https://github.com/schollz/progressbar/blob/03fc4e907750adc6f00a004986a63c80616923b8/progressbar.go#L361-L368 it was called by `NewOption64` https://github.com/schollz/progressbar/blob/03fc4e907750adc6f00a004986a63c80616923b8/progressbar.go#L319-L334 So even we didn't render it, the lastShown time was set to time.Now() which is not...

This pr is created to resolve https://github.com/schollz/progressbar/issues/176. You can using this new feature like this: ```go package main import ( "fmt" "github.com/schollz/progressbar/v3" "time" ) func main(){ bar := progressbar.NewOptions(100,progressbar.OptionSetMaxDetailRow(10)) for...

fix https://github.com/schollz/progressbar/issues/147. And more explanation can be seen at pr https://github.com/schollz/progressbar/pull/192 ,which was accidentally closed by me.🥲