Minikube requires that VT-x/AMD-v virtualization is enabled in BIOS. To check that this is enabled on OSX / macOS run:
sysctl -a | grep machdep.cpu.features | grep VMX
If there's output, you're good!
public AbstractStringBuilder append(String str) { | |
if (str == null) | |
return appendNull(); | |
int len = str.length(); | |
ensureCapacityInternal(count + len); | |
str.getChars(0, len, value, count); | |
count += len; | |
return this; | |
} |
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); // 선언 | |
String s = bf.readLine(); // String | |
int i = Integer.parseInt(bf.readLine()); // int |
node { | |
echo 'Results included as an inline comment exactly how they are returned as of Jenkins 2.121, with $BUILD_NUMBER = 1' | |
echo 'No quotes, pipeline command in single quotes' | |
sh 'echo $BUILD_NUMBER' // 1 | |
echo 'Double quotes are silently dropped' | |
sh 'echo "$BUILD_NUMBER"' // 1 | |
echo 'Even escaped with a single backslash they are dropped' | |
sh 'echo \"$BUILD_NUMBER\"' // 1 | |
echo 'Using two backslashes, the quotes are preserved' | |
sh 'echo \\"$BUILD_NUMBER\\"' // "1" |
Look at LSB init scripts for more information.
Copy to /etc/init.d
:
# replace "$YOUR_SERVICE_NAME" with your service's name (whenever it's not enough obvious)
#!/bin/bash | |
# | |
# tomcat This shell script takes care of starting and stopping Tomcat | |
# | |
# chkconfig: - 80 20 | |
# | |
### BEGIN INIT INFO | |
# Provides: tomcat | |
# Required-Start: $network $syslog | |
# Required-Stop: $network $syslog |
{ | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.editor.enablePreview": false, | |
"workbench.colorCustomizations":{ | |
"minimap.background": "#00000035", | |
}, | |
"workbench.tree.indent": 2, | |
"workbench.editor.showTabs": true, | |
"window.zoomLevel": 0, |
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
// https://www.digitalocean.com/community/tutorials/debugging-go-code-with-visual-studio-code | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Launch", | |
"type": "go", |
// spring-boot dashboard (microsoft) extenstion | |
{ | |
"configurations": [ | |
{ | |
"type": "java", | |
"name": "PetClinicApplication<spring-petclinic>-Spring Boot Dashboard Ext", | |
"request": "launch", | |
"cwd": "${workspaceFolder}", | |
"console": "internalConsole", | |
"stopOnEntry": false, |