Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for includeObject (0.21 sec)

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

    }
    
    // TableOptions are used when a Table is requested by the caller.
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    message TableOptions {
      // includeObject decides whether to include each object along with its columnar information.
      // Specifying "None" will return no object, specifying "Object" will return the full object contents, and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go

    }
    
    func (m *TableOptions) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	i -= len(m.IncludeObject)
    	copy(dAtA[i:], m.IncludeObject)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.IncludeObject)))
    	i--
    	dAtA[i] = 0xa
    	return len(dAtA) - i, nil
    }
    
    func (m *Timestamp) Marshal() (dAtA []byte, err error) {
    	size := m.Size()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 281.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    				},
    			},
    		},
    		{
    			item:   true,
    			accept: "application/json;as=Table;v=v1beta1;g=meta.k8s.io",
    			params: url.Values{"includeObject": []string{"Metadata"}},
    			expected: &metav1.Table{
    				TypeMeta: metav1.TypeMeta{Kind: "Table", APIVersion: "meta.k8s.io/v1beta1"},
    				ListMeta: metav1.ListMeta{ResourceVersion: "10"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"includeObject": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/garbagecollector_test.go

    	for _, scenario := range testScenarios {
    		t.Run(scenario.name, func(t *testing.T) {
    
    			absentOwnerCache := NewReferenceCache(100)
    
    			eventRecorder := record.NewFakeRecorder(100)
    			eventRecorder.IncludeObject = true
    
    			metadataClient := fakemetadata.NewSimpleMetadataClient(fakemetadata.NewTestScheme())
    
    			tweakableRM := meta.NewDefaultRESTMapper(nil)
    			tweakableRM.AddSpecific(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.7.md

    supports it) will be of type meta.k8s.io/v1alpha1 with Table, and contain column and row information related to the resource. Each row will contain information about the resource - by default it will be the object metadata, but callers can add the ?includeObject=Object query parameter and receive the full object. In the future kubectl will use this to retrieve the results of `kubectl get`. ([#40848](https://github.com/kubernetes/kubernetes/pull/40848), [@smarterclayton](https://github.com/smarterclayton))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

    it) will be of type `meta.k8s.io/v1alpha1` with `Table`, and contain column and row information related to the resource.  Each row will contain information about the resource - by default it will be the object metadata, but callers can add the `?includeObject=Object` query parameter and receive the full object.  In the future kubectl will use this to retrieve the results of `kubectl get`. ([#40848](https://github.com/kubernetes/kubernetes/pull/40848), [@smarterclayton](https://github.com/smarterclayton))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"includeObject": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top