Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for DeepCopyInto (0.25 sec)

  1. pilot/pkg/config/kube/crd/config.go

    func (in *IstioKind) GetObjectMeta() metav1.ObjectMeta {
    	return in.ObjectMeta
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *IstioKind) DeepCopyInto(out *IstioKind) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	out.Spec = in.Spec
    	out.Status = in.Status
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/state/zz_generated.deepcopy.go

    package state
    
    import (
    	v1alpha2 "k8s.io/api/resource/v1alpha2"
    	sets "k8s.io/apimachinery/pkg/util/sets"
    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ClaimInfoState) DeepCopyInto(out *ClaimInfoState) {
    	*out = *in
    	if in.PodUIDs != nil {
    		in, out := &in.PodUIDs, &out.PodUIDs
    		*out = make(sets.Set[string], len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/config/zz_generated.deepcopy.go

    limitations under the License.
    */
    
    // Code generated by deepcopy-gen. DO NOT EDIT.
    
    package config
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *HPAControllerConfiguration) DeepCopyInto(out *HPAControllerConfiguration) {
    	*out = *in
    	out.HorizontalPodAutoscalerSyncPeriod = in.HorizontalPodAutoscalerSyncPeriod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time.go

    type Time struct {
    	time.Time `protobuf:"-"`
    }
    
    // DeepCopyInto creates a deep-copy of the Time value.  The underlying time.Time
    // type is effectively immutable in the time API, so it is safe to
    // copy-by-assign, despite the presence of (unexported) Pointer fields.
    func (t *Time) DeepCopyInto(out *Time) {
    	*out = *t
    }
    
    // NewTime returns a wrapped instance of the provided time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    }
    
    // DeepCopy creates a deep copy of the wrapped JSON value.
    func (j JSON) DeepCopy() JSON {
    	return JSON{runtime.DeepCopyJSONValue(j.Object)}
    }
    
    // DeepCopyInto creates a deep copy of the wrapped JSON value and stores it in into.
    func (j JSON) DeepCopyInto(into *JSON) {
    	into.Object = runtime.DeepCopyJSONValue(j.Object)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/componentconfigs/kubelet.go

    type kubeletConfig struct {
    	configBase
    	config kubeletconfig.KubeletConfiguration
    }
    
    func (kc *kubeletConfig) DeepCopy() kubeadmapi.ComponentConfig {
    	result := &kubeletConfig{}
    	kc.configBase.DeepCopyInto(&result.configBase)
    	kc.config.DeepCopyInto(&result.config)
    	return result
    }
    
    func (kc *kubeletConfig) Marshal() ([]byte, error) {
    	return kc.configBase.Marshal(&kc.config)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/componentconfigs/fakeconfig_test.go

    type clusterConfig struct {
    	configBase
    	config kubeadmapiv1.ClusterConfiguration
    }
    
    func (cc *clusterConfig) DeepCopy() kubeadmapi.ComponentConfig {
    	result := &clusterConfig{}
    	cc.configBase.DeepCopyInto(&result.configBase)
    	cc.config.DeepCopyInto(&result.config)
    	return result
    }
    
    func (cc *clusterConfig) Marshal() ([]byte, error) {
    	return cc.configBase.Marshal(&cc.config)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time.go

    // type is effectively immutable in the time API, so it is safe to
    // copy-by-assign, despite the presence of (unexported) Pointer fields.
    func (t *MicroTime) DeepCopyInto(out *MicroTime) {
    	*out = *t
    }
    
    // NewMicroTime returns a wrapped instance of the provided time
    func NewMicroTime(time time.Time) MicroTime {
    	return MicroTime{time}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    	N int `json:"n"`
    	O int `json:"o"`
    }
    
    func (d *testDecodable) DeepCopyObject() runtime.Object {
    	if d == nil {
    		return nil
    	}
    	out := new(testDecodable)
    	d.DeepCopyInto(out)
    	return out
    }
    func (d *testDecodable) DeepCopyInto(out *testDecodable) {
    	*out = *d
    	out.Other = d.Other
    	out.Value = d.Value
    	out.Spec = d.Spec
    	out.Interface = d.Interface
    	return
    }
    
    type testDecodeCoercion struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/componentconfigs/configset.go

    }
    
    func (cb *configBase) IsUserSupplied() bool {
    	return cb.userSupplied
    }
    
    func (cb *configBase) SetUserSupplied(userSupplied bool) {
    	cb.userSupplied = userSupplied
    }
    
    func (cb *configBase) DeepCopyInto(other *configBase) {
    	*other = *cb
    }
    
    func cloneBytes(in []byte) []byte {
    	out := make([]byte, len(in))
    	copy(out, in)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top