Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,940 for frag (0.12 sec)

  1. src/cmd/compile/internal/ssa/flagalloc.go

    			// Walk values backwards to figure out what flag
    			// value we want in the flag register at the start
    			// of the block.
    			var flag *Value
    			for _, c := range b.ControlValues() {
    				if c.Type.IsFlags() {
    					if flag != nil {
    						panic("cannot have multiple controls using flags")
    					}
    					flag = c
    				}
    			}
    			if flag == nil {
    				flag = end[b.ID]
    			}
    			for j := len(b.Values) - 1; j >= 0; j-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  2. pkg/cmd/flag_test.go

    	cmd := &cobra.Command{}
    	var testString string
    	flag.StringVar(&testString, "teststring", defaultString, "test string flag")
    	AddFlags(cmd)
    
    	testName := "Initialize String Flag"
    	if !flag.Parsed() {
    		t.Errorf("%s: flag.Parsed() returns false, should be true", testName)
    	}
    
    	cmd.Flags().VisitAll(func(f *pflag.Flag) {
    		if f.Name != "teststring" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testcarchive/carchive_test.go

    		set(gidlen, &hdr.gid)
    		set(modelen, &hdr.mode)
    		set(sizelen, &hdr.size)
    		hdr.fmag = string(hdrslice[:fmaglen])
    		hdrslice = hdrslice[fmaglen:]
    		if len(hdrslice) != 0 {
    			t.Fatalf("internal error: len(hdrslice) == %d", len(hdrslice))
    		}
    
    		if hdr.fmag != fmag {
    			t.Errorf("%s: invalid fmagic value %q at %d", arname, hdr.fmag, off)
    			return
    		}
    
    		size, err := strconv.ParseInt(hdr.size, 10, 64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/options/constant.go

    	TokenStr = "token"
    
    	// TokenTTL flag sets the time to live for token
    	TokenTTL = "token-ttl"
    
    	// TokenUsages flag sets the usages of the token
    	TokenUsages = "usages"
    
    	// TokenGroups flag sets the authentication groups of the token
    	TokenGroups = "groups"
    
    	// TokenDescription flag sets the description of the token
    	TokenDescription = "description"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. tools/bug-report/pkg/testdata/input/format_json.log

    {"level":"info","time":"2023-05-10T17:43:55.356626Z","msg":"FLAG: --keepaliveTimeout=\"10s\""}
    {"level":"info","time":"2023-05-10T17:43:55.356630Z","msg":"FLAG: --kubeconfig=\"\""}
    {"level":"info","time":"2023-05-10T17:43:55.356636Z","msg":"FLAG: --kubernetesApiBurst=\"160\""}
    {"level":"info","time":"2023-05-10T17:43:55.356643Z","msg":"FLAG: --kubernetesApiQPS=\"80\""}
    {"level":"info","time":"2023-05-10T17:43:55.356647Z","msg":"FLAG: --log_as_json=\"true\""}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 21:44:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. cmd/kube-apiserver/app/options/globalflags_test.go

    	wantedFlag := []string{"help"}
    	pflag.CommandLine.AddGoFlagSet(flag.CommandLine)
    	logs.AddFlags(pflag.CommandLine)
    	normalizeFunc := nfs.GetNormalizeFunc()
    	pflag.VisitAll(func(flag *pflag.Flag) {
    		if !strings.Contains(flag.Name, "test.") {
    			wantedFlag = append(wantedFlag, string(normalizeFunc(nfs, flag.Name)))
    		}
    	})
    	sort.Strings(wantedFlag)
    
    	if !reflect.DeepEqual(wantedFlag, actualFlag) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 30 11:46:49 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. pkg/test/framework/resource/flags.go

    func init() {
    	log.EnableKlogWithGoFlag()
    	flag.StringVar(&settingsFromCommandLine.BaseDir, "istio.test.work_dir", os.TempDir(),
    		"Local working directory for creating logs/temp files. If left empty, os.TempDir() is used.")
    
    	var env string
    	flag.StringVar(&env, "istio.test.env", "", "Deprecated. This flag does nothing")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_profile_flags.txt

    ! stdout .
    stderr '^cannot use -coverprofile flag with -fuzz flag$'
    
    ! go test -fuzz=FuzzTrivial -blockprofile=prof
    ! stdout .
    stderr '^cannot use -blockprofile flag with -fuzz flag$'
    
    ! go test -fuzz=FuzzTrivial -cpuprofile=prof
    ! stdout .
    stderr '^cannot use -cpuprofile flag with -fuzz flag$'
    
    ! go test -fuzz=FuzzTrivial -memprofile=prof
    ! stdout .
    stderr '^cannot use -memprofile flag with -fuzz flag$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 02 18:01:20 UTC 2021
    - 855 bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/hello-probes-with-flag-set-in-annotation.yaml

    John Howard <******@****.***> 1597787025 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 1K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/hello-probes-with-flag-unset-in-annotation.yaml

    John Howard <******@****.***> 1597787025 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 1K bytes
    - Viewed (0)
Back to top