Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for decodeInt8 (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/internal/trace/traceviewer/static/trace_viewer_full.html

    decodeUInt32();const oldThreadId=decoder.decodeUInt32();const newThreadPriority=decoder.decodeInt8();const oldThreadPriority=decoder.decodeInt8();const previousCState=decoder.decodeUInt8();const spareByte=decoder.decodeInt8();const oldThreadWaitReason=decoder.decodeInt8();const oldThreadWaitMode=decoder.decodeInt8();const oldThreadState=decoder.decodeInt8();const oldThreadWaitIdealProcessor=decoder.decodeInt8();const newThreadWaitTime=decoder.decodeUInt32();const reserved=decoder.decodeUInt32();...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/test/runtime_serializer_protobuf_protobuf_test.go

    			},
    			data: wire2,
    		},
    	}
    
    	for i, test := range testCases {
    		s := protobuf.NewSerializer(nil, nil)
    		unk := &runtime.Unknown{}
    		err := runtime.DecodeInto(s, test.data, unk)
    
    		switch {
    		case err == nil && test.errFn != nil:
    			t.Errorf("%d: failed: %v", i, err)
    			continue
    		case err != nil && test.errFn == nil:
    			t.Errorf("%d: failed: %v", i, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:16 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/config/cluster.go

    		kubeadmapiv1.SchemeGroupVersion.WithKind(constants.ClusterConfigurationKind),
    		[]byte(clusterConfigurationData)); err != nil {
    		klog.Warning(err.Error())
    	}
    	if err := runtime.DecodeInto(kubeadmscheme.Codecs.UniversalDecoder(), []byte(clusterConfigurationData), &initcfg.ClusterConfiguration); err != nil {
    		return nil, errors.Wrap(err, "failed to decode cluster configuration data")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    		externalToInternalCalls: 0,
    	}
    
    	// Register functions to verify that scope.Meta() gets set correctly.
    	utilruntime.Must(conversions.registerConversions(scheme))
    
    	t.Run("Encode, Decode, DecodeInto, and DecodeToVersion", func(t *testing.T) {
    		simple := &runtimetesting.InternalSimple{
    			TestString: "foo",
    		}
    
    		codecs := serializer.NewCodecFactory(scheme)
    		codec := codecs.LegacyCodec(externalGV)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/componentconfigs/configset.go

    			klog.Warning(err.Error())
    		}
    
    		// As long as we support only component configs with a single kind, this is allowed
    		return runtime.DecodeInto(Codecs.UniversalDecoder(), yaml, into)
    	}
    
    	return nil
    }
    
    // ensureInitializedComponentConfigs is an utility func to initialize the ComponentConfigMap in ClusterConfiguration prior to possible writes to it
    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