Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unstructuredNegotiatedSerializer (0.38 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructuredscheme/scheme.go

    	return unstructuredNegotiatedSerializer{
    		scheme:  scheme,
    		typer:   NewUnstructuredObjectTyper(),
    		creator: NewUnstructuredCreator(),
    	}
    }
    
    type unstructuredNegotiatedSerializer struct {
    	scheme  *runtime.Scheme
    	typer   runtime.ObjectTyper
    	creator runtime.ObjectCreater
    }
    
    func (s unstructuredNegotiatedSerializer) SupportedMediaTypes() []runtime.SerializerInfo {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 27 12:37:23 UTC 2020
    - 4.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	preserveUnknownFields bool
    
    	supportedMediaTypes []runtime.SerializerInfo
    }
    
    func (s unstructuredNegotiatedSerializer) SupportedMediaTypes() []runtime.SerializerInfo {
    	return s.supportedMediaTypes
    }
    
    func (s unstructuredNegotiatedSerializer) EncoderForVersion(encoder runtime.Encoder, gv runtime.GroupVersioner) runtime.Encoder {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top