I hereby claim:
- I am cehoffman on github.
- I am cehoffman (https://keybase.io/cehoffman) on keybase.
- I have a public key whose fingerprint is 3400 914C 487C E6A7 F933 1DDB B093 32C1 01F3 E778
To claim this, I am signing this object:
2019-11-30T04:40:29.808896303Z level=info msg="Skipped reading configuration file" reason="Config File \"ciliumd\" Not Found in \"[/root]\"" subsys=daemon | |
2019-11-30T04:40:29.808979101Z level=info msg=" --access-log=''" subsys=daemon | |
2019-11-30T04:40:29.808988289Z level=info msg=" --agent-labels=''" subsys=daemon | |
2019-11-30T04:40:29.808994617Z level=info msg=" --allow-icmp-frag-needed='true'" subsys=daemon | |
2019-11-30T04:40:29.809000757Z level=info msg=" --allow-localhost='auto'" subsys=daemon | |
2019-11-30T04:40:29.809006715Z level=info msg=" --annotate-k8s-node='true'" subsys=daemon | |
2019-11-30T04:40:29.809012663Z level=info msg=" --auto-create-cilium-node-resource='true'" subsys=daemon | |
2019-11-30T04:40:29.809018658Z level=info msg=" --auto-direct-node-routes='false'" subsys=daemon | |
2019-11-30T04:40:29.809024775Z level=info msg=" --aws-instance-limit-mapping='map[]'" subsys=daemon | |
2019-11-30T04:40:29.809030621Z level=info msg=" --blacklist-conflicting-routes='true'" subsys=daemon |
apiVersion: v1 | |
items: | |
- apiVersion: navigator.jetstack.io/v1alpha1 | |
kind: Pilot | |
metadata: | |
creationTimestamp: 2018-04-14T21:26:57Z | |
labels: | |
controller-revision-hash: es-logging-d-6f4d75769f | |
navigator.jetstack.io/elasticsearch-cluster-name: logging | |
navigator.jetstack.io/elasticsearch-node-pool-name: d |
W0410 09:17:10.471299 1 client_config.go:529] Neither --kubeconfig nor --master was specified. Using the inClusterConfig. This might not work. | |
I0410 09:17:10.474541 1 options.go:145] Creating event broadcaster | |
I0410 09:17:10.474943 1 reflector.go:202] Starting reflector *v1alpha1.Pilot (30s) from github.com/jetstack/navigator/pkg/client/informers/externalversions/factory.go:73 | |
I0410 09:17:10.474977 1 reflector.go:240] Listing and watching *v1alpha1.Pilot from github.com/jetstack/navigator/pkg/client/informers/externalversions/factory.go:73 | |
I0410 09:17:10.475046 1 reflector.go:202] Starting reflector *v1alpha1.ElasticsearchCluster (30s) from github.com/jetstack/navigator/pkg/client/informers/externalversions/factory.go:73 | |
I0410 09:17:10.475077 1 reflector.go:240] Listing and watching *v1alpha1.ElasticsearchCluster from github.com/jetstack/navigator/pkg/client/informers/externalversions/factory.go:73 | |
I0410 09:17:10.574885 1 shared_informer.go:122] caches populated | |
I04 |
I hereby claim:
To claim this, I am signing this object:
<template> | |
<input type="checkbox" change.trigger="updateCheck('second', $event.srcElement.checked)"> | |
<input type="checkbox" change.trigger="updateCheck('first', $event.srcElement.checked)"> | |
<div>${anyChecked ? 'Some Checked' : 'None Checked'}</div> | |
</template> |
diff --git a/gas/config/tc-avr.c b/gas/config/tc-avr.c | |
index 332aa2d..729484b 100644 | |
--- a/gas/config/tc-avr.c | |
+++ b/gas/config/tc-avr.c | |
@@ -1452,6 +1452,7 @@ md_assemble (char *str) | |
dwarf2_emit_insn (0); | |
+ dwarf2_emit_insn (0); | |
/* We used to set input_line_pointer to the result of get_operands, |
{ | |
Fix Armor BODT fields erroneously added from ReProccer | |
Fix keywords and fields lost from USKP due to mods between USKP and ReProccer | |
not including USKP fixes. | |
Fix infiltration keywords that are missing on obviously Bandit, Thalmor, | |
Stormcloak, Imperial, Forsworn. Also remove infiltration keywords from cloaks, | |
because it doesn't make sense for you to infiltrate wearing a cloak instead | |
of a chest piece |
build/ |
/* $Id: colorize.c 3816 2004-07-03 17:01:32Z lefevre $ | |
* | |
* Colorize the standard input. Written for zsh stderr coloring. | |
* This was taken from a mail archive on the subject of colorizing | |
* the stderr stream in zsh. It was written by Vincent Lefèvre as far | |
* as I know. It is here so it can be used in a brew formula. | |
* | |
* The intended usage is to place a line like the following in your zshrc | |
* exec 2>>(colorize `tput bold; tput setaf 1` `tput sgr0` > /dev/tty &) | |
* |
Rake::TaskManager.class_eval do | |
def remove_task(*task_name) | |
[*task_name].each { |task| @tasks.delete(task.to_s) } | |
end | |
def rename_task(old_name, new_name) | |
old = @tasks.delete old_name.to_s | |
old.instance_variable_set :@name, new_name.to_s | |
@tasks[new_name.to_s] = old | |
end |