Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for foons (0.09 sec)

  1. 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)
  2. plugin/pkg/admission/antiaffinity/admission_test.go

    		kind        string
    		resource    string
    		subresource string
    		object      runtime.Object
    		expectError bool
    	}{
    		{
    			name:     "non-pod resource",
    			kind:     "Foo",
    			resource: "foos",
    			object:   pod,
    		},
    		{
    			name:        "pod subresource",
    			kind:        "Pod",
    			resource:    "pods",
    			subresource: "eviction",
    			object:      pod,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 7.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. plugin/pkg/admission/alwayspullimages/admission_test.go

    		kind        string
    		resource    string
    		subresource string
    		object      runtime.Object
    		expectError bool
    	}{
    		{
    			name:     "non-pod resource",
    			kind:     "Foo",
    			resource: "foos",
    			object:   pod,
    		},
    		{
    			name:        "pod subresource",
    			kind:        "Pod",
    			resource:    "pods",
    			subresource: "exec",
    			object:      pod,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 30 22:59:57 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apimachinery/pkg/api/errors/errors_test.go

    	}
    	if !IsServerTimeout(NewServerTimeout(resource("tests"), "reason", 0)) {
    		t.Errorf("expected to be %s", metav1.StatusReasonServerTimeout)
    	}
    	if !IsMethodNotSupported(NewMethodNotSupported(resource("foos"), "delete")) {
    		t.Errorf("expected to be %s", metav1.StatusReasonMethodNotAllowed)
    	}
    
    	if !IsAlreadyExists(NewGenerateNameConflict(resource("tests"), "3", 1)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 19.5K bytes
    - Viewed (0)
Back to top