码迷,mamicode.com
首页 >  
搜索关键字:is == type    ( 51964个结果
MySQL源码 数据结构hash
MySQL源码自定义了hash表,因为hash表具有O(1)的查询效率,所以,源码中大量使用了hash结构。下面就来看下hash表的定义:【源代码文件include/hash.h mysys/hash.c】typedef uint my_hash_value_type;typedef uchar *...
分类:数据库   时间:2014-05-09 10:50:26    阅读次数:485
插入员工信息文档(indexing employee documents)
首先就是存储员工信息数据。这里将会使用一个文档描述一个员工的“employee document”形式。实际上在ES中存储数据的动作叫index,但是在我们index一个文档的时候首先要确定去哪里储存数据。在ES中,一个文档是相当于一个type,若干type从属于一个index。可以从下面和关系性数...
分类:其他好文   时间:2014-05-09 10:40:21    阅读次数:239
sqlserver 触发器语法
语法:Trigger on an INSERT, UPDATE, or DELETE statement to a table or view (DML Trigger)CREATE TRIGGER [ schema_name . ]trigger_name ON { table | view } ...
分类:数据库   时间:2014-05-09 05:18:18    阅读次数:483
给vector对象添加元素的方法
#include#includeusing namespace std;int main(){ //初始化10个元素,每个值都为0 vector fvec(10); //输出 for(vector::size_type ix=0;ix!=fvec.size();ix++) ...
分类:其他好文   时间:2014-05-08 18:44:26    阅读次数:528
Ubuntu安装TTF字体
$sudocp *.ttf/usr/share/fonts/truetype/$sudofc-cache-f-v
分类:其他好文   时间:2014-05-08 17:46:12    阅读次数:250
黑马程序员 block,protocol
#import // 利用typedef创建blocktypedef int (^MyBlock) (int,int); // 表示遵守协议@protocol MyProtocol /* 1.reqiured:要求实现方法,不实现方法编译器会发出警告 2.optional:不要求实现方法 3.默.....
分类:其他好文   时间:2014-05-08 17:40:55    阅读次数:225
微信订阅号开发笔记(五)
1、用户管理//查询所有分组 publicfunctionqueryGroups(){ $url="https://api.weixin.qq.com/cgi-bin/groups/get?access_token="; $url.=$this->getacctoken(); $result=$this->cget($url); header("Content-type:text/html;charset=utf-8"); print_r($result); } //创建..
分类:微信   时间:2014-05-08 16:45:04    阅读次数:726
【PHP内核学习】global关键字的解析过程分析
通过代码可以看到,当传递过来的fetch_type是ZEND_FETCH_GLOBAL(_LOCK)时,函数使用EG(excutor_global)宏 返回了global变量的符号表地址。...
分类:Web程序   时间:2014-05-08 15:44:30    阅读次数:501
苹果开发者资源
苹果官方app demohttps://developer.apple.com/library/ios/navigation/#section=Resource%20Types&topic=Sample%20Code
分类:移动开发   时间:2014-05-08 15:23:08    阅读次数:328
debug
find . -xtype f -perm +111 -print0 | xargs -0 file | grep "ELF"
分类:其他好文   时间:2014-05-08 14:54:59    阅读次数:254
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!