Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for decodeUint (0.24 sec)

  1. src/encoding/gob/decgen.go

    		"bool",
    		"Bool",
    		`slice[i] = state.decodeUint() != 0`,
    	},
    	{
    		"complex64",
    		"Complex64",
    		`real := float32FromBits(state.decodeUint(), ovfl)
    		imag := float32FromBits(state.decodeUint(), ovfl)
    		slice[i] = complex(float32(real), float32(imag))`,
    	},
    	{
    		"complex128",
    		"Complex128",
    		`real := float64FromBits(state.decodeUint())
    		imag := float64FromBits(state.decodeUint())
    		slice[i] = complex(real, imag)`,
    	},
    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. src/encoding/gob/decode.go

    func ignoreUint(i *decInstr, state *decoderState, v reflect.Value) {
    	state.decodeUint()
    }
    
    // ignoreTwoUints discards a uint value with no destination. It's used to skip
    // complex values.
    func ignoreTwoUints(i *decInstr, state *decoderState, v reflect.Value) {
    	state.decodeUint()
    	state.decodeUint()
    }
    
    // Since the encoder writes no zeros, if we arrive at a decoder we have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  3. src/encoding/gob/dec_helpers.go

    		}
    		if i >= len(slice) {
    			// This is a slice that we only partially allocated.
    			growSlice(v, &slice, length)
    		}
    		real := float32FromBits(state.decodeUint(), ovfl)
    		imag := float32FromBits(state.decodeUint(), ovfl)
    		slice[i] = complex(float32(real), float32(imag))
    	}
    	return true
    }
    
    func decComplex128Array(state *decoderState, v reflect.Value, length int, ovfl error) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 19:28:46 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. src/encoding/gob/codec_test.go

    		}
    	}
    	for u := uint64(0); ; u = (u + 1) * 7 {
    		b.Reset()
    		encState.encodeUint(u)
    		decState := newDecodeState(newDecBuffer(b.Bytes()))
    		v := decState.decodeUint()
    		if u != v {
    			t.Errorf("Encode/Decode: sent %#x received %#x", u, v)
    		}
    		if u&(1<<63) != 0 {
    			break
    		}
    	}
    }
    
    func verifyInt(i int64, t *testing.T) {
    	defer testError(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 19 23:03:14 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/helper.go

    	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
    // the list that have the Unknown type. Any errors that occur are returned
    // after the entire list is processed. Decoders are tried in order.
    func DecodeList(objects []Object, decoders ...Decoder) []error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 22:54:34 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/helpers.go

    		return err
    	}
    
    	unstruct.Object = m
    
    	return nil
    }
    
    func (s unstructuredJSONScheme) decodeToList(data []byte, list *UnstructuredList) error {
    	type decodeList struct {
    		Items []gojson.RawMessage `json:"items"`
    	}
    
    	var dList decodeList
    	if err := json.Unmarshal(data, &dList); err != nil {
    		return err
    	}
    
    	if err := json.Unmarshal(data, &list.Object); err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 20:39:55 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top