Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 216 for vflag (0.05 sec)

  1. src/cmd/go/internal/list/list.go

    	}
    	CmdList.Flag.Var(&listJsonFields, "json", "")
    }
    
    var (
    	listCompiled   = CmdList.Flag.Bool("compiled", false, "")
    	listDeps       = CmdList.Flag.Bool("deps", false, "")
    	listE          = CmdList.Flag.Bool("e", false, "")
    	listExport     = CmdList.Flag.Bool("export", false, "")
    	listFmt        = CmdList.Flag.String("f", "", "")
    	listFind       = CmdList.Flag.Bool("find", false, "")
    	listJson       bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      // `weight_quantization` flag needs to set to true. When DT_QUINT8 is used,
      // the `weight_quantization` flag needs to set to false.
      tensorflow::DataType inference_type = tensorflow::DT_FLOAT;
    
      // The input and output data type during inference. This flag is only used
      // when `inference_type` is different from DT_FLOAT. This flag can only be set
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/container_manager_linux.go

    		case KernelTunableWarn:
    			klog.V(2).InfoS("Invalid kernel flag", "flag", flag, "expectedValue", expectedValue, "actualValue", val)
    		case KernelTunableModify:
    			klog.V(2).InfoS("Updating kernel flag", "flag", flag, "expectedValue", expectedValue, "actualValue", val)
    			err = sysctl.SetSysctl(flag, expectedValue)
    			if err != nil {
    				if inuserns.RunningInUserNS() {
    					if utilfeature.DefaultFeatureGate.Enabled(kubefeatures.KubeletInUserNamespace) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. src/os/file_plan9.go

    func openFileNolog(name string, flag int, perm FileMode) (*File, error) {
    	var (
    		fd     int
    		e      error
    		create bool
    		excl   bool
    		trunc  bool
    		append bool
    	)
    
    	if flag&O_CREATE == O_CREATE {
    		flag = flag & ^O_CREATE
    		create = true
    	}
    	if flag&O_EXCL == O_EXCL {
    		excl = true
    	}
    	if flag&O_TRUNC == O_TRUNC {
    		trunc = true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. src/go/types/check_test.go

    			errlist = append(errlist, err)
    		}
    	}
    
    	// apply custom configuration
    	for _, opt := range opts {
    		opt(&conf)
    	}
    
    	// apply flag setting (overrides custom configuration)
    	var goexperiment, gotypesalias string
    	flags := flag.NewFlagSet("", flag.PanicOnError)
    	flags.StringVar(&conf.GoVersion, "lang", "", "")
    	flags.StringVar(&goexperiment, "goexperiment", "", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/check_test.go

    import (
    	"bytes"
    	"cmd/compile/internal/syntax"
    	"flag"
    	"fmt"
    	"internal/buildcfg"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"reflect"
    	"regexp"
    	"runtime"
    	"strconv"
    	"strings"
    	"testing"
    
    	. "cmd/compile/internal/types2"
    )
    
    var (
    	haltOnError  = flag.Bool("halt", false, "halt on error")
    	verifyErrors = flag.Bool("verify", false, "verify errors (rather than list them) in TestManual")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/vendor.go

    needed to build and test all the main module's packages.
    It does not include test code for vendored packages.
    
    The -v flag causes vendor to print the names of vendored
    modules and packages to standard error.
    
    The -e flag causes vendor to attempt to proceed despite errors
    encountered while loading packages.
    
    The -o flag causes vendor to create the vendor directory at the given
    path instead of "vendor". The go command can only use a vendor directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/server_test.go

    			},
    			expected: func() *kubeproxyconfig.KubeProxyConfiguration {
    				c := expected.DeepCopy()
    				c.Logging = *expectedLoggingConfig.DeepCopy()
    				// Flag wins.
    				c.Logging.Verbosity = 7
    				// Flag and config get merged with command line flags first.
    				c.Logging.VModule = append([]logsapi.VModuleItem{
    					{
    						FilePattern: "goo.go",
    						Verbosity:   8,
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. cmd/kube-proxy/app/server.go

    	logsapi.AddFlags(to, &cloneFS)
    	vmodule := to.VModule
    	to.VModule = nil
    	var err error
    	cloneFS.VisitAll(func(f *pflag.Flag) {
    		if err != nil {
    			return
    		}
    		fsFlag := from.Lookup(f.Name)
    		if fsFlag == nil {
    			err = fmt.Errorf("logging flag %s not found in flag set", f.Name)
    			return
    		}
    		if !fsFlag.Changed {
    			return
    		}
    		if setErr := f.Value.Set(fsFlag.Value.String()); setErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  10. operator/pkg/manifest/shared.go

    		// set flag installPackagePath has the highest precedence, if set.
    		installPackagePath = sfp
    	}
    
    	// To generate the base profileOrPath for overlaying with user values, we need the installPackagePath where the profiles
    	// can be found, and the selected profileOrPath. Both of these can come from either the user overlay file or --set flag.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top