UIO(Userspace I/O)是运行在用户空间的I/O技术。在Linux系统中,一般的设备驱动都是运行在内核空间,而在用户空间使用应用程序调用即可。而UIO则是将设备驱动的很少一部分运行在内核空间,而在用户空间实现驱动的绝大多数功能。那么,在内核空间UIO要做的事情就变得很简单,分为两种: 为 ...
分类:
其他好文 时间:
2017-11-01 20:27:53
阅读次数:
1671
定义: DataFrame是二维的、大小可变的、成分混合的、具有标签化坐标轴(行和列)的表数据结构。基于行和列标签进行计算。可以被看作是为序列对象(Series)提供的类似字典的一个容器,是pandas中主要的数据结构。 形式: 参数含义: 其他构建DataFrame类型的方法: 举例: 属性: 获 ...
分类:
其他好文 时间:
2017-11-01 14:58:31
阅读次数:
548
SQL DELETE Statement The SQL DELETE Statement The DELETE statement is used to delete existing records in a table. DELETE Syntax DELETE FROM table_name ...
分类:
数据库 时间:
2017-11-01 01:07:28
阅读次数:
174
MySQL中数据的高级操作 (五子句) 数据操作:增删改查 新增数据 语法: insert into 表名 [(字段列表)] values (值列表); 主键冲突 当主键存在冲突(Duplicate key)的时候,可以进行选择性处理:更新和替换。 更新操作 insert into 表名 [(字段列 ...
分类:
数据库 时间:
2017-10-30 14:24:53
阅读次数:
319
Find the Duplicate Number Given an array nums containing n + 1 integers where each integer is between 1 and n (inclusive), prove that at least one dup ...
分类:
编程语言 时间:
2017-10-28 18:56:35
阅读次数:
228
一.语法explain < table_name >例如: explain select * from t3 where id=3952602;二.explain输出解释+ + + + + + + + + + +| id | select_type | table | type | possible ...
分类:
数据库 时间:
2017-10-26 10:20:22
阅读次数:
195
In my previously article "EnCase missed some USB activities in the evidence files", I mentioned about that EnCase could only "see" few USB records. Ac ...
分类:
其他好文 时间:
2017-10-25 16:40:05
阅读次数:
154
表结构 访问记录表(vs_records) id time 0001 2005-12-1 14:12:16 0002 2005-12-1 14:22:16 0003 2005-12-1 14:47:16 0011 2005-12-1 14:36:16 0012 2005-12-2 10:22:16 ...
分类:
数据库 时间:
2017-10-25 11:31:42
阅读次数:
196
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. For example,Given 1->2 ...
分类:
其他好文 时间:
2017-10-25 11:20:57
阅读次数:
158
83. Remove Duplicates from Sorted List Given a sorted linked list, delete all duplicates such that each element appear only once. For example,Given 1- ...
分类:
其他好文 时间:
2017-10-24 19:38:20
阅读次数:
195