按照以下思路大概总结下对linux内核4.14.2总体框架的认识 1、内核是由哪些文件组成的 2、内核的编译体系是怎么样的,是怎么编译链接起来的 3、内核的启动流程,在启动过程中大致做了哪些工作 4、通过对exynos4412开发板上移植linux内核4.14.2验证上述分析 5、编译出uImage ...
分类:
系统相关 时间:
2020-07-18 15:38:02
阅读次数:
94
自定义注解动态拼接查询条件 QueryWapper自定义注解 import com.supconit.its.generator.enums.QueryWapperEnum; import org.springframework.stereotype.Indexed; import java.lan ...
分类:
其他好文 时间:
2020-07-18 11:18:43
阅读次数:
105
1.页面写法 $("#zdytp").attr("src",ApiUrl+"/abc/getpic?orgid=8020");2.后台写法(引入提示jar包即可) IOUtils 引入依赖 <dependency> <groupId>commons-io</groupId> <artifactId> ...
分类:
数据库 时间:
2020-07-17 11:29:01
阅读次数:
128
个人感觉默认Git Bash 简直没脸看(乌漆嘛黑),Google了下如何修改Git Bush 1.修改.minttyrc文件 FontHeight=16 Font=Consolas Transparency=low FontSmoothing=full Locale=zh_CN Charset=G ...
问题:The value of the 'Access-Control-Allow-Origin' header in the response must not be the wildcard '*' when the request's credentials mode is 'include' ...
分类:
其他好文 时间:
2020-07-16 21:35:07
阅读次数:
85
批量插入数据两种方式 1. 查询后插入 <insert id="saveInfo" parameterType="java.util.List" useGeneratedKeys="true" keyProperty="id"> insert into v_product_info ( `deman ...
分类:
其他好文 时间:
2020-07-15 22:48:06
阅读次数:
75
sysbench介绍 SysBench是一个模块化的、跨平台、多线程基准测试工具,主要用于评估测试各种不同系统参数下的数据库负载情况。它主要包括以下几种方式的测试:1. cpu性能2. 磁盘io性能3. 线程调度性能4. 互斥锁性能5. 数据库性能(OLTP基准测试)6. 内存性能 目前sysben ...
分类:
其他好文 时间:
2020-07-15 15:21:10
阅读次数:
77
lua的下标默认从1开始,也可以指定数组索引值。 array = {}for i= -2, 2 do array[i] = i *2endfor i = -2,2 do print(array[i])end -4 -2 0 2 4多维数组以下是一个三行三列的阵列多维数组:-- 初始化数组array ...
分类:
编程语言 时间:
2020-07-14 16:16:46
阅读次数:
85
Shell编程-1 what>why>how学习方向 shell bash bash 解释器,启动器 用户的交互输入 文本文件输入 [root@MDNode01 shell]# ps -fe UID PID PPID C STIME TTY TIME CMD root 1 0 0 03:27 ? 0 ...
分类:
系统相关 时间:
2020-07-12 22:27:51
阅读次数:
109
Algorithm: 225: Implement Stack using Queues (Easy) 232: Implement Queue using Stacks (Easy) 栈和队列互相表达虽然很简单,但是有多种办法,比如使用队列时的双队列、单队列、操作头部、操作尾部、peek优化等,最 ...
分类:
其他好文 时间:
2020-07-12 18:33:10
阅读次数:
50