Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 892 for rflags (0.13 sec)

  1. pkg/test/framework/components/environment/kube/flags.go

    	return nil
    }
    
    var _ config.Value = &configsVal{}
    
    // init registers the command-line flags that we can exposed for "go test".
    func init() {
    	flag.StringVar(&kubeConfigs, "istio.test.kube.config", "",
    		"A comma-separated list of paths to kube config files for cluster environments.")
    	flag.BoolVar(&settingsFromCommandLine.LoadBalancerSupported, "istio.test.kube.loadbalancer", settingsFromCommandLine.LoadBalancerSupported,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/goflags.txt

    env GOFLAGS=-f
    ! go list runtime
    stderr '^go: flag needs an argument: -f \(from (\$GOFLAGS|%GOFLAGS%)\)$'
    
    env GOFLAGS=-e=asdf
    ! go list runtime
    stderr '^go: invalid boolean value \"asdf\" for flag -e \(from (\$GOFLAGS|%GOFLAGS%)\)'
    
    # except in go bug (untested) and go env
    go env
    stdout GOFLAGS
    
    # Flags listed in GOFLAGS should be safe to duplicate on the command line.
    env GOFLAGS=-tags=magic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:47:27 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/flags.cc

      jitrt_flag_list = new std::vector<Flag>({
          Flag("always_specialize", &jitrt_flags->always_specialize, ""),
          Flag("cost_driven_async_parallel_for",
               &jitrt_flags->cost_driven_async_parallel_for, ""),
          Flag("enable_crash_reproducer", &jitrt_flags->enable_crash_reproducer,
               ""),
          Flag("log_query_of_death", &jitrt_flags->log_query_of_death, ""),
          Flag("vectorize", &jitrt_flags->vectorize, ""),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  4. hack/verify-flags-underscore.py

        return all_files
    
    # Collects all the flags used in golang files and verifies the flags do
    # not contain underscore. If any flag needs to be excluded from this check,
    # need to add that flag in hack/verify-flags/excluded-flags.txt.
    def check_underscore_in_flags(rootdir, files):
        # preload the 'known' flags which don't follow the - standard
        pathname = os.path.join(rootdir, "hack/verify-flags/excluded-flags.txt")
        f = open(pathname, 'r')
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/flag.go

    }
    
    // For returns the flags to use for the given package.
    func (f *PerPackageFlag) For(p *Package) []string {
    	flags := []string{}
    	for _, v := range f.values {
    		if v.match(p) {
    			flags = v.flags
    		}
    	}
    	return flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 20:20:43 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/base/flag.go

    }
    
    // AddBuildFlagsNX adds the -n and -x build flags to the flag set.
    func AddBuildFlagsNX(flags *flag.FlagSet) {
    	flags.BoolVar(&cfg.BuildN, "n", false, "")
    	flags.BoolVar(&cfg.BuildX, "x", false, "")
    }
    
    // AddChdirFlag adds the -C flag to the flag set.
    func AddChdirFlag(flags *flag.FlagSet) {
    	// The usage message is never printed, but it's used in chdir_test.go
    	// to identify that the -C flag is from AddChdirFlag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/runtime/defs_freebsd_386.go

    }
    
    type itimerval struct {
    	it_interval timeval
    	it_value    timeval
    }
    
    type umtx_time struct {
    	_timeout timespec
    	_flags   uint32
    	_clockid uint32
    }
    
    type keventt struct {
    	ident  uint32
    	filter int16
    	flags  uint16
    	fflags uint32
    	data   int64
    	udata  *byte
    	ext    [4]uint64
    }
    
    type bintime struct {
    	sec  int32
    	frac uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. src/runtime/defs_freebsd_riscv64.go

    }
    
    type itimerval struct {
    	it_interval timeval
    	it_value    timeval
    }
    
    type umtx_time struct {
    	_timeout timespec
    	_flags   uint32
    	_clockid uint32
    }
    
    type keventt struct {
    	ident  uint64
    	filter int16
    	flags  uint16
    	fflags uint32
    	data   int64
    	udata  *byte
    	ext    [4]uint64
    }
    
    type bintime struct {
    	sec  int64
    	frac uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/flags/flags.go

    	fmt.Fprintf(os.Stderr, "usage: asm [options] file.s ...\n")
    	fmt.Fprintf(os.Stderr, "Flags:\n")
    	flag.PrintDefaults()
    	os.Exit(2)
    }
    
    func Parse() {
    	objabi.Flagparse(Usage)
    	if flag.NArg() == 0 {
    		flag.Usage()
    	}
    
    	// Flag refinement.
    	if *OutputFile == "" {
    		if flag.NArg() != 1 {
    			flag.Usage()
    		}
    		input := filepath.Base(flag.Arg(0))
    		input = strings.TrimSuffix(input, ".s")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:23 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/kubelet/flags.go

    }
    
    // writeKubeletFlagBytesToDisk writes a byte slice down to disk at the specific location of the kubelet flag overrides file
    func writeKubeletFlagBytesToDisk(b []byte, kubeletDir string) error {
    	kubeletEnvFilePath := filepath.Join(kubeletDir, constants.KubeletEnvFileName)
    	fmt.Printf("[kubelet-start] Writing kubelet environment file with flags to file %q\n", kubeletEnvFilePath)
    
    	// creates target folder if not already exists
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top