We're looking at CPU bandwidth control via CFS:
Program does number of iterations, in each iteration we burn CPU in small chunks until we get 5ms of real time spent. On each iteration we also print how much
| # Increase speed of the animation | |
| defaults write com.apple.dock autohide-time-modifier -float 0.35;killall Dock | |
| # remove the delay | |
| defaults write com.apple.Dock autohide-delay -float 0;killall Dock |
| resource "random_password" "db_master_pass" { | |
| length = 40 | |
| special = true | |
| min_special = 5 | |
| override_special = "!#$%^&*()-_=+[]{}<>:?" | |
| keepers = { | |
| pass_version = 1 | |
| } | |
| } |
| apiVersion: v1 | |
| kind: ConfigMap | |
| metadata: | |
| name: nginx-conf | |
| data: | |
| nginx.conf: | | |
| user nginx; | |
| worker_processes 3; | |
| error_log /var/log/nginx/error.log; | |
| events { |
We're looking at CPU bandwidth control via CFS:
Program does number of iterations, in each iteration we burn CPU in small chunks until we get 5ms of real time spent. On each iteration we also print how much
| #!/bin/bash | |
| # Example for the Docker Hub V2 API | |
| # Returns all images and tags associated with a Docker Hub organization account. | |
| # Requires 'jq': https://stedolan.github.io/jq/ | |
| # set username, password, and organization | |
| UNAME="" | |
| UPASS="" | |
| ORG="" |