About 39,900 results
Open links in new tab
  1. How to dynamically monitor Java heap size? - Stack Overflow

    Jan 29, 2010 · I am trying to monitor the java heap size dynamically. Does anybody know how to get the maximium memory used in the process of running a piece of codes? Does the …

  2. How to obtain the correct physical size of the monitor?

    Dec 23, 2015 · On a CRT monitor, changing resolutions and pixel size can affect how much of the tube is used to display the image, effectively changing the size of the display. CRT images …

  3. linux - How can I measure the actual memory usage of an …

    Jul 22, 2017 · How do you measure the memory usage of an application or process in Linux? From the blog article of Understanding memory usage on Linux, ps is not an accurate tool to …

  4. How to measure current size of .NET Memory Cache 4.0?

    Looking at the '.NET Memory Cache 4.0' performance counters, there is data around Cache Hits, Misses, Entries, Trims etc. but nothing related to Size. Is there is a way of measuring/knowing …

  5. How to monitor the memory usage of Node.js? - Stack Overflow

    Nov 16, 2013 · The built-in process module has a method memoryUsage that offers insight in the memory usage of the current Node.js process. Here is an example from in Node v0.12.2 on a …

  6. How do I determine the true pixel size of my Monitor in .NET?

    I want to display an image at 'true size' in my application. For that I need to know the pixel size of the display. I know windows display resolution is nominally 96dpi, but for my purposes I wan...

  7. How do I profile memory usage in Python? - Stack Overflow

    Feb 16, 2009 · print("Total allocated size: %.1f KiB" % (total / 1024)) main() The resource module lets you check the current memory usage, and save the snapshot from the peak memory …

  8. How to retrieve screen size/resolution in MS Access VBA to re-size …

    Aug 7, 2012 · I have two popup forms (parent/child) that I want to be able to automatically re-size depending on the size of the screen. How can I retrieve the size of the screen in order to …

  9. How do I get monitor resolution in Python? - Stack Overflow

    Jun 28, 2010 · Most answers forget the difference between CSS pixels, which are used more or less as a length measure, and actual screen pixels, which on most machines are half the size.

  10. How do I determine the size of an object in Python?

    As the size of the object gets large, this becomes close as the memory consumed by the rest of the process becomes negligible compared to the size of the object you are trying to monitor.