scala> val file=sc.textFile("/workspace/bpUserinfo_logs/bpUserinfo_20160212.log") scala> val count=file.flatMap(line => line.split(" ")).map(word => (
分类:
其他好文 时间:
2016-02-16 14:46:09
阅读次数:
135
//上下拉头尾部 self.collectionView.footer = [MJRefreshBackNormalFooter footerWithRefreshingTarget:self refreshingAction:@selector(footRequestMore)]; self.co
分类:
其他好文 时间:
2016-02-16 14:45:54
阅读次数:
145
Moshi 是一个现代化的JSON库针对Android和Java。它可以很容易地解析JSON成Java对象: String json = ...; Moshi moshi = new Moshi.Builder().build(); JsonAdapter<BlackjackHand> jsonAd
分类:
移动开发 时间:
2016-02-16 14:45:26
阅读次数:
320
组件接口(API)设计指南-文件夹 组件接口(API)设计指南[1]-要考虑的问题 组件接口(API)设计指南[2]-类接口(class interface) 组件接口(API)设计指南[3]-托付(delegate)和数据源协议(data-source protocols) 组件接口(API)设计
##DAY8 界面通信 注意:延展中写的东西只能在类内使用 #pragma mark ———————属性传值—————————— (第一个页面往第二个页面传值) 一、属性传值:(第一个页面往第二个页面传值) 属性传值:可以自定义属性、也可使用控件、视图的自带属性 1、属性传值用于第一个界面向第二个页
分类:
其他好文 时间:
2016-02-16 14:46:58
阅读次数:
169
Some times you will need a mechanism to check whether changes to network occurring during running your application.So as a solution for this you can a
分类:
Web程序 时间:
2016-02-16 14:45:02
阅读次数:
113
1, 使用hive标记random:(如果是mr,就自己标记random值) use ps; set mapred.job.priority=VERY_HIGH; set mapred.job.map.capcity=300; set mapred.reduce.tasks=200; insert
分类:
其他好文 时间:
2016-02-16 14:45:04
阅读次数:
104
转自: http://www.cnblogs.com/gao241/archive/2013/03/20/2971416.html, 版权归原作者。 本文将介绍如何配置jenkins,使其可以支持基于角色的项目权限管理。 由于jenkins默认的权限管理体系不支持用户组或角色的配置,因此需要安装第三
分类:
其他好文 时间:
2016-02-16 14:44:04
阅读次数:
153
1.将字体拖入项目 2.在info.plist 文件中加入 3.使用 self.label.font = [UIFont fontWithName: @"FZ XingHei" size:20]; 4.使用字体注意版权问题
分类:
移动开发 时间:
2016-02-16 14:45:50
阅读次数:
157
str为要去除空格的字符串: 去除所有空格: str = str.replace(/\s+/g,""); 去除两头空格: str = str.replace(/^\s+|\s+$/g,""); 去除左空格: str=str.replace( /^\s*/, ''); 去除右空格: str=str.r
分类:
Web程序 时间:
2016-02-16 14:44:50
阅读次数:
164
##DAY13——可视化编程之XIB #import "Student.h" @interface StudentTableViewCell : UITableViewCell @property (strong, nonatomic) IBOutlet UIImageView *headerIma
分类:
其他好文 时间:
2016-02-16 14:46:08
阅读次数:
99
View v = LayoutInflater.from(TourBuyDetailsActivity.this ).inflate(R.layout.tour_details_header_img_item,null); final ImageView imageView = (ImageView
分类:
移动开发 时间:
2016-02-16 14:43:07
阅读次数:
367
Tunnel Warfare Time Limit: 1000MS Memory Limit: 131072K Total Submissions: 7499 Accepted: 3096 Description During the War of Resistance Against Japan,
分类:
其他好文 时间:
2016-02-16 14:45:14
阅读次数:
147
jQuery为开发插件提拱了两个方法,分别是: 1. jQuery.fn.extend(); 2. jQuery.extend(); 虽然 javascript没有明确的类的概念,但是可以构建类似类的定义。 jQuery便是一个封装得非常好的类,比如,$("#btn1") 会生成一个 jQuery类
分类:
Web程序 时间:
2016-02-16 14:42:52
阅读次数:
112
"ORA-01654: 索引VGSM.AUDIT_DATA_I无法通过8192(在表空间KLDB中)扩展" 1.有可能是索引表空间不够 select sum(bytes/1024/1024) sizeMB from dba_free_space z where z.tablespace_name='
分类:
其他好文 时间:
2016-02-16 14:43:28
阅读次数:
4883
1.Getting the User’s Current Location 获取用户当前位置。 获取位置的方式有三种:GPS, cell tower triangulation(蜂窝站点), 和 Wi-Fi Positioning Service (WPS).其中GPS是最精确的定位方式,但是在第一
分类:
其他好文 时间:
2016-02-16 14:44:18
阅读次数:
159
反射-优化及程序集等(用委托的方式调用需要反射调用的方法(或者属性、字段),而不去使用Invoke方法) 创建Delegate (1).Delegate.CreateDelegate(Type, MethodInfo) : 创建指定类型的静态方法, 1.Type(委托类型) 2.MethodInfo
分类:
其他好文 时间:
2016-02-16 14:43:10
阅读次数:
231