Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GetOptions (0.18 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go

    }
    
    var xxx_messageInfo_FieldsV1 proto.InternalMessageInfo
    
    func (m *GetOptions) Reset()      { *m = GetOptions{} }
    func (*GetOptions) ProtoMessage() {}
    func (*GetOptions) Descriptor() ([]byte, []int) {
    	return fileDescriptor_a8431b6e0aeeb761, []int{11}
    }
    func (m *GetOptions) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *GetOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 281.4K bytes
    - Viewed (0)
  2. pkg/registry/core/service/storage/storage_test.go

    	if err != nil {
    		t.Fatalf("unexpected error creating service: %v", err)
    	}
    	createdSvc := obj.(*api.Service)
    
    	// Prove everything was allocated.
    	obj, err = storage.Get(ctx, svcName, &metav1.GetOptions{})
    	if err != nil {
    		t.Fatalf("unexpected error getting service: %v", err)
    	}
    	if !cmp.Equal(createdSvc, obj) {
    		t.Errorf("expected the result of Create() and Get() to match: %v", cmp.Diff(createdSvc, obj))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    		"k8s.io/apimachinery/pkg/apis/meta/v1.FieldsV1":                                                   schema_pkg_apis_meta_v1_FieldsV1(ref),
    		"k8s.io/apimachinery/pkg/apis/meta/v1.GetOptions":                                                 schema_pkg_apis_meta_v1_GetOptions(ref),
    		"k8s.io/apimachinery/pkg/apis/meta/v1.GroupKind":                                                  schema_pkg_apis_meta_v1_GroupKind(ref),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.18.md

    - Signatures on scale client methods have been modified to accept `context.Context` as a first argument. Signatures of Get, Update, and Patch methods have been updated to accept GetOptions, UpdateOptions and PatchOptions respectively. ([#88599](https://github.com/kubernetes/kubernetes/pull/88599), [@julianvmodesto](https://github.com/julianvmodesto)) [SIG API Machinery, Apps, Autoscaling and CLI]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
Back to top