I hereby claim:
- I am morganfainberg on github.
- I am mdrnstm (https://keybase.io/mdrnstm) on keybase.
- I have a public key whose fingerprint is 0D1A 8C84 23CF 3C86 BF42 0F7B B9A8 3CEF A07C 6D8A
To claim this, I am signing this object:
# Clone repo | |
git clone https://github.com/ggerganov/llama.cpp | |
cd llama.cpp | |
# Build | |
mkdir build | |
cd build | |
cmake .. | |
cmake --build . --config Release | |
cd .. |
FROM ubuntu:16.04 | |
RUN apt-get update | |
RUN DEBIAN_FRONTEND=noninteractive apt-get -yq dist-upgrade | |
RUN DEBIAN_FRONTEND=noninteractive apt-get install -yq curl python3-dev python-software-properties curl apt-transport-https build-essential git | |
RUN curl https://bootstrap.pypa.io/get-pip.py | python3 | |
RUN pip install bindep | |
RUN pip install tox | |
ADD ./${OS_PROJECT:-keystone}/bindep.txt /opt/bindep.txt | |
ADD ./${OS_PROJECT:-keystone}/requirements.txt /opt/requirements.txt |
class _NoDependencyFound(Exception): | |
"""Internal-use only exception for the registry.""" | |
class DuplicateProviderError(Exception): | |
"""A duplicate provider API is attempting to be registered.""" | |
class DependencyRegistry(object): |
`import re | |
import six | |
class Meta(type): | |
registry = {} | |
def __new__(meta, name, bases, class_dict): | |
cls = None | |
parts = [p.lower() for p in re.split(r'([A-Z][a-z]*)', name) if p] | |
name = '_'.join(parts) |
I hereby claim:
To claim this, I am signing this object:
+-------------+----------------+-----------------------------------------------------------------------------------+ | |
| Name | Type | Endpoints | | |
+-------------+----------------+-----------------------------------------------------------------------------------+ | |
| nova | compute | RegionOne | | |
| | | publicURL: http://192.168.1.181/compute/v2.1/a9d75052b9a54a26a5feec6a20fbcc3b | | |
| | | internalURL: http://192.168.1.181/compute/v2.1/a9d75052b9a54a26a5feec6a20fbcc3b | | |
| | | adminURL: http://192.168.1.181/compute/v2.1/a9d75052b9a54a26a5feec6a20fbcc3b | | |
| | | | | |
| cinderv2 | volumev2 | RegionOne |
diff --git a/keystone/assignment/core.py b/keystone/assignment/core.py | |
index a16aafc..1cb808e 100644 | |
--- a/keystone/assignment/core.py | |
+++ b/keystone/assignment/core.py | |
@@ -48,9 +48,6 @@ def calc_default_domain(): | |
'name': u'Default'} | |
[email protected]('assignment_api') | |
[email protected]('revoke_api') |
#!/usr/bin/env python | |
import itertools | |
import socket | |
import time | |
from launchpadlib import uris | |
from launchpadlib.launchpad import Launchpad | |