Searched refs:serialization (Results 1 – 25 of 257) sorted by relevance
1234567891011
12 Serializes a given JSON value `j` to a byte vector using the MessagePack serialization format. Mess…13 serialization format which aims to be more compact than JSON itself, yet more efficient to parse.15 1. Returns a byte vector containing the MessagePack serialization.16 2. Writes the MessagePack serialization to an output adapter.24 : output adapter to write serialization to28 1. MessagePack serialization as byte vector43 The example shows the serialization of a JSON value to a byte vector in MessagePack format.
12 …JSON value `j` to a byte vector using the CBOR (Concise Binary Object Representation) serialization13 format. CBOR is a binary serialization format which aims to be more compact than JSON itself, yet m…16 1. Returns a byte vector containing the CBOR serialization.17 2. Writes the CBOR serialization to an output adapter.25 : output adapter to write serialization to29 1. CBOR serialization as byte vector44 The example shows the serialization of a JSON value to a byte vector in CBOR format.
16 …ON value `j` to a byte vector using the UBJSON (Universal Binary JSON) serialization format. UBJSON19 1. Returns a byte vector containing the UBJSON serialization.20 2. Writes the UBJSON serialization to an output adapter.28 : output adapter to write serialization to39 1. UBJSON serialization as byte vector54 The example shows the serialization of a JSON value to a byte vector in UBJSON format.
15 1. Returns a byte vector containing the BSON serialization.16 2. Writes the BSON serialization to an output adapter.24 : output adapter to write serialization to28 1. BSON serialization as byte vector43 The example shows the serialization of a JSON value to a byte vector in BSON format.
29 …with U+FFFD), and `ignore` (ignore invalid UTF-8 sequences during serialization; all bytes are cop…34 string containing the serialization of the JSON value56 result of the serialization.
4 JSON serialization and deserialization25 [2019/03/30 22:09:09:2826] NOTICE: main: .... strarting serialization of test 133 [2019/03/30 22:09:09:2934] NOTICE: main: .... strarting serialization of test 241 [2019/03/30 22:09:09:2962] NOTICE: main: .... strarting serialization of test 346 [2019/03/30 22:09:09:2971] NOTICE: main: .... strarting serialization of test 451 [2019/03/30 22:09:09:2979] NOTICE: main: .... strarting serialization of test 5
10 serialization: ['json', 'advanced'], property19 serialization field27 cluster.settings.serialization = serialization;
4 JSON serialization and deserialization28 [2020/05/21 16:36:57:1500] N: main: .... strarting serialization of test 139 [2020/05/21 16:36:57:1655] N: main: .... strarting serialization of test 250 [2020/05/21 16:36:57:1688] N: main: .... strarting serialization of test 355 [2020/05/21 16:36:57:1699] N: main: .... strarting serialization of test 460 [2020/05/21 16:36:57:1708] N: main: .... strarting serialization of test 565 [2020/05/21 16:36:57:1731] N: main: .... strarting serialization of test 672 [2020/05/21 16:36:57:1752] N: main: .... strarting serialization of test 777 [2020/05/21 16:36:57:1763] N: main: .... strarting serialization of test 8
36 std::string serialization = Json::writeString(writer_builder, message); in EncodeMessageInternal()37 return std::make_unique<std::vector<uint8_t>>(serialization.begin(), in EncodeMessageInternal()38 serialization.end()); in EncodeMessageInternal()
4 Comparing against other serialization solutions, running on Windows 79 We also compare against code that doesn't use a serialization library36 ### Some other serialization systems we compared against but did not benchmark (yet), in rough orde…48 - C# comes with built-in serialization functionality, as used by Unity also.51 - Project Anarchy (the free mobile engine by Havok) comes with a serialization
5 new serialization library.20 If it would be possible to do serialization with no temporary objects,22 of great value. The reason serialization systems usually don't manage57 essential for most applications of serialization. Typically, dealing59 the parsing process of most serialization solutions out there.
55 YAML is a data serialization format designed for human readability and65 files to object serialization and persistence.78 ... keywords: [YAML, serialization, configuration, persistence, pickle]80 {'keywords': ['YAML', 'serialization', 'configuration', 'persistence',88 keywords: [YAML, serialization, configuration, persistence, pickle]
50 * Small optimizations to Python serialization.77 * Small patch improving performance of in Python serialization.88 * Optimize Java serialization code when writing a small message to a stream.89 * Optimize Java serialization of strings so that UTF-8 encoding happens only90 once per string per serialization call.
18 serialization = ["serde", "codespan-reporting/serialization"]
9 …es, including serialization and deserialization to and from strings. It can also preserve existing…
10 child_process.spawn(process.execPath, [], { serialization: value }); property23 serialization: 'advanced' property
358 validateOneOf(options.serialization, 'options.serialization',360 const serialization = options.serialization || 'json';370 options.envPairs.push(`NODE_CHANNEL_SERIALIZATION_MODE=${serialization}`);465 if (ipc !== undefined) setupChannel(this, ipc, serialization);564 let serialization; variable584 if (serialization === undefined)585 serialization = require('internal/child_process/serialization');590 } = serialization[serializationMode];
81 …cro can be used to simplify the serialization/deserialization of types if (1) want to use a JSON o…90 …cro can be used to simplify the serialization/deserialization of types if (1) want to use a JSON o…99 This macro simplifies the serialization/deserialization of enum types. See [Specializing enum conve…
25 …son()` functions for type `TaskState` while avoiding repetition and boilerplate serialization code.47 …espace), or the library will not be able to locate it and it will default to integer serialization.
13 …iscipline relies upon the field value itself to make decisions at (de)serialization time, while th…15 ### Presence in _tag-value stream_ (wire format) serialization17 …ther words, every value found within a serialization represents a _present_ field; furthermore, th…19 The generated API for a proto message includes (de)serialization definitions which translate betwee…26 … not be re-serialized; i.e., the empty field may be "not present" after a serialization round-trip.105 …e, the default value is synonymous with "not present" for purposes of serialization. To notionally…111 The _no presence_ serialization discipline results in visible differences from the _explicit presen…130 …s is because default values are skipped, simliar to the _no presence_ serialization discipline. Me…138 …er, depending on which version of the message definition was used for serialization. Specifically,…145 Client A uses this definition of the message, which follows the _explicit presence_ serialization d…
7 description = "A generic serialization/deserialization framework"11 keywords = ["serde", "serialization", "no_std"]
36 # Stress test NIR clone/serialization for GLES3.1 (which should cover most of the featureset).70 # Stress test NIR clone/serialization for GLES3.1 (which should cover most of the featureset).
64 …s such as Latin-1 or ISO 8859-1 are **not** supported and will yield parse or serialization errors.140 - Can I change the precision for floating-point serialization?142 …_limits<number_float_t>::digits10` (15 for IEEE `double`s) digits for serialization. This value is…152 See [this section](../features/types/number_handling.md#number-serialization) on the library's numb…
9 "Description": "A generic serialization/deserialization framework."
1 FlatBuffers is a cross platform serialization library architected for