Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 60 for foo_ns (0.11 sec)

  1. 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)
  2. src/runtime/race/testdata/rangefunc_test.go

    // therefore foo can early exit.
    func TestRaceRangeFuncIterator(t *testing.T) {
    	x := foo(4)
    	t.Logf("foo(4)=%d", x)
    }
    
    // TestNoRaceRangeFuncIterator does not race because x%5 is never 5,
    // therefore foo's loop will not exit early, and this it will not race.
    func TestNoRaceRangeFuncIterator(t *testing.T) {
    	x := foo(5)
    	t.Logf("foo(5)=%d", x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context_test.go

    		},
    	}
    	rootNS := config.Config{
    		Meta: config.Meta{
    			Name:             "zzz",
    			Namespace:        "zzz",
    			GroupVersionKind: gvk.VirtualService,
    		},
    		Spec: &networking.VirtualService{
    			Hosts: []string{"rootNS.com"},
    		},
    	}
    
    	for _, c := range []config.Config{rule1, rule2, rule3, rule2Gw, rule3Gw, rootNS} {
    		if _, err := configStore.Create(c); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/status_strategy_test.go

    		}
    	}
    }
    
    const listTypeResourceSchema = `
    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      name: foos.test
    spec:
      group: test
      names:
        kind: Foo
        listKind: FooList
        plural: foos
        singular: foo
      scope: Cluster
      versions:
      - name: v1
        schema:
          openAPIV3Schema:
            type: object
            properties:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 22:16:10 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. android/guava-testlib/test/com/google/common/testing/AbstractPackageSanityTestsTest.java

        @SuppressWarnings("unused") // accessed reflectively
        public void testPublic() {}
    
        @SuppressWarnings("unused") // accessed reflectively
        void testNotPublic() {}
      }
    
      // Shouldn't be mistaken as Foo's test
      static class Foo2Test {
        @SuppressWarnings("unused") // accessed reflectively
        public void testPublic() {}
      }
    
      private List<Class<?>> findClassesToTest(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 21:37:55 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/listtype_test.go

    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/client-go/util/retry"
    	"sigs.k8s.io/yaml"
    )
    
    var listTypeResourceFixture = &apiextensionsv1.CustomResourceDefinition{
    	ObjectMeta: metav1.ObjectMeta{Name: "foos.tests.example.com"},
    	Spec: apiextensionsv1.CustomResourceDefinitionSpec{
    		Group: "tests.example.com",
    		Versions: []apiextensionsv1.CustomResourceDefinitionVersion{
    			{
    				Name:    "v1beta1",
    				Storage: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. 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)
  8. guava-testlib/test/com/google/common/testing/AbstractPackageSanityTestsTest.java

        @SuppressWarnings("unused") // accessed reflectively
        public void testPublic() {}
    
        @SuppressWarnings("unused") // accessed reflectively
        void testNotPublic() {}
      }
    
      // Shouldn't be mistaken as Foo's test
      static class Foo2Test {
        @SuppressWarnings("unused") // accessed reflectively
        public void testPublic() {}
      }
    
      private List<Class<?>> findClassesToTest(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 21:37:55 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  9. 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)
  10. cluster/gce/gci/audit_policy_test.go

    		clusterRoles    = resource("clusterroles", "", "rbac.authorization.k8s.io")
    		events          = resource("events", "default")
    		foobars         = resource("foos", "default", "example.com")
    		foobarbaz       = resource("foos", "default", "example.com", "baz")
    	)
    
    	// Aliases
    	const (
    		none     = audit.LevelNone
    		metadata = audit.LevelMetadata
    		request  = audit.LevelRequest
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 9.8K bytes
    - Viewed (0)
Back to top