Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for StringVar (0.2 sec)

  1. istioctl/pkg/waypoint/waypoint.go

    `, "")
    			res = strings.ReplaceAll(res, `status: {}
    `, "")
    			fmt.Fprint(cmd.OutOrStdout(), res)
    			return nil
    		},
    	}
    	waypointGenerateCmd.PersistentFlags().StringVar(&trafficType,
    		"for",
    		"service",
    		fmt.Sprintf("Specify the traffic type %s for the waypoint", sets.SortedList(validTrafficTypes)),
    	)
    	waypointApplyCmd := &cobra.Command{
    		Use:   "apply",
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed May 01 16:16:40 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  2. docs/debugging/reorder-disks/main.go

    				return fmt.Sprintf("%d-%d", i, j), nil
    			}
    		}
    	}
    	return "", errors.New("format.json is corrupted")
    }
    
    func main() {
    	var node, args string
    
    	flag.StringVar(&node, "local-node-name", "", "the name of the local node")
    	flag.StringVar(&args, "args", "", "arguments passed to MinIO server")
    
    	flag.Parse()
    
    	localDisks, err := filterLocalDisks(node, args)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  3. istioctl/pkg/multicluster/remote_secret.go

    			"if it doesn't exist.")
    	flagset.StringVar(&o.ClusterName, "name", "",
    		"Name of the local cluster whose credentials are stored "+
    			"in the secret. If a name is not specified the kube-system namespace's UUID of "+
    			"the local cluster will be used.")
    	flagset.StringVar(&o.ServerOverride, "server", "",
    		"The address and port of the Kubernetes API server.")
    	flagset.StringVar(&o.SecretName, "secret-name", "",
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Oct 11 01:43:17 GMT 2023
    - 24K bytes
    - Viewed (0)
  4. istioctl/pkg/admin/istiodconfig.go

    	logCmd.PersistentFlags().StringVar(&outputLogLevel, "level", outputLogLevel,
    		"Comma-separated list of output logging level for scopes in the format of <scope>:<level>[,<scope>:<level>,...]. "+
    			"Possible values for <level>: none, error, warn, info, debug")
    	logCmd.PersistentFlags().StringVar(&stackTraceLevel, "stack-trace-level", stackTraceLevel,
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  5. operator/cmd/mesh/operator-remove.go

    	cmd.PersistentFlags().BoolVarP(&oiArgs.skipConfirmation, "skip-confirmation", "y", false, skipConfirmationFlagHelpStr)
    	cmd.PersistentFlags().BoolVar(&oiArgs.force, "force", false, ForceFlagHelpStr)
    	cmd.PersistentFlags().StringVar(&oiArgs.operatorNamespace, "operatorNamespace", operatorDefaultNamespace, OperatorNamespaceHelpstr)
    	cmd.PersistentFlags().StringVarP(&oiArgs.revision, "revision", "r", "", OperatorRevFlagHelpStr)
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  6. istioctl/pkg/cli/option.go

    		configContext:  ptr.Of[string](""),
    		namespace:      ptr.Of[string](""),
    		istioNamespace: ptr.Of[string](""),
    	}
    	flags.StringVarP(r.kubeconfig, FlagKubeConfig, "c", "",
    		"Kubernetes configuration file")
    	flags.StringVar(r.configContext, FlagContext, "",
    		"Kubernetes configuration context")
    	flags.StringVarP(r.namespace, FlagNamespace, "n", v1.NamespaceAll,
    		"Kubernetes namespace")
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Jan 26 18:01:27 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  7. istioctl/pkg/analyze/analyze.go

    	analysisCmd.PersistentFlags().StringVarP(&msgOutputFormat, "output", "o", formatting.LogFormat,
    		fmt.Sprintf("Output format: one of %v", formatting.MsgOutputFormatKeys))
    	analysisCmd.PersistentFlags().StringVar(&meshCfgFile, "meshConfigFile", "",
    		"Overrides the mesh config values to use for analysis.")
    	analysisCmd.PersistentFlags().BoolVarP(&allNamespaces, "all-namespaces", "A", false,
    		"Analyze all namespaces")
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 02 08:32:06 GMT 2024
    - 17K bytes
    - Viewed (0)
  8. istioctl/pkg/dashboard/dashboard.go

    			cmd.HelpFunc()(cmd, args)
    			return nil
    		},
    	}
    
    	dashboardCmd.PersistentFlags().IntVarP(&listenPort, "port", "p", 0, "Local port to listen to")
    	dashboardCmd.PersistentFlags().StringVar(&bindAddress, "address", "localhost",
    		"Address to listen on. Only accepts IP address or localhost as a value. "+
    			"When localhost is supplied, istioctl will try to bind on both 127.0.0.1 and ::1 "+
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Apr 15 01:29:35 GMT 2024
    - 20.5K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg flag, func Parse()
    pkg flag, func Parsed() bool
    pkg flag, func PrintDefaults()
    pkg flag, func Set(string, string) error
    pkg flag, func String(string, string, string) *string
    pkg flag, func StringVar(*string, string, string, string)
    pkg flag, func Uint(string, uint, string) *uint
    pkg flag, func Uint64(string, uint64, string) *uint64
    pkg flag, func Uint64Var(*uint64, string, uint64, string)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top