Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,056 for flagstr (0.34 sec)

  1. src/flag/flag.go

    Integer flags accept 1234, 0664, 0x1234 and may be negative.
    Boolean flags may be:
    
    	1, 0, t, f, T, F, true, false, TRUE, FALSE, True, False
    
    Duration flags accept any input valid for time.ParseDuration.
    
    The default set of command-line flags is controlled by
    top-level functions.  The [FlagSet] type allows one to define
    independent sets of flags, such as to implement subcommands
    in a command-line interface. The methods of [FlagSet] are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  2. src/internal/pkgbits/flags.go

    Matthew Dempsky <******@****.***> 1657649084 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 19:30:30 UTC 2022
    - 253 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    			enabled[a] = enable
    		}
    
    		a.Flags.VisitAll(func(f *flag.Flag) {
    			if !multi && flag.Lookup(f.Name) != nil {
    				log.Printf("%s flag -%s would conflict with driver; skipping", a.Name, f.Name)
    				return
    			}
    
    			name := prefix + f.Name
    			flag.Var(f.Value, name, f.Usage)
    		})
    	}
    
    	// standard flags: -flags, -V.
    	printflags := flag.Bool("flags", false, "print analyzer flags in JSON")
    	addVersionFlag()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/flags.go

    John Howard <******@****.***> 1658767553 +0000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 16:45:53 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. pkg/util/flag/flags.go

    	kubeletconfig "k8s.io/kubernetes/pkg/kubelet/apis/config"
    	utiltaints "k8s.io/kubernetes/pkg/util/taints"
    	netutils "k8s.io/utils/net"
    )
    
    // TODO(mikedanese): remove these flag wrapper types when we remove command line flags
    
    var (
    	_ pflag.Value = &IPVar{}
    	_ pflag.Value = &IPPortVar{}
    	_ pflag.Value = &PortRangeVar{}
    	_ pflag.Value = &ReservedMemoryVar{}
    	_ pflag.Value = &RegisterWithTaintsVar{}
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 19 03:30:46 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/deployment/flags.go

    John Howard <******@****.***> 1658777447 +0000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. src/internal/goexperiment/flags.go

    // and "go version <binary>" if it differs from the default experiments.
    //
    // For the set of experiments supported by the current toolchain, see
    // "go doc goexperiment.Flags".
    //
    // Note that this package defines the set of experiments (in Flags)
    // and records the experiments that were enabled when the package
    // was compiled (as boolean and integer constants).
    //
    // Note especially that this package does not itself change behavior
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. tools/bug-report/pkg/bugreport/flags.go

    Tony Allen <******@****.***> 1699099670 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/flags.h

    #define TENSORFLOW_COMPILER_AOT_FLAGS_H_
    
    #include <string>
    #include <vector>
    
    #include "tensorflow/core/util/command_line_flags.h"
    
    namespace tensorflow {
    namespace tfcompile {
    
    // Flags for the tfcompile binary.  See *.cc file for descriptions.
    
    struct MainFlags {
      string graph;
      string debug_info;
      string debug_info_path_begin_marker;
      string config;
      bool dump_fetch_nodes = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 05 16:55:24 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. cmd/kube-apiserver/app/server.go

    	}
    	cmd.SetContext(genericapiserver.SetupSignalContext())
    
    	fs := cmd.Flags()
    	namedFlagSets := s.Flags()
    	verflag.AddFlags(namedFlagSets.FlagSet("global"))
    	globalflag.AddGlobalFlags(namedFlagSets.FlagSet("global"), cmd.Name(), logs.SkipLoggingConfigurationFlags())
    	options.AddCustomGlobalFlags(namedFlagSets.FlagSet("generic"))
    	for _, f := range namedFlagSets.FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top