学习AngularJS的8本免费电子书籍 资讯

The ebook carries the transcription of the video (done by Ian Smith) with relevant screenshots and

jopen 2015-07-07   17526   0

用于创建产品展示网站的最好 WordPress 插件 资讯

portfolio plugin allows users to manage elements like video types, links and images in a simple and straightforward

jopen 2014-08-28   70427   0
P26

  Ceph在世纪佳缘的应用 文档

高可用,ceph monitor (paxos算法) 易扩展,osd 进程 支持多副本,保证数据安全,osd pool default size 自定义故障隔离域,crushmap 支持海量数据,PG,EG … 6

gn25d 2016-01-13   671   0
P8

  ExecutorService 用法详解 文档

shutdownAndAwaitTermination(ExecutorService pool) { pool.shutdown(); // Disable new tasks from being

maxdeny 2015-04-09   2698   0

访问 PostgreSQL 数据库的 Python 开发库:aiopg 经验

封装。 Example import asyncio from aiopg.pool import create_pool dsn = 'dbname=jetty user=nick password=1234

jopen 2014-12-11   69186   0

iOS 全局并发队列管理工具:YYDispatchQueuePool 经验

会创建大量线程以至于占用了过多资源而影响到主线程。这里可以用一个全局的 serial queue pool 来尽量控制全局线程数。 用法 // 从全局的 queue pool 中获取一个 queue dispatch_queue_t queue

jopen 2015-11-12   24951   0

图片加载库Glide的入门使用 经验

transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) { return circleCrop(pool, toTransform);

BriSCN 2016-10-13   8173   0

redis client 数据展现 代码段

Constants.REDIS_TEST_ON_BORROW; private JedisPool pool = null; public RedisClient() { } public RedisClient(String

RegPoate 2016-01-23   5721   0
Redis   Jedis   Maven  

探索美妙的AsyncTask实现及阅读源码收获 经验

if ((mActive = mTasks.poll()) != null) { THREAD_POOL_EXECUTOR.execute(mActive); } } } SerialExecut

znlygly111 2016-09-07   3677   0

Android/iOS 视频播放器:ijkplayer 经验

buggy online video. Android platform: API 9~18 cpu: ARMv7a-NEON api: MediaPlayer-like video output: NativeWindow

jopen 2014-01-03   54752   0

有用的网页设计学习资源 资讯

technologies in the comfort of your browser with video lessons, coding challenges, and screencasts.

jopen 2014-02-18   40017   0
P8

  FFServer源码分析 文档

peg的encoder或者另一个ffserver或者是一个编码好的文件。每个Feed中包含一个video和/或一个audio。 定义每个输出的流。流的格式 帧率 来源 GOP 等。 现在分析ffserver

merlini 2011-10-14   9714   0

Phaser - 一个快速、免费、开源的 HTML5 游戏框架 资讯

release - there is no two ways about it! Brand new video component? Check. Support for fully boned Creature

jopen 2015-07-27   69866   0
Phaser  
P15

  Oracle10g 性能调整与优化 文档

Oracle10g性能调整与优化 主要内容:收集性能数据、优化SQL语句和应用程序、调整共享池(Shared Pool)的性能、调整缓冲区高速缓存(Buffer Cache)的性能、调整重做有关的性能、共享(多线程

50341 2013-02-24   1919   0

Android系获取图片和视频的缩略图 代码段

cursor = cr.query(uri,new String[] { MediaStore.Video.Media._ID }, null, null, null); if (cursor == null

jopen 2015-05-11   5800   0
Android  

20个令人印象深刻的例子学习Three.js实现WebGL 资讯

effects on the tech page , and the behind the scenes video . Just A Reflektor 4. Arms Globe Arms Globe

jopen 2013-09-26   175620   0
WebGL  

Executors 工具类 创建 的 线程池 代码段

//固定线程数量的线程池,有任务就派空闲线程去执行,多余的任务等待 //ExecutorService pool= Executors.newFixedThreadPool(3); //根据任务需要,自动创建线程,且

cp5m 2015-04-23   948   0
Java  

MySQL 数据库性能优化之缓存参数优化 经验

(非空表) innodb_buffer_pool_size(global) 当我们使用InnoDB存储引擎的时候,innodb_buffer_pool_size 参数可能是影响我们性能的最为关键的一个参数了,他用来设置用于缓存

jopen 2014-07-09   17483   0

浅谈Java多线程 经验

static void main(String[] args) { ExecutorService pool = Executors.newCachedThreadPool(); MyThread myThread

jopen 2016-01-08   13701   0
P8

  redis之java增删改查 文档

get("foo");但是jedis对象不是线程安全的,在多线程环境下会傻逼,所以官方提供了一个线程安全的连接池:JedisPool pool = new JedisPool(new JedisPoolConfig(), "localho

Nodzhou1 2014-11-25   902   0
1 2 3 4 5 6 7 8 9 10