Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for BAZ (0.12 sec)

  1. pkg/config/validation/validation_test.go

    				Destination: &networking.Destination{Host: "foo.baz.east"},
    				Weight:      75,
    			}},
    		}, valid: true},
    		{name: "total weight > 100", route: &networking.HTTPRoute{
    			Route: []*networking.HTTPRouteDestination{{
    				Destination: &networking.Destination{Host: "foo.baz.south"},
    				Weight:      550,
    			}, {
    				Destination: &networking.Destination{Host: "foo.baz.east"},
    				Weight:      500,
    			}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    						type: string
    						x-kubernetes-validations:
    						- rule: self == "bar"
    						  message: "gotta be baz"
    				`),
    			oldObj: mustUnstructured(`
    				foo: baz
    			`),
    			newObj: mustUnstructured(`
    				foo: baz
    			`),
    			warnings: []string{
    				`root.foo: Invalid value: "string": gotta be baz`,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    							},
    							{
    								Key:             "example.org/baz",
    								ValueExpression: "claims.baz",
    							},
    						},
    					},
    					UserValidationRules: []apiserver.UserValidationRule{
    						{
    							Expression: "'bar' in user.extra['example.org/foo'] && 'qux' in user.extra['example.org/baz']",
    							Message:    "example.org/foo must be bar and example.org/baz must be 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)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		invalidYAMLDataPost = []byte(`apiVersion: test.group/version
    kind: Simple
    metadata:
      creationTimestamp: null
    other: foo
    other: bar
    unknown: baz`)
    
    		invalidJSONDataPut = []byte(`{"kind":"Simple", "apiVersion":"test.group/version", "metadata":{"name":"id", "creationTimestamp":null}, "other":"foo","other":"bar","unknown":"baz"}`)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    	}{
    		// normal http
    		{"http://foobar.com/baz", "http://foobar.com/baz"},
    		// normal https
    		{"https://foobar.com/baz", "https://foobar.com/baz"},
    		// custom scheme
    		{"test://foobar.com/baz", "test://foobar.com/baz"},
    		// schemeless
    		{"//foobar.com/baz", "//foobar.com/baz"},
    		// relative to the root
    		{"/foobar.com/baz", "/foobar.com/baz"},
    		// relative to the current path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods_test.go

    fe00::1	ip6-allnodes
    fe00::2	ip6-allrouters
    123.45.67.89	some.domain
    
    # Entries added by HostAliases.
    123.45.67.89	foo	bar	baz
    `,
    		},
    		{
    			hostsFileName: "hosts_test_file2_with_host_aliases",
    			hostAliases: []v1.HostAlias{
    				{IP: "123.45.67.89", Hostnames: []string{"foo", "bar", "baz"}},
    				{IP: "456.78.90.123", Hostnames: []string{"park", "doo", "boo"}},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //	                        b.go
    //	                baz/           (go code in package baz)
    //	                    z.go
    //	            quux/              (go code in package main)
    //	                y.go
    //
    // The same visibility rules apply as for internal, but the code
    // in z.go is imported as "baz", not as "foo/vendor/baz".
    //
    // Code in vendor directories deeper in the source tree shadows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. pkg/apis/batch/validation/validation_test.go

    					Selector: validGeneratedSelector,
    					Template: validPodTemplateSpecForGenerated,
    				},
    			},
    			update: func(job *batch.Job) {
    				job.Spec.Template.Annotations = map[string]string{"foo": "baz"}
    			},
    			err: &field.Error{
    				Type:  field.ErrorTypeInvalid,
    				Field: "spec.template",
    			},
    		},
    		"mutable annotations": {
    			old: batch.Job{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    				&v1.Service{Spec: v1.ServiceSpec{Selector: map[string]string{"baz": "kep"}}},
    			},
    			wantPrefilterStatus: framework.NewStatus(framework.Skip),
    		},
    		{
    			name: "default constraints and a service, but pod has constraints",
    			pod: st.MakePod().Name("p").Label("foo", "bar").Label("baz", "tar").
    				SpreadConstraint(1, "zone", v1.DoNotSchedule, st.MakeLabelSelector().Label("baz", "tar").Obj(), nil, nil, nil, nil).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

      http:
      - corsPolicy:
          allowOrigins:
          - exact: cors.com
          allowMethods:
          - POST
          - GET
          allowCredentials: false
          allowHeaders:
          - X-Foo-Bar
          - X-Foo-Baz
          maxAge: "24h"
        route:
        - destination:
            host: {{ .dstSvc }}
    `,
    		children: []TrafficCall{
    			{
    				name: "preflight",
    				opts: func() echo.CallOptions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top