Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for foons (0.15 sec)

  1. pkg/dns/client/dns_test.go

    		},
    		{
    			name:     "success: wild card with namespace with domain returns A record correctly",
    			host:     "foo.foons.svc.mesh.company.net.",
    			expected: a("foo.foons.svc.mesh.company.net.", []netip.Addr{netip.MustParseAddr("10.1.2.3")}),
    		},
    		{
    			name: "success: wild card with search domain returns A record correctly",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. pkg/config/mesh/mesh_test.go

    ingressClass: foo
    enableTracing: false
    trustDomainAliases: ["default", "both"]
    defaultServiceExportTo: 
    - "foo"
    outboundTrafficPolicy:
      mode: REGISTRY_ONLY
    clusterLocalNamespaces: 
    - "foons"
    defaultProviders:
      tracing: [foo]
    extensionProviders:
    - name: sd
      stackdriver: {}
    defaultConfig:
      tracing: {}
      concurrency: 4`)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. test/fixedbugs/issue12006.go

    	vals = append(vals, x)
    	sink = vals
    	return FooN(vals...)
    }
    
    func FooNz(vals ...*int) (s int) { // ERROR "leaking param: vals"
    	sink = vals
    	return FooN(vals...)
    }
    
    func TFooN() {
    	for i := 0; i < 1000; i++ {
    		var i, j int
    		FooN(&i, &j) // ERROR "... argument does not escape"
    	}
    }
    
    func TFooNx() {
    	for i := 0; i < 1000; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go

    			validateError:   okFn,
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			crd := &apiextensions.CustomResourceDefinition{
    				ObjectMeta: metav1.ObjectMeta{Name: "foos." + test.group, Annotations: map[string]string{v1beta1.KubeAPIApprovedAnnotation: test.annotationValue}, ResourceVersion: "1"},
    				Spec: apiextensions.CustomResourceDefinitionSpec{
    					Group:    test.group,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width_test.go

    			requestInfo: &apirequest.RequestInfo{
    				Verb:     "delete",
    				APIGroup: "foo.bar",
    				Resource: "foos",
    			},
    			maxSeats:                  10,
    			initialSeatsExpected:      1,
    			finalSeatsExpected:        0,
    			additionalLatencyExpected: 0,
    		},
    		{
    			name:       "request verb is delete, watches registered",
    			requestURI: "http://server/apis/foo.bar/v1/foos/myfoo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status_test.go

    			Status:  metav1.StatusFailure,
    			Code:    http.StatusConflict,
    			Reason:  "AlreadyExists",
    			Message: "foos \"bar\" already exists",
    			Details: &metav1.StatusDetails{
    				Group: "",
    				Kind:  "foos",
    				Name:  "bar",
    			},
    		},
    		errors.NewConflict(schema.GroupResource{Resource: "foos"}, "bar", stderrs.New("failure")): {
    			Status:  metav1.StatusFailure,
    			Code:    http.StatusConflict,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 05 13:03:34 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/defaulting_test.go

    	foos, err := fooClient.List(context.TODO(), metav1.ListOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    	for _, foo := range foos.Items {
    		mustExist(foo.Object, [][]string{{"spec", "a"}, {"spec", "b"}, {"spec", "c"}, {"status", "a"}, {"status", "b"}, {"status", "c"}})
    	}
    
    	t.Logf("verify LIST from cache sees 'c' in both status and spec")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/LinkedListMultimapTest.java

        }
      }
    
      public void testLinkedGetAdd() {
        LinkedListMultimap<String, Integer> map = create();
        map.put("bar", 1);
        Collection<Integer> foos = map.get("foo");
        foos.add(2);
        foos.add(3);
        map.put("bar", 4);
        map.put("foo", 5);
        assertEquals("{bar=[1, 4], foo=[2, 3, 5]}", map.toString());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder_test.go

    				"/apis/foo-group/foo-version/namespaces/{namespace}/foos/{name}/scale":  {expectNamespaceParam: true, expectNameParam: true, expectedActions: sets.NewString("get", "patch", "put")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/openapi/proto_test.go

    					Title:   "Kubernetes",
    					Version: "0.0.0",
    				},
    			},
    			Definitions: spec.Definitions{
    				"io.k8s.api.testgroup.v1.Foo": spec.Schema{
    					SchemaProps: spec.SchemaProps{
    						Description: "Description of Foos",
    						Properties:  map[string]spec.Schema{},
    					},
    					VendorExtensible: spec.VendorExtensible{
    						Extensions: spec.Extensions{
    							"x-kubernetes-group-version-kind": []interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 21 09:31:49 UTC 2021
    - 2.2K bytes
    - Viewed (0)
Back to top