大约有 7,000 项符合查询结果(耗时:0.0109秒) [XML]

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

MFC子窗口和父窗口(SetParent,SetOwner) - C/C++ - 清泛网 - 专注C/C++及内核技术

MFC子窗口和父窗口(SetParent,SetOwner)在windows系统中,每个窗口象都应有一个数据结构,形成一个list链表。系统的窗口管理器通过这个list来获取窗口信息和管理每个窗口。一、概念和区别 在windows系统中,每个窗口象都...
https://www.tsingfun.com/it/cpp/atomic-vector.html 

原子vector的一种实现源码(atomic-vector) - C/C++ - 清泛网 - 专注C/C++及内核技术

...行的版本,代码比较简单,实现分配好空间,然后元素进行原子交换,扩容采用链表的形式,代码可直接运行。 测试代码: HPHP::AtomicVector<float> v_atom(2, 0.f); void atom_vector_hphp() { v_atom.exchange(0, 1); v_atom.exchange(1, 2); } atom...
https://www.tsingfun.com/it/bigdata_ai/1075.html 

记一次MongoDB性能问题 - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

...c/<PID>/fd/<FD> 此时如果查询MongoDB的当前操作,会发现几乎每个操作会消耗大量的时间: mongo> db.currentOp() 与此同时,运行mongostat的话,结果会显示很高的locked值。 … 我在网络上找到一篇:MongoDB Pre-Splitting for Faster Data Loading a...
https://www.tsingfun.com/it/tech/1080.html 

Memcached下一站:HandlerSocket! - 更多技术 - 清泛网 - 专注C/C++及内核技术

...N_EXTRA= 再次运行configure脚本,应该就OK了,把剩下的步骤进行完: shell> make shell> make install 接着需要配置一下HandlerSocket,编辑MySQL配置文件,加入如下内容: [mysqld] loose_handlersocket_port = 9998 # the port number to bind to (for read re...
https://www.tsingfun.com/it/bigdata_ai/1073.html 

初窥InnoDB的Memcached插件 - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

...ey_columns字段的类型必须是CHAR或VARCHAR,且最大长度是250个字符。 value_columns字段的类型必须是CHAR或VARCHAR或BLOB,长度不限。 cas_column字段的类型必须是BIGINT。 expiration_time_column字段的类型必须是INT。 flags字段的类型必须是INT。 ...
https://bbs.tsingfun.com/thread-616-1-1.html 

如何获取IE (控件)的所有链接(包括Frameset, iframe) - 其他 - 清泛IT社...

...&nbsp;&nbsp;{ &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;// _framedoc 节点进行处理 &nbsp; &nbsp;&nbsp;&nbsp;} }复制代码iframe 跨域访问(cross frame)&nbsp; &nbsp;zz from : http://codecentrix.blogspot.com/ ... cument-returns.html 由于安全性限制, 为防止跨域脚本攻击, 当fra...
https://www.tsingfun.com/it/bigdata_ai/2293.html 

理解Python的 with 语句 - 大数据 & AI - 清泛网 - 专注C/C++及内核技术

...能忘记关闭文件句柄;二是文件读取数据发生异常,没有进行任何处理。下面是处理异常的加强版本: file = open("/tmp/foo.txt") try: data = file.read() finally: file.close() While this works well, it is unnecessarily verbose. This is where with is ...
https://www.tsingfun.com/it/tech/1638.html 

CentOS+Nginx+PHP+MySQL详细配置(图解) - 更多技术 - 清泛网 - 专注C/C++及内核技术

... 既然安装PHP,那GD便是不可少的,在此GD的安装不再进行描述 1、安装libpng (http://www.linuxfromscratch.org/blfs/view/svn/general/libpng.html) #tar xvf libpng-1.2.10.tar.tar #cd libpng-1.2.10 #./configure --prefix=/usr/local/png #make;make install #ln -s /usr/lo...
https://www.fun123.cn/referenc... 

Alarm 闹钟扩展 · App Inventor 2 中文网

... offsetY = e.clientY - element.offsetTop; return false; // 防止文本选中 }; // 鼠标移动时拖动元素 document.onmousemove = function(e) { if (!isDragging) return; element.style.left = (e.clientX - offsetX) + 'px'; element.style.top = (e....
https://bbs.tsingfun.com/thread-69-1-1.html 

CentOS+Nginx+PHP+MySQL详细配置(图解) - PHP - 清泛IT论坛,有思想、有深度

...p;&nbsp;既然安装PHP,那GD便是不可少的,在此GD的安装不再进行描述 1、安装libpng&nbsp; &nbsp;(http://www.linuxfromscratch.org/blfs/view/svn/general/libpng.html) #tar xvf libpng-1.2.10.tar.tar #cd libpng-1.2.10 #./configure --prefix=/usr/local/png #make;make install #ln ...