码迷,mamicode.com
首页 >  
搜索关键字:assuming 536870912.00 bytes    ( 3912个结果
LINUX apt-get安装软件时报dpkg的错误
dpkg: serious warning: files list file for package "********" missing, assuming package has no files currently installed.该错误通常发生在以下情况,使用dpkg -i安装deb包后...
分类:系统相关   时间:2014-09-14 21:59:47    阅读次数:338
[Java][MAT] Shallow Heap大小计算释疑
查看Mat文档时里面是这么描述Shallow Heap的:Shallowheap is the memory consumed by one object. An object needs 32 or 64 bits(depending on the OS architecture) per reference, 4 bytes per Integer, 8 bytesper Long, etc....
分类:编程语言   时间:2014-09-14 16:45:47    阅读次数:204
kafka【系统配置说明】 - server.properties
通常而言我们的kafka的配置如下所示: broker.id=0 num.network.threads=2 num.io.threads=8 socket.send.buffer.bytes=1048576 socket.receive.buffer.bytes=1048576 socket.request.max.bytes=1...
分类:其他好文   时间:2014-09-12 17:29:24    阅读次数:215
malloc函数具体解释
一、原型:extern void *malloc(unsigned int num_bytes);头文件:#include 或 #include (注意:alloc.h 与 malloc.h 的内容是全然一致的。)功能:分配长度为num_bytes字节的内存块说明:假设分配成功则返回指向被分配内.....
分类:其他好文   时间:2014-09-11 22:13:52    阅读次数:225
Received empty response from Zabbix Agent at [agent]. Assuming that agent dropped connection because of access permission
Received empty response from Zabbix Agent at [agent]. Assuming that agent dropped connection because of access permission情况:server端一直显示更改server上agentd...
分类:数据库   时间:2014-09-11 03:27:01    阅读次数:11905
[转载] UDP数据包大小问题
出处http://blog.csdn.net/buptzwp/article/details/5055487------------------ 在进行UDP编程的时候,我们最容易想到的问题就是,一次发送多少bytes好? 当然,这个没有唯一答案,相对于不同的系统,不同的要求,其得到的答案是...
分类:其他好文   时间:2014-09-10 13:54:00    阅读次数:182
ASP.NET中将数据作为XML数据发送 使用 Request.InputStream 接收
将数据作为XML数据发送,例如:public void PostXml(string url, string xml){byte[] bytes = Encoding.UTF8.GetBytes(xml);HttpWebRequest request = (HttpWebRequest) WebRe...
分类:Web程序   时间:2014-09-10 12:18:20    阅读次数:279
oracle增加表空间的四种方法
1. 查看所有表空间大小selecttablespace_name,sum(bytes)/1024/1024fromdba_data_files groupbytablespace_name;2. 未使用的表空间大小selecttablespace_name,sum(bytes)/1024/1024...
分类:数据库   时间:2014-09-04 14:45:19    阅读次数:267
Go标准库
bufio 实现缓冲的I/O bytes 提供了对字节切片操作的函数 crypto 收集了常见的加密常数 errors 实现了操作错误的函数 Expvar 为公共变量提供了一个标准的接口,如服务器中的运算计数器 flag 实现了命令行标记解析 ...
分类:其他好文   时间:2014-09-03 17:02:47    阅读次数:261
oracle随笔
--查数据库的空间使用情况SELECT A.TABLESPACE_NAME "表空间名称", 100 - ROUND ((NVL(B.BYTES_FREE, 0 ) / A.BYTES_ALLOC) * 100 , 2) "占用率(%)", ROUND(A.BYTES_ALLOC / 1024 / ...
分类:数据库   时间:2014-09-03 12:32:56    阅读次数:219
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!