背景 在分析Linux内核驱动的时候,有时候会看到一些acpi字样的接口。 之前一直没搞明白ACPI是什么,现在知道了。 ACPI Advanced Configuration and Power Management Interface : 用于配置与电源管理的接口,是让OS使用的。用在x86架构 ...
分类:
其他好文 时间:
2020-11-25 12:39:07
阅读次数:
6
呼,熬过一场考试,补下题吧 A. Robot Program 在一个二维无限方格中,初始时你在格子里,每秒你有5种决策:选择移动到上下左右四个格子中的一个或者停留在原地。你不能连续两秒做相同的决策,问最短时间走到格子 \((x,y)\)。 \[ 1 <= t <= 100,0<=x,y<=10^4 ...
分类:
其他好文 时间:
2020-11-25 12:26:46
阅读次数:
5
using NLog; using System; using System.IO.Ports; using System.Text; using System.Threading; namespace TestCom485 { class Program { static void Main(st ...
分类:
其他好文 时间:
2020-11-24 12:42:10
阅读次数:
9
1. 执行docker search rabbitMq搜索镜像 2. 执行docker pull rabbitMq:3.8.3-management 拉取3.8.3-management版本(带有web页面的)的rabbitMq镜像 3. 执行docker images查看所有镜像 4. 执行doc ...
分类:
Web程序 时间:
2020-11-23 12:20:44
阅读次数:
13
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace odds { class Program { s ...
分类:
编程语言 时间:
2020-11-23 12:16:41
阅读次数:
8
#DB:数据库 保存一组有组织的数据的容器 #DBMS 数据管理系统又称数据库管理软件 #SQL :结构化查询语音 安装目录下 C:\Program Files\MySQL\MySQL Server 5.5\bin\MySQLInstanceConfig.exe可以配置 数据存放目录 C:\Prog ...
分类:
数据库 时间:
2020-11-23 12:11:23
阅读次数:
14
1.目标框架设置为.net core3.1/.net5 2.将所有的nuget包升级为最新版本 3.需要改动的一些地方 Program.cs public class Program { public static void Main(string[] args) { CreateWebHostBu ...
分类:
Web程序 时间:
2020-11-20 12:23:49
阅读次数:
49
Organization Chart Business Process Diagram with Lanes Management Enterprise Architecture Basic Business Process Domain Model ...
分类:
其他好文 时间:
2020-11-20 11:52:35
阅读次数:
4
class Program { static void Main(string[] args) { List<People> peoples = new List<People> { new People{ ID=1,Name="xxx" }, //new People{ ID=1,Name="xx ...
分类:
其他好文 时间:
2020-11-19 12:29:36
阅读次数:
5
故障描述: 安装Office 2016后,双击EXCEL文件打开后显示为空白。 解决办法: 开始——运行——regedit 修改HKEY_CLASSES_ROOT\Excel.Sheet.12\shell\Open\command项默认值。 原值: "C:\Program Files\Microso ...
分类:
其他好文 时间:
2020-11-17 12:47:02
阅读次数:
11