Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Qux (0.03 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    				"uid": "1234",
    				"foo": "bar",
    				"bar": [
    					"baz",
    					"qux"
    				]
    			}`, valid.Unix()),
    			want: &user.DefaultInfo{
    				Name:   "jane",
    				Groups: []string{"team1", "team2"},
    				UID:    "1234",
    				Extra: map[string][]string{
    					"example.org/foo": {"bar"},
    					"example.org/bar": {"baz", "qux"},
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    	c := ts.Client()
    
    	cases := []struct {
    		reqPath string
    		path    string // If empty we want a 404.
    		rawPath string
    	}{
    		{"/foo/bar/qux", "/qux", ""},
    		{"/foo/bar%2Fqux", "/qux", "%2Fqux"},
    		{"/foo%2Fbar/qux", "", ""}, // Escaped prefix does not match.
    		{"/bar", "", ""},           // No prefix match.
    	}
    	for _, tc := range cases {
    		t.Run(tc.reqPath, func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top