<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
#-*- mode: ruby -* | |
# vi: set ft=ruby : | |
# Global Variables | |
$hostname = 'spinnaker-01' | |
# Minimum Vagrant Version | |
Vagrant.require_version '>= 2.0.0' | |
# Overwrite host locale in ssh session |
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: minio | |
# Required-Start: $network $named $remote_fs $syslog | |
# Required-Stop: $network $named $remote_fs $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: minio server | |
# Description: Minio is an open source object storage server | |
# with Amazon S3 compatible API. |
#!/bin/bash | |
set -e | |
DATE="`date +%Y%m%d_%H%M%S`" | |
TYPE="" | |
SRC_DIR="" | |
DEST_DIR="" | |
BACKUP_DIR="" |
" Use the Solarized Dark theme | |
set background=dark | |
colorscheme solarized | |
let g:solarized_termtrans=1 | |
" Make Vim more useful | |
set nocompatible | |
" Use the OS clipboard by default (on versions compiled with `+clipboard`) | |
set clipboard=unnamed | |
" Enhance command-line completion |
# Shell prompt based on the Solarized Dark theme. | |
# Screenshot: http://i.imgur.com/EkEtphC.png | |
# Heavily inspired by @necolas’s prompt: https://github.com/necolas/dotfiles | |
# iTerm → Profiles → Text → use 13pt Monaco with 1.1 vertical spacing. | |
if [[ $COLORTERM = gnome-* && $TERM = xterm ]] && infocmp gnome-256color >/dev/null 2>&1; then | |
export TERM='gnome-256color'; | |
elif infocmp xterm-256color >/dev/null 2>&1; then | |
export TERM='xterm-256color'; | |
fi; |
#! /bin/sh | |
### BEGIN INIT INFO | |
# Provides: docker | |
# Required-Start: $network $named $remote_fs $syslog iptables | |
# Required-Stop: $network $named $remote_fs $syslog iptables | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: dockerd | |
# Description: Manage docker daemon. | |
### END INIT INFO |
Integrate JMH (Java Microbenchmarking Harness) with Spring (Boot) and make developing and running benchmarks as easy and convinent as writing tests.
Wrap the necessary JMH boilerplate code within JUnit to benefit from all the existing test infrastructure Spring (Boot) provides. It should be as easy and convinent to write benchmarks as it is to write tests.
#!/bin/bash | |
# | |
# jenkins-slave Start/Stop the jenkins-slave daemon. | |
# | |
# chkconfig: 2345 90 60 | |
# description: Jenkins Slave | |
### BEGIN INIT INFO | |
# Provides: crond crontab | |
# Required-Start: $network | |
# Required-Stop: $network |