java Programming Glossary: leaking
Tracking down a memory leak / garbage-collection issue in Java. http://stackoverflow.com/questions/1071631/tracking-down-a-memory-leak-garbage-collection-issue-in-java is sitting comfortably at 1 1.5 gigs and doesnt seem to be leaking but the box level monitoring still shows a leak pattern but.. a major memory leak in a mature product. So why was it leaking now Well it was a combination of things The quartz thread pool..
Uninitialized object leaked to another thread despite no code explicitly leaking it? http://stackoverflow.com/questions/16178020/uninitialized-object-leaked-to-another-thread-despite-no-code-explicitly-leaking object leaked to another thread despite no code explicitly leaking it Let's see this simple Java program import java.util. class..
java.lang.IllegalStateException: Cannot forward after response has been committed http://stackoverflow.com/questions/2123514/java-lang-illegalstateexception-cannot-forward-after-response-has-been-committe
Why can Java Collections not directly store Primitives types? http://stackoverflow.com/questions/2504959/why-can-java-collections-not-directly-store-primitives-types nor is auto boxing. They are implementation detail leaking into the language. Autoboxing is nice syntactic sugar but is..
How does java implement flyweight pattern for string under the hood? http://stackoverflow.com/questions/2909848/how-does-java-implement-flyweight-pattern-for-string-under-the-hood char is never modified. This is accomplished by neither leaking nor capturing this char outside the String class. However several..
To prevent a memory leak, the JDBC Driver has been forcibly unregistered http://stackoverflow.com/questions/3320400/to-prevent-a-memory-leak-the-jdbc-driver-has-been-forcibly-unregistered be bothered with those warnings. But it will silently keep leaking memory. Not sure if that's good to know after all. Those kind..
does these code has memory leakage? http://stackoverflow.com/questions/3968553/does-these-code-has-memory-leakage leak . You might say that hte instances unintentionally is leaking data between them but's its not a classic memory leak where..
How can I protect MySQL username and password from decompiling? http://stackoverflow.com/questions/442862/how-can-i-protect-mysql-username-and-password-from-decompiling That is the only real way to prevent the password from leaking as a result of decompilation never compile it into the binary..
How often should Statement and ResultSet objects be closed in JDBC? http://stackoverflow.com/questions/5602772/how-often-should-statement-and-resultset-objects-be-closed-in-jdbc them in the shortest possible scope to avoid resource leaking and transactional problems. The normal JDBC idiom is the following..
How to read a large text file line by line using Java? http://stackoverflow.com/questions/5868369/how-to-read-a-large-text-file-line-by-line-using-java less common pattern to use which avoids the scope of line leaking. try BufferedReader br new BufferedReader new FileReader file..
Creating a memory leak with Java http://stackoverflow.com/questions/6470651/creating-a-memory-leak-with-java in a ThreadLocal. Allocating the extra memory is optional leaking the Class instance is enough but it will make the leak work..
Java out of heap space during serialization http://stackoverflow.com/questions/7495155/java-out-of-heap-space-during-serialization before with id x . This means that you're effectively leaking all ArrayList istances. You can reset that cache by calling..
Protected URLs leaking unprotected components of the webapge to unauthenticated users http://stackoverflow.com/questions/7872265/protected-urls-leaking-unprotected-components-of-the-webapge-to-unauthenticated URLs leaking unprotected components of the webapge to unauthenticated users..
Java - How to store password used in application? http://stackoverflow.com/questions/8195099/java-how-to-store-password-used-in-application That is the only real way to prevent the password from leaking as a result of decompilation never compile it into the binary..
Android WebView Memory Leak when using Assets http://stackoverflow.com/questions/9278149/android-webview-memory-leak-when-using-assets after 512 entries. I have seen this article but the non leaking webview fix does not seem to work with HTML in the assets or..
Is it safe to use a static java.sql.Connection instance in a multithreaded system? http://stackoverflow.com/questions/9428573/is-it-safe-to-use-a-static-java-sql-connection-instance-in-a-multithreaded-syste other. But threadsafety is not your only problem resource leaking is also your other problem. You're keeping a single connection..
Java leaking this in constructor http://stackoverflow.com/questions/9851813/java-leaking-this-in-constructor leaking this in constructor Why do IDE's complain about leaking this.. leaking this in constructor Why do IDE's complain about leaking this in constructor I've always assumed that it's just bad practice...
|