码迷,mamicode.com
首页 >  
搜索关键字:capacity    ( 831个结果
Amazon AutoScaling 自动创建脚本
#!/bin/bash #Autoscalingconfigname AC_CONFIG="my-lc-bycli" #Autoscalinggroupname AC_GROUP_NAME="my-lb-asg-bycli" #desired-capacity DC="1" #securitygroup SG="sg-9b3a8bfe" #whichkeypari KP="ELB" #specifymachinetype INSTANCE_TYPE="t2.micro" #whichAMIyouwannaus..
分类:其他好文   时间:2015-08-17 19:53:26    阅读次数:126
innodb master主线程
/* Number of IO operations per second the server can do */extern ulong srv_io_capacity;/* Returns the number of IO operations that is X percent of ...
分类:数据库   时间:2015-08-17 16:52:13    阅读次数:151
你的充电宝能否上飞机
原文链接一、看懂自己的充电宝  充电宝上一般会有这样几个数据:电池容量Capacity(mAh)、输入电流(A)、输出电流(A)、输入电压(V)、输出电压(V)  充电电池的电量都是毫安时(mAh),为电流强度与时间的乘积,当电流强度用毫安(mA)作单位,时间用小时(h)作单位,它们两个相乘就是毫安时(mAh)。其表示在一定的放电电流下完全放电的时间,例如,1000毫安时指此电池在1000毫安的电量...
分类:其他好文   时间:2015-08-17 14:05:28    阅读次数:118
docker的日志轮转rotate具体实现
type?JSONFileLogger?struct?{ buf??????*bytes.Buffer?//buffer内容 f????????*os.File???//?文件属性 mu???????sync.Mutex?//?buffer写文件的锁 capacity?int64?????...
分类:其他好文   时间:2015-08-13 16:04:15    阅读次数:242
java集合常用类介绍
List接口:一:ArrayList private static final int DEFAULT_CAPACITY = 10; private static final Object[] EMPTY_ELEMENTDATA = {}; private transient Object[]...
分类:编程语言   时间:2015-08-03 10:03:00    阅读次数:140
hdu1839Delay Constrained Maximum Capacity Path 二分+最短路
//一个无向图,两点之间的流量为c,两点花的时间为t //问从起点到终点n之间时间小于等于T且只走一条路径能够运输的最大流量为多少 //二分流量,小于这个流量的路径不走,求其时间是否小于等于T得到答案 #include #include #include #include using namespace std ; const in...
分类:其他好文   时间:2015-08-01 14:18:53    阅读次数:117
Delphi小谈之TList
转载自:http://blog.csdn.net/jqandjq/article/details/5429137 在我刚接触TList的时候,TList搞得我迷雾重重,都是Capacity属性惹的祸。我查了Delphi的帮助,它说Capacity是Tlist的最大容量,又在什么地方说MaxInt ....
分类:Windows程序   时间:2015-07-29 00:43:50    阅读次数:362
InnoDB buffer pool 刷新快慢取决因素
innodb buffer pool 刷新快慢取决于两个参数mysql> show variables like 'innodb_io_capacity%';+------------------------+-------+| Variable_name | Value |+--...
分类:数据库   时间:2015-07-27 12:41:10    阅读次数:161
LRU cache
class LRUCache{public: //map v; vector v; map m; int s; LRUCache(int capacity) { s=capacity; } void adjust(int key){ ...
分类:系统相关   时间:2015-07-26 00:21:17    阅读次数:236
c++vector简单实现
const int DEFAULT_CAP = 3; template class vector { // int capacity; T* _data; int _size; public: //const vector ():capacity(DEFAULT_CAP),_size(0),_data(new T[capacity])...
分类:编程语言   时间:2015-07-24 16:14:28    阅读次数:163
831条   上一页 1 ... 63 64 65 66 67 ... 84 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!