Errors you'll see if a RestTemplate isn't defined
Consider defining a bean of type 'org.springframework.web.client.RestTemplate' in your configuration.
or
No qualifying bean of type
| package com.kieronquinn.app.controltest | |
| import android.app.PendingIntent | |
| import android.app.Service | |
| import android.content.ComponentName | |
| import android.content.Intent | |
| import android.content.res.ColorStateList | |
| import android.graphics.Color | |
| import android.graphics.drawable.Icon | |
| import android.os.Bundle |
Errors you'll see if a RestTemplate isn't defined
Consider defining a bean of type 'org.springframework.web.client.RestTemplate' in your configuration.
or
No qualifying bean of type
| #!/bin/sh | |
| # | |
| # Build GCC with support for offloading to NVIDIA GPUs. | |
| # | |
| work_dir=$HOME/offload/wrk | |
| install_dir=$HOME/offload/install | |
| # Location of the installed CUDA toolkit |
| set menu_color_normal=white/black | |
| set menu_color_highlight=black/light-gray | |
| menuentry "Try openSUSE Tumbleweed GNOME Live ISO" { | |
| set gfxpayload=keep | |
| set iso_path=/openSUSE-Tumbleweed-GNOME-Live-x86_64-Snapshot20180220-Media.iso | |
| loopback loop0 ${iso_path} | |
| echo Loading kernel... |
| # Config for GNU GRand Unified Bootloader (GRUB) (2) | |
| # /boot/grub2/grub.cfg | |
| # or | |
| # /boot/grub/grub.cfg | |
| # Mostly only 'legacy' CSM/BIOS boot methods currently. | |
| # Unable to boot loop entries with Secure Boot | |
| # Notes: | |
| # Description: | |
| # This grub.cfg file was created by Lance http://www.pendrivelinux.com |
| #!/bin/sh | |
| # Setup encrypted disk image | |
| # For Ubuntu 14.04 LTS | |
| CRYPTFS_ROOT=/cryptfs | |
| apt-get update | |
| apt-get -y upgrade | |
| apt-get -y install cryptsetup |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| # Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| # Box to build off of. | |
| config.vm.box = "precise32" |