码迷,mamicode.com
首页 >  
搜索关键字:effect    ( 776个结果
稀疏集:编程珠玑第一章第九题
<Programming Pearls> solutions for Column 1中的第9题题解 关键字: Sparse set 原题: The effect of initializing the vector data[0..n-1] can be accomplised with a si ...
分类:其他好文   时间:2017-02-03 19:24:15    阅读次数:340
Lua 函数链功能
函数链 http://lua-users.org/wiki/FiltersSourcesAndSinks A chain is a function that combines the effect of two (or more) other functions, but whose interf ...
分类:其他好文   时间:2017-01-26 11:26:31    阅读次数:219
ThreadPool has stuck threads
weblogic 10后台出现警告,原因:ThreadPool has stuck threads 在WEBLOGIC中如果一个线程执行时间超过了Stuck Thread Max Time规定的时间, WEBLOGIC会把它认为是STUCK线程,并记录在日志中。 我们也可以通过'Dump Threa ...
分类:其他好文   时间:2017-01-25 12:42:18    阅读次数:849
[Angular] NgRx/effect, why to use it?
See the current implementaion of code, we have a smart component, and inside the smart component we are using both 'serivce' and 'store'. In the large ...
分类:其他好文   时间:2017-01-25 07:44:08    阅读次数:623
logger.isDebugEnabled()作用
项目中经常会用到:if (logger.isDebugEnabled()) { logger.debug( "message:" + user.getMessage() );}我们会想当然得认为这段代码作用是为了控制日志文件的输出,但是通过查看源码我们会发现,在debug()方法中做了与isDebu ...
分类:其他好文   时间:2017-01-17 14:09:33    阅读次数:1143
Python 小而美的函数
python提供了一些有趣且实用的函数,如any all zip,这些函数能够大幅简化我们得代码,可以更优雅的处理可迭代的对象,同时使用的时候也得注意一些情况 any any(iterable) Return True if any element of the iterable is true. ...
分类:编程语言   时间:2017-01-07 18:04:59    阅读次数:230
iOS 给imageview添加模糊度
开发工具带的swift2.3,3.0的朋友们改改语法吧! 首先要有一个UIimageview然后: 我是声明了一个全局的UIVisualEffectView private var effectView: UIVisualEffectView! let blur = UIBlurEffect(sty ...
分类:移动开发   时间:2017-01-05 16:47:11    阅读次数:219
百度数据可视化图表套件echart实战
最近我一直在做数据可视化的前端工作,我用的最多的绘图工具是d3。d3有点像photoshop,功能很强大,例子也很多,但是学习成本也不低,做项目是需要较大人力投入的。3月底由在亚马逊工作的同学介绍下使用了一下echart,一个由百度前端发起的canvas国产类库(官网:http://echarts. ...
分类:其他好文   时间:2017-01-05 15:29:08    阅读次数:331
关键词模块部分说明文档
void denoiseWord(string path, int trd) Require:path要求是一个字符串,其为一个word文档的绝对地址,trd要求是一个整型变 量,是当前线程的线程编号。 Effect:读取path路径下的word文档,读取其中的文字内容,去掉其他无关信息,将降噪后 ...
分类:其他好文   时间:2017-01-05 07:52:33    阅读次数:168
【Python】迭代器
对迭代器和生成器的概念一直很混乱,总结一下: 迭代器: 1.所谓的迭代器,就是具有__next__()方法的对象; 2.__iter__()方法返回一个迭代器对象,这个对象必须具有__next__()方法; 3.一个实现了__iter__()方法的对象是可迭代的,一个实现了__next__()方法的 ...
分类:编程语言   时间:2016-12-31 23:00:00    阅读次数:195
776条   上一页 1 ... 48 49 50 51 52 ... 78 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!