码迷,mamicode.com
首页 >  
搜索关键字:do    ( 12356个结果
UBIFS FAQ and HOWTO
ref : "How do I enable UBIFS?" How do I enable UBIFS? Since UBIFS works on top of UBI, you have to enable UBI first (see "here" ). Then in the Linux c ...
分类:其他好文   时间:2020-02-22 11:45:50    阅读次数:76
IOCTL命令字的解析
#define CMD_ERR_PRINT(devname, cmd, arg) do { \ char *p[4] = {"", "W", "R", "WR"}; \ if (0 == _IOC_DIR(cmd)) { \ printk(KERN_ERR "ERROR: /dev/%s not f ...
分类:其他好文   时间:2020-02-22 11:42:27    阅读次数:118
关于使用kms时遇到的there is nothing to do here
我讲一下我自己的解决方法 这个错误还是很明显的,没事干,如果不是kms的锅的话,那么就是字面上的问题了 为什么没事干?要不就是你已经激活了,激活了自然没事了。 要不就是你的电脑上的软件不在它的工作范围内,它没找到可以激活的东西,也没事干。 可能恰好您的版本和它工作范围内的版本不包括吧,可以试试重装另 ...
分类:其他好文   时间:2020-02-22 09:45:12    阅读次数:949
linux 进程调度3
schedule 函数的调用过程 asmlinkage __visible void __sched schedule(void) { struct task_struct *tsk = current; sched_submit_work(tsk); do { preempt_disable(); ...
分类:系统相关   时间:2020-02-21 20:44:09    阅读次数:88
use matplotlib to draw scatter plot
There are many pionts in this kind of table. How to do it? We can use scatter() to draw it. Code: import matplotlib.pyplot as plt plt.scatter(1,4) plt ...
分类:其他好文   时间:2020-02-21 20:30:28    阅读次数:50
[AST Babel] Add function name into the console log 'path.findParent(t.isFunctionDeclaration)'
Continue with the previous post: https://www.cnblogs.com/Answer1215/p/12337243.html What we want to do in this post, is adding parent function name in ...
分类:其他好文   时间:2020-02-21 20:14:50    阅读次数:74
Windows命令行读取写删下载文件命令
Windows命令行读取写删下载文件命令 读取文件 type qq.txt 下载远端文件 certutil -urlcache -split -f http://XXXXX/test.bat 查找文件 for /r D:\ %i in (*2020*) do @echo %i #在D盘查找命名中带有 ...
分类:Windows程序   时间:2020-02-20 23:58:18    阅读次数:129
Java 循环
程序的最大魅力可能就是循环,循环也是所有编程开发者使用最频繁的语句。如果想要同样的操作执行多次,,就需要使用循环结构。Java中有三种主要的循环结构:while循环do…while循环for循环while循环while(//如果条件成立){//执行循环}Java代码例子inti=0;while(i<10){System.out.println(i);i=i+1;}输出0123456789do
分类:编程语言   时间:2020-02-20 18:41:07    阅读次数:92
数据类型
5.数据类型 基本数据类型: 数值型 整数类型(byte,short,int,long) byte 1个字节--2^8--128 short--2个字节--2^16--约3万 int 4个字节--2^32--约21亿 long 8个字节--2^64-- BigInteger 浮点型(float,do ...
分类:其他好文   时间:2020-02-20 15:27:33    阅读次数:98
Java 循环
程序的最大魅力可能就是循环,循环也是所有编程开发者使用最频繁的语句。如果想要同样的操作执行多次,,就需要使用循环结构。 Java中有三种主要的循环结构: while 循环do…while 循环for 循环 1. while循环 while( //如果条件成立 ) { //执行循环 } Java 代码 ...
分类:编程语言   时间:2020-02-20 13:24:13    阅读次数:89
12356条   上一页 1 ... 66 67 68 69 70 ... 1236 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!