一、实验目的 1.找一个系统调用,系统调用号为学号最后2位相同的系统调用,本人学号最后两位为80,即要测试的系统调用号为80 2.通过汇编指令触发该系统调用 3.通过gdb跟踪该系统调用的内核处理过程 4.重点阅读分析系统调用入口的保存现场、恢复现场和系统调用返回,以及重点关注系统调用过程中内核堆栈 ...
分类:
其他好文 时间:
2020-05-26 22:08:06
阅读次数:
80
函数式编程中如何处理副作用? 阅读(2,381) 评论(0) Functional_Programming2018-10-28 一.纯函数 纯函数是说没有副作用的函数(a function that has no side effects),有几个好处: 引用透明(referential trans ...
分类:
其他好文 时间:
2020-05-26 20:33:24
阅读次数:
80
import pandas as pd import warnings warnings.filterwarnings("ignore") import time from multiprocessing import Process def node(): #获取节点数据 global_id=[] ...
分类:
系统相关 时间:
2020-05-26 18:12:38
阅读次数:
86
#TCP文件上传下载 ##客户端 创建socket连接 创建输出流 读取文件 写出文件 关闭资源 import java.io.File; import java.io.FileInputStream; import java.io.OutputStream; import java.net.Ine ...
分类:
Web程序 时间:
2020-05-26 12:36:55
阅读次数:
86
在安装 Moodle 的时候提示下面的错误,导致安装不能进行。 Installation must be finished from the original IP address, sorry 这是因为第一次安装的时候访问的 IP 地址与系统中记录的不一致。 你可以登录使用的数据库后运行下面的 S ...
分类:
其他好文 时间:
2020-05-26 12:26:50
阅读次数:
76
http://restapi.amap.com/v3/geocode/geo?key=xxxxxxxxxxxxxxxx&s=rsv3&city=35&address=福建省霞浦县水门畲族乡 可用key=389880a06e3f893ea46036f030c94700测试 高德 申请key https ...
1.AttributeError: module 'urllib.response' has no attribute 'read' 代码: res=urllib.response.read().decode('UTF-8')#读取网页内容,用utf-8解码成字节 1) python3中应该 imp ...
分类:
其他好文 时间:
2020-05-25 19:32:09
阅读次数:
61
1.插入数据行语法: insert into 类名(列名) values(值列表) Eg:insert into Students(name, address,grade,email,sex) Values(‘张晴’,’上海松江’,6,’ZQC@Sohu.com’,0) 注意:1.每次插入一行数据, ...
分类:
数据库 时间:
2020-05-25 12:10:29
阅读次数:
68
1039 Course List for Student (25分) Zhejiang University has 40000 students and provides 2500 courses. Now given the student name lists of all the cours ...
分类:
其他好文 时间:
2020-05-25 00:25:57
阅读次数:
66
一、访问控制介绍 生产环境中,我们的网站分为公站和私站,公站我们巴不得所有人都能来访问,所以不会做任何访问限制。但是私站只是内部人访问,越安全越好,比如网站后台、比如公司数据站等等。所以我们需要通过设置访问控制来允许自己公司电脑或者IP登陆访问,其他人不能访问。 其实这个功能类似于防火墙,可以但是使 ...
分类:
Web程序 时间:
2020-05-24 23:56:08
阅读次数:
123