摘要: String workspace = "/opt/jenkins/workspace/${JOB_NAME}" def v = 'v' env.e1 = 'v1' pipeline { agent { node { label 'master' customWorkspace "${workspac 阅读全文
posted @ 2023-04-24 19:53 ascertain 阅读(61) 评论(0) 推荐(0)
摘要: 1. push.default https://www.fleekitsolutions.com/difference-between-push-default-matching-simple/ Set your push.default to upstream to push branches t 阅读全文
posted @ 2023-04-24 19:53 ascertain 阅读(21) 评论(0) 推荐(0)
摘要: Snippet Generator => steps (place into the steps) 只有脚本script{}可声明变量,String,def声明的变量只有script{}可用 # # Plugins # # Organization and Administration Config 阅读全文
posted @ 2023-04-24 19:52 ascertain 阅读(62) 评论(0) 推荐(0)
摘要: package main import ( "fmt" "math" "runtime" "strconv" "strings" "time" ) func producer(intChan chan int) { for b := 1000; b <= 1099; b++ { intChan <- 阅读全文
posted @ 2023-04-24 19:24 ascertain 阅读(18) 评论(0) 推荐(0)
摘要: contra-variance from typing import Callable class Food: ... class Meat(Food): ... class Animal: def eat(self, food: Food): ... class Dog(Animal): def 阅读全文
posted @ 2023-04-24 16:34 ascertain 阅读(56) 评论(0) 推荐(0)