Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 604 for baz2 (0.18 sec)

  1. pilot/pkg/model/config_test.go

    		{"10DestRuleWildcardMatch", host.Name("foo.bar.baz.com.10"), "*.bar.baz.com", []host.Name{}, nil, nil, 10, true},
    		{"50DestRuleWildcardMatch", host.Name("foo.bar.baz.com.50"), "*.bar.baz.com", []host.Name{}, nil, nil, 50, true},
    		{"100DestRuleWildcardMatch", host.Name("foo.bar.baz.com.100"), "*.bar.baz.com", []host.Name{}, nil, nil, 100, true},
    		{"1000DestRuleWildcardMatch", host.Name("foo.bar.baz.com.1000"), "*.bar.baz.com", []host.Name{}, nil, nil, 1000, true},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 19K 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. pilot/pkg/model/sidecar_test.go

    			},
    		},
    		{
    			Hostname: "baz.svc.cluster.local",
    			Ports:    twoPorts,
    			Attributes: ServiceAttributes{
    				Name:      "baz",
    				Namespace: "ns3",
    			},
    		},
    	}
    
    	services22 = []*Service{
    		{
    			Hostname: "baz.svc.cluster.local",
    			Ports:    port7443,
    			Attributes: ServiceAttributes{
    				Name:      "baz",
    				Namespace: "ns3",
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top