码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
fir滤波器
 // reference implementation of an FIR     template <typename SampleType, typename NumericType>     stat
分类:其他好文   时间:2018-05-03 10:29:18    阅读次数:141
Jmeter(三)_配置元件
HTTP Cookie Manager 用来存储浏览器产生的用户信息 Clear Cookies each Iteration:每次迭代请求,清空cookies,GUI中定义的任何cookie都不会被清除。 Implementation:默认HC4CookieHandler Cookie Polic ...
分类:其他好文   时间:2018-05-01 12:20:15    阅读次数:210
ALGORITHM1.2 Pushdown stack (linked-list implementation)(P149)
//链表做的stack java版: import edu.princeton.cs.algs4.*; import java.util.Iterator; public class Stack<Item> implements Iterable<Item> { private Node first ...
分类:其他好文   时间:2018-04-30 20:01:36    阅读次数:209
ALGORITHM 1.1 Pushdown(LIFO) stack (resizing array implementation)(P141)
//可调整大小的stack,且带迭代器 java版: import java.util.Iterator; import edu.princeton.cs.algs4.*; public class ResizingArrayStack<Item> implements Iterable<Item> ...
分类:其他好文   时间:2018-04-30 18:05:44    阅读次数:122
从Github开源项目《云阅》所学到的知识
感谢开源,感谢大神,才让我们这些菜鸟成长! 附上云阅开源项目地址:点我吧。 1.轮播图的实现。 现在的APP基本都会实现这个功能吧,然后一直都找不到好的第三方库,能够满足各种需求。然而碰到了这个开源库... gradle配置: implementation 'com.youth.banner:ban ...
分类:其他好文   时间:2018-04-30 13:38:41    阅读次数:262
Advanced Simulation Library(ASL)&& An adaptive and distributed-memory parallel implementation of the immersed boundary (IB) method (IBAMR)
ASL 和 IBAMR 都是有限元分析的工具,流体力学等,ASL可以使用GPU加速计算, 主机配置,i7 6代,1060, 32G,500G,ubuntu1604。 安装ASL、配置依赖、安装、运行测试: 1.GPU DRIVER && CUDA SDK OpenCL 在Ubuntu 软件源下载GP ...
分类:其他好文   时间:2018-04-25 00:21:09    阅读次数:323
CALayer的mask属性
//#import "ViewController.h" // //@interface ViewController () // //@end // //@implementation ViewController // //- (void)viewDidLoad { // // [super v... ...
分类:其他好文   时间:2018-04-23 13:50:19    阅读次数:198
代写C++FIFO 作业、FIFO、C++编程作业代写代做、 C++程序课程作业代写
Your implementation of the code is due 11:59pm on Wed 25th October 2017 (Week 12)○ Your code will be submitted using SVN and the Web Submission System ...
分类:编程语言   时间:2018-04-19 15:01:33    阅读次数:169
webDriver阅读笔记 2
https://seleniumhq.github.io/selenium/docs/api/java/index.html HtmlUnit Driver This is currently the fastest and most lightweight implementation of We ...
分类:Web程序   时间:2018-04-18 16:25:20    阅读次数:200
OC开发系列-成员变量的作用域
成员变量的作用域 OC中成员变量有四种作用域,同时每一种作用域对应着响应的关键字。 "@private:自能在当前类的实现@implementation中访问" "@protected: 可以在当前类以及子类的实现@implementation中直接访问 默认" "@public: 任何地方都可以直 ...
分类:其他好文   时间:2018-04-14 00:37:39    阅读次数:177
1803条   上一页 1 ... 25 26 27 28 29 ... 181 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!