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
package main | |
import ( | |
"fmt" | |
"strings" | |
) | |
func strlist(strs ...string) []string { | |
return strs | |
} |
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
package main | |
import ( | |
"fmt" | |
"strings" | |
) | |
func strlist(strs ...string) []string { | |
return strs | |
} |
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
--- ingress-prod-v6.yaml 2021-03-16 16:03:15.916458352 +0000 | |
+++ thockin.ingress-prod-v6.yaml 2021-03-28 18:23:41.981625351 +0000 | |
@@ -4,12 +4,12 @@ | |
name: k8s-io-v6 | |
labels: | |
app: k8s-io | |
- namespace: k8s-io-prod | |
+ namespace: thockin-test-certs | |
annotations: | |
- kubernetes.io/ingress.global-static-ip-name: k8s-io-ingress-prod-v6 |
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
package main | |
import ( | |
"bytes" | |
"testing" | |
) | |
// | |
// Baseline perf for single operations | |
// |
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
We have an API type which roughly looks like: | |
``` | |
type ResourcePool struct { | |
// standard stuff | |
Devices []Device | |
} | |
type Device struct { | |
Name string |
OlderNewer