當前位置: 首頁>>代碼示例>>Golang>>正文


Golang xdr.NewReader函數代碼示例

本文整理匯總了Golang中github.com/calmh/xdr.NewReader函數的典型用法代碼示例。如果您正苦於以下問題:Golang NewReader函數的具體用法?Golang NewReader怎麽用?Golang NewReader使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了NewReader函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: BenchmarkThisDecoder

func BenchmarkThisDecoder(b *testing.B) {
	rr := &repeatReader{e}
	r := xdr.NewReader(rr)
	var t XDRBenchStruct
	for i := 0; i < b.N; i++ {
		err := t.decodeXDR(r)
		if err != nil {
			b.Fatal(err)
		}
		rr.Reset(e)
	}
}
開發者ID:ericcapricorn,項目名稱:syncthing,代碼行數:12,代碼來源:bench_test.go

示例2: TestHeaderMarshalUnmarshal

func TestHeaderMarshalUnmarshal(t *testing.T) {
	f := func(ver, id, typ int) bool {
		ver = int(uint(ver) % 16)
		id = int(uint(id) % 4096)
		typ = int(uint(typ) % 256)
		buf := new(bytes.Buffer)
		xw := xdr.NewWriter(buf)
		h0 := header{version: ver, msgID: id, msgType: typ}
		h0.encodeXDR(xw)

		xr := xdr.NewReader(buf)
		var h1 header
		h1.decodeXDR(xr)
		return h0 == h1
	}
	if err := quick.Check(f, nil); err != nil {
		t.Error(err)
	}
}
開發者ID:escribano,項目名稱:syncthing,代碼行數:19,代碼來源:protocol_test.go

示例3: DecodeXDR

func (o *SessionInvitation) DecodeXDR(r io.Reader) error {
	xr := xdr.NewReader(r)
	return o.DecodeXDRFrom(xr)
}
開發者ID:readthecodes,項目名稱:syncthing,代碼行數:4,代碼來源:packets_xdr.go

示例4: UnmarshalXDR

func (o *XDRBenchStruct) UnmarshalXDR(bs []byte) error {
	var br = bytes.NewReader(bs)
	var xr = xdr.NewReader(br)
	return o.decodeXDR(xr)
}
開發者ID:GDXN,項目名稱:syncthing,代碼行數:5,代碼來源:bench_xdr_test.go

示例5: DecodeXDR

func (o *EmptyMessage) DecodeXDR(r io.Reader) error {
	xr := xdr.NewReader(r)
	return o.decodeXDR(xr)
}
開發者ID:baa-archieve,項目名稱:syncthing,代碼行數:4,代碼來源:message_xdr.go

示例6: UnmarshalXDR

func (o *FileInfoTruncated) UnmarshalXDR(bs []byte) error {
	var br = bytes.NewReader(bs)
	var xr = xdr.NewReader(br)
	return o.decodeXDR(xr)
}
開發者ID:baa-archieve,項目名稱:syncthing,代碼行數:5,代碼來源:message_xdr.go

示例7: UnmarshalXDR

func (o *header) UnmarshalXDR(bs []byte) error {
	var br = bytes.NewReader(bs)
	var xr = xdr.NewReader(br)
	return o.DecodeXDRFrom(xr)
}
開發者ID:readthecodes,項目名稱:syncthing,代碼行數:5,代碼來源:packets_xdr.go

示例8: DecodeXDR

func (o *Address) DecodeXDR(r io.Reader) error {
	xr := xdr.NewReader(r)
	return o.decodeXDR(xr)
}
開發者ID:baa-archieve,項目名稱:syncthing,代碼行數:4,代碼來源:packets_xdr.go

示例9: UnmarshalXDR

func (o *ClusterConfigMessage) UnmarshalXDR(bs []byte) error {
	var br = bytes.NewReader(bs)
	var xr = xdr.NewReader(br)
	return o.DecodeXDRFrom(xr)
}
開發者ID:oliviercoma,項目名稱:syncthing,代碼行數:5,代碼來源:message_xdr.go

示例10: DecodeXDR

func (o *ResponseMessage) DecodeXDR(r io.Reader) error {
	xr := xdr.NewReader(r)
	return o.DecodeXDRFrom(xr)
}
開發者ID:oliviercoma,項目名稱:syncthing,代碼行數:4,代碼來源:message_xdr.go

示例11: DecodeXDR

func (o *fileVersion) DecodeXDR(r io.Reader) error {
	xr := xdr.NewReader(r)
	return o.DecodeXDRFrom(xr)
}
開發者ID:kattunga,項目名稱:syncthing,代碼行數:4,代碼來源:leveldb_xdr.go

示例12: DecodeXDR

func (o *repeatReader) DecodeXDR(r io.Reader) error {
	xr := xdr.NewReader(r)
	return o.decodeXDR(xr)
}
開發者ID:GDXN,項目名稱:syncthing,代碼行數:4,代碼來源:bench_xdr_test.go

示例13: DecodeXDR

func (o *XDRBenchStruct) DecodeXDR(r io.Reader) error {
	xr := xdr.NewReader(r)
	return o.DecodeXDRFrom(xr)
}
開發者ID:kattunga,項目名稱:syncthing,代碼行數:4,代碼來源:bench_xdr_test.go

示例14: DecodeXDR

func (o *Repository) DecodeXDR(r io.Reader) error {
	xr := xdr.NewReader(r)
	return o.decodeXDR(xr)
}
開發者ID:Blueprint-Marketing,項目名稱:syncthing,代碼行數:4,代碼來源:message_xdr.go

示例15: DecodeXDR

func (o *TestStruct) DecodeXDR(r io.Reader) error {
	xr := xdr.NewReader(r)
	return o.decodeXDR(xr)
}
開發者ID:Blueprint-Marketing,項目名稱:syncthing,代碼行數:4,代碼來源:encdec_xdr_test.go


注:本文中的github.com/calmh/xdr.NewReader函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。