These instructions assume a working cluster with the Helm Tiller already installed.
[email protected]:jkinred/flux-example
helm install \
--name flux \
--set helmOperator.create=true \
--set git.url=$GIT_REPO \
class Foo(object): | |
def __init__(self, client): | |
self._cache = {} | |
self.client = client | |
def get(): | |
client.get_from_server() | |
class Bar(object): | |
def __init__(self, client): |
class BuildResultKey(object): | |
def __init__(self, project_key, plan_key, job_key, build_number=None): | |
self.project_key = project_key | |
self.plan_key = plan_key | |
self.job_key = job_key | |
self.build_number = build_number | |
def __str__(self): | |
return "%s-%s-%s" % (self.project_key, self.plan_key, self.job_key) |
--- trunk/ext/openssl/ossl_pkey_ec.c 2013/07/05 22:16:09 41807 | |
+++ trunk/ext/openssl/ossl_pkey_ec.c 2013/07/05 22:46:42 41808 | |
@@ -762,8 +762,10 @@ | |
method = EC_GFp_mont_method(); | |
} else if (id == s_GFp_nist) { | |
method = EC_GFp_nist_method(); | |
+#if !defined(OPENSSL_NO_EC2M) | |
} else if (id == s_GF2m_simple) { | |
method = EC_GF2m_simple_method(); | |
+#endif |
--- trunk/ext/openssl/ossl_pkey_ec.c 2013/07/05 22:16:09 41807 | |
+++ trunk/ext/openssl/ossl_pkey_ec.c 2013/07/05 22:46:42 41808 | |
@@ -762,8 +762,10 @@ | |
method = EC_GFp_mont_method(); | |
} else if (id == s_GFp_nist) { | |
method = EC_GFp_nist_method(); | |
+#if !defined(OPENSSL_NO_EC2M) | |
} else if (id == s_GF2m_simple) { | |
method = EC_GF2m_simple_method(); | |
+#endif |
#!/usr/bin/env python | |
import datetime | |
from igc2kmz.igc import IGC | |
garmin = IGC(open('blackheath_blackville_garmin.igc')) | |
compeo = IGC(open('blackheath_blackville_compeo.igc')) | |
g_track = garmin.track() | |
c_track = compeo.track() |
#!/usr/bin/env python | |
import datetime | |
from igc2kmz.igc import IGC | |
garmin = IGC(open('blackheath_blackville_garmin.igc')) | |
compeo = IGC(open('blackheath_blackville_compeo.igc')) | |
g_track = garmin.track() | |
c_track = compeo.track() |
It seems that these two statements from http://haproxy.1wt.eu/download/1.4/doc/configuration.txt are not consistent. | |
In "1.1. The HTTP transaction model" section: | |
"Once established, the connection is persisted both on the client and | |
server sides." | |
In "option http-server-close" section: | |
"By default, when a client communicates with a server, HAProxy will only | |
analyze, log, and process the first request of each connection." |
`Or else what?' said Alice, for the Knight had made a sudden pause. | |
`Or else it doesn't, you know. The name of the song is called "Haddocks' Eyes."' | |
`Oh, that's the name of the song, is it?' Alice said, trying to feel interested. | |
`No, you don't understand,' the Knight said, looking a little vexed. `That's what the name is called. The name really is "The Aged Aged Man."' | |
`Then I ought to have said "That's what the song is called"?' Alice corrected herself. |
These instructions assume a working cluster with the Helm Tiller already installed.
[email protected]:jkinred/flux-example
helm install \
--name flux \
--set helmOperator.create=true \
--set git.url=$GIT_REPO \
for region in `aws ec2 describe-regions --all-regions | jq -r .Regions[].RegionName`; do aws ec2 describe-availability-zones --region $region | jq .AvailabilityZones[].ZoneName; done |