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
Warmly welcome your suggestions, desired changes, and innovative ideas | |
to improve https://learning-cloud-native-go.github.io docs. | |
Good luck with Learning Cloud Native Go! ~ Dumindu |
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
Warmly welcome your suggestions, desired changes, and innovative ideas | |
to improve https://learning-rust.github.io docs. | |
Good luck with learning Rust! ~Dumindu Nuwan |
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
package main | |
import ( | |
"fmt" | |
) | |
func main() { | |
ch1 := make(chan string) | |
ch2 := make(chan string) |
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
package main | |
import ( | |
"fmt" | |
"sync" | |
) | |
var wg sync.WaitGroup | |
func main() { |
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
package main | |
import ( | |
"fmt" | |
) | |
var closed = make(chan struct{}) | |
func main() { | |
go write() |
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
package main | |
import ( | |
"fmt" | |
) | |
var done = make(chan bool, 1) | |
func main() { | |
go write() |
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
package main | |
import ( | |
"fmt" | |
) | |
func main() { | |
ch := make(chan string) | |
go func() { |
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
{ | |
"manifest_version": 2, | |
"name": "Whatever name 🦄", | |
"author": "Dumindu Madunuwan", | |
"version": "0.0.1", | |
"theme": { | |
"colors": { | |
"frame": "#32ae75", | |
"toolbar": "#32ae75", | |
"toolbar_field": "#32ae75", |
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
Name: istio-ingressgateway-5855454469-xj4xs | |
Namespace: istio-system | |
Priority: 0 | |
Node: minikube/192.168.39.240 | |
Start Time: Mon, 22 Jun 2020 23:47:03 +0800 | |
Labels: app=istio-ingressgateway | |
chart=gateways | |
heritage=Tiller | |
istio=ingressgateway | |
pod-template-hash=5855454469 |
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
# Resources for AddonComponents grafana component | |
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: istio-grafana-configuration-dashboards-istio-mesh-dashboard | |
namespace: istio-system | |
labels: | |
app: grafana | |
release: istio |
NewerOlder