A memory leak occurs when a program fails to release memory that it has allocated but is no longer using and is not recoverable.
I think I may have a memory leak in my LAMP application (memory gets used up, swap starts getting used, …
linux unix memory-leaks memory-managementIn my classes I implement IDisposable as follows: public class User : IDisposable { public int id { get; protected set; } public string …
c# .net memory-management memory-leaks garbage-collectionI developed an application that uses lots of images on Android. The app runs once, fills the information on the …
android memory memory-leaks bitmap out-of-memoryhttps://docs.angularjs.org/guide/directive By listening to this event, you can remove event listeners that might cause memory …
angularjs memory-leaksI wrote C++ for 10 years. I encountered memory problems, but they could be fixed with a reasonable amount of effort. …
c# .net memory-management memory-leaksI have a .exe and many plug-in .dll modules that the .exe loads. (I have source for both.) A cross-platform (…
c++ c visual-studio memory-leaksI have tomcat 6 server on windows xp ,And I start tomcat through console i.e. using startup.bat. AFAIK catalina.…
tomcat memory memory-leaks tomcat6 heap-sizeIf a DOM Element is removed, are its listeners removed from memory too?
javascript jquery dom memory memory-leaksI've got an Android app developed, and I'm at the point of a phone app development where everything seems to …
android memory-leaksIn Linux, I have been using valgrind for checking if there are memory leaks in an application. What is the …
c++ visual-studio visual-studio-2010 memory-leaks valgrind