OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MakeBitsHumanReadable
(Results
1 - 3
of
3
) sorted by null
/external/chromium-trace/catapult/third_party/gsutil/gslib/tests/
test_util.py
50
self.assertEqual(util.
MakeBitsHumanReadable
(0), '0 bit')
51
self.assertEqual(util.
MakeBitsHumanReadable
(1023), '1023 bit')
52
self.assertEqual(util.
MakeBitsHumanReadable
(1024), '1 Kibit')
53
self.assertEqual(util.
MakeBitsHumanReadable
(1024 ** 2), '1 Mibit')
54
self.assertEqual(util.
MakeBitsHumanReadable
(1024 ** 3), '1 Gibit')
55
self.assertEqual(util.
MakeBitsHumanReadable
(1024 ** 3 * 5.3), '5.3 Gibit')
56
self.assertEqual(util.
MakeBitsHumanReadable
(1024 ** 4 * 2.7), '2.7 Tibit')
57
self.assertEqual(util.
MakeBitsHumanReadable
(1024 ** 5), '1 Pibit')
58
self.assertEqual(util.
MakeBitsHumanReadable
(1024 ** 6), '1 Eibit')
/external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
perfdiag.py
63
from gslib.util import
MakeBitsHumanReadable
[
all
...]
/external/chromium-trace/catapult/third_party/gsutil/gslib/
util.py
546
def
MakeBitsHumanReadable
(num):
[
all
...]
Completed in 75 milliseconds