Centos 8.1 安装与网络配置 1、服务器启动,设置选择启动设备; 继续启动的过程; 2、选择挂载的ISO 设备进行启动,如图为CDROM0; 3、选择安装; 安装信息加载页面; 4、选择安装语言,默认选择即可; 5、选择软件安装,单击“Software Selection”; 根据需求进行选 ...
分类:
其他好文 时间:
2020-06-10 13:33:15
阅读次数:
488
使用git从远程仓clone项目,或者提交修改的时候提示失败: fatal: Authentication failed,就是凭证失败的意思; 目前来看出现这种问题基本分成两步: 1、修改全局配置用户名 和 邮箱; 这里主要预防新手后边再遇到此问题 // 配置user.name git config ...
分类:
其他好文 时间:
2020-06-10 11:07:22
阅读次数:
61
anythingtodate可以将作为字符串或长数字输入的日期变量转换为Stata可识别的日期型变量,也可将Stata格式中识别为数字的日期更改为日期格式。 基本语法: anythingtodate varlist [, keepvarlists format(string asis) refere ...
分类:
其他好文 时间:
2020-06-09 23:21:20
阅读次数:
91
String类的format()方法用于创建格式化的字符串以及连接多个字符串对象。熟悉C语言的同学应该记得C语言的sprintf()方法,两者有类似之处。format()方法有两种重载形式。 format(String format, Object... args) 新字符串使用本地语言环境,制定字 ...
分类:
编程语言 时间:
2020-06-09 14:32:10
阅读次数:
64
echo " building version "; $versionDate=Get-Date -Format 'yyyyMMddHHmmss'; echo "v$versionDate"; $appPublishPath="H:\devops\live4it"; echo " svn chang ...
分类:
移动开发 时间:
2020-06-09 12:52:04
阅读次数:
60
现象: Failed to compile. (2818,14): Duplicate identifier 'LibraryManagedAttributes'. Duplicate identifier问题的解决 修改方法: 1. 找到tsconfig.json文件 解决方案是在tsconfig ...
分类:
其他好文 时间:
2020-06-09 10:04:07
阅读次数:
272
一、mon.py: class Mon: def __init__(self): pass def action(self, content): print('周一要{}'.format(content)) 二、tue.py: class Tue: def __init__(self): pass ...
分类:
其他好文 时间:
2020-06-09 10:02:43
阅读次数:
67
Failed to execute goal org.xolstice.maven.plugins:protobuf-maven-plugin:0.5.0:compile (default) on project message: protoc did not exit cleanly.
[ERR... ...
分类:
其他好文 时间:
2020-06-08 20:44:31
阅读次数:
375
部署在kubernetes中,以NFS作为数据存储卷 环境介绍: 名称 版本 K8S v1.17.2 Docker 19.03.5 nacos 1.3.0 一、拉取代码 git clone https://github.com/nacos-group/nacos-k8s.git 二、安装NFS服务 ...
分类:
Web程序 时间:
2020-06-08 20:38:50
阅读次数:
199
运行bee run之后出现的错误以及解决方法 创建一个beego项目 bee new myapp 在该项目执行下面的代码 bee run 出现的问题 2020/04/22 21:12:07 INFO ? 0001 Using 'myapp' as 'appname' 2020/04/22 21:12 ...
分类:
移动开发 时间:
2020-06-08 15:03:59
阅读次数:
424