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!
| #!/usr/bin/env sh | |
| # @see http://stackoverflow.com/questions/30040708/how-to-mount-local-volumes-in-docker-machine | |
| # @see https://github.com/boot2docker/boot2docker/blob/master/doc/FAQ.md | |
| ################################################################################ | |
| # Dependency Section # | |
| # # | |
| ################################################################################ | |
| check_deps() { | |
| ## Make sure commands are available |
All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.
Generally, all APIs that synchronously provide layout metrics will trigger forced reflow / layout. Read on for additional cases and details.
elem.offsetLeft, elem.offsetTop, elem.offsetWidth, elem.offsetHeight, elem.offsetParent| #!/usr/bin/env bash | |
| #---------------------------------------------------------------------- | |
| # Functions | |
| #---------------------------------------------------------------------- | |
| # Exits the script with the given exit code after waiting | |
| # for a keypress. | |
| # | |
| # @param [Integer] $1 exit code. | |
| function key_exit() { |