Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 680 for flagstr (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/go/internal/base/flag.go

    	flags.Func("C", "AddChdirFlag", ChdirFlag)
    }
    
    // AddModFlag adds the -mod build flag to the flag set.
    func AddModFlag(flags *flag.FlagSet) {
    	flags.Var(explicitStringFlag{value: &cfg.BuildMod, explicit: &cfg.BuildModExplicit}, "mod", "")
    }
    
    // AddModCommonFlags adds the module-related flags common to build commands
    // and 'go mod' subcommands.
    func AddModCommonFlags(flags *flag.FlagSet) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/options/token.go

    	return bto
    }
    
    // BootstrapTokenOptions is a wrapper struct for adding bootstrap token-related flags to a FlagSet
    // and applying the parsed flags to a InitConfiguration object later at runtime
    // TODO: In the future, we might want to group the flags in a better way than adding them all individually like this
    type BootstrapTokenOptions struct {
    	*bootstraptokenv1.BootstrapToken
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/options/generic.go

    func AddKubernetesVersionFlag(fs *pflag.FlagSet, kubernetesVersion *string) {
    	fs.StringVar(
    		kubernetesVersion, KubernetesVersion, *kubernetesVersion,
    		`Choose a specific Kubernetes version for the control plane.`,
    	)
    }
    
    // AddKubeadmOtherFlags adds flags that are not bound to a configuration file to the given flagset
    func AddKubeadmOtherFlags(flagSet *pflag.FlagSet, rootfsPath *string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/unveil_openbsd.go

    // unveil calls is handled by UnveilBlock.
    func Unveil(path string, flags string) error {
    	if err := supportsUnveil(); err != nil {
    		return err
    	}
    	pathPtr, err := BytePtrFromString(path)
    	if err != nil {
    		return err
    	}
    	flagsPtr, err := BytePtrFromString(flags)
    	if err != nil {
    		return err
    	}
    	return unveil(pathPtr, flagsPtr)
    }
    
    // UnveilBlock blocks future unveil calls.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/transport/transport.go

    // specified cert, key, and ca. The flags tls_cert, tls_key, and tls_ca are
    // added to the flagset to allow a user to specify the cert, key, and ca. If
    // the flagset is nil, no flags will be added, and users will not be able to
    // use these flags.
    func New(flagset plugin.FlagSet) http.RoundTripper {
    	if flagset == nil {
    		return &transport{}
    	}
    	flagset.AddExtraUsage(extraUsage)
    	return &transport{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java

                    path = readString( buffer, start + pathOffset, len, (flags2 & FLAGS2_UNICODE) != 0);
                    if (nodeOffset > 0)
                        node = readString( buffer, start + nodeOffset, len, (flags2 & FLAGS2_UNICODE) != 0);
                } else if( version == 1 ) {
                    node = readString( buffer, bufferIndex, len, (flags2 & FLAGS2_UNICODE) != 0);
                }
    
                return size;
            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5K bytes
    - Viewed (0)
  10. pkg/cmd/cmd.go

    	<-sigs
    	cancel()
    	_ = log.Sync()
    }
    
    // AddFlags adds all command line flags to the given command.
    func AddFlags(rootCmd *cobra.Command) {
    	rootCmd.PersistentFlags().AddGoFlagSet(flag.CommandLine)
    }
    
    // PrintFlags logs the flags in the flagset
    func PrintFlags(flags *pflag.FlagSet) {
    	flags.VisitAll(func(flag *pflag.Flag) {
    		log.Infof("FLAG: --%s=%q", flag.Name, flag.Value)
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top