对于 ftrace 的function tracer/function graph tracer 用的比较多,本文介绍 wakeup tracer/wakeup_rt tracer。 开始介绍之前,先扯两句别的,在一开始想了解wakeup/wakeup_rt tracer 的时候,因为内核Docum ...
分类:
系统相关 时间:
2020-09-17 21:24:05
阅读次数:
34
前言 记录一些常用的命令行操作 命令 查询机器的电源状态 ipmitool -I lanplus -U admin -P admin -H 172.16.21.215 power status 硬重启机器 ipmitool -I lanplus -U admin -P admin -H 172.16 ...
分类:
其他好文 时间:
2020-09-17 17:06:23
阅读次数:
41
鼠标双击要备注或设置默认值的一列,会弹出一个设置对话框如下:
分类:
其他好文 时间:
2020-09-17 12:11:02
阅读次数:
34
这些年来,无代码、零代码开发的趋势势不可挡,国际巨头微软Power Platform与国内金蝶公司的入局就说明了这一点。
分类:
其他好文 时间:
2020-08-20 19:21:12
阅读次数:
79
Max Adler (a wealthy benefactor) introduced me to Isaac in 1946 in his Chicago home and played a recorded live performance of Tchaikovsky concerto tha ...
分类:
其他好文 时间:
2020-08-12 16:00:34
阅读次数:
61
he power of a signal is the sum of the absolute squares of its time-domain samples divided by the signal length, or, equivalently, the square of its R ...
分类:
其他好文 时间:
2020-08-09 19:09:41
阅读次数:
87
前段时间做了一些powerbi的开发工作,整理一下开发的大致步骤: 1.明确主题 2.设计数据模型:星型模型下设计事实表,维度表,数据粒度 3.整理源数据,获取源数据:文本文件,EXCEL,CSV,DB 4.在查询编辑器清洗数据,加工数据,聚合数据,简单的操作可以使用自带的图形化功能,复杂的操作(比 ...
分类:
其他好文 时间:
2020-08-08 00:32:41
阅读次数:
66
Python很适合初学者自学的编程语言,试着从“HelloWorld”开始,你会发现Python适合自学成才。作者:SOWORD科技言来源:今日头条|2020-08-0408:42收藏分享Python很适合初学者自学的编程语言,试着从“HelloWorld”开始,你会发现Python适合自学成才。在你慢慢熟悉Python那一刻,你很快被它通过各种方法来实现类似用途的适应性所着迷。Python可以编
分类:
编程语言 时间:
2020-08-05 10:36:29
阅读次数:
79
1 无序列表 2 <ul type="xxx"> 3 <li>Coffee</li> 4 <li>Milk</li> 5 </ul> 6 7 有序列表 8 <ol start="50"> 9 <li>咖啡</li> 10 <li>牛奶</li> 11 <li>茶</li> 12 </ol> 13 1 ...
分类:
Web程序 时间:
2020-07-31 14:07:53
阅读次数:
111
power_two.cpp内容如下: #include <iostream> using namespace std; bool is_power_of_two(unsigned int n) { return (n && !(n & (n-1))); } int main(int argc, ch ...
分类:
其他好文 时间:
2020-07-29 15:07:26
阅读次数:
62