查询可更换内核的序号 gedit /boot/grub/grub.cfg查询已安装的内核和内核的序号。找到文件中的menuentry (图中在一大堆fi-else底下)menuentry底下还有submenu,submenu底下就包含了 带有缩进的 menuentry。以下是计数规则: 第一个men ...
分类:
系统相关 时间:
2019-08-08 18:46:45
阅读次数:
127
一、云计算 云计算发展历程 在学习k8s的过程中接触到了Serverless的概念,这里先对云计算的发展历程做一个简单的总结,以便引入Serverless。2006年,Google董事长 Eric Schmidt 在搜索引擎大会首次提出云计算(Clo ...
分类:
Web程序 时间:
2019-08-08 13:42:08
阅读次数:
556
考点:名称的数 △△△ (一)、可数名词的数: 1.可数名词的规则变化 1).一般直接在名词后 + s tree – trees girl – girls 2).特殊结尾的单词,以s, sh, ch, x 结尾 + es inch – inches dish – dishes box – boxes ...
分类:
其他好文 时间:
2019-08-06 01:13:41
阅读次数:
173
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1074 分析:状压dp;看的dalao的题解。。。 用二进制表示,最大1<<n,对于他的二进制每一位分别表示第几个科目是否做了 ...
分类:
其他好文 时间:
2019-08-04 16:53:42
阅读次数:
87
CAP理论 2000年7月,Eric Brewer教授提出CAP猜想;2年后,Seth Gilbert和Nancy Lynch从理论上证明了CAP;之后,CAP理论正式成为分布式计算领域的公认定理。 CAP定律说的是在一个分布式计算机系统中,一致性,可用性和分区容错性这三种保证无法同时得到满足,最多 ...
分类:
其他好文 时间:
2019-07-31 22:07:13
阅读次数:
129
代码演示: using System.Collections;using System.Collections.Generic;using UnityEngine; public class FindObjectOfType : MonoBehaviour { private GameObject[ ...
分类:
其他好文 时间:
2019-07-31 19:04:17
阅读次数:
84
代码演示: using System.Collections;using System.Collections.Generic;using UnityEngine; public class TransformFind : MonoBehaviour { private Transform m_Tr ...
分类:
其他好文 时间:
2019-07-31 18:41:10
阅读次数:
217
HttpLitener处理http请求和Websocket请求的案例具体步骤如下 1、新建控制台项目TestClientWebsocket 2、选择项目右键添加类HttpAndWebsocket,代码如下 using System;using System.Collections.Generic;u ...
分类:
Web程序 时间:
2019-07-31 16:47:22
阅读次数:
130
# 字典的创建# dict1 = {}# print(type(dict1))## dict2 = {# 'name':'汪峰',# 'sex':'男',# 'hiredate':'1997-10-20'# }# print(dict2)## dict3 = dict(name = 'eric',a ...
分类:
编程语言 时间:
2019-07-30 18:56:07
阅读次数:
98