VM中安装的linux 虚拟机出现的错误 ? 传输(vmdb)错误-32:pipe:read failed 解决方法 我的解决办法: ? ?去进程把 Vm...杀掉!重启开启就OK了
分类:
数据库 时间:
2014-10-29 00:33:43
阅读次数:
1588
有时候需要修改osx系统的一些默认设置,这时候会用到defaults命令,查看一下defaults的man文档,对defaults的解释如下:
defaults
— access the Mac OS X user defaults system
defaults可以对一些系统属性进行read,write和delete操作,用到比较多的是read何write操作,下面几个简单的例...
分类:
其他好文 时间:
2014-10-29 00:16:14
阅读次数:
466
问题描述:
The count-and-say sequence is the sequence of integers beginning as follows:
1, 11, 21, 1211, 111221, ...
1 is read off as "one 1" or
11.
11 is read off as "two 1s" or 21.
21 is read off...
分类:
其他好文 时间:
2014-10-28 21:49:42
阅读次数:
302
var tot,i,j,k,m,n:longint; prime:array[0..100000] of boolean; p:array[0..100000] of longint;begin read(n); fillchar(prime,sizeof(prime),true); p...
分类:
其他好文 时间:
2014-10-28 21:13:10
阅读次数:
174
今天在做测试的时候突然间很卡,用top观察了下php占用CPU达到了70%多,具体操作以下几步:1.strace -o output.txt -T -tt -e -c trace=all -p pid结果: 查了下。。一直在执行read,write操作sql语句2.ll /proc/25066/fd...
分类:
Web程序 时间:
2014-10-28 19:46:00
阅读次数:
293
#!/bin/basha=$1if [ $a ] #判断$1是否为空then #非空echo "the input is: $a"else #空echo "input a int:"read acase $a in "1") echo "your input ...
分类:
其他好文 时间:
2014-10-28 19:30:13
阅读次数:
168
协议类似于Java中的接口或者C++中的纯虚类,只有接口部分而没有实现部分只定义了方法的声明部分而没有实现部分。关键字为@protocol,协议可以继承别的协议,协议可以有多个用逗号分隔。协议中不能有成员变量。
@protocol MyProtocol
-(void) read;
-(void)write;
@end 定义一个MyProtocol协议继承自NSObject协议,...
分类:
其他好文 时间:
2014-10-28 17:55:16
阅读次数:
175
google的turnserver 下载方式:svn checkouthttp://rfc5766-turn-server.googlecode.com/svn/branches/v3.2/ rfc5766-turn-server-read-only关于webrtc的应用google给了一个实例:h...
分类:
Web程序 时间:
2014-10-28 17:44:26
阅读次数:
200
unsigned char dth_read(unsigned char array[])//默认16Mhz主频,获取成功返回1,失败返回0,/*array为5字节数组,带回数据格式为: 一字节湿度(整数),一字节湿度(小数,此芯片无效,但占据8位),一字节温度(整数),一字节温度(小数,无效,占位...
分类:
其他好文 时间:
2014-10-28 11:55:22
阅读次数:
152
什么是单块读?
顾名思义,就是单个块单个块得读,等待事件表现为db file sequential read;
单块读有哪些情况?
大部分索引扫描是单块读(除index fast full scan),rowid回表是单块读,undo里读数据是单块读,行迁移行链接是单块读,读取段头是单块读,读边界块是单块读。
现在就来探讨下undo里读数据是单块读的情况:
--session1:
SQL>...
分类:
其他好文 时间:
2014-10-28 09:25:56
阅读次数:
236