Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 967 for Iflag (0.1 sec)

  1. cmd/kube-controller-manager/app/options/validatingadmissionpolicycontroller.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import (
    	"fmt"
    
    	"github.com/spf13/pflag"
    
    	validatingadmissionpolicystatusconfig "k8s.io/kubernetes/pkg/controller/validatingadmissionpolicystatus/config"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/addons.go

    func NewAddonPhase() workflow.Phase {
    	dnsLocalFlags := pflag.NewFlagSet(options.PrintManifest, pflag.ContinueOnError)
    	dnsLocalFlags.BoolVar(&printManifest, options.PrintManifest, printManifest, "Print the addon manifests to STDOUT instead of installing them")
    
    	proxyLocalFlags := pflag.NewFlagSet(options.PrintManifest, pflag.ContinueOnError)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. cmd/fieldnamedocscheck/field_name_docs_check.go

    limitations under the License.
    */
    
    package main
    
    import (
    	"fmt"
    	"os"
    	"regexp"
    	"strings"
    
    	flag "github.com/spf13/pflag"
    	kruntime "k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/klog/v2"
    )
    
    var (
    	typeSrc = flag.StringP("type-src", "s", "", "From where we are going to read the types")
    	re      = regexp.MustCompile("`(\\b\\w+\\b)`")
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 18:32:08 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. releasenotes/notes/drop-legacy-ingress-flag.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 03:04:37 UTC 2023
    - 149 bytes
    - Viewed (0)
  5. istioctl/cmd/options.go

    		rootCmd.PersistentFlags().VisitAll(func(flag *pflag.Flag) {
    			if _, ok := helpFlags[flag.Name]; ok {
    				// Currently every flag.Shorthand is "", so there is no point in showing shorthands
    				shorthand := "   "
    				if flag.Shorthand != "" {
    					shorthand = "-" + flag.Shorthand + ","
    				}
    				c.Printf("  %s --%s: %s\n", shorthand, flag.Name, flag.Usage)
    			}
    		})
    	})
    
    	return retval
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/ephemeralcontroller.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    import (
    	"fmt"
    
    	"github.com/spf13/pflag"
    
    	ephemeralvolumeconfig "k8s.io/kubernetes/pkg/controller/volume/ephemeral/config"
    )
    
    // EphemeralVolumeControllerOptions holds the EphemeralVolumeController options.
    type EphemeralVolumeControllerOptions struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 25 13:36:57 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  7. pkg/log/klog.go

    package log
    
    import (
    	goflag "flag"
    	"fmt"
    	"sync"
    
    	"github.com/spf13/pflag"
    	"k8s.io/klog/v2"
    )
    
    var (
    	KlogScope     = RegisterScope("klog", "")
    	configureKlog = sync.Once{}
    )
    
    // EnableKlogWithCobra enables klog to work with cobra / pflags.
    // k8s libraries like client-go use klog.
    func EnableKlogWithCobra() {
    	gf := klogVerboseFlag()
    	pflag.CommandLine.AddFlag(pflag.PFlagFromGoFlag(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/options/endpointcontroller.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"
    
    	endpointconfig "k8s.io/kubernetes/pkg/controller/endpoint/config"
    )
    
    // EndpointControllerOptions holds the EndPointController options.
    type EndpointControllerOptions struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 24 09:36:53 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

            when:
            def bFlag = file("bFlag")
            file("inputA").createFile()
            buildScript """
                task a {
                    inputs.files file("inputA")
                    outputs.files "build/outputA"
                    doLast {}
                }
                task b {
                    def bFlag = file("bFlag")
                    inputs.files files({
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  10. 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)
Back to top