Y7000 window+Ubuntu环境配置总结 双系统装机与环境初始化配置 装机 WiFi+显卡+时间 Nvidia显卡问题 Google浏览器快捷键 搜狗输入法+报错+LOG OUT ...
分类:
系统相关 时间:
2021-05-24 00:14:25
阅读次数:
0
Vue.js 技术揭秘 https://ustbhuangyi.github.io/vue-analysis/v2/prepare/ Vue源码阅读 - 文件结构与运行机制 https://segmentfault.com/a/1190000015440980 ...
分类:
其他好文 时间:
2021-05-23 23:34:12
阅读次数:
0
1 import urllib.request 2 #获取一个get请求 3 response = urllib.request.urlopen("http://www.baidu.com") 打开网页并返回网页内容给response print(response.read().decode('ut ...
分类:
编程语言 时间:
2021-05-23 23:31:18
阅读次数:
0
public class Test { public static void main(String[] args) { // \u000A String s = "Hello World"; String s = "1212"; System.out.println(s); } } 错误:java ...
分类:
编程语言 时间:
2021-05-23 23:09:26
阅读次数:
0
二叉搜索树 二叉搜索树满足这样的性质: 每个节点 x 有一个键值。 节点 x 的键值大于等于左子树的任意节点 y 的键值. 节点 x 的键值小于等于右子树的任意节点 z 的键值. 二叉搜索树的表达 struct Node{ int key; Node*parent ; Node*left; Node ...
分类:
其他好文 时间:
2021-05-23 23:08:30
阅读次数:
0
前言 go的测试用例一般分两种 单元测试:主要测试代码可运行正确行,相当于运行一遍编写代码 基准测试:主要是对性能的测试 gotest 的变量 test.short : 一个快速测试的标记,在测试用例中可以使用 testing.Short() 来绕开一些测试 test.outputdir : 输出目 ...
分类:
其他好文 时间:
2021-05-04 16:32:30
阅读次数:
0
HelloWorld 随便新建一个文件夹,用来存放代码 新建一个Java文件 文件后缀为.java Hello.java 编写代码 public class Hello{ public static void main(String[] args){ System.out.print("Hello, ...
分类:
编程语言 时间:
2021-05-04 16:25:13
阅读次数:
0
实现进程的两种方式 继承Thread类 实现Runable接口 设置获取线程名 getName() setName() 设置获取线程优先级 setPriority(优先级大小) getPriority() 线程控制 sleep() 休眠 setDaemon() 设置守护线程 join() 等待线程 ...
分类:
编程语言 时间:
2021-05-04 16:12:02
阅读次数:
0
If you are new to YAML, here is a useful link to a blog on YAML. YAML tutorial Here is a free tool that was mentioned in the video that can convert YA ...
分类:
其他好文 时间:
2021-05-04 16:11:49
阅读次数:
0
什么是Helm 简单来说就是Kubernetes的包管理工具,类似于Centos的yum或Ubuntu的apt。不过他管理的是Kubernetes的yaml文件 组件(2.0与3.0) 在2.0的时候区分为客户端与服务端 客户端: 本地chart的编写 仓库的管理 与服务端Tiller交互 发送ch ...
分类:
其他好文 时间:
2021-05-04 16:04:31
阅读次数:
0