Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for GroupResource (0.17 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    message GroupKind {
      optional string group = 1;
    
      optional string kind = 2;
    }
    
    // GroupResource specifies a Group and a Resource, but does not force a version.  This is useful for identifying
    // concepts during lookup stages without having partially valid types
    //
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message GroupResource {
      optional string group = 1;
    
      optional string resource = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    message GroupKind {
      optional string group = 1;
    
      optional string kind = 2;
    }
    
    // GroupResource specifies a Group and a Resource, but does not force a version.  This is useful for identifying
    // concepts during lookup stages without having partially valid types
    //
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message GroupResource {
      optional string group = 1;
    
      optional string resource = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. pkg/controller/history/controller_history_test.go

    		}()
    		switch action.(type) {
    
    		case core.UpdateActionImpl:
    			update := action.(core.UpdateAction)
    			if conflictAttempts < 2 {
    				return true, update.GetObject(), errors.NewConflict(update.GetResource().GroupResource(), "", fmt.Errorf("conflict"))
    			}
    			return true, update.GetObject(), nil
    		default:
    			return false, nil, nil
    		}
    	}
    	internalError := func(action core.Action) (bool, runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    }
    
    func (u updateMyCRDV1Beta1Schema) Do(ctx *ratchetingTestContext) error {
    	var myCRD *apiextensionsv1.CustomResourceDefinition
    	var err error = apierrors.NewConflict(schema.GroupResource{}, "", nil)
    	for apierrors.IsConflict(err) {
    		myCRD, err = ctx.APIExtensionsClient.ApiextensionsV1().CustomResourceDefinitions().Get(context.TODO(), myCRDV1Beta1.Resource+"."+myCRDV1Beta1.Group, metav1.GetOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_attacher_test.go

    				// return Forbidden to all DELETE requests
    				if action.Matches("delete", "volumeattachments") {
    					return true, nil, apierrors.NewForbidden(action.GetResource().GroupResource(), action.GetNamespace(), fmt.Errorf("mock error"))
    				}
    				return false, nil, nil
    			},
    		},
    	}
    
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    					t.Fatalf("unexpected second conflict")
    				}
    				sawConflict = true
    				// simulated stale object - return a conflict
    				return nil, apierrors.NewConflict(example.SchemeGroupVersion.WithResource("pods").GroupResource(), "name", errors.New("foo"))
    			}
    			pod.Generation = 3
    			return pod, nil
    		}),
    		originalPod,
    	)
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top