Home
last modified time | relevance | path

Searched refs:serialization (Results 1 – 25 of 257) sorted by relevance

1234567891011

/third_party/json/doc/mkdocs/docs/api/basic_json/
Dto_msgpack.md12 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 to
28 1. MessagePack serialization as byte vector
43 The example shows the serialization of a JSON value to a byte vector in MessagePack format.
Dto_cbor.md12 …JSON value `j` to a byte vector using the CBOR (Concise Binary Object Representation) serialization
13 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 to
29 1. CBOR serialization as byte vector
44 The example shows the serialization of a JSON value to a byte vector in CBOR format.
Dto_ubjson.md16 …ON value `j` to a byte vector using the UBJSON (Universal Binary JSON) serialization format. UBJSON
19 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 to
39 1. UBJSON serialization as byte vector
54 The example shows the serialization of a JSON value to a byte vector in UBJSON format.
Dto_bson.md15 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 to
28 1. BSON serialization as byte vector
43 The example shows the serialization of a JSON value to a byte vector in BSON format.
Ddump.md29 …with U+FFFD), and `ignore` (ignore invalid UTF-8 sequences during serialization; all bytes are cop…
34 string containing the serialization of the JSON value
56 result of the serialization.
/third_party/libwebsockets/minimal-examples/api-tests/api-test-lecp/
DREADME.md4 JSON serialization and deserialization
25 [2019/03/30 22:09:09:2826] NOTICE: main: .... strarting serialization of test 1
33 [2019/03/30 22:09:09:2934] NOTICE: main: .... strarting serialization of test 2
41 [2019/03/30 22:09:09:2962] NOTICE: main: .... strarting serialization of test 3
46 [2019/03/30 22:09:09:2971] NOTICE: main: .... strarting serialization of test 4
51 [2019/03/30 22:09:09:2979] NOTICE: main: .... strarting serialization of test 5
/third_party/node/benchmark/cluster/
Decho.js10 serialization: ['json', 'advanced'], property
19 serialization field
27 cluster.settings.serialization = serialization;
/third_party/libwebsockets/minimal-examples/api-tests/api-test-lws_struct-json/
DREADME.md4 JSON serialization and deserialization
28 [2020/05/21 16:36:57:1500] N: main: .... strarting serialization of test 1
39 [2020/05/21 16:36:57:1655] N: main: .... strarting serialization of test 2
50 [2020/05/21 16:36:57:1688] N: main: .... strarting serialization of test 3
55 [2020/05/21 16:36:57:1699] N: main: .... strarting serialization of test 4
60 [2020/05/21 16:36:57:1708] N: main: .... strarting serialization of test 5
65 [2020/05/21 16:36:57:1731] N: main: .... strarting serialization of test 6
72 [2020/05/21 16:36:57:1752] N: main: .... strarting serialization of test 7
77 [2020/05/21 16:36:57:1763] N: main: .... strarting serialization of test 8
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/
Djson_message_codec.cc36 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()
/third_party/flatbuffers/docs/source/
DBenchmarks.md4 Comparing against other serialization solutions, running on Windows 7
9 We also compare against code that doesn't use a serialization library
36 ### 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
DWhitePaper.md5 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 manage
57 essential for most applications of serialization. Typically, dealing
59 the parsing process of most serialization solutions out there.
/third_party/PyYAML/
Dannouncement.msg55 YAML is a data serialization format designed for human readability and
65 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]
/third_party/protobuf/
DCONTRIBUTORS.txt50 * 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 only
90 once per string per serialization call.
/third_party/rust/crates/codespan/codespan/
DCargo.toml18 serialization = ["serde", "codespan-reporting/serialization"]
/third_party/jsoncpp/
DREADME.OpenSource9 …es, including serialization and deserialization to and from strings. It can also preserve existing…
/third_party/node/test/parallel/
Dtest-child-process-advanced-serialization.js10 child_process.spawn(process.execPath, [], { serialization: value }); property
23 serialization: 'advanced' property
/third_party/node/lib/internal/
Dchild_process.js358 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; variable
584 if (serialization === undefined)
585 serialization = require('internal/child_process/serialization');
590 } = serialization[serializationMode];
/third_party/json/doc/mkdocs/docs/features/
Dmacros.md81 …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…
Denum_conversion.md25 …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.
/third_party/protobuf/docs/
Dfield_presence.md13 …iscipline relies upon the field value itself to make decisions at (de)serialization time, while th…
15 ### Presence in _tag-value stream_ (wire format) serialization
17 …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…
/third_party/rust/crates/serde/serde/
DCargo.toml7 description = "A generic serialization/deserialization framework"
11 keywords = ["serde", "serialization", "no_std"]
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ci/
Ddeqp-llvmpipe.toml36 # 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).
/third_party/json/doc/mkdocs/docs/home/
Dfaq.md64 …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…
/third_party/rust/crates/serde/
DREADME.OpenSource9 "Description": "A generic serialization/deserialization framework."
/third_party/flatbuffers/CMake/
DDESCRIPTION.txt1 FlatBuffers is a cross platform serialization library architected for

1234567891011