Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,213 for flagstr (0.13 sec)

  1. cmd/kubeadm/app/cmd/phases/workflow/runner.go

    			},
    		}
    
    		// makes the new command inherits local flags from the parent command
    		// Nb. global flags will be inherited automatically
    		inheritsFlags(cmd.Flags(), phaseCmd.Flags(), p.InheritFlags)
    
    		// makes the new command inherits additional flags for phases
    		if e.cmdAdditionalFlags != nil {
    			inheritsFlags(e.cmdAdditionalFlags, phaseCmd.Flags(), p.InheritFlags)
    		}
    
    		// If defined, added phase local flags
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 05:35:15 UTC 2022
    - 16K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/replicationcontroller.go

    type ReplicationControllerOptions struct {
    	*replicationconfig.ReplicationControllerConfiguration
    }
    
    // AddFlags adds flags related to ReplicationController for controller manager to the specified FlagSet.
    func (o *ReplicationControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/replicasetcontroller.go

    type ReplicaSetControllerOptions struct {
    	*replicasetconfig.ReplicaSetControllerConfiguration
    }
    
    // AddFlags adds flags related to ReplicaSetController for controller manager to the specified FlagSet.
    func (o *ReplicaSetControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/statefulsetcontroller.go

    type StatefulSetControllerOptions struct {
    	*statefulsetconfig.StatefulSetControllerConfiguration
    }
    
    // AddFlags adds flags related to StatefulSetController for controller manager to the specified FlagSet.
    func (o *StatefulSetControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 01 05:36:14 UTC 2019
    - 2K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/podgccontroller.go

    type PodGCControllerOptions struct {
    	*podgcconfig.PodGCControllerConfiguration
    }
    
    // AddFlags adds flags related to PodGCController for controller manager to the specified FlagSet.
    func (o *PodGCControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (NotEqual (FlagLT)) => (MOVDconst [1])
    (NotEqual (FlagGT)) => (MOVDconst [1])
    
    (LessThan (FlagEQ)) => (MOVDconst [0])
    (LessThan (FlagLT)) => (MOVDconst [1])
    (LessThan (FlagGT)) => (MOVDconst [0])
    
    (LessEqual (FlagEQ)) => (MOVDconst [1])
    (LessEqual (FlagLT)) => (MOVDconst [1])
    (LessEqual (FlagGT)) => (MOVDconst [0])
    
    (GreaterThan (FlagEQ)) => (MOVDconst [0])
    (GreaterThan (FlagLT)) => (MOVDconst [0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. istioctl/pkg/cli/option.go

    	defaultNamespace string
    }
    
    func AddRootFlags(flags *pflag.FlagSet) *RootFlags {
    	r := &RootFlags{
    		kubeconfig:     ptr.Of[string](""),
    		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, "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 18:01:27 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/Trans2FindNext2.java

            informationLevel = Trans2FindFirst2.SMB_FILE_BOTH_DIRECTORY_INFO;
            flags = 0x00;
            maxParameterCount = 8;
            maxDataCount = Trans2FindFirst2.LIST_SIZE;
            maxSetupCount = 0;
        }
    
        void reset( int resumeKey, String lastName ) {
            super.reset();
            this.resumeKey = resumeKey;
            this.filename = lastName;
            flags2 = 0;
        }
    
        int writeSetupWireFormat( byte[] dst, int dstIndex ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    // typically a filename.
    type Writer interface {
    	Open(name string) (io.WriteCloser, error)
    }
    
    // A FlagSet creates and parses command-line flags.
    // It is similar to the standard flag.FlagSet.
    type FlagSet interface {
    	// Bool, Int, Float64, and String define new flags,
    	// like the functions of the same name in package flag.
    	Bool(name string, def bool, usage string) *bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/options/jobcontroller.go

    // JobControllerOptions holds the JobController options.
    type JobControllerOptions struct {
    	*jobconfig.JobControllerConfiguration
    }
    
    // AddFlags adds flags related to JobController for controller manager to the specified FlagSet.
    func (o *JobControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 12:19:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top