Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 666 for BAZ (0.11 sec)

  1. pkg/config/analysis/analyzers/testdata/virtualservice_overlappingmatches.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: non-method-get
    spec:
      hosts:
      - sample.baz.svc.cluster.local
      http:
      - name: "send product to sample.foo"
        match:
        - uri:
            prefix: "/api/v1/product"
        - uri:
            prefix: "/api/v1/products"
          method:
            exact: GET
        route:
        - destination:
            host: sample.foo.svc.cluster.local
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  2. docs_src/response_model/tutorial006_py310.py

        tax: float = 10.5
    
    
    items = {
        "foo": {"name": "Foo", "price": 50.2},
        "bar": {"name": "Bar", "description": "The Bar fighters", "price": 62, "tax": 20.2},
        "baz": {
            "name": "Baz",
            "description": "There goes my baz",
            "price": 50.2,
            "tax": 10.5,
        },
    }
    
    
    @app.get(
        "/items/{item_id}/name",
        response_model=Item,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jan 07 14:11:31 UTC 2022
    - 816 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/errors_test.go

    	attributes := NewAttributesRecord(
    		&fakeObj{},
    		nil,
    		schema.GroupVersionKind{Group: "foo", Version: "bar", Kind: "Baz"},
    		"",
    		"",
    		schema.GroupVersionResource{Group: "foo", Version: "bar", Resource: "baz"},
    		"",
    		Create,
    		nil,
    		false,
    		nil)
    	err := errors.New("some error")
    	expectedErr := `baz.foo "Unknown/errorGettingName" is forbidden: some error`
    
    	actualErr := NewForbidden(attributes, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 17:49:43 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTestSpecCrossVersionSpec.groovy

            assertTestExecuted(className: 'example.MyTest', methodName: 'foo2', task: ':secondTest')
            assertTestExecuted(className: 'example2.MyOtherTest2', methodName: 'baz', task: ':secondTest')
        }
    
        def "can select test methods"() {
            when:
            launchTests { TestLauncher launcher ->
                launcher.withTestsFor { TestSpecs specs ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/conversion/converter_test.go

    	}
    }
    
    func TestConverter_CallsRegisteredFunctions(t *testing.T) {
    	type A struct {
    		Foo string
    		Baz int
    	}
    	type B struct {
    		Bar string
    		Baz int
    	}
    	type C struct{}
    	c := NewConverter(nil)
    	convertFn1 := func(in *A, out *B, s Scope) error {
    		out.Bar = in.Foo
    		out.Baz = in.Baz
    		return nil
    	}
    	if err := c.RegisterUntypedConversionFunc(
    		(*A)(nil), (*B)(nil),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 06 06:28:24 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/helpers_test.go

    		{
    			in:  &LabelSelector{MatchExpressions: matchExpressions},
    			out: mustParse("baz in (norf,qux)"),
    		},
    		{
    			in:  &LabelSelector{MatchLabels: matchLabels, MatchExpressions: matchExpressions},
    			out: mustParse("baz in (norf,qux),foo=bar"),
    		},
    		{
    			in: &LabelSelector{
    				MatchExpressions: []LabelSelectorRequirement{{
    					Key:      "baz",
    					Operator: LabelSelectorOpExists,
    					Values:   []string{"qux", "norf"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  7. src/os/path_windows_test.go

    		{`long.txt`, `\\?\C:\cwd\long.txt`},
    		{`C:long.txt`, `\\?\C:\cwd\long.txt`},
    		{`C:\long\.\bar\baz`, `\\?\C:\long\bar\baz`},
    		{`C:long\.\bar\baz`, `\\?\C:\cwd\long\bar\baz`},
    		{`C:\long\..\bar\baz`, `\\?\C:\bar\baz`},
    		{`C:long\..\bar\baz`, `\\?\C:\cwd\bar\baz`},
    		{`C:\long\foo\\bar\.\baz\\`, `\\?\C:\long\foo\bar\baz\`},
    		{`C:\long\..`, `\\?\C:\`},
    		{`C:\.\long\..\.`, `\\?\C:\`},
    		{`\\?\C:\long\foo.txt`, `\\?\C:\long\foo.txt`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. docs_src/response_model/tutorial005.py

        tax: float = 10.5
    
    
    items = {
        "foo": {"name": "Foo", "price": 50.2},
        "bar": {"name": "Bar", "description": "The Bar fighters", "price": 62, "tax": 20.2},
        "baz": {
            "name": "Baz",
            "description": "There goes my baz",
            "price": 50.2,
            "tax": 10.5,
        },
    }
    
    
    @app.get(
        "/items/{item_id}/name",
        response_model=Item,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 848 bytes
    - Viewed (0)
  9. docs_src/response_model/tutorial006.py

        tax: float = 10.5
    
    
    items = {
        "foo": {"name": "Foo", "price": 50.2},
        "bar": {"name": "Bar", "description": "The Bar fighters", "price": 62, "tax": 20.2},
        "baz": {
            "name": "Baz",
            "description": "There goes my baz",
            "price": 50.2,
            "tax": 10.5,
        },
    }
    
    
    @app.get(
        "/items/{item_id}/name",
        response_model=Item,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 848 bytes
    - Viewed (0)
  10. cmd/kubeadm/app/componentconfigs/checksums_test.go

    			},
    			BinaryData: map[string][]byte{
    				"bar": []byte("baz"),
    			},
    		},
    	},
    	{
    		desc:     "config keys have no effect on the checksum",
    		checksum: "sha256:c8f8b724728a6d6684106e5e64e94ce811c9965d19dd44dd073cf86cf43bc238",
    		configMap: &v1.ConfigMap{
    			Data: map[string]string{
    				"foo2": "bar",
    			},
    			BinaryData: map[string][]byte{
    				"bar2": []byte("baz"),
    			},
    		},
    	},
    	{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 5.8K bytes
    - Viewed (0)
Back to top