it.unimi.dsi.Util.formatSize()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(5.8k)|赞(0)|评价(0)|浏览(209)

本文整理了Java中it.unimi.dsi.Util.formatSize()方法的一些代码示例,展示了Util.formatSize()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.formatSize()方法的具体详情如下:
包路径:it.unimi.dsi.Util
类名称:Util
方法名:formatSize

Util.formatSize介绍

[英]Formats a size.

This method formats a long using suitable unit multipliers (e.g., K, M, G, and T) and printing just two fractional digits.
[中]设置大小。
这种方法使用合适的单位乘法器(例如,K、M、g和T)格式化长字符,并只打印两个小数位数。

代码示例

代码示例来源:origin: blazegraph/database

  1. private String freeMemory() {
  2. return ( displayFreeMemory ? "; used/avail/free/total/max mem: "
  3. + Util.formatSize( RUNTIME.totalMemory() - RUNTIME.freeMemory() ) + "/"
  4. + Util.formatSize( RUNTIME.freeMemory() + ( RUNTIME.maxMemory() - RUNTIME.totalMemory() ) ) + "/"
  5. + Util.formatSize( RUNTIME.freeMemory() ) + "/"
  6. + Util.formatSize( RUNTIME.totalMemory() ) + "/"
  7. + Util.formatSize( RUNTIME.maxMemory() ) : "" );
  8. }

代码示例来源:origin: it.unimi.dsi/webgraph

  1. if (external) info("Running " + this.numberOfThreads + " threads with a buffer of " + Util.formatSize(this.bufferSize) + " counters");
  2. else info("Running " + this.numberOfThreads + " threads");

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. private String freeMemory() {
  2. return (displayFreeMemory ? "; used/avail/free/total/max mem: "
  3. + Util.formatSize(RUNTIME.totalMemory() - RUNTIME.freeMemory()) + "/"
  4. + Util.formatSize(RUNTIME.freeMemory() + (RUNTIME.maxMemory() - RUNTIME.totalMemory())) + "/"
  5. + Util.formatSize(RUNTIME.freeMemory()) + "/"
  6. + Util.formatSize(RUNTIME.totalMemory()) + "/"
  7. + Util.formatSize(RUNTIME.maxMemory()) : "");
  8. }

代码示例来源:origin: com.blazegraph/dsi-utils

  1. private String freeMemory() {
  2. return ( displayFreeMemory ? "; used/avail/free/total/max mem: "
  3. + Util.formatSize( RUNTIME.totalMemory() - RUNTIME.freeMemory() ) + "/"
  4. + Util.formatSize( RUNTIME.freeMemory() + ( RUNTIME.maxMemory() - RUNTIME.totalMemory() ) ) + "/"
  5. + Util.formatSize( RUNTIME.freeMemory() ) + "/"
  6. + Util.formatSize( RUNTIME.totalMemory() ) + "/"
  7. + Util.formatSize( RUNTIME.maxMemory() ) : "" );
  8. }

代码示例来源:origin: it.unimi.di/mg4j

  1. private static String format( long v, long total ) {
  2. return v + " (" + Util.formatSize( v / 8 ) + "B, " + Util.format( 100. * v / total ) + "%)\n";
  3. }

代码示例来源:origin: it.unimi.di/mg4j-big

  1. private static String format( long v, long total ) {
  2. return v + " (" + Util.formatSize( v / 8 ) + "B, " + Util.format( 100. * v / total ) + "%)\n";
  3. }

代码示例来源:origin: it.unimi.di/mg4j-big

  1. @Override
  2. public void printStats( PrintStream stats ) {
  3. stats.println( "Pointers" );
  4. stats.println( "=========" );
  5. stats.println( pointersStats );
  6. stats.println( "Bits per pointer: " + Util.format( (double)pointersStats.totalNonSkip() / numberOfPostings ) + " (" + Util.format( (double)pointersStats.total() / numberOfPostings ) + " with skips)" );
  7. long size = pointersStats.total();
  8. if ( counts != null ) {
  9. stats.println();
  10. stats.println( "Counts" );
  11. stats.println( "=========" );
  12. stats.println( countsStats );
  13. stats.println( "Bits per count: " + Util.format( (double)countsStats.totalNonSkip() / numberOfPostings ) + " (" + Util.format( (double)countsStats.total() / numberOfPostings ) + " with skips)" );
  14. size += countsStats.total();
  15. if ( positions != null ) {
  16. stats.println();
  17. stats.println( "Positions" );
  18. stats.println( "=========" );
  19. stats.println( positionsStats );
  20. stats.println( "Bits per position: " + Util.format( (double)positionsStats.totalNonSkip() / numberOfOccurrences ) + " (" + Util.format( (double)positionsStats.total() / numberOfOccurrences ) + " with skips)" );
  21. size += positionsStats.total();
  22. }
  23. }
  24. stats.println();
  25. stats.println( "Size: " + size + " bits (" + Util.formatSize( size / 8 ) + "B)" );
  26. }

代码示例来源:origin: it.unimi.di/mg4j

  1. @Override
  2. public void printStats( PrintStream stats ) {
  3. stats.println( "Pointers" );
  4. stats.println( "=========" );
  5. stats.println( pointersStats );
  6. stats.println( "Bits per pointer: " + Util.format( (double)pointersStats.totalNonSkip() / numberOfPostings ) + " (" + Util.format( (double)pointersStats.total() / numberOfPostings ) + " with skips)" );
  7. long size = pointersStats.total();
  8. if ( counts != null ) {
  9. stats.println();
  10. stats.println( "Counts" );
  11. stats.println( "=========" );
  12. stats.println( countsStats );
  13. stats.println( "Bits per count: " + Util.format( (double)countsStats.totalNonSkip() / numberOfPostings ) + " (" + Util.format( (double)countsStats.total() / numberOfPostings ) + " with skips)" );
  14. size += countsStats.total();
  15. if ( positions != null ) {
  16. stats.println();
  17. stats.println( "Positions" );
  18. stats.println( "=========" );
  19. stats.println( positionsStats );
  20. stats.println( "Bits per position: " + Util.format( (double)positionsStats.totalNonSkip() / numberOfOccurrences ) + " (" + Util.format( (double)positionsStats.total() / numberOfOccurrences ) + " with skips)" );
  21. size += positionsStats.total();
  22. }
  23. }
  24. stats.println();
  25. stats.println( "Size: " + size + " bits (" + Util.formatSize( size / 8 ) + "B)" );
  26. }

代码示例来源:origin: it.unimi.di/mg4j-big

  1. public String toString() {
  2. final long total = total();
  3. return "Upper bits: " + format( bitsForUpperBits, total ) +
  4. "Lower bits: " + format( bitsForLowerBits, total ) +
  5. "Skip pointers bits: " + format( bitsForSkipPointers, total ) +
  6. "Additional bits: " + format( bitsForAdditional, total ) +
  7. "Overall bits: " + total + " (" + Util.formatSize( total / 8 ) + "B)\n";
  8. }
  9. }

代码示例来源:origin: it.unimi.di/mg4j

  1. public String toString() {
  2. final long total = total();
  3. return "Upper bits: " + format( bitsForUpperBits, total ) +
  4. "Lower bits: " + format( bitsForLowerBits, total ) +
  5. "Skip pointers bits: " + format( bitsForSkipPointers, total ) +
  6. "Additional bits: " + format( bitsForAdditional, total ) +
  7. "Overall bits: " + total + " (" + Util.formatSize( total / 8 ) + "B)\n";
  8. }
  9. }

相关文章