- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for MsgOutputFormats (0.33 sec)
-
istioctl/pkg/util/formatting/formatter.go
YAMLFormat = "yaml" ) var ( MsgOutputFormatKeys = []string{LogFormat, JSONFormat, YAMLFormat} MsgOutputFormats = make(map[string]bool) termEnvVar = env.Register("TERM", "", "Specifies terminal type. Use 'dumb' to suppress color output") ) func init() { for _, key := range MsgOutputFormatKeys { MsgOutputFormats[key] = true } } // Print output messages in the specified format with color options
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 11 02:41:45 UTC 2023 - 3.1K bytes - Viewed (0) -
istioctl/pkg/analyze/analyze.go
# List available analyzers istioctl analyze -L`, RunE: func(cmd *cobra.Command, args []string) error { msgOutputFormat = strings.ToLower(msgOutputFormat) _, ok := formatting.MsgOutputFormats[msgOutputFormat] if !ok { return util.CommandParseError{ Err: fmt.Errorf("%s not a valid option for format. See istioctl analyze --help", msgOutputFormat), } } if listAnalyzers {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 31 06:53:50 UTC 2024 - 17.6K bytes - Viewed (0)