Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for decodeInt8 (0.41 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/codec.go

    // Decode is a convenience wrapper for decoding data into an Object.
    func Decode(d Decoder, data []byte) (Object, error) {
    	obj, _, err := d.Decode(data, nil, nil)
    	return obj, err
    }
    
    // DecodeInto performs a Decode into the provided object.
    func DecodeInto(d Decoder, data []byte, into Object) error {
    	out, gvk, err := d.Decode(data, nil, into)
    	if err != nil {
    		return err
    	}
    	if out != into {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:20:30 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/config/resetconfiguration.go

    	}
    
    	if len(resetBytes) == 0 {
    		return nil, errors.Errorf("no %s found in the supplied config", constants.JoinConfigurationKind)
    	}
    
    	internalcfg := &kubeadmapi.ResetConfiguration{}
    	if err := runtime.DecodeInto(kubeadmscheme.Codecs.UniversalDecoder(), resetBytes, internalcfg); err != nil {
    		return nil, err
    	}
    
    	// Applies dynamic defaults to settings not provided with flags
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. tests/fuzz/crd_roundtrip_fuzzer.go

    	}
    
    	// decode the encoded data into a new object (instead of letting the codec
    	// create a new object)
    	obj3 := reflect.New(reflect.TypeOf(object).Elem()).Interface().(runtime.Object)
    	if err := runtime.DecodeInto(codec, data, obj3); err != nil {
    		panic(fmt.Sprintf("%v: %v\n", name, err))
    	}
    
    	// ensure that the object produced from decoding the encoded data is equal
    	// to the original object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. src/encoding/gob/decode.go

    	for _, b := range buf[0:n] {
    		x = x<<8 | uint64(b)
    	}
    	state.b.Drop(n)
    	return x
    }
    
    // decodeInt reads an encoded signed integer from state.r.
    // Does not check for overflow.
    func (state *decoderState) decodeInt() int64 {
    	x := state.decodeUint()
    	if x&1 != 0 {
    		return ^int64(x >> 1)
    	}
    	return int64(x >> 1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/config/initconfiguration.go

    			// Decode the bytes into the internal struct. Under the hood, the bytes will be unmarshalled into the
    			// right external version, defaulted, and converted into the internal version.
    			if err := runtime.DecodeInto(kubeadmscheme.Codecs.UniversalDecoder(), fileContent, initcfg); err != nil {
    				return nil, err
    			}
    			continue
    		}
    		if kubeadmutil.GroupVersionKindsHasClusterConfiguration(gvk) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/config/upgradeconfiguration.go

    			// Decode the bytes into the internal struct. Under the hood, the bytes will be unmarshalled into the
    			// right external version, defaulted, and converted into the internal version.
    			if err := runtime.DecodeInto(kubeadmscheme.Codecs.UniversalDecoder(), bytes, internalcfg); err != nil {
    				return nil, err
    			}
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/helper.go

    		}
    		return obj, nil
    	}
    	// could not decode, so leave the object as Unknown, but give the decoders the
    	// chance to set Unknown.TypeMeta if it is available.
    	for _, decoder := range decoders {
    		if err := DecodeInto(decoder, obj.Raw, obj); err == nil {
    			return obj, nil
    		}
    	}
    	return obj, nil
    }
    
    // DecodeList alters the list in place, attempting to decode any objects found in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 22:54:34 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/roundtrip.go

    	obj3 := reflect.New(reflect.TypeOf(object).Elem()).Interface().(runtime.Object)
    	if err := runtime.DecodeInto(codec, data, obj3); err != nil {
    		t.Errorf("%v: %v", name, err)
    		return
    	}
    
    	// special case for kinds which are internal and external at the same time (many in meta.k8s.io are). For those
    	// runtime.DecodeInto above will return the external variant and set the APIVersion and kind, while the input
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/helpers.go

    func (s unstructuredJSONScheme) Decode(data []byte, _ *schema.GroupVersionKind, obj runtime.Object) (runtime.Object, *schema.GroupVersionKind, error) {
    	var err error
    	if obj != nil {
    		err = s.decodeInto(data, obj)
    	} else {
    		obj, err = s.decode(data)
    	}
    
    	if err != nil {
    		return nil, nil, err
    	}
    
    	gvk := obj.GetObjectKind().GroupVersionKind()
    	if len(gvk.Kind) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 20:39:55 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/addons/proxy/proxy_test.go

    	for _, testCase := range testCases {
    		t.Run(testCase.name, func(t *testing.T) {
    			daemonSetBytes, _ := kubeadmutil.ParseTemplate(testCase.manifest, testCase.data)
    			daemonSet := &apps.DaemonSet{}
    			if err := runtime.DecodeInto(clientsetscheme.Codecs.UniversalDecoder(), daemonSetBytes, daemonSet); err != nil {
    				t.Errorf("unexpected error: %v", err)
    			}
    			if daemonSet.Spec.Template.Spec.PriorityClassName != "system-node-critical" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top