diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-05 17:29:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-05 17:29:56 +0200 |
commit | 9db97dbab8b777b3c9b868cdab62cb7b46839f95 (patch) | |
tree | cf9556b1c2991fa30b7c23398ec44a636bfbad82 /libpod/util.go | |
parent | e6235ef8f1a3111f8f1afbb1bf64f0e6da704a5b (diff) | |
parent | b5a235df900a6471895111b4de5f80732f7f563a (diff) | |
download | podman-9db97dbab8b777b3c9b868cdab62cb7b46839f95.tar.gz podman-9db97dbab8b777b3c9b868cdab62cb7b46839f95.tar.bz2 podman-9db97dbab8b777b3c9b868cdab62cb7b46839f95.zip |
Merge pull request #6080 from baude/v2stats
v2 podman stats
Diffstat (limited to 'libpod/util.go')
-rw-r--r-- | libpod/util.go | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/libpod/util.go b/libpod/util.go index 6457dac1c..bdfd153ed 100644 --- a/libpod/util.go +++ b/libpod/util.go @@ -9,12 +9,10 @@ import ( "os/exec" "path/filepath" "sort" - "strconv" "strings" "time" "github.com/containers/common/pkg/config" - "github.com/containers/libpod/libpod/define" "github.com/containers/libpod/utils" "github.com/fsnotify/fsnotify" @@ -36,24 +34,6 @@ func FuncTimer(funcName string) { fmt.Printf("%s executed in %d ms\n", funcName, elapsed) } -// RemoveScientificNotationFromFloat returns a float without any -// scientific notation if the number has any. -// golang does not handle conversion of float64s that have scientific -// notation in them and otherwise stinks. please replace this if you have -// a better implementation. -func RemoveScientificNotationFromFloat(x float64) (float64, error) { - bigNum := strconv.FormatFloat(x, 'g', -1, 64) - breakPoint := strings.IndexAny(bigNum, "Ee") - if breakPoint > 0 { - bigNum = bigNum[:breakPoint] - } - result, err := strconv.ParseFloat(bigNum, 64) - if err != nil { - return x, errors.Wrapf(err, "unable to remove scientific number from calculations") - } - return result, nil -} - // MountExists returns true if dest exists in the list of mounts func MountExists(specMounts []spec.Mount, dest string) bool { for _, m := range specMounts { |