#!/usr/bin/env python"""Bootstrap setuptools installationTo use setuptools in your package's setup.py, include thisfile in the same directory and add ...
分类:
编程语言 时间:
2014-07-16 17:38:43
阅读次数:
309
#mf:mult file
#liba: liaxxx.a
#libso:libxxx.so
run:main
./main
mfo:add.c main.c
gcc -c add.c main.c
mfe:mfo
gcc -o main add.o main.o
libo:add.c
gcc -c add.c...
分类:
其他好文 时间:
2014-07-16 17:11:20
阅读次数:
165
假设有如下一个Dictionary 要转换成List Dictionary dicNumber = new Dictionary(); List listNumber = new List(); dicNumber.Add("a", "First"); dicNumber.Add("b", "Sec...
分类:
其他好文 时间:
2014-07-16 17:03:54
阅读次数:
146
出现冲突的一种场景是两个用户修改了同一文件的同一区域。1、切换到分支chengdr,在newTxt1.txt中输入文字“Hello Word !!!”-> Add to Index -> Commit -> Push2、切换到分支chengdr2,在newTxt1.txt中输入文字“hello wo...
分类:
其他好文 时间:
2014-07-16 16:55:05
阅读次数:
377
1.Create a VM01 on esx01,Create a VM02 on esx02 2.Create the RDM on your VM01 (using the virtual, not physical)3.Add new disk to VM02 (select existing...
分类:
其他好文 时间:
2014-07-16 16:46:24
阅读次数:
203
设函数 f(k)(n);则: f(1)(n)=1; f(2)(n)=f(1)(0)+f(1)(1)+f(1)(2)+...+f(1)(n); f(3)(n)=f(2)(0)+f(2)(1)+f(2)(2)+...+f(2)(n); . . . f(...
分类:
其他好文 时间:
2014-07-16 15:46:09
阅读次数:
168
1、将文件checkout到本地目录svn checkout path(path是服务器上的目录)例如:svn checkout svn: // 192.168. 1.1 / pro /domain简写:svn co2、往版本库中添加新的文件svn add file例如:svn add test.p...
分类:
系统相关 时间:
2014-07-16 14:52:17
阅读次数:
355
1.Model compatibility cannot be checked because the EdmMetadata type was not included in the model. Ensure that IncludeMetadataConvention has been add...
分类:
Web程序 时间:
2014-07-16 13:44:15
阅读次数:
255
chkconfig命令详解chkconfig命令主要用来更新(启动或停止)和查询系统服务的运行级信息。谨记chkconfig不是立即自动禁止或激活一个服务,它只是简单的改变了符号连接。使用语法: chkconfig [--add][--del][--list][系统服务] 或 chkconfig [...
分类:
其他好文 时间:
2014-07-16 12:30:47
阅读次数:
1457
/*
调用方式:add(a, b);
返回类型:string
*/
string add(string a, string b)
{
string s;
reverse(a.begin(), a.end());
reverse(b.begin(), b.end());
int i = 0;
int m, k = 0;
while(a[i] && b...
分类:
其他好文 时间:
2014-07-16 08:04:51
阅读次数:
368