1、本质 硬链接:本质是同一个文件 软链接:本质还是同一个文件 [root@CentOS8 data]# ln a.txt test/b.txt [root@CentOS8 data]# ll -i a.txt test/b.txt 131 -rw-r--r--. 2 root root 0 Feb ...
分类:
其他好文 时间:
2021-02-26 12:56:00
阅读次数:
0
1.增加节点标签 备注 =:代表增加标签 kubectl label nodes node3 node-role.kubernetes.io/node3= 2.减少节点标签 备注 -:代表减少标签 kubectl label nodes node3 node-role.kubernetes.io/n ...
分类:
其他好文 时间:
2021-02-26 12:55:02
阅读次数:
0
const path = require('path'); module.exports = { // 基本路径 publicPath: process.env.NODE_ENV 'production' ? '' : '/', // 输出文件目录 outputDir: process.env.NO ...
分类:
Web程序 时间:
2021-02-25 12:07:38
阅读次数:
0
华为云 https://mirrors.huaweicloud.com/ 阿里云 https://developer.aliyun.com/mirror/ 腾讯云 https://mirrors.cloud.tencent.com/ 清华镜像 https://mirrors.tuna.tsinghu ...
分类:
其他好文 时间:
2021-02-25 12:04:27
阅读次数:
0
和js类似可以传递函数作为参数也可以用匿名函数 1.传递函数作为参数 2.匿名函数 ...
分类:
Web程序 时间:
2021-02-25 11:57:39
阅读次数:
0
框架注解 在写代码时,特别是SpringMVC框架下的代码,在dao层,service层,controller层,开始写代码时,一定要先在类上加@注解,切记不能再犯这个小错误. MyBatis与MySQL版本 在使用MyBatis框架连接数据库时,运行程序出现如下异常: java.sql.SQLEx ...
分类:
编程语言 时间:
2021-02-25 11:55:22
阅读次数:
0
DFT 第一章 1.1 物理缺陷 ![]( 1.2 stuck-at缺陷 1.3 组合逻辑SA检测 组合逻辑测试方法: 假设目标测试点出现某种缺陷 输入信号使得目标测试点值与假设值相反(activate the target fault by driving the node to the oppo ...
分类:
其他好文 时间:
2021-02-24 13:21:10
阅读次数:
0
这里一些环境安装例如node、watchman等不再复述。请移步我另外一篇关于RN-Android的文章,前几个步骤均有细讲: 地址:https://www.cnblogs.com/xiaozhu007/p/14419763.html 同样附带官方中文文档关于IOS的环境安装运行地址:https:/ ...
分类:
移动开发 时间:
2021-02-23 14:27:32
阅读次数:
0
常用的命令: npm config set prefix "node-global路径" npm config set cache "node-cache路径" npm config set registry http://registry.npm.taobao.org/ npm config ls ...
分类:
Web程序 时间:
2021-02-23 14:25:07
阅读次数:
0
我们一般会在项目根目录加上.gitignore文件,但是有些初始的项目并没有这个文件,于是需要我们主动增加这个文件。 文件的参考内容如下: .DS_Store node_modules/ /dist/ npm-debug.log* yarn-debug.log* yarn-error.log* /t ...
分类:
其他好文 时间:
2021-02-23 14:18:35
阅读次数:
0