WM_NULL = 0x0000;WM_CREATE =
0x0001;应用程序创建一个窗口WM_DESTROY = 0x0002;一个窗口被销毁WM_MOVE = 0x0003;移动一个窗口WM_SIZE =
0x0005;改变一个窗口的大小WM_ACTIVATE = 0x0006;一个窗口被激活...
分类:
其他好文 时间:
2014-06-16 06:38:03
阅读次数:
243
Linux内核版本:2.6.20include/asm-generic/errno-base.h 1 #define EPERM 1 /* Operation
not permitted */ 2 #define ENOENT 2 /* No ...
分类:
其他好文 时间:
2014-06-12 21:57:57
阅读次数:
409
题目
A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).
The robot can only move either down or right at any point in time. The robot is trying t...
分类:
其他好文 时间:
2014-06-10 18:43:37
阅读次数:
254
在android中,事件主要包括点击、长按、拖曳、滑动等操作,这些构成了Android的事件响应,总体来说,所有的事件都由如下三个部分作为基础构成:
按下(action_down),移动(action_move),抬起(action_up)。各种响应归根结底都是基于View以及ViewGroup的,这两者中响应的方法分别有:
View.java中:
publi boolean dispa...
分类:
移动开发 时间:
2014-06-10 17:43:05
阅读次数:
338
数据库rac启动时报错,日志如下,后来使用
Sat Jun 7 06:02:11 2014
GATHER_STATS_JOB encountered errors. Check the trace file.
Sat Jun 7 06:02:11 2014
Errors in file /oracle/product/admin/dqb/bdump/dqb2_j001_1...
分类:
数据库 时间:
2014-06-10 14:36:54
阅读次数:
248
结论:RAC存在故障,当前RAC运行为RAC1节点上,负载均衡没有起到作用。集成商提供的ASM的帐号密码不正确,RAC运行存在大量SGA/PGA的死锁,而且session存在严重等待。部分SQL语句需要进行优化。 配置问题1、 RAC 的ASM权限不足2、 RAC1支撑运行,RAC2状态正常,但RAC2无法进行负载。3、 死锁严重,这是造成性能慢低下的表现原因。4、 操作系统的IO和内存利...
分类:
其他好文 时间:
2014-06-10 07:16:52
阅读次数:
282
Two players, S and T, are playing a game where they make alternate moves. S plays
first.
In this game, they start with an integer N. In each move, a player removes one digit from the integer and p...
分类:
其他好文 时间:
2014-06-10 06:31:29
阅读次数:
302
? 描述使用ASM 的好处? 管理ASM 实例? 创建和删除ASM 磁盘组? 扩展ASM 磁盘组?
通过使用各种实用程序检索ASM 元数据Automatic Storage ManagementAutomatic Storage Management
(ASM) 将文件系统与卷管理器纵向集成在一起,...
分类:
数据库 时间:
2014-06-09 17:24:13
阅读次数:
330
【题目】
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.
For example, given the following triangle
[
[2],
[3,4],
[6,5,7],
[4,1,8,3]
]
The minimum path sum from top to...
分类:
其他好文 时间:
2014-06-08 17:52:45
阅读次数:
235
Description
A robot has been programmed to follow the instructions in its path. Instructions for the next direction the robot is to move are laid down in a grid. The possible instructions are
...
分类:
其他好文 时间:
2014-06-08 04:38:32
阅读次数:
386