会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
博客园
首页
新随笔
联系
订阅
管理
2022年2月18日
Java8 判断一个集合的元素哪些不在另外一个集合
摘要: List dataList = Arrays.asList(data); //集合1 List dataList1 = Arrays.asList(data1); //集合2 List list2 = (List) dataList1.stream().filter(item -> !dataLis
阅读全文
posted @ 2022-02-18 16:02 简单明了
阅读(1738)
评论(0)
推荐(0)
编辑
2019年6月21日
软考介绍
摘要: 一、软考介绍 •软考是由人力资源和社会保障部和工业和信息化部领导下的国家级考试,其目的是,科学、公正地对全国计算机与软件专业技术人员进行职业资格、专业技术资格认定和专业技术水平测试。上半年考试时间为5月底(第三个周六、周日),下半年考试时间为11月中旬(第二个周六、周日)。 •这种考试还具有水平考试
阅读全文
posted @ 2019-06-21 10:42 简单明了
阅读(3835)
评论(0)
推荐(0)
编辑
2018年10月15日
安装ffmpeg
摘要: # Script ffmpeg compile for Centos 7.x # Alvaro Bustos, thanks to Hunter. # Updated 5-8-2018 # URL base https://trac.ffmpeg.org/wiki/CompilationGuide/Centos # Install libraries yum install -y autocon...
阅读全文
posted @ 2018-10-15 13:40 简单明了
阅读(1077)
评论(0)
推荐(0)
编辑
2017年5月16日
Hadoop实战-Flume之自定义Sink(十九)
摘要: import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import org.apache.flume.Channel; import org.apache.flume.Context; import org.a...
阅读全文
posted @ 2017-05-16 22:56 简单明了
阅读(549)
评论(0)
推荐(0)
编辑
Hadoop实战-Flume之自定义Source(十八)
摘要: import java.nio.charset.Charset; import java.util.HashMap; import java.util.Random; import org.apache.flume.Context; import org.apache.flume.EventDeliveryException; import org.apache.flume.PollableS...
阅读全文
posted @ 2017-05-16 22:55 简单明了
阅读(303)
评论(0)
推荐(0)
编辑
Hadoop实战-Flume之Sink Load-balancing(十七)
摘要: a1.sources = r1 a1.sinks = k1 k2 a1.channels = c1 # Describe/configure the source a1.sources.r1.type = netcat a1.sources.r1.bind = localhost a1.sources.r1.port = 44444 # Describe the sink a1.sinks....
阅读全文
posted @ 2017-05-16 22:53 简单明了
阅读(172)
评论(0)
推荐(0)
编辑
Hadoop实战-Flume之Sink Failover(十六)
摘要: a1.sources = r1 a1.sinks = k1 k2 a1.channels = c1 # Describe/configure the source a1.sources.r1.type = netcat a1.sources.r1.bind = localhost a1.sources.r1.port = 44444 # Describe the sink a1.sinks....
阅读全文
posted @ 2017-05-16 22:52 简单明了
阅读(166)
评论(0)
推荐(0)
编辑
Hadoop实战-Flume之Source multiplexing(十五)
摘要: a1.sources = r1 a1.sinks = k1 k2 a1.channels = c1 c2 # Describe/configure the source a1.sources.r1.type = netcat a1.sources.r1.bind = localhost a1.sources.r1.port = 44444 # Describe the sink a1.sin...
阅读全文
posted @ 2017-05-16 22:50 简单明了
阅读(391)
评论(0)
推荐(0)
编辑
Hadoop实战-Flume之Source replicating(十四)
摘要: a1.sources = r1 a1.sinks = k1 k2 a1.channels = c1 c2 # Describe/configure the source a1.sources.r1.type = netcat a1.sources.r1.bind = localhost a1.sources.r1.port = 44444 # Describe the sink a1.sin...
阅读全文
posted @ 2017-05-16 22:46 简单明了
阅读(167)
评论(0)
推荐(0)
编辑
Hadoop实战-Flume之Source regex_filter(十三)
摘要: a1.sources = r1 a1.sinks = k1 a1.channels = c1 # Describe/configure the source a1.sources.r1.type = netcat a1.sources.r1.bind = localhost a1.sources.r1.port = 44444 a1.sources.r1.interceptors =i5 #a...
阅读全文
posted @ 2017-05-16 22:44 简单明了
阅读(1048)
评论(0)
推荐(0)
编辑
下一页