1,SQLdiag is a successor of PSSdiag. SQL Nexus is a tool used to load and analyze performance data collected by SQLdiag SQLdiag作用是收集以下信息。 Windows服务器的软 ...
分类:
数据库 时间:
2016-07-23 15:12:24
阅读次数:
206
首先安装pymssql模块pipinstallpymssql
Collectingpymssql
Downloadingpymssql-2.1.3-cp35-cp35m-win_amd64.whl(367kB)
100%|████████████████████████████████|368kB39kB/s
Installingcollectedpackages:pymssql
Foundexistinginstallation:..
分类:
数据库 时间:
2016-07-19 02:43:09
阅读次数:
337
Here is a list of security tools that have been collected from the internet. These tools are specifically aimed toward security professionals and enth ...
分类:
其他好文 时间:
2016-06-09 11:03:50
阅读次数:
302
MSDN Magazine: CLR Inside Out https://msdn.microsoft.com/en-us/magazine/cc501040.aspx CLR Inside Out - Profiling the .NET Garbage-Collected Heap https ...
分类:
其他好文 时间:
2016-05-17 11:23:56
阅读次数:
130
【整理翻译自 SDTM IG 3.2: www.cdisc.org/SDTM】
EC(Exposure as Collected 暴露收集)...
分类:
其他好文 时间:
2016-05-12 17:39:04
阅读次数:
368
from:http://chaosinmotion.com/blog/?p=696 Just because it’s a garbage collected language doesn’t mean you can’t leak memory or run out of it. Especial ...
分类:
移动开发 时间:
2016-04-06 23:07:12
阅读次数:
185
30.5 Examples of MIB Variables Versions 1 and 2 of SNMP each collected variables together in a single large MIB, with the entire set documented in a s
分类:
其他好文 时间:
2016-02-14 19:41:29
阅读次数:
280
目录说明:BASE_DIR=os.path.dirname(os.path.dirname(os.path.abspath(__file__)))#代表mysite目录
STATIC_URL=‘/static/‘
STATIC_ROOT=os.path.join(BASE_DIR,‘collected_static‘)#相当于mysite/collected_static
mysite/
├──collected_static
├──manage.py
└──mysi..
分类:
其他好文 时间:
2016-01-18 21:10:43
阅读次数:
2454
Java对象的生命周期 在Java中,对象的生命周期包括以下几个阶段:1.创建阶段(Created)2.应用阶段(In Use)3.不可见阶段(Invisible)4.不可达阶段(Unreachable)5.收集阶段(Collected)6.终结阶段(Finalized)7.对象空间重分配阶段(De...
分类:
编程语言 时间:
2015-10-23 18:44:48
阅读次数:
313
引言Java的内存动态分配和垃圾收集的问题,都交给了JVM来处理。意注,将JVM运行数据区(虚拟机栈【栈帧】,程序计数器,堆内存)粗略的分为栈和堆(所有线程共享),回收的是堆中的对象实例。不是栈中的引用类型。
那么JVM是如何处理的?
从三个问题来分析:
1. 哪些内存需要回收?
2. 什么时候进行回收?
3. 如何回收?
注:现代收集器基本采用分代收集算法,堆分为:新生代和老年代...
分类:
其他好文 时间:
2015-08-27 13:30:06
阅读次数:
275