This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Don't set an `initial` value for this component in this file. Instead, set it by calling the `set_datetime` service. | |
# The reason for this is explained at https://www.home-assistant.io/components/input_datetime/ | |
input_datetime: | |
event_countdown: | |
name: "Date of the event" | |
has_date: true | |
has_time: false | |
# Don't set an `initial` value for this component in this file. Instead, set it by calling the `set_value` service. | |
# The reason for this is explained at https://www.home-assistant.io/components/input_text/ | |
input_text: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extern crate askama; // doensn't really work cause it creates a struct for each template at compile time | |
extern crate handlebars; | |
extern crate liquid; | |
extern crate maud; // doesn't really work cause it creates templates from within Rust code with a macro | |
extern crate serde; | |
extern crate tera; | |
use std::fmt::Display; | |
use serde::Serialize; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#[test] | |
fn create_in_order() { | |
let core = Core::new().unwrap(); | |
let mut client = TestClient::new(core); | |
let requests: Vec<FutureKeySpaceInfo> = (1..4).map(|_| { | |
kv::create_in_order( &client, "/test/foo", "bar", None) | |
}).collect(); | |
let work = join_all(requests).and_then(|mut ksis: Vec<KeySpaceInfo>| { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct Client { | |
members: Vec<Member>, | |
} | |
impl Client { | |
fn first_ok<F>(&self, callback: F) -> Result<GoodThing, Vec<BadThing>> | |
where | |
F: Fn(&Member) -> Result<GoodThing, BadThing> | |
{ | |
let mut errors = Vec::with_capacity(self.members.len()); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "ruma-client-test" | |
version = "0.1.0" | |
[dependencies] | |
futures = "0.1.13" | |
tokio-service = "0.1.0" | |
[dependencies.hyper] | |
git = "https://github.com/hyperium/hyper" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// In crate `endpoint`: | |
pub trait Endpoint { | |
type Request: TryInto<hyper::Request>; | |
type Response: TryFrom<hyper::Response>; | |
} | |
// In crate `client`: | |
pub struct Client; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ./algo | |
What provider would you like to use? | |
1. DigitalOcean | |
2. Amazon EC2 | |
3. Microsoft Azure | |
4. Google Compute Engine (only for testing, see issue #369) | |
5. Install to existing Ubuntu 16.04 server | |
Enter the number of your desired provider |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo journalctl -u kubelet | |
-- Logs begin at Fri 2017-04-14 13:36:03 PDT, end at Fri 2017-04-14 14:53:40 PDT. -- | |
Apr 14 13:36:03 pearkube-03 kubelet[30954]: I0414 13:36:02.080311 30954 reconciler.go:190] UnmountVolume operation started for volume "kubernetes.io/secret/5b810d2c-2033-11e7-8e6e-b827ebfa0d18-wrapped_wrapped_wrapped_wrapped_wrapped_wra | |
Apr 14 13:36:03 pearkube-03 kubelet[30954]: I0414 13:36:02.080599 30954 reconciler.go:190] UnmountVolume operation started for volume "kubernetes.io/secret/5b810d2c-2033-11e7-8e6e-b827ebfa0d18-wrapped_wrapped_wrapped_wrapped_wrapped_wra | |
Apr 14 13:36:03 pearkube-03 kubelet[30954]: I0414 13:36:02.081036 30954 reconciler.go:190] UnmountVolume operation started for volume "kubernetes.io/secret/5b810d2c-2033-11e7-8e6e-b827ebfa0d18-wrapped_wrapped_wrapped_wrapped_wrapped_wra | |
Apr 14 13:36:03 pearkube-03 kubelet[30954]: I0414 13:36:02.081583 30954 reconciler.go:190] UnmountVolume operation started for volume "kubernetes.io/secret/5b810d2c-2033-11e7-8e6e-b827ebfa0d1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
error[E0495]: cannot infer an appropriate lifetime for lifetime parameter in function call due to conflicting requirements | |
--> src/main.rs:39:37 | |
| | |
39 | for item in self.collection.iter() { | |
| ^^^^ | |
| | |
note: first, the lifetime cannot outlive the anonymous lifetime #1 defined on the body at 36:90... | |
--> src/main.rs:36:91 | |
| | |
36 | fn dispatch(&self, input: &'static str) -> Box<Stream<Item = Success, Error = Error>> { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
items: | |
- apiVersion: rbac.authorization.k8s.io/v1alpha1 | |
kind: ClusterRoleBinding | |
metadata: | |
creationTimestamp: 2017-02-23T00:03:51Z | |
name: cluster-admin | |
namespace: "" | |
resourceVersion: "35" | |
selfLink: /apis/rbac.authorization.k8s.io/v1alpha1/clusterrolebindingscluster-admin |
NewerOlder