Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 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. pkg/scheduler/framework/runtime/registry_test.go

    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			var pluginFooConf PluginFooConfig
    			if err := DecodeInto(test.args, &pluginFooConf); err != nil {
    				t.Errorf("DecodeInto(): failed to decode args %+v: %v", test.args, err)
    			}
    			if !reflect.DeepEqual(test.expected, pluginFooConf) {
    				t.Errorf("DecodeInto(): failed to decode plugin config, expected: %+v, got: %+v",
    					test.expected, pluginFooConf)
    			}
    		})
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/registry.go

    	return func(ctx context.Context, plArgs runtime.Object, fh framework.Handle) (framework.Plugin, error) {
    		return withFts(ctx, plArgs, fh, fts)
    	}
    }
    
    // DecodeInto decodes configuration whose type is *runtime.Unknown to the interface into.
    func DecodeInto(obj runtime.Object, into interface{}) error {
    	if obj == nil {
    		return nil
    	}
    	configuration, ok := obj.(*runtime.Unknown)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. 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)
  5. pkg/api/testing/conversion_test.go

    }
    
    func BenchmarkNodeConversion(b *testing.B) {
    	data, err := os.ReadFile("node_example.json")
    	if err != nil {
    		b.Fatalf("Unexpected error while reading file: %v", err)
    	}
    	var node api.Node
    	if err := runtime.DecodeInto(legacyscheme.Codecs.LegacyCodec(v1.SchemeGroupVersion), data, &node); err != nil {
    		b.Fatalf("Unexpected error decoding node: %v", err)
    	}
    
    	scheme := legacyscheme.Scheme
    	var result *api.Node
    	b.ResetTimer()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:49:09 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_test.go

    		}
    	}
    	badJSONKindMismatch := []byte(`{"myVersionKey":"v1","myKindKey":"ExternalInternalSame"}`)
    	if err := runtime.DecodeInto(codec, badJSONKindMismatch, &runtimetesting.TestType1{}); err == nil {
    		t.Errorf("Kind is set but doesn't match the object type: %s", badJSONKindMismatch)
    	}
    	if err := runtime.DecodeInto(codec, []byte(``), &runtimetesting.TestType1{}); err != nil {
    		t.Errorf("Should allow empty decode: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. pkg/api/testing/deep_copy_test.go

    }
    
    func BenchmarkNodeCopy(b *testing.B) {
    	data, err := os.ReadFile("node_example.json")
    	if err != nil {
    		b.Fatalf("Unexpected error while reading file: %v", err)
    	}
    	var node api.Node
    	if err := runtime.DecodeInto(legacyscheme.Codecs.LegacyCodec(v1.SchemeGroupVersion), data, &node); err != nil {
    		b.Fatalf("Unexpected error decoding node: %v", err)
    	}
    
    	var result *api.Node
    	for i := 0; i < b.N; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/printers/json_test.go

    		t.Fatal(err)
    	}
    	// Use real decode function to undo the versioning process.
    	poutput = TestStruct{}
    	s := scheme.Codecs.UniversalDecoder(scheme.Scheme.PrioritizedVersionsAllGroups()...)
    	if err := runtime.DecodeInto(s, buf.Bytes(), &poutput); err != nil {
    		t.Fatal(err)
    	}
    	if !reflect.DeepEqual(testData, poutput) {
    		t.Errorf("Test data and unmarshaled data are not equal: %v", cmp.Diff(poutput, testData))
    	}
    
    	obj := &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. src/encoding/gob/dec_helpers.go

    		}
    		if i >= len(slice) {
    			// This is a slice that we only partially allocated.
    			growSlice(v, &slice, length)
    		}
    		x := state.decodeInt()
    		// MinInt and MaxInt
    		if x < ^int64(^uint(0)>>1) || int64(^uint(0)>>1) < x {
    			error_(ovfl)
    		}
    		slice[i] = int(x)
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 19:28:46 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/codec_check.go

    			return fmt.Errorf("external type %s not interpretable: %v", et, err)
    		}
    		if reflect.TypeOf(obj) != reflect.TypeOf(internalType) {
    			return fmt.Errorf("decode of external type %s produced: %#v", et, obj)
    		}
    		if err = DecodeInto(c, exBytes, internalType); err != nil {
    			return fmt.Errorf("external type %s not convertible to internal type: %v", et, err)
    		}
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:07:03 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top