| Repository | PR Count |
|---|---|
| prashantv/faket | 41 |
| prashantv/spwedding | 25 |
| prashantv/gomo | 7 |
| prashantv/atuin-fzf | 7 |
| bracesdev/errtrace | 4 |
| shirou/gopsutil | 2 |
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
| Close | |
| close("user initiated") | |
| close | |
| sets state to connectionStartClose | |
| causes checkExchanges to go to close states | |
| readFrames: | |
| connectionError if closeNetwork ISNT called |
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
| Microsoft (R) Windows Debugger Version 10.0.17763.132 AMD64 | |
| Copyright (c) Microsoft Corporation. All rights reserved. | |
| Loading Dump File [C:\Users\Prashant\Documents\032119-18390-01.dmp] | |
| Mini Kernel Dump File: Only registers and stack trace are available | |
| WARNING: Whitespace at end of path element | |
| Error: Empty Path. |
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
| 2019/07/22 17:38:58 http2: Transport creating client conn 0xc0000f0000 to 127.0.0.1:34071 | |
| 2019/07/22 17:38:58 http2: Framer 0xc00011a000: wrote SETTINGS len=18, settings: ENABLE_PUSH=0, INITIAL_WINDOW_SIZE=4194304, MAX_HEADER_LIST_SIZE=10485760 | |
| 2019/07/22 17:38:58 http2: Framer 0xc00011a000: wrote WINDOW_UPDATE len=4 (conn) incr=1073741824 | |
| 2019/07/22 17:38:58 http2: Transport encoding header ":authority" = "127.0.0.1:34071" | |
| 2019/07/22 17:38:58 http2: Transport encoding header ":method" = "POST" | |
| 2019/07/22 17:38:58 http2: Transport encoding header ":path" = "/drop" | |
| 2019/07/22 17:38:58 http2: Transport encoding header ":scheme" = "http" | |
| 2019/07/22 17:38:58 http2: Transport encoding header "content-type" = "application/raw" | |
| 2019/07/22 17:38:58 http2: Transport encoding header "content-length" = "8388608" | |
| 2019/07/22 17:38:58 http2: Transport encoding header "accept-encoding" = "gzip" |
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
| "prashant" |
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" | |
| "runtime" | |
| "sync" | |
| "time" | |
| ) | |
| func main() { |
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 elfsym | |
| import ( | |
| "bytes" | |
| "debug/elf" | |
| "fmt" | |
| "io/ioutil" | |
| ) | |
| type Symbol struct { |
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
| cd repro && CUSTOMIZE_DIFF_PANIC=1 terraform destroy | |
| 2023-01-09T10:52:39.474-0800 [INFO] Terraform version: 1.2.9 | |
| 2023-01-09T10:52:39.474-0800 [DEBUG] using github.com/hashicorp/go-tfe v1.0.0 | |
| 2023-01-09T10:52:39.474-0800 [DEBUG] using github.com/hashicorp/hcl/v2 v2.12.0 | |
| 2023-01-09T10:52:39.474-0800 [DEBUG] using github.com/hashicorp/terraform-config-inspect v0.0.0-20210209133302-4fd17a0faac2 | |
| 2023-01-09T10:52:39.474-0800 [DEBUG] using github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 | |
| 2023-01-09T10:52:39.474-0800 [DEBUG] using github.com/zclconf/go-cty v1.11.0 | |
| 2023-01-09T10:52:39.474-0800 [INFO] Go runtime version: go1.18.1 | |
| 2023-01-09T10:52:39.474-0800 [INFO] CLI args: []string{"terraform", "destroy"} | |
| 2023-01-09T10:52:39.474-0800 [TRACE] Stdout is not a terminal |
We run EKS Hybrid clusters with Azure hybrid nodes spanning multiple Azure regions. Each region has multiple subscriptions:
- A sharedinfra subscription hosting a shared VNet (using Azure's cross-subscription subnet sharing /
EnableSharedVNetfeature) - One or more compute subscriptions where VMs and NICs are created, referencing the shared VNet's subnet cross-subscription
A single Kubernetes cluster has nodes across 3 regions (centralus, eastus, southeastus3), each with its own shared VNet and 2-4 compute subscriptions. All told, a cluster may have nodes across 10+ subscriptions and separate resource groups.
OlderNewer