本文整理了Java中it.unimi.dsi.Util.availableMemory()
方法的一些代码示例,展示了Util.availableMemory()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.availableMemory()
方法的具体详情如下:
包路径:it.unimi.dsi.Util
类名称:Util
方法名:availableMemory
[英]Returns the amount of available memory (free memory plus never allocated memory).
[中]返回可用内存量(可用内存加上从未分配的内存)。
代码示例来源:origin: blazegraph/database
/** Returns true if less then 5% of the available memory is free.
*
* @return true if less then 5% of the available memory is free.
*/
public static boolean memoryIsLow() {
return availableMemory() * 100 < RUNTIME.totalMemory() * 5;
}
代码示例来源:origin: com.blazegraph/dsi-utils
/** Returns true if less then 5% of the available memory is free.
*
* @return true if less then 5% of the available memory is free.
*/
public static boolean memoryIsLow() {
return availableMemory() * 100 < RUNTIME.totalMemory() * 5;
}
代码示例来源:origin: it.unimi.dsi/dsiutils
/** Returns true if less then 5% of the available memory is free.
*
* @return true if less then 5% of the available memory is free.
*/
public static boolean memoryIsLow() {
return availableMemory() * 100 < RUNTIME.totalMemory() * 5;
}
代码示例来源:origin: it.unimi.dsi/dsiutils
/** Returns the percentage of available memory (free memory plus never allocated memory).
*
* @return the percentage of available memory.
*/
public static int percAvailableMemory() {
return (int)((Util.availableMemory() * 100) / Runtime.getRuntime().maxMemory());
}
代码示例来源:origin: com.blazegraph/dsi-utils
/** Returns the percentage of available memory (free memory plus never allocated memory).
*
* @return the percentage of available memory.
*/
public static int percAvailableMemory() {
return (int)( ( Util.availableMemory() * 100 ) / Runtime.getRuntime().maxMemory() );
}
代码示例来源:origin: blazegraph/database
/** Returns the percentage of available memory (free memory plus never allocated memory).
*
* @return the percentage of available memory.
*/
public static int percAvailableMemory() {
return (int)( ( Util.availableMemory() * 100 ) / Runtime.getRuntime().maxMemory() );
}
内容来源于网络,如有侵权,请联系作者删除!