码迷,mamicode.com
首页 >  
搜索关键字:assuming 536870912.00 bytes    ( 3912个结果
开启Nginx的目录文件列表功能
nginx默认是不允许列出整个目录的。如何开启Nginx的目录文件列表功能?打开nginx.conf文件,在location server 或 http段中加入 autoindex on;另外两个参数最好也加上去:autoindex_exact_size on;显示出文件的确切大小,单位是bytes。改为off后,显示出文件的大概大小,单位是kB或者MB或者GBautoindex_localtim...
分类:其他好文   时间:2014-09-28 18:33:44    阅读次数:152
JVM 监控以及内存分析
1 内存分析1.1 jmap -histo 命令pid=`jps | awk '{if ($2 == "Jps") print $1}'`jmap -histo $pid >>1.txt 查看pid中类的内存占用num #instances(实例数) #bytes(占用字节) class name ...
分类:其他好文   时间:2014-09-28 18:01:53    阅读次数:176
ios开发-载入viewcontroller的几种方式
Assuming you have storyboard, go to storyboard and give your VC an identifier (inspector), then do:UIStoryboard *storyboard = [UIStoryboard storyboard...
分类:移动开发   时间:2014-09-27 11:10:59    阅读次数:185
response.getWriter().write()与out.print()的区别
1、首先介绍write()和print()方法的区别:(1)、write():仅支持输出字符类型数据,字符、字符数组、字符串等(2)、print():可以将各种类型(包括Object)的数据通过默认编码转换成bytes字节形式,这些字节都通过write(int c)方法被输出2、介绍response...
分类:其他好文   时间:2014-09-27 03:42:39    阅读次数:211
awk笔记
数组states[$NF],格式输出printf,注意循环结构范围{}nginx日志格式分状态码查看流量awk‘{StatesCode[$9]+=$10}END{printf("StateCode------SIZE(bytes)\n");for(iinStatesCode)printf("%8s%18s\n",i,StatesCode[i])}‘access.log
分类:其他好文   时间:2014-09-26 20:37:59    阅读次数:127
how to find out the switch port by IP address
Subject: HowtofindouttheportnumberbyIPaddressSolution:Incore switch,pingtheIPaddress,Ex:telnet@GemHF-Fab-Core#ping10.20.12.111Sending1,16-byteICMPEchoto10.20.12.111,timeout 5000msec,TTL64TypeControl-ctoabortReplyfrom10.20.12.111:bytes=16time=1msTTL=128Succe..
分类:其他好文   时间:2014-09-26 11:37:59    阅读次数:218
byte与base64字串换转
public byte[] base64ToByte(String strBase64){ if(strBase64==null)return null; byte[] bytes = null; try { BASE64Decoder dec = ne...
分类:其他好文   时间:2014-09-25 14:04:28    阅读次数:205
malloc函数详解
一、原型:extern void *malloc(unsigned int num_bytes);头文件:#include 或 #include (注意:alloc.h 与 malloc.h 的内容是完全一致的。)功能:分配长度为num_bytes字节的内存块说明:如果分配成功则返回指向被分配内.....
分类:其他好文   时间:2014-09-25 09:37:18    阅读次数:183
oracle数据库查询当前数据占用量大小
今天让查看数据库中数据占用的空间大小,好做5年规划..... sql如下: select sum(bytes/1024/1024) M from dba_data_files --查询数据文件占用大小 select sum(bytes/1024/1024) M from dba_data_space --查询数据...
分类:数据库   时间:2014-09-24 17:43:17    阅读次数:247
第九章、文件的压缩与打包
压缩文件的用途与技术对大型文件使用压缩技术可以减低大型文件的容量,有的压缩程序还可以分割大型文件成为数个小型文件!目前我们使用的计算机系统都是使用 bytes 单位来计量的!不过,计算机最小的计量单位应该是 bits , 1 byte = 8 bits 。假如我们只是记忆一个数字,比如1,计算机如何...
分类:其他好文   时间:2014-09-24 03:44:25    阅读次数:224
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!