Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 558 for flag (0.16 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/input/flag_force.yaml

    Martin Ostrowski <******@****.***> 1581043003 -0800
    Others
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Fri Feb 07 02:36:43 GMT 2020
    - 171 bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/input/flag_output.yaml

    John Howard <******@****.***> 1578852924 -0800
    Others
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Sun Jan 12 18:15:24 GMT 2020
    - 126 bytes
    - Viewed (0)
  3. internal/config/bool-flag.go

    Anis Elleuch <******@****.***> 1649344240 +0100
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Apr 07 15:10:40 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/flag_force.golden.yaml

    Martin Ostrowski <******@****.***> 1584382771 -0700
    Others
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Mon Mar 16 18:19:31 GMT 2020
    - Viewed (0)
  5. internal/config/bool-flag_test.go

    	}
    
    	for _, testCase := range testCases {
    		var flag BoolFlag
    		err := (&flag).UnmarshalJSON(testCase.data)
    		if !testCase.expectedErr && err != nil {
    			t.Fatalf("error: expected = <nil>, got = %v", err)
    		}
    		if testCase.expectedErr && err == nil {
    			t.Fatalf("error: expected error, got = <nil>")
    		}
    		if err == nil && testCase.expectedResult != flag {
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 3.5K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/flag_output.golden.yaml

    John Howard <******@****.***> 1701468465 -0800
    Others
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Fri Dec 01 22:07:45 GMT 2023
    - 4.2K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/flag_output_set_values.golden.yaml

    John Howard <******@****.***> 1701468465 -0800
    Others
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Fri Dec 01 22:07:45 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/output/flag_values_enable_egressgateway.golden.yaml

    Xiaopeng Han <******@****.***> 1690313976 +0800
    Others
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Tue Jul 25 19:39:36 GMT 2023
    - 566 bytes
    - Viewed (0)
  9. istioctl/cmd/root_test.go

    	"github.com/spf13/cobra"
    )
    
    func checkHelpForFlag(t *testing.T, gotHelpText, flag string, wantExists bool) {
    	t.Helper()
    
    	if strings.Contains(gotHelpText, flag) != wantExists {
    		if wantExists {
    			t.Errorf("%q flag was expected but not found in help text", flag)
    		} else {
    			t.Errorf("%q flag was found in help text but not expected", flag)
    		}
    	}
    }
    
    func TestHideInheritedFlags(t *testing.T) {
    	const (
    Go
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Fri Jan 15 17:59:55 GMT 2021
    - 2.4K bytes
    - Viewed (0)
  10. 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")
    Go
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Tue Aug 22 19:18:23 GMT 2023
    - 2.8K bytes
    - Viewed (0)
Back to top