Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for bool_flag (0.15 sec)

  1. tensorflow/compiler/mlir/python/BUILD

    load("@bazel_skylib//rules:common_settings.bzl", "bool_flag")
    load("//tensorflow:tensorflow.default.bzl", "filegroup")
    load("//tensorflow/core/platform:rules_cc.bzl", "cc_library")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:public"],
        licenses = ["notice"],
    )
    
    bool_flag(
        name = "disable_mlir",
        build_setting_default = False,
    )
    
    config_setting(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 07 23:17:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/BUILD

    # Description:
    # TensorFlow is a computational framework, primarily for use in machine
    # learning applications.
    
    load("@bazel_skylib//lib:selects.bzl", "selects")
    load("@bazel_skylib//rules:common_settings.bzl", "bool_flag", "bool_setting")
    load("@local_config_cuda//cuda:build_defs.bzl", "if_cuda")
    load(
        "//tensorflow:tensorflow.bzl",
        "VERSION",
        "VERSION_MAJOR",
        "check_deps",
        "if_google",
        "if_oss",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  3. src/flag/flag_test.go

    	if err := f.Parse(args); err != nil {
    		t.Fatal(err)
    	}
    	if !f.Parsed() {
    		t.Error("f.Parse() = false after Parse")
    	}
    	if *boolFlag != true {
    		t.Error("bool flag should be true, is ", *boolFlag)
    	}
    	if *bool2Flag != true {
    		t.Error("bool2 flag should be true, is ", *bool2Flag)
    	}
    	if *intFlag != 22 {
    		t.Error("int flag should be 22, is ", *intFlag)
    	}
    	if *int64Flag != 0x23 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. cmd/main.go

    		Usage: "path to certs directory",
    	},
    	cli.BoolFlag{
    		Name:  "quiet",
    		Usage: "disable startup and info messages",
    	},
    	cli.BoolFlag{
    		Name:  "anonymous",
    		Usage: "hide sensitive information from logging",
    	},
    	cli.BoolFlag{
    		Name:  "json",
    		Usage: "output logs in JSON format",
    	},
    	// Deprecated flag, so its hidden now, existing deployments will keep working.
    	cli.BoolFlag{
    		Name:   "compat",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/base/goflags.go

    			if hideErrors {
    				continue
    			}
    			Fatalf("go: parsing $GOFLAGS: unknown flag -%s", name)
    		}
    	}
    }
    
    // boolFlag is the optional interface for flag.Value known to the flag package.
    // (It is not clear why package flag does not export this interface.)
    type boolFlag interface {
    	flag.Value
    	IsBoolFlag() bool
    }
    
    // SetFromGOFLAGS sets the flags in the given flag set using settings in $GOFLAGS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/util/cmdutil_test.go

    		flagValue interface{}
    		expected  interface{}
    	}{
    		{
    			name:      "string: config is overridden by the flag",
    			flag:      "foo",
    			cfg:       "foo_cfg",
    			flagValue: "foo_flag",
    			expected:  "foo_flag",
    		},
    		{
    			name:      "bool: config is overridden by the flag",
    			flag:      "bar",
    			cfg:       true,
    			flagValue: false,
    			expected:  false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. cmd/config-versions.go

    	Version string `json:"version"`
    
    	// S3 API configuration.
    	Credential auth.Credentials `json:"credential"`
    	Region     string           `json:"region"`
    	Worm       config.BoolFlag  `json:"worm"`
    
    	// Storage class configuration
    	StorageClass storageclass.Config `json:"storageclass"`
    
    	// Notification queue configuration.
    	Notify notify.Config `json:"notify"`
    
    	// Logger configuration
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. docs/debugging/xl-meta/main.go

    	app.HideHelpCommand = true
    	app.Flags = []cli.Flag{
    		cli.BoolFlag{
    			Usage:  "print each file as a separate line without formatting",
    			Name:   "ndjson",
    			Hidden: true,
    		},
    		cli.BoolFlag{
    			Usage: "display inline data keys and sizes",
    			Name:  "data",
    		},
    		cli.BoolFlag{
    			Usage: "export inline data",
    			Name:  "export",
    		},
    		cli.BoolFlag{
    			Usage: "combine inline data",
    			Name:  "combine",
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    	setTrue
    	setFalse
    )
    
    func triStateFlag(name string, value triState, usage string) *triState {
    	flag.Var(&value, name, usage)
    	return &value
    }
    
    // triState implements flag.Value, flag.Getter, and flag.boolFlag.
    // They work like boolean flags: we can say vet -printf as well as vet -printf=true
    func (ts *triState) Get() interface{} {
    	return *ts == setTrue
    }
    
    func (ts triState) isTrue() bool {
    	return ts == setTrue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/flag/flag.go

    func (b *boolValue) IsBoolFlag() bool { return true }
    
    // optional interface to indicate boolean flags that can be
    // supplied without "=value" text
    type boolFlag interface {
    	Value
    	IsBoolFlag() bool
    }
    
    // -- int Value
    type intValue int
    
    func newIntValue(val int, p *int) *intValue {
    	*p = val
    	return (*intValue)(p)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
Back to top