The simple answer to that is, "Kernel Developers do not put blind faith in anything". When any data is passed to the kernel space from userspace, it i ...
分类:
其他好文 时间:
2020-02-28 18:52:41
阅读次数:
85
# # COMMON SPRING BOOT PROPERTIES## This sample file is provided as a guideline. Do NOT copy it in its# entirety to your own application. ^^^# # # COR ...
分类:
编程语言 时间:
2020-02-28 17:11:13
阅读次数:
63
首先,我们在桌面上先创建一个“.bat”格式的文件,文件名为“数字雨.bat”,创建好了之后右键点击编辑。 在其中输入: @echo off title 数字雨 color 0a setlocal ENABLEDELAYEDEXPANSION for /l %%i in (0) do ( set " ...
分类:
其他好文 时间:
2020-02-28 14:09:48
阅读次数:
209
##move## for((i=1;i<=22;i++));do cp combine_all.split_$i split_$i;done ##gzip## mkdir gzip/workshell for((i=1;i<=22;i++));do echo "gzip split_$i"> spl ...
分类:
其他好文 时间:
2020-02-27 13:12:40
阅读次数:
60
演示案例: 1.没有添加循环控制语句案例:批量插入,根据次数,插入到admin表中多条记录 create PROCEDURE pro_while1(in insertCount int) begin DECLARE i int DEFAULT 1; while i<insertCount DO in ...
分类:
数据库 时间:
2020-02-27 10:30:51
阅读次数:
89
Docker 概述: 在前面的例子中,我们从下载镜像,启动容器,在容器中输入命令来运行程序,这些命令都是手工一条条往里输入的,无法重复利用,而且效率很低。所以就需要一种文件或脚本,我们把想执行的操作以命令的方式写入其中,然后让 docker 读取并分析、执行,那么重复构建、更新将变得很方便,所以Do... ...
分类:
其他好文 时间:
2020-02-26 12:47:15
阅读次数:
74
这份文档来自国外,粗略看了一下,很有用,推荐给大家学习使用。【Question】: How to do multi-selecting records in TDBGrid? When you add [dgMultiSelect] to the Options property of a DBGr ...
分类:
数据库 时间:
2020-02-26 01:32:59
阅读次数:
81
介绍 jQuery是一个javascript库,核心理念是write less,do more(写得更少,做得更多),他内部帮我们把几乎所有功能都做了封装,相比上一节基于DOM、BOM操作会更加简单。 例如:根据ID选择标签 // DOM 选择 document.getElementById('it ...
分类:
Web程序 时间:
2020-02-25 14:40:29
阅读次数:
79
本文基于linux版本:4.14.111 简单的总结下 softirq、work_queue、tasklet 三种中断下半部的工作原理及区别,并附上三种形式的简单实例。 一、运行原理① softirq: void __do_softirq(void) { int max_restart = MAX_ ...
分类:
其他好文 时间:
2020-02-24 22:26:48
阅读次数:
104
#!/bin/bash n=0 max=11 while(($n<max)) do curl -sS --connect-timeout 1000 -m 60000 'http://wx.com/inex' //访问url n=($n+1) sleep 5 done 脚本写好后将添加到linux服务 ...
分类:
Web程序 时间:
2020-02-24 16:53:11
阅读次数:
177