What is a dump (both software-wise and hardware-wise) Core Dump: In computing, a core dump (more properly a memory dump or storage dump) consists of the recorded state of the working memory of a computer program at a specific time, generally when the program has terminated abnormally (crashed) 1 The name comes from the days when magnetic core memory was used, before the introduction of semiconductor memory; the name has remained established in
jvm - How to get a thread and heap dump of a Java process on Windows . . . Thread dump = stack traces for each thread in the JVM output to stdout as text Heap dump = memory contents for the JVM process output to a binary file To take a thread dump on Windows, CTRL+BREAK if your JVM is the foreground process is the simplest way
Export and import table dump (. sql) using pgAdmin To Backup a database using pgAdmin4 (To get a data dump using a pgAdmin4): Open pgAdmin 4 and connect to your server Select the database you wish to back up from the left sidebar Right-click on the database and choose Backup Specify the file path and name for the backup file in the Filename field
python - Dump a NumPy array into a csv file - Stack Overflow @Peter, good point, thanks, I've updated the answer For me it does save ok in csv format (albeit limited to one line) Also, it's clear that the asker's intent is to "dump it in human-readable format" - so I think the answer is relevant and useful –
python - How to dump a dict to a JSON file? - Stack Overflow dump internally writes in chunks This could be more efficient than to compile a (possibly huge) string first This could be more efficient than to compile a (possibly huge) string first – Adrian W
Whats the Android ADB shell dumpsys tool and what are its benefits? For example (note that not all services provide dump info): adb shell dumpsys activity adb shell dumpsys cpuinfo adb shell dumpsys battery As you can see in the code (and in K_Anas's answer), if you call dumpsys without any service name, it will dump the info on all services in one big dump:
g++ - GCC dump preprocessor defines - Stack Overflow How do I dump preprocessor macros coming from a particular header file? echo "#include <sys socket h>" | gcc -E -dM - or (thanks to @mymedia for the suggestion): gcc -E -dM -include sys socket h - < dev null In particular, I wanted to see what SOMAXCONN was defined to on my system
python - PyYAML dump format - Stack Overflow When calling yaml dump() to dump a dictionary loaded by a prior call to yaml load(): PyYAML naively ignores all input formatting – including comments, ordering, quoting, and whitespace Discarded like so much digital refuse into the nearest available bit bucket ruamel yaml cleverly respects all input formatting Everything