大约有 2,200 项符合查询结果(耗时:0.0235秒) [XML]

https://www.tsingfun.com/it/cpp/763.html 

自动生成Linux下Makefile全攻略(automake原理) - C/C++ - 清泛网 - 专注C/C++及内核技术

...法的主要步骤及输出结果如下:1、. configure 输出Makefile文件2...本文假定大家对Makefile自动化编译有基本的了解(不了解的最好先熟悉下,参见《Makefile经典教程(入门必备)》),Linux编译安装软件的方法的主要步骤及输出结果...
https://www.tsingfun.com/it/bigdata_ai/343.html 

搭建高可用mongodb集群(四)—— 分片 - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

...2.168.0.138。 2、分别在每台机器上建立mongodb分片对应测试文件夹。 #存放mongodb数据文件 mkdir -p /data/mongodbtest #进入mongodb文件夹 cd /data/mongodbtest 3、下载mongodb的安装程序包 wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2....
https://www.tsingfun.com/it/pr... 

项目管理实践【三】每日构建【Daily Build Using CruiseControl.NET and MS...

...天的教程中创建的StartKit项目为实例,先看看下面的配置文件: <cruisecontrol xmlns:cb="urn:ccnet.config.builder"> <!--项目名称--> <name>StartKit</name> <!--标示类型,有多种类型。下面为默认标示,作为每次编译时生成的日志文件的...
https://stackoverflow.com/ques... 

How to see if an NSString starts with a certain other string?

...test should be != NSNotFound instead of == NSNotFound. But say your URL is ftp://my_http_host.com/thing, it'll match but shouldn't. share | improve this answer | follow ...
https://stackoverflow.com/ques... 

How to deploy an ASP.NET Application with zero downtime

...yond Compare (which is excellent**) to verify and sync changed files (over FTP because that is widely supported) up to the production server We have a secure URL on the website containing a button which copies everything in 'bin-pub' to 'bin' (taking a backup first to enable quick rollback). At this...
https://www.tsingfun.com/it/opensource/856.html 

常用Git命令汇总 - 开源 & Github - 清泛网 - 专注C/C++及内核技术

...这三个操作,所有一般在操作工作区的时候,直接删除了文件,而不是使用git rm的,最后提交是可以用这个,如下 #git commit -am "提交信息" git commit -amend #修改最后一次提交的信息 #------------------------------------------ ...
https://www.tsingfun.com/it/os_kernel/1290.html 

Dokan虚拟磁盘开发实战 - 操作系统(内核) - 清泛网 - 专注C/C++及内核技术

... 远程服务端是用Python写的,主要是将远程主机上的目录文件传给客戶端,在这里就不细说了。 Dokan客户端则由Delphi开发,其参考代码来自网络上的Delphi例子,比如Mirror Driver。 本篇文章主要是Dokan开发过程的一些总结,所以不...
https://www.tsingfun.com/it/cpp/651.html 

剖析程序的内存布局 - C/C++ - 清泛网 - 专注C/C++及内核技术

... 在栈的下方,是我们的内存映射段。此处,内核将文件的内容直接映射到内存。任何应用程序都可以通过Linux的mmap()系统调用(实现)或Windows的CreateFileMapping() / MapViewOfFile()请求这种映射。内存映射是一种方便高效的文件I/...
https://www.tsingfun.com/it/tech/1879.html 

Lua简明教程 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...ld") Hello, World > 也可以把脚本存成一个文件,用如下命令行来运行。 1 >lua file.lua 或是像shell一样运行: 1 2 3 4 5 6 chenhao-air:lua chenhao$ cat hello.lua #!/...
https://www.tsingfun.com/it/te... 

Shell脚本编程30分钟入门 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...:循环条件,一共循环10次 第6行:创建一个test_1…10.txt文件 第7行:循环体结束 cd, mkdir, touch都是系统自带的程序,一般在/bin或者/usr/bin目录下。for, do, done是sh脚本语言的关键字。 shell和shell脚本的概念 shell是指一种应用程...