码迷,mamicode.com
首页 >  
搜索关键字:streams aq qmn coord    ( 603个结果
java 8 之Streams 解说
java 8 之Streams 解说     基本概念 java 8新增的集合streams操作,简化了我们显示的遍历集合操作行为,而且提供内置的并发功能。       Streams操作中,如果操作产生的结果还是stream是lazy operation,但结果如果是void或者其他的value值则是eager operation,lazy operation做的目的是为了操作效率...
分类:编程语言   时间:2016-06-12 02:10:54    阅读次数:499
【linux】rpm常见命令
查看包依赖模块:http://www.rpmfind.net/ rpm -ivh [包名] :安装rpm包 rpm -e [包名] :删除rpm包 rpm -aq [包名] :查询rpm包 rpm -al [包名] :查询rpm包所安装的位置和文件 l=list rpm -af [文件名] :查询文 ...
分类:系统相关   时间:2016-06-10 14:51:44    阅读次数:272
Kafka Streams入门指南
应该会有不少人觉得我标题打错了,是不是想讲SparkStreaming或者Kafka+SparkStreaming啊?实际上这不是笔误,Kafka Streams是Kafka 0.10提供的新能力,用于实时处理Kafka中的数据流,和现有的流处理技术如SparkStreaming,Storm,Flink还是有些区别的。 1 概况     Kafka Streams是一套处理分析Ka...
分类:其他好文   时间:2016-06-10 12:31:17    阅读次数:2810
UNIX环境高级编程笔记之高级I/O
本章说明了很多高级I/O功能: 非阻塞I/O——发一个I/O操作,不使其阻塞,记录锁,STREAMS机制 I/O多路转接——select和poll函数 readv和writev函数,以及存储映射I/O(mmap函数) ...
分类:其他好文   时间:2016-06-05 16:57:23    阅读次数:159
写给大忙人的JavaSE 8 - 学习
前面有提到过lambda和函数式接口,但是JavaSE 8 除了这两个新特性之后还提供了很多有用的东西。例如Stream。 摸索了几天,终于弄明白Stream的应用了。 先推荐一篇文章:Java 8 中的 Streams API 详解 这里的Stream,是对集合进行操作的API。有点像流水线作业, ...
分类:编程语言   时间:2016-05-07 14:52:16    阅读次数:192
RHEL 6.0使用CentOS yum源
引言:由于RHEL的yum在线更新是收费的,如果没有注册的话是不能使用的,即不能在线安装软件。在这种情况下,想使用RHEL系统,还想用yum源来在线安装软件,有没有办法?答案是有办法,请往下看! 1、删除RHEL原有的yum rpm -aq|grep yum|xargs rpm -e --nodep ...
分类:其他好文   时间:2016-05-04 06:35:55    阅读次数:198
DirectX XAudio2之音频图关键点
The set of all voices, with their contained effects and their interconnections, is referred to as the audio processing graph. The graph takes a set of audio streams from the client as input, processes...
分类:其他好文   时间:2016-04-29 15:50:01    阅读次数:232
[Angular 2] Using a Value from the Store in a Reducer
RxJS allows you to combine streams in various ways. This lesson shows you how to take a click stream and combine it with a store stream to use a value ...
分类:其他好文   时间:2016-04-28 07:03:29    阅读次数:194
[Angular 2] Mapping Streams to Values to Affect State
While you have multiple streams flowing into your scan operator, you'll need to map each stream to the specific values you need to update your state t ...
分类:移动开发   时间:2016-04-26 19:21:03    阅读次数:170
[Angular 2] Handling Clicks and Intervals Together with Merge
Observable.merge allows you take two different source streams and use either one of them to make changes to the same state of your data. This lesson s ...
分类:其他好文   时间:2016-04-26 07:05:28    阅读次数:191
603条   上一页 1 ... 40 41 42 43 44 ... 61 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!