青蛙的约会Crawling in process... Crawling failed Time Limit:1000MS Memory Limit:10000KB 64bit IO Format:%I64d & %I64uSubmit Status输出Description两只青蛙在网上相识了,....
分类:
其他好文 时间:
2014-08-07 12:42:59
阅读次数:
226
Process Stats:(Understanding How Your App Uses RAM)。介绍Process Stats,任务管理器,meminfo去查看内存信息(包括命令行调用)...
分类:
移动开发 时间:
2014-08-07 00:48:17
阅读次数:
301
最近调试老程序的时候发现原来的VS2008会偶尔在调试C++程序的时候出现程序未响应的情况,开始还以为是个案,后来出现的频率越来越高完全影响心情啊!!
准备花时间解决一下这个问题。网上搜索没有发现任何有价值线索,于是决定用上绝招——安装盘修复,但结果依然是那样。准备用process monitor监...
oracle 监听启动监听:lsnrctl start查看监听:lsnrctl status停止监听:lsnrctl stop1、oracle数据服务器包括:实例进程和数据库;实例进程包括:memory structure(sga)以及background process(pmon(进程监控)、sm...
分类:
数据库 时间:
2014-08-06 22:14:22
阅读次数:
375
XAML代码: process cancel View Code后台代码using System;using System.Collections.Generic;using System.ComponentModel;u...
分类:
其他好文 时间:
2014-08-06 22:03:12
阅读次数:
196
#include?<stdio.h>
#include?<windows.h>
#include?<process.h>
#include?<time.h>
unsigned?int?_stdcall?thread_proc(void*?arg)
{
double x?= 100.0;
int r?=?0;
srand((unsigned)time(0)?...
分类:
编程语言 时间:
2014-08-06 19:37:12
阅读次数:
712
有一种C#命令行console程序,为了能看到console台的输出所以不能做成服务。为了防止这些程序自己死掉,使用powershell监控程序并重启#利用程序名来进行重启if (!(get-process | where-object {$_.mainwindowtitle -eq '管理员: "...
分类:
其他好文 时间:
2014-08-06 17:22:11
阅读次数:
198
这个问题偶尔碰到两次,现在又遇上了,解决办法如下:打开注册表,设置HKLM\Software\Microsoft\FTH\Enabled 为0 打开CMD,运行Rundll32.exe fthsvc.dll,FthSysprepSpecialize参考http://msdn.microsoft.co...
分类:
移动开发 时间:
2014-08-06 14:36:51
阅读次数:
2670
进程(process)和线程(thread)是操作系统的基本概念,但是它们比较抽象,不容易掌握。 最近,我读到一篇材料,发现有一个很好的类比,可以把它们解释地清晰易懂。 1. 计算机的核心是CPU,它承担了所有的计算任...
分类:
编程语言 时间:
2014-08-05 19:41:00
阅读次数:
254
1. 发送信号 * In Unix, use "kill -3 <pid>" where pid is the Process ID of the JVM.(kill 信号列表) * In Windows, press CTRL+BREAK on the window where the JVM is running. 2. jstack -l pid.? http:/...
分类:
编程语言 时间:
2014-08-05 19:40:00
阅读次数:
300