Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for foons (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/pruning_test.go

    	"k8s.io/apiextensions-apiserver/test/integration/fixtures"
    )
    
    var pruningFixture = &apiextensionsv1.CustomResourceDefinition{
    	ObjectMeta: metav1.ObjectMeta{Name: "foos.tests.example.com"},
    	Spec: apiextensionsv1.CustomResourceDefinitionSpec{
    		Group: "tests.example.com",
    		Scope: apiextensionsv1.ClusterScoped,
    		Versions: []apiextensionsv1.CustomResourceDefinitionVersion{
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  2. pkg/registry/core/service/strategy_test.go

    		Resource: "foos",
    	})
    
    	expect := errors.NewNotFound(api.Resource("foos"), "bar")
    	if err := rest.CheckGeneratedNameError(ctx, Strategy, expect, &api.Service{}); err != expect {
    		t.Errorf("NotFoundError should be ignored: %v", err)
    	}
    
    	expect = errors.NewAlreadyExists(api.Resource("foos"), "bar")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. pkg/kube/krt/collection_test.go

    	// Setup a simple collection that fetches the same dependency twice
    	Results := krt.NewCollection(pods, func(ctx krt.HandlerContext, i *corev1.Pod) *Result {
    		foos := krt.Fetch(ctx, configMaps, krt.FilterLabel(lblFoo))
    		bars := krt.Fetch(ctx, configMaps, krt.FilterLabel(lblBar))
    		names := slices.Map(foos, func(f *corev1.ConfigMap) string { return f.Name })
    		names = append(names, slices.Map(bars, func(f *corev1.ConfigMap) string { return f.Name })...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler_test.go

    		{
    			Name:                 "nonexisting group, resource request, presync",
    			Method:               "GET",
    			Path:                 "/apis/custom/v2/foos",
    			APIGroup:             "custom",
    			APIVersion:           "v2",
    			Verb:                 "list",
    			Resource:             "foos",
    			HasSynced:            false,
    			IsResourceRequest:    true,
    			ExpectDelegateCalled: true,
    			ExpectStatus:         503,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Throwables.java

    @ElementTypesAreNonnullByDefault
    public final class Throwables {
      private Throwables() {}
    
      /**
       * Throws {@code throwable} if it is an instance of {@code declaredType}. Example usage:
       *
       * <pre>
       * for (Foo foo : foos) {
       *   try {
       *     foo.bar();
       *   } catch (BarException | RuntimeException | Error t) {
       *     failure = t;
       *   }
       * }
       * if (failure != null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Throwables.java

    @ElementTypesAreNonnullByDefault
    public final class Throwables {
      private Throwables() {}
    
      /**
       * Throws {@code throwable} if it is an instance of {@code declaredType}. Example usage:
       *
       * <pre>
       * for (Foo foo : foos) {
       *   try {
       *     foo.bar();
       *   } catch (BarException | RuntimeException | Error t) {
       *     failure = t;
       *   }
       * }
       * if (failure != null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/objectmeta_test.go

    	}
    }
    
    var embeddedResourceFixture = &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: Tue Jun 06 05:32:34 UTC 2023
    - 19K bytes
    - Viewed (0)
  8. pkg/scheduler/eventhandlers.go

    				continue
    			}
    			// GVK is expected to be at least 3-folded, separated by dots.
    			// <kind in plural>.<version>.<group>
    			// Valid examples:
    			// - foos.v1.example.com
    			// - bars.v1beta1.a.b.c
    			// Invalid examples:
    			// - foos.v1 (2 sections)
    			// - foo.v1.example.com (the first section should be plural)
    			if strings.Count(string(gvk), ".") < 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_encryption_test.go

    	}, {
    		desc: "should error when the same resource across groups is encrypted",
    		in: &apiserver.EncryptionConfiguration{
    			Resources: []apiserver.ResourceConfiguration{{
    				Resources: []string{
    					"*.",
    					"foos.*",
    				},
    				Providers: []apiserver.ProviderConfiguration{{
    					KMS: &apiserver.KMSConfiguration{
    						Name:       "foo",
    						Endpoint:   "unix:///tmp/kms-provider.socket",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 20:54:24 UTC 2023
    - 33.7K bytes
    - Viewed (0)
  10. pkg/apis/networking/validation/validation_test.go

    			ingressClass: makeValidIngressClass("test123", "foo.co/bar",
    				setParams(makeIngressClassParams(nil, "foo", "bar", utilpointer.String("Namespace"), utilpointer.String("foo_ns"))),
    			),
    			expectedErrs: field.ErrorList{field.Invalid(field.NewPath("spec.parameters.namespace"), "foo_ns",
    				"a lowercase RFC 1123 label must consist of lower case alphanumeric characters or '-',"+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
Back to top