Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 217 for asmflags (0.12 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/json_yaml_flags.go

    	}
    
    	if !f.ShowManagedFields {
    		printer = &printers.OmitManagedFieldsPrinter{Delegate: printer}
    	}
    	return printer, nil
    }
    
    // AddFlags receives a *cobra.Command reference and binds
    // flags related to JSON or Yaml printing to it
    func (f *JSONYamlPrintFlags) AddFlags(c *cobra.Command) {
    	if f == nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 04 13:00:03 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/attachdetachcontroller.go

    type AttachDetachControllerOptions struct {
    	*attachdetachconfig.AttachDetachControllerConfiguration
    }
    
    // AddFlags adds flags related to AttachDetachController for controller manager to the specified FlagSet.
    func (o *AttachDetachControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. pkg/kubelet/config/flags.go

    	// specified in imageCredentialProviderConfigFile.
    	// +optional
    	ImageCredentialProviderBinDir string
    }
    
    // AddFlags adds flags to the container runtime, according to ContainerRuntimeOptions.
    func (s *ContainerRuntimeOptions) AddFlags(fs *pflag.FlagSet) {
    	// General settings.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 03:14:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/runtime/os_freebsd_amd64.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    import "internal/abi"
    
    func cgoSigtramp()
    
    //go:nosplit
    //go:nowritebarrierrec
    func setsig(i uint32, fn uintptr) {
    	var sa sigactiont
    	sa.sa_flags = _SA_SIGINFO | _SA_ONSTACK | _SA_RESTART
    	sa.sa_mask = sigset_all
    	if fn == abi.FuncPCABIInternal(sighandler) { // abi.FuncPCABIInternal(sighandler) matches the callers in signal_unix.go
    		if iscgo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:40:36 UTC 2021
    - 658 bytes
    - Viewed (0)
  5. cmd/kube-scheduler/app/options/deprecated.go

    	// If this value is empty, the default value (5min) will be used.
    	PodMaxInUnschedulablePodsDuration time.Duration
    }
    
    // AddFlags adds flags for the deprecated options.
    func (o *DeprecatedOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 13:24:38 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/egress_selector.go

    func NewEgressSelectorOptions() *EgressSelectorOptions {
    	return &EgressSelectorOptions{}
    }
    
    // AddFlags adds flags related to admission for a specific APIServer to the specified FlagSet
    func (o *EgressSelectorOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    	fs.StringVar(&o.ConfigFile, "egress-selector-config-file", o.ConfigFile,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 01 11:41:59 UTC 2021
    - 3K bytes
    - Viewed (0)
  7. cmd/genyaml/gen_kubectl_yaml.go

    	doc.Synopsis = forceMultiLine(command.Short)
    	doc.Description = forceMultiLine(command.Long)
    
    	flags := command.NonInheritedFlags()
    	if flags.HasFlags() {
    		doc.Options = genFlagResult(flags)
    	}
    	flags = command.InheritedFlags()
    	if flags.HasFlags() {
    		doc.InheritedOptions = genFlagResult(flags)
    	}
    
    	if len(command.Example) > 0 {
    		doc.Example = command.Example
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/template_flags.go

    	if f.AllowMissingKeys != nil {
    		allowMissingKeys = *f.AllowMissingKeys
    	}
    
    	p.AllowMissingKeys(allowMissingKeys)
    	return p, nil
    }
    
    // AddFlags receives a *cobra.Command reference and binds
    // flags related to template printing to it
    func (f *GoTemplatePrintFlags) AddFlags(c *cobra.Command) {
    	if f.TemplateArgument != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/api_enablement.go

    }
    
    func NewAPIEnablementOptions() *APIEnablementOptions {
    	return &APIEnablementOptions{
    		RuntimeConfig: make(cliflag.ConfigurationMap),
    	}
    }
    
    // AddFlags adds flags for a specific APIServer to the specified FlagSet
    func (s *APIEnablementOptions) AddFlags(fs *pflag.FlagSet) {
    	if s == nil {
    		return
    	}
    	fs.Var(&s.RuntimeConfig, "runtime-config", ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 09:22:37 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/jsonpath_flags.go

    	if templateFormat == "jsonpath-as-json" {
    		p.EnableJSONOutput(true)
    	}
    
    	return p, nil
    }
    
    // AddFlags receives a *cobra.Command reference and binds
    // flags related to template printing to it
    func (f *JSONPathPrintFlags) AddFlags(c *cobra.Command) {
    	if f.TemplateArgument != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top