This file contains hidden or 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
# run like this: | |
# kubectl get nodes -o json | python nodes.py | |
import json | |
import sys | |
format = "%-45s %-12s %6s" | |
print format % ("NAME", "IP", "IMAGES") |
This file contains hidden or 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
public static class Result<T> implements Future<T> { | |
private Future<T> future; | |
private Result(Future<T> future) { | |
this.future = future; | |
} | |
/** | |
* Block until done and {@code System.exit()} with an appropriate status code. | |
*/ |
This file contains hidden or 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
diff --git a/common_features.mk b/common_features.mk | |
index 8c593024f0..d70f360470 100644 | |
--- a/common_features.mk | |
+++ b/common_features.mk | |
@@ -658,40 +658,44 @@ endif | |
JOYSTICK_ENABLE ?= no | |
VALID_JOYSTICK_TYPES := analog digital | |
JOYSTICK_DRIVER ?= analog | |
ifeq ($(strip $(JOYSTICK_ENABLE)), yes) | |
ifeq ($(filter $(JOYSTICK_DRIVER),$(VALID_JOYSTICK_TYPES)),) |
OlderNewer