- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for actualDst (0.09 sec)
-
istioctl/pkg/writer/ztunnel/configdump/api.go
} type InboundConnection struct { Src string `json:"src"` OriginalDst string `json:"originalDst"` ActualDst string `json:"actualDst"` } type OutboundConnection struct { Src string `json:"src"` OriginalDst string `json:"originalDst"` ActualDst string `json:"actualDst"` } type WorkloadConnection struct { Src string `json:"src"` Dst string `json:"dst"`
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 30 17:26:39 UTC 2024 - 6.1K bytes - Viewed (0) -
istioctl/pkg/writer/ztunnel/configdump/connections.go
for _, c := range wl.Connections.Inbound { fmt.Fprintf(w, "%v\tInbound\t%v\t%v\t%v\n", name, lookupIP(c.ActualDst), lookupIP(c.Src), c.OriginalDst) } } if filter.Direction != "inbound" { for _, c := range wl.Connections.Outbound { fmt.Fprintf(w, "%v\tOutbound\t%v\t%v\t%v\n", name, lookupIP(c.Src), lookupIP(c.ActualDst), lookupIP(c.OriginalDst)) } } } return w.Flush()
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri May 31 21:45:11 UTC 2024 - 3.5K bytes - Viewed (0) -
docs/es/docs/deployment/versions.md
Se agregan nuevas características frecuentemente, se corrigen errores continuamente y el código está constantemente mejorando.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Aug 19 18:15:21 UTC 2024 - 4.3K bytes - Viewed (0) -
src/cmd/asm/internal/lex/input.go
in.peek = true in.Push(NewSlice(in.Base(), in.Line(), []Token{Make(macroName, macro.name)})) return } actuals := in.argsFor(macro) var tokens []Token for _, tok := range macro.tokens { if tok.ScanToken != scanner.Ident { tokens = append(tokens, tok) continue } substitution := actuals[tok.text] if substitution == nil { tokens = append(tokens, tok) continue }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Sep 06 13:17:27 UTC 2024 - 12.5K bytes - Viewed (0) -
cmd/xl-storage.go
// versions are expired and // doesn't contribute toward data usage. if objDeleted { break } actualSz, err := oi.GetActualSize() if err != nil { continue } if oi.DeleteMarker { sizeS.deleteMarkers++ } if oi.VersionID != "" && sz == actualSz { sizeS.versions++ } sizeS.totalSize += sz
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 26 09:58:27 UTC 2024 - 91.3K bytes - Viewed (0)