About 52 results
Open links in new tab
  1. 计算机术语dump是什么意思? - 知乎

    在计算机领域,dump一般译作 转储。即使翻译的很贴切,但还是很难从字面上完全理解dump的真正含义。 如@莫佳帅子所说 ,dump有动词和名词两种场景,我先解释它作为动词的情况,名词自然就理 …

  2. What is a "dump" (both software-wise and hardware-wise)

    Nov 22, 2011 · In programming, to dump something means to get its content. For example, if one says you need to dump memory at address XY it means to query the content of the memory at the given …

  3. Best way to have crash dumps generated when processes crash?

    Nov 27, 2013 · In Windows environments (XP and Win 7): What is the best way to automatically have a crash dump generated when processes crash on the system? Can an installer (MSI) package do this?

  4. How do I analyze a program's core dump file with GDB when it has ...

    227 My program operates like this: exe -p param1 -i param2 -o param3 It crashed and generated a core dump file, core.pid. I want to analyze the core dump file by gdb ./exe -p param1 -i param2 -o param3 …

  5. How do I restore a dump file from mysqldump? - Stack Overflow

    44 When we make a dump file with mysqldump, what it contains is a big SQL script for recreating the databse contents. So we restore it by using starting up MySQL’s command-line client:

  6. python - Dump a NumPy array into a csv file - Stack Overflow

    Mar 7, 2015 · How do I dump a 2D NumPy array into a csv file in a human-readable format?

  7. What are the main differences between thread dump and heap dump?

    Aug 18, 2023 · Thread Dump vs. Heap Dump: Thread Dump: A thread dump is a snapshot of the current state of all threads running in a Java application at a specific point in time. It provides information …

  8. How to fix dump files (if any exist) [date].dump, [date]-jvmRun [N ...

    Feb 27, 2022 · Look at the failure for the fork startup, which means looking at those dump files, looking at the args being given, and probably also running it all in debug mode from Maven.

  9. How to use WinDbg to analyze the crash dump for VC++ application?

    Apr 9, 2009 · To use Visual Studio, all you have to do is open the dump file like it is a project. Once opened, "run" the dump file (F5 by default) and if all the paths are set correctly it will take you right to …

  10. multithreading - kill -3 to get java thread dump - Stack Overflow

    Feb 2, 2011 · I am using kill -3 command to see the JVM's thread dump in unix. But where can I find the output of this kill command? I am lost!!