一、原型:extern void *malloc(unsigned int num_bytes);头文件:#include 或 #include (注意:alloc.h 与 malloc.h 的内容是全然一致的。)功能:分配长度为num_bytes字节的内存块说明:假设分配成功则返回指向被分配内.....
分类:
其他好文 时间:
2014-09-23 20:48:45
阅读次数:
195
#!/usr/bin/pythonimportreimportosimportsysimportpycurldefbuffer_line(monitor_log):buf=open("/data0/webinternal_monitor/%s"%monitor_log).read()bytes=os.popen(‘wc-c/data0/logs/%s‘%monitor_log).read().split("")[0]ifint(bytes)<int(buf):return0else:returnint(..
分类:
其他好文 时间:
2014-09-23 17:31:15
阅读次数:
234
1、COSS will not function without large file support (off_t is 4 bytes long. Please reconsider recompiling squid with --with-large-filesBungled squid_w...
分类:
其他好文 时间:
2014-09-22 23:23:53
阅读次数:
311
1 package src 2 3 import ( 4 "bytes" 5 "compress/gzip" 6 ) 7 8 func GzipEncode(in []byte) ([]byte, error) { 9 var (10 buffer by...
分类:
其他好文 时间:
2014-09-21 18:36:50
阅读次数:
544
普通表转化成分区表的高效脚本通用转换存储过程查询未建分区的大表脚本1 prompt 当前用户下,表大小超过10个GB未建分区的2 select segment_name,3 segment_type,4 sum(bytes) / 1024 / 1024 / 1024 ob...
分类:
其他好文 时间:
2014-09-21 01:39:09
阅读次数:
331
涉及计算机运算中的底层运算,所以一步步来。一、pascal中的整数类型Type Range Size in bytes Byte 0 .. 255 1 Shortint -128 .. 127 1 Word 0 .. 65535 2 Integer -32768 .. 32767 2 Longwor...
分类:
其他好文 时间:
2014-09-19 11:27:35
阅读次数:
228
断断续续理了一下关于channel的一些概念,现在可以把下面的程序理清楚了。1. source code这个程序来自于《Go语言程序设计》 7.2.2 并发的Grep, 程序如下。package mainimport ( "bufio" "bytes" "fmt" "io" ...
分类:
其他好文 时间:
2014-09-19 03:24:25
阅读次数:
304
//编码:byte[] bytes = Encoding.Default.GetBytes("要转换的字符");string str = Convert.ToBase64String(bytes);//解码:byte[] outputb = Convert.FromBase64String(str)...
分类:
其他好文 时间:
2014-09-18 23:37:34
阅读次数:
194
1 断开虚拟机添加一块硬盘
推荐scsi
2 查看新硬盘:
fdisk -l 包括u盘 软盘 硬盘
brave@ubuntu:~$ sudo fdisk -l
Disk /dev/sda: 42.9 GB, 42949672960 bytes
255 heads, 63 sectors/track, 5221 cylinders, total 838...
分类:
系统相关 时间:
2014-09-16 23:46:11
阅读次数:
435
北京网站建设-恒动时空一. 二进制转换成图片MemoryStream ms = new MemoryStream(bytes);ms.Position = 0;Image img = Image.FromStream(ms);ms.Close();this.pictureBox1.Image二. C...
分类:
其他好文 时间:
2014-09-16 23:40:11
阅读次数:
321