Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for decodeInt8 (0.18 sec)

  1. src/encoding/gob/decgen.go

    		"Int32",
    		`x := state.decodeInt()
    		if x < math.MinInt32 || math.MaxInt32 < x {
    			error_(ovfl)
    		}
    		slice[i] = int32(x)`,
    	},
    	{
    		"int64",
    		"Int64",
    		`slice[i] = state.decodeInt()`,
    	},
    	{
    		"int8",
    		"Int8",
    		`x := state.decodeInt()
    		if x < math.MinInt8 || math.MaxInt8 < x {
    			error_(ovfl)
    		}
    		slice[i] = int8(x)`,
    	},
    	{
    		"string",
    		"String",
    		`u := state.decodeUint()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:15:38 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/addons/dns/dns.go

    	return nil
    }
    
    func createCoreDNSAddon(deploymentBytes, serviceBytes, configBytes []byte, client clientset.Interface) error {
    	coreDNSConfigMap := &v1.ConfigMap{}
    	if err := kuberuntime.DecodeInto(clientsetscheme.Codecs.UniversalDecoder(), configBytes, coreDNSConfigMap); err != nil {
    		return errors.Wrapf(err, "%s ConfigMap", unableToDecodeCoreDNS)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    	objToUpdate := p.restPatcher.New()
    	if err := runtime.DecodeInto(p.codec, patchedObjJS, objToUpdate); err != nil {
    		strictError, isStrictError := runtime.AsStrictDecodingError(err)
    		switch {
    		case !isStrictError:
    			// disregard any appliedStrictErrs, because it's an incomplete
    			// list of strict errors given that we don't know what fields were
    			// unknown because DecodeInto failed. Non-strict errors trump in this case.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler_test.go

    	var decoded *apidiscoveryv2beta1.APIGroupDiscoveryList
    	if len(bytes) > 0 {
    		decoded = &apidiscoveryv2beta1.APIGroupDiscoveryList{}
    		err := runtime.DecodeInto(codecs.UniversalDecoder(), bytes, decoded)
    		if err != nil {
    			panic(fmt.Sprintf("failed to decode response: %v", err))
    		}
    
    	}
    	return r, bytes, decoded
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework_test.go

    	var inj injectedResult
    	if err := DecodeInto(injArgs, &inj); err != nil {
    		return nil, err
    	}
    	return &TestScoreWithNormalizePlugin{scoreWithNormalizePlugin1, inj}, nil
    }
    
    func newScoreWithNormalizePlugin2(_ context.Context, injArgs runtime.Object, f framework.Handle) (framework.Plugin, error) {
    	var inj injectedResult
    	if err := DecodeInto(injArgs, &inj); err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    	for _, testCase := range testCases {
    		t.Run(testCase.name, func(t *testing.T) {
    			deploymentBytes, _ := kubeadmutil.ParseTemplate(testCase.manifest, testCase.data)
    			deployment := &apps.Deployment{}
    			if err := runtime.DecodeInto(clientsetscheme.Codecs.UniversalDecoder(), deploymentBytes, deployment); err != nil {
    				t.Errorf("unexpected error: %v", err)
    			}
    			if deployment.Spec.Template.Spec.PriorityClassName != "system-cluster-critical" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top