大约有 1,600 项符合查询结果(耗时:0.0053秒) [XML]

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

VS2005中SetUnhandledExceptionFilter函数应用 - C/C++ - 清泛网 - 专注C/C++及内核技术

...一个比较大的改变,但是很遗憾,Microsoft却没有在相应的文档明确指出。 解决方法 之所以应用程序捕获不到那些异常,原因是因为新版本的CRT实现在异常处理中强制删除所有应用程序先前设置的捕获函数,如下所示: ...
https://www.tsingfun.com/it/cpp/1372.html 

Boost智能指针——shared_ptr - C/C++ - 清泛网 - 专注C/C++及内核技术

...存泄漏(当函数g()抛异常的时候就会泄露了,这个是boost文档上特地注明的标准bad Practices): void test() { foo(boost::shared_ptr<implementation>(new implementation()), g()); } 正确的用法为: void test() { boost::shared_ptr<implementation> sp(...
https://www.tsingfun.com/it/cpp/2044.html 

Windows下如何判断Win32 or x64? - C/C++ - 清泛网 - 专注C/C++及内核技术

...? 本例使用 Windows API 函数 IsWow64Process,具体请参考MSDN文档: http://msdn.microsoft.com/en-us/library/ms684139(VS.85).aspx /** * This program test if this application is a x64 program or * is a x86 program running under Windows x64. * * Version: 0.1 C-Lang * ...
https://www.tsingfun.com/it/opensource/1895.html 

mac如何远程连接windows系统?类似Windows的mstsc? - 开源 & Github - 清...

...同时连接多台 Windows 机器,直接使用 Mac 打印机打印远程文档,甚至可以选择远程声音是在本地 Mac 播放还是远程计算机的喇叭播放。 注意 Microsoft Remote Desktop Connection Client for Mac(版本 2.1.1)不能与 Mac OS X v10.7 (Lion) 或更高版本...
https://www.tsingfun.com/it/opensource/1968.html 

[开源框架推荐]pdf2htmlEX: 高保真PDF至HTML转换 - 开源 & Github - 清泛网...

... 转换的效果实例: Typography Formulas Scientific Paper 中文文档 在线预览PDF,推荐《Mozilla PDF.js:PDF在线预览》,可以直接在线将PDF预览成文字。 pdf2html pdf2htmlEX
https://www.tsingfun.com/it/da... 

记一次数据库表自增长(Auto Increment)故障 - 数据库(内核) - 清泛网 - ...

...答案:只要删除问题数据后,重启一下服务即可。实际上文档里有相关描述: If you specify an AUTO_INCREMENT column for an InnoDB table, the table handle in the InnoDB data dictionary contains a special counter called the auto-increment counter that is used in assignin...
https://www.tsingfun.com/it/da... 

oracle group 取每组第一条 - 数据库(内核) - 清泛网 - 专注C/C++及内核技术

...这里涉及到的over()是oracle的分析函数。 参考sql reference文档: Analytic functions compute an aggregate value based on a group of rows. They differ from aggregate functions in that they return multiple rows for each group. Analytic functions are the last set of operations ...
https://www.tsingfun.com/it/bigdata_ai/421.html 

MongoDB仿关系型数据库Group聚合例子 - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

...12)代码点此下载。 更多的Group聚合相关资料请查看官方文档。 MongoDB 聚合 Group
https://www.tsingfun.com/it/bigdata_ai/1081.html 

PHP操作MongoDB时的整数问题及对策 - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

...而使用MapReduce仅仅需要Map和Reduce两步即可,这里有一个PDF文档生动的说明了MySQL中GROUP BY和MongoDB中MapReduce的对应关系: SQL to MongoDB 此外,还有很多资料可供参考,如:MongoDB Aggregation III: Map-Reduce Basics。 说明:软件版本为Mong...
https://www.tsingfun.com/it/tech/636.html 

CentOS系统下如何挂载第2块磁盘 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...文件系统或分区的类型,这里为ext3 其他类型请查看相关文档 4.第4列为挂载选项,详细参考man mount. 下面列出一些常用的选项: auto: 系统自动挂载,fstab默认就是这个选项 ro: read-only rw: read-write defaults: rw, ...