- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for SetHelpFunc (0.3 sec)
-
istioctl/cmd/options.go
} func optionsCommand(rootCmd *cobra.Command) *cobra.Command { retval := &cobra.Command{ Use: "options", Short: "Displays istioctl global options", Args: cobra.ExactArgs(0), } retval.SetHelpFunc(func(c *cobra.Command, args []string) { c.Printf("The following options can be passed to any command:\n") // (Currently the only global options we show are help options)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 1.8K bytes - Viewed (0) -
istioctl/cmd/root.go
}) } return rootCmd } func hideInheritedFlags(orig *cobra.Command, hidden ...string) { orig.SetHelpFunc(func(cmd *cobra.Command, args []string) { for _, hidden := range hidden { _ = cmd.Flags().MarkHidden(hidden) // nolint: errcheck } orig.SetHelpFunc(nil) orig.HelpFunc()(cmd, args) }) } func ConfigureLogging(_ *cobra.Command, _ []string) error {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Aug 05 02:08:47 UTC 2024 - 9.6K bytes - Viewed (0)