Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for in_arg (0.19 sec)

  1. src/text/template/exec_test.go

    	{"bug16e", "{{0i|printf}}", "", tVal, false},
    	{"bug16f", "{{true|twoArgs \"xxx\"}}", "", tVal, false},
    	{"bug16g", "{{\"aaa\" |twoArgs \"bbb\"}}", "twoArgs=bbbaaa", tVal, true},
    	{"bug16h", "{{1|oneArg}}", "", tVal, false},
    	{"bug16i", "{{\"aaa\"|oneArg}}", "oneArg=aaa", tVal, true},
    	{"bug16j", "{{1+2i|printf \"%v\"}}", "(1+2i)", tVal, true},
    	{"bug16k", "{{\"aaa\"|printf }}", "aaa", tVal, true},
    	{"bug17a", "{{.NonEmptyInterface.X}}", "x", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    // TestPlugin returns Error status when trying to `AddPod` or `RemovePod` on the nodes which have the {k,v} label pair defined on the nodes.
    type TestPlugin struct {
    	name string
    }
    
    func newTestPlugin(_ context.Context, injArgs runtime.Object, f framework.Handle) (framework.Plugin, error) {
    	return &TestPlugin{name: "test-plugin"}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    	if nlines := len(parts) - 1; nlines < 1 {
    		fatalf("Error running %s: output contains <1 lines\n%s", cmd, cmd.Stderr)
    	}
    	t.cgoEnabled, _ = strconv.ParseBool(parts[0])
    
    	if flag.NArg() > 0 && t.runRxStr != "" {
    		fatalf("the -run regular expression flag is mutually exclusive with test name arguments")
    	}
    
    	t.runNames = flag.Args()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top