Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 967 for Iflag (0.12 sec)

  1. cmd/genyaml/gen_kubectl_yaml.go

    	}
    	return s
    }
    
    func genFlagResult(flags *pflag.FlagSet) []cmdOption {
    	result := []cmdOption{}
    
    	flags.VisitAll(func(flag *pflag.Flag) {
    		// Todo, when we mark a shorthand is deprecated, but specify an empty message.
    		// The flag.ShorthandDeprecated is empty as the shorthand is deprecated.
    		// Using len(flag.ShorthandDeprecated) > 0 can't handle this, others are ok.
    		if !(len(flag.ShorthandDeprecated) > 0) && len(flag.Shorthand) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. cmd/kubelet/app/options/options.go

    func (s *KubeletServer) AddFlags(fs *pflag.FlagSet) {
    	s.KubeletFlags.AddFlags(fs)
    	AddKubeletConfigFlags(fs, &s.KubeletConfiguration)
    }
    
    // AddFlags adds flags for a specific KubeletFlags to the specified FlagSet
    func (f *KubeletFlags) AddFlags(mainfs *pflag.FlagSet) {
    	fs := pflag.NewFlagSet("", pflag.ExitOnError)
    	defer func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/deprecatedcontroller.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import (
    	"github.com/spf13/pflag"
    
    	kubectrlmgrconfig "k8s.io/kubernetes/pkg/controller/apis/config"
    )
    
    // DeprecatedControllerOptions holds the DeprecatedController options, those option are deprecated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 22 12:28:12 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. cmd/kubelet/app/options/osflags_windows.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import (
    	"github.com/spf13/pflag"
    )
    
    func (f *KubeletFlags) addOSFlags(fs *pflag.FlagSet) {
    	fs.BoolVar(&f.WindowsService, "windows-service", f.WindowsService, "Enable Windows Service Control Manager API integration")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/replicasetcontroller.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import (
    	"github.com/spf13/pflag"
    
    	replicasetconfig "k8s.io/kubernetes/pkg/controller/replicaset/config"
    )
    
    // ReplicaSetControllerOptions holds the ReplicaSetController options.
    type ReplicaSetControllerOptions struct {
    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/dist/build.go

    	var debug, distpack, force, noBanner, noClean bool
    	flag.BoolVar(&rebuildall, "a", rebuildall, "rebuild all")
    	flag.BoolVar(&debug, "d", debug, "enable debugging of bootstrap process")
    	flag.BoolVar(&distpack, "distpack", distpack, "write distribution files to pkg/distpack")
    	flag.BoolVar(&force, "force", force, "build even if the port is marked as broken")
    	flag.BoolVar(&noBanner, "no-banner", noBanner, "do not print banner")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. istioctl/pkg/cli/option.go

    		"Istio system namespace")
    	return r
    }
    
    // Namespace returns the namespace flag value.
    func (r *RootFlags) Namespace() string {
    	return *r.namespace
    }
    
    // IstioNamespace returns the istioNamespace flag value.
    func (r *RootFlags) IstioNamespace() string {
    	return *r.istioNamespace
    }
    
    // DefaultNamespace returns the default namespace to use.
    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. pkg/kubeapiserver/options/cloudprovider.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import (
    	"fmt"
    
    	"github.com/spf13/pflag"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	cloudprovider "k8s.io/cloud-provider"
    	"k8s.io/kubernetes/pkg/features"
    )
    
    // CloudProviderOptions contains cloud provider config
    type CloudProviderOptions struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 15:50:25 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/options/legacyserviceaccounttokencleaner.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import (
    	"github.com/spf13/pflag"
    
    	serviceaccountconfig "k8s.io/kubernetes/pkg/controller/serviceaccount/config"
    )
    
    // LegacySATokenCleanerOptions holds the LegacySATokenCleaner options.
    type LegacySATokenCleanerOptions struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 23:20:17 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/options/ttlafterfinishedcontroller.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import (
    	"fmt"
    
    	"github.com/spf13/pflag"
    
    	"k8s.io/kubernetes/cmd/kube-controller-manager/names"
    	ttlafterfinishedconfig "k8s.io/kubernetes/pkg/controller/ttlafterfinished/config"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 19 13:01:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top