We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66660ff commit c420e4dCopy full SHA for c420e4d
utils/progressbar/progressbarmng.go
@@ -1,6 +1,14 @@
1
package progressbar
2
3
import (
4
+ golangLog "log"
5
+ "math"
6
+ "os"
7
+ "strconv"
8
+ "strings"
9
+ "sync"
10
+ "time"
11
+
12
"github.com/gookit/color"
13
"github.com/jfrog/jfrog-cli-core/v2/utils/coreutils"
14
corelog "github.com/jfrog/jfrog-cli-core/v2/utils/log"
@@ -11,19 +19,12 @@ import (
19
"github.com/vbauerster/mpb/v8"
20
"github.com/vbauerster/mpb/v8/decor"
21
"golang.org/x/term"
- golangLog "log"
15
- "math"
16
- "os"
17
- "strconv"
18
- "strings"
- "sync"
- "time"
22
)
23
24
const (
25
ProgressBarWidth = 20
26
longProgressBarWidth = 100
- ProgressRefreshRate = 200 * time.Millisecond
27
+ ProgressRefreshRate = time.Second
28
29
30
var terminalWidth int
0 commit comments