You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Taken from https://github.com/jupyter-server/jupyter-resource-usage/blob/e6ec53fa69fdb6de8e878974bcff006310658408/packages/labextension/src/memoryUsage.tsx#L272
2
+
3
+
typeMemoryUnit='B'|'KB'|'MB'|'GB'|'TB'|'PB';
4
+
5
+
constMEMORY_UNIT_LIMITS: {
6
+
readonly[UinMemoryUnit]: number;
7
+
}={
8
+
B: 1,
9
+
KB: 1024,
10
+
MB: 1048576,
11
+
GB: 1073741824,
12
+
TB: 1099511627776,
13
+
PB: 1125899906842624
14
+
};
15
+
16
+
/**
17
+
* Given a number of bytes, convert to the most human-readable
18
+
* format, (GB, TB, etc).
19
+
* Taken from https://github.com/jupyter-server/jupyter-resource-usage/blob/e6ec53fa69fdb6de8e878974bcff006310658408/packages/labextension/src/memoryUsage.tsx#L272
0 commit comments