sudo apt-get update
apt-cache search --names-only linux-image
docker rmi $(docker images -q -f dangling=true)
# docker rmi --force $(docker images -q -f dangling=true)
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
from grpc_reflection.v1alpha import reflection | |
def list_services(address): | |
channel = grpc.secure_channel(address, get_client_credentials()) | |
stub = reflection._reflection_pb2_grpc.ServerReflectionStub(channel) | |
def gen(): | |
yield reflection._reflection_pb2.ServerReflectionRequest(host=address, list_services='') |
- Create or find a gist that you own.
- Clone your gist (replace
<hash>
with your gist's hash):# with ssh git clone [email protected]:<hash>.git mygist
OlderNewer