1.Host 配置信息Message 安全模式配置 行为 ...
分类:
其他好文 时间:
2014-08-11 14:41:22
阅读次数:
220
#include //#include int main(){ int N; scanf("%d",&N); int i,num,a[1005]={0}; num=0; while(N--) { scanf("%d",&i); if(a[i]==0) { a[i]=1; num++; } } pri...
分类:
其他好文 时间:
2014-08-11 14:25:32
阅读次数:
185
How to choose q() to sample theta? Usally gausian, for the parameter u and sigma, we can get from cross validation.Importance sampling can only work o...
分类:
其他好文 时间:
2014-08-11 11:47:22
阅读次数:
171
在进行数据库操作时,如还原数据库,有时候显示如下错误Exclusive access could not be obtained because the database is in use 可以使用下面语句,关闭当前链接以便继续操作。 use Master ALTER DATABASE yourd...
分类:
数据库 时间:
2014-08-11 11:33:22
阅读次数:
241
https协议:httpd是否支持ssl是决定于是否装载了ssl模块http协议:文本编码格式(telnet可以验证明文传输的。https协议:基于SSL二进制编码https监听在443/tcphttpd:sslssl是基于IP地址创建,所以,每一个IP仅创建一个SSL回话;(也就是说一个IP只能建立一个ssl,要是你利用主..
分类:
系统相关 时间:
2014-08-11 10:22:13
阅读次数:
368
配置httpd工作于https模型下具实现步骤:使用的httpd服务器IP为192.168.1.132。(1)安装mod_ssl模块#yuminstall-ymod_ssl安装该模块后生成的主要文件有:#rpm-qlmod_ssl其中/etc/httpd/conf.d/ssl.conf为配置文件。(2)为服务端生成私钥,并为其提供证书;因为是模拟测试使用http..
分类:
其他好文 时间:
2014-08-11 10:21:32
阅读次数:
655