Assume the port is 11234 (above 1024 so no admin privileges required) and that the host has ip 10.10.10.240
netserver -p 11234
netperf -H 10.10.10.240 -p 11234 -l 100
import java.util.ArrayList | |
import hudson.model.*; | |
def ArrayList<String> getJobList(String pipelineName) { | |
def hi = hudson.model.Hudson.instance; | |
def item = hi.getItemByFullName(pipelineName); | |
def jobs = item.getAllJobs(); | |
def arr = new ArrayList<String>(); |
When you have merged a branch into another and deleted it on bitbucket, it may still exist on your PC. if you experience that there are too many of these, this command will remove them. Consider cleaning up your local branches first.
git remote update origin --prune
([a-z0-9_\*]*)\t([a-zA-Z\/°²\-\%]*)\t(.+)\t(.+)\t[X]{0,1}\t[X]{0,1}
If testing at https://regexr.com/ use /gm
/^([a-z0-9_\*]*)\t([a-zA-Z\/°²\-\%]*)\t(.+)\t(.+)\t[X]{0,1}\t[X]{0,1}$/gm
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure("2") do |config| | |
# Every Vagrant development environment requires a box. You can search for |