Jenkins 部署项目出现 Failed to connect to repository : Command "git ls-remote XXX 表示为,Jerkins无法连接到你输入的Repository URL的 Git仓库…… 怎么办呢? 试了很多方法: 1、在git仓库里面配置公钥、在 ...
分类:
其他好文 时间:
2021-02-08 12:50:48
阅读次数:
0
默认centos, unbtan都已经安装了python3版本,可以通过 whereis python来检查已经安装的版本。 root@hecs-x-medium-2-linux-20200619090653:/usr/bin# whereis pythonpython: /usr/bin/pyth ...
分类:
编程语言 时间:
2021-02-08 12:04:26
阅读次数:
0
各种feature的实现 执行shell 处理时间 处理参数 处理文件 logging test 多线程、进程,并发 语言 python groovy scala java C++ C shell go 执行shell, check output groovy a= "ls".execute(); ...
分类:
编程语言 时间:
2021-02-03 10:42:48
阅读次数:
0
路径中“./、../、@”的区别? ./ 相对路径,指当前目录 ../ 相对路径,指当前目录的上一层目录 @ 相对路径,以根目录的方式定义相对路径。vue在webpack.base.conf.js文件中配置根目录: // 连接路径并返回 function resolve(dir) { return ...
分类:
其他好文 时间:
2021-02-01 12:58:10
阅读次数:
0
The computer company you work for is introducing a brand new computer line and is developing a new Unix-like operating system to be introduced along w ...
分类:
其他好文 时间:
2021-02-01 12:53:22
阅读次数:
0
code macname@MacdeMacBook-Pro zipfiles % cat test.sh #!/bin/bash ZIP_FILES=$(ls *.zip) for zip_file in $ZIP_FILES; do unzip $zip_file done macname@Mac ...
分类:
系统相关 时间:
2021-02-01 11:49:14
阅读次数:
0
linus进入root权限,输入sudo su 一、linux开关机操作与目录的认识使用 关机操作 : 根目录的认识和使用: 二、常用命令 绝对路径和相对路径 cd :切换目录命令 ./:当前目录(也可以cd后直接加名字) cd .. :返回上一级目录 cd ~:直接回到loliconsk目录 ls ...
分类:
系统相关 时间:
2021-02-01 11:41:20
阅读次数:
0
开发过程中为了方便发布多个服务器,所以在发布的服务器上将yml文件放在外面,这样就不用每次发布不同的服务器导致需要修改项目中的yml文件。 项目文件结构 start-ts.bat文件内容 @echo off title show-ts java -jar -Xms500m -Xmx500m ts.j ...
分类:
编程语言 时间:
2021-01-29 12:20:35
阅读次数:
0
1 package LS_14; 2 3 import java.util.Collection; 4 import java.util.HashMap; 5 import java.util.Map; 6 import java.util.Set; 7 8 public class TestMap ...
分类:
编程语言 时间:
2021-01-27 12:50:30
阅读次数:
0
主要是介绍Set(集合) 1 package LS_13; 2 3 import java.util.HashSet; 4 import java.util.Set; 5 6 public class TestSet01 { 7 //set接口的特点 8 //扩展Collection接口 9 //不 ...
分类:
编程语言 时间:
2021-01-26 12:37:30
阅读次数:
0