码迷,mamicode.com
首页 >  
搜索关键字:global mapper    ( 11701个结果
view变化监听器ViewTreeObserver介绍
A view tree observer is used to register listeners that canbe notified of global changes in the view tree. Such global eventsinclude, but are not limi...
分类:其他好文   时间:2014-07-19 17:26:44    阅读次数:310
mvc 中kindeditor使用(cookie丢失问题)
解决 ff cookie 丢失问题Global.asax 中: protected void Application_BeginRequest(object sender, EventArgs e) { var Request = HttpContext....
分类:Web程序   时间:2014-07-19 16:33:56    阅读次数:279
git 的一些笔记
git configgit config存在三个地方 :1./.git/config 项目级别2.~/.gitconfig 用户级别3./etc/gitconfig 系统级别git config -e 查看项目级别的配置git config -e --global 查看...
分类:其他好文   时间:2014-07-19 14:29:32    阅读次数:168
libcurl教程
目录(?)[-]目标编译源码编译链接是否使用SSLautoconf宏跨平台的可移植的代码全局初始化CURL_GLOBAL_WIN32CURL_GLOBAL_SSLlibcurl提供的功能使用easy interface多线程问题什么时候libcurl无法正常工作上传数据到远程站点关于密码HTTP验证...
分类:其他好文   时间:2014-07-19 00:26:57    阅读次数:467
hadoop编程小技巧(4)---全局key排序类TotalOrderPartitioner
Hadoop代码测试版本:Hadoop2.4原理:在进行MR程序之前对输入数据进行随机提取样本,把样本排序,然后在MR的中间过程Partition的时候使用这个样本排序的值进行分组数据,这样就可以达到全局排序的目的了。难点:如果使用Hadoop提供的方法来实现全局排序,那么要求Mapper的输入、输出的key不变才可以,因为在源码InputSampler中提供的随机抽取的数据是输入数据最原始的ke...
分类:其他好文   时间:2014-07-18 18:04:00    阅读次数:314
OEL6.X IBM v3500存储多路径配置
本文是一次两台IBMx240安装OEL6.5x64连接IBMV3500存储多路径配置过程记录,当时用于安装Oracle11grac集群环境的。IBMv3500系列存储由于官方不再提供多路径软件,比原来DS系列的存储麻烦一点了,只好采用发行版自带的device-mapper多路径软件包实现。本文出自:http://koumm.blog..
分类:其他好文   时间:2014-07-18 13:00:11    阅读次数:463
ORA-02069: global_names parameter must be set to TRUE for this operation
原因:在对远程表增删改操作的时候,调用了本地函数。 比如:insert into trans_load_rate@DC values(rate_s(1)); trans_load_rate是DC库的表,rate_s函数是本地库的函数,执行上面这条sql的时候,就会报ora-02069解决方法: .....
分类:其他好文   时间:2014-07-18 00:17:41    阅读次数:243
my.cnf
[client] port=3358 socket=/export/data/mysql/tmp/mysql.sock [mysqld] port=3358 socket=/export/data/mysql/tmp/mysql.sock datadir=/export/data/mysql/data #---GLOBAL---# character-set-server=utf8 lower_case_table_names=1 log-output=FILE log-error=/export/d..
分类:其他好文   时间:2014-07-17 20:07:00    阅读次数:242
git 上传本地文件到github
git 上传本地文件到github 1 git config --global user.name "Your Real Name" 2 git config --global user.email you@email.address git init git add . git commit -m 'Test' git re...
分类:其他好文   时间:2014-07-17 19:13:25    阅读次数:222
hadoop编程小技巧(3)---自定义分区类Partitioner
Hadoop代码测试环境:Hadoop2.4原理:在Hadoop的MapReduce过程中,Mapper读取处理完成数据后,会把数据发送到Partitioner,由Partitioner来决定每条记录应该送往哪个reducer节点,默认使用的是HashPartitioner,其核心代码如下:/** Use {@link Object#hashCode()} to partition. */ p...
分类:其他好文   时间:2014-07-17 15:06:56    阅读次数:315
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!