Home
last modified time | relevance | path

Searched +full:formatting +full:- +full:error +full:- +full:messages (Results 1 – 25 of 762) sorted by relevance

12345678910>>...31

/external/pigweed/pw_tokenizer/
Ddetokenization.rst3 .. _module-pw_tokenizer-detokenization:
8 .. pigweed-module-subpage::
15 --------------------------------
17 --------------------------------
18 A project might tokenize its log messages with the
19 :ref:`module-pw_tokenizer-base64-format`. Consider the following log file, which
22 .. code-block:: text
32 .. code-block::
41 .. code-block:: text
51 This example uses the :ref:`module-pw_tokenizer-base64-format`, which
[all …]
/external/pigweed/pw_presubmit/py/pw_presubmit/format/
Dcore.py7 # https://www.apache.org/licenses/LICENSE-2.0
14 """Formatting library core."""
30 def _ensure_newline(orig: str) -> str:
38 def simple_diff(path: Path, original: str, formatted: str) -> str:
70 This type is returned by in-memory formatting check operations.
73 ok: A boolean indicating whether or not formatting was successful.
77 the formatting process.
90 ok: A boolean indicating whether or not formatting was successful.
91 diff: The resulting diff of applying code formatting, as a
92 human-readable string.
[all …]
/external/cldr/docs/ldml/
Dtr35-messageFormat.md6 |-------|------------------------|
13 …odel, syntax, processing, and conformance requirements for the next generation of dynamic messages.
19 <!-- _This is a draft document which may be updated, replaced, or superseded by other documents at …
21 …a stable document; it is inappropriate to cite this document as other than a work in progress._ -->
28 …her comments with the CLDR bug reporting form [[Bugs](https://cldr.unicode.org/index/bug-reports)].
31 For more information see [About Unicode Technical Reports](https://www.unicode.org/reports/about-re…
39 * Part 2: [General](tr35-general.md#Contents) (display names & transforms, etc.)
40 * Part 3: [Numbers](tr35-numbers.md#Contents) (number & currency formatting)
41 * Part 4: [Dates](tr35-dates.md#Contents) (date, time, time zone formatting)
42 * Part 5: [Collation](tr35-collation.md#Contents) (sorting, searching, grouping)
[all …]
/external/rust/android-crates-io/crates/tokio-test/src/
Dmacros.rs8 /// # Custom Messages
11 /// arguments for formatting.
47 /// # Custom Messages
50 /// arguments for formatting.
75 /// Asserts a `Poll<Result<...>>` is ready and `Err`, returning the error.
80 /// # Custom Messages
83 /// arguments for formatting.
113 /// # Custom Messages
116 /// arguments for formatting.
152 /// # Custom Messages
[all …]
/external/python/cpython3/Doc/howto/
Dlogging.rst1 .. _logging-howto:
7 :Author: Vinay Sajip <vinay_sajip at red-dove dot com>
9 .. _logging-basic-tutorial:
14 logging cookbook, please see :ref:`tutorial-ref-links`.
17 ----------------------
32 :meth:`~Logger.info`, :meth:`~Logger.warning`, :meth:`~Logger.error` and
37 +-------------------------------------+--------------------------------------+
43 +-------------------------------------+--------------------------------------+
48 +-------------------------------------+--------------------------------------+
59 +-------------------------------------+--------------------------------------+
[all …]
Dlogging-cookbook.rst1 .. _logging-cookbook:
7 :Author: Vinay Sajip <vinay_sajip at red-dove dot com>
11 :ref:`cookbook-ref-links`.
16 ---------------------------------
32 # create file handler which logs even debug messages
37 ch.setLevel(logging.ERROR)
39 formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
78 .. code-block:: none
80 2005-03-23 23:47:11,663 - spam_application - INFO -
82 2005-03-23 23:47:11,665 - spam_application.auxiliary.Auxiliary - INFO -
[all …]
/external/vulkan-validation-layers/scripts/
Dcheck_commit_message_format.sh9 # http://www.apache.org/licenses/LICENSE-2.0
17 # Checks commit messages against project standards in CONTRIBUTING.md document
18 # Script to determine if commit messages in Pull Request are properly formatted.
22 shopt -s lastpipe
30 # Get user-supplied commit message text for applicable commits and insert
34 COMMIT_TEXT=$(git log ${TRAVIS_COMMIT_RANGE} --pretty=format:"XXXNEWLINEXXX"%n%B)
37 if [ -z "${COMMIT_TEXT}" ]; then
38 echo -e "${GREEN}No commit messgages to check for formatting.${NC}"
40 elif ! echo $TRAVIS_COMMIT_RANGE | grep -q "\.\.\."; then
41 echo -e "${GREEN}No commit messgages to check for formatting.${NC}"
[all …]
/external/cronet/stable/third_party/llvm-libc/src/utils/docgen/
Ddocgen.py3 # ====- Generate documentation for libc functions ------------*- python -*--==#
7 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
9 # ==-------------------------------------------------------------------------==#
20 """Raised on fatal formatting errors with a description of a formatting error"""
26 fatal formatting errors, raises exceptions with error messages useful for
27 fixing formatting. Warnings are printed to stderr on non-fatal formatting
29 ``check_api`` executed without raising formatting exceptions so the json
30 matches the formatting specified here.
36 Formatting of ``macros`` and ``functions`` objects
42 ``"c-definition"`` or ``"posix-definition"``.
[all …]
/external/cronet/tot/third_party/llvm-libc/src/utils/docgen/
Ddocgen.py3 # ====- Generate documentation for libc functions ------------*- python -*--==#
7 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
9 # ==-------------------------------------------------------------------------==#
20 """Raised on fatal formatting errors with a description of a formatting error"""
26 fatal formatting errors, raises exceptions with error messages useful for
27 fixing formatting. Warnings are printed to stderr on non-fatal formatting
29 ``check_api`` executed without raising formatting exceptions so the json
30 matches the formatting specified here.
36 Formatting of ``macros`` and ``functions`` objects
42 ``"c-definition"`` or ``"posix-definition"``.
[all …]
/external/icu/icu4c/source/i18n/unicode/
Dplurfmt.h5 * Copyright (C) 2007-2014, International Business Machines Corporation and
40 * messages with plural inflection. It is based on <i>plural
41 * selection</i>, i.e. the caller specifies messages for each
46 * <h4>The Problem of Plural Forms in Internationalized Messages</h4>
49 * plurals. Creating internationalized messages that include plural
70 * use the predefined keywords. The whole plural formatting of messages can
73 …* https://unicode-org.github.io/cldr-staging/charts/latest/supplemental/language_plural_rules.…
77 * <p>Note: Typically, plural formatting is done via <code>MessageFormat</code>
79 * rather than using a stand-alone <code>PluralFormat</code>.
103 * between the {curly braces} and their sub-message,
[all …]
/external/cronet/tot/third_party/icu/source/i18n/unicode/
Dplurfmt.h5 * Copyright (C) 2007-2014, International Business Machines Corporation and
40 * messages with plural inflection. It is based on <i>plural
41 * selection</i>, i.e. the caller specifies messages for each
46 * <h4>The Problem of Plural Forms in Internationalized Messages</h4>
49 * plurals. Creating internationalized messages that include plural
70 * use the predefined keywords. The whole plural formatting of messages can
73 …* https://unicode-org.github.io/cldr-staging/charts/latest/supplemental/language_plural_rules.…
77 * <p>Note: Typically, plural formatting is done via <code>MessageFormat</code>
79 * rather than using a stand-alone <code>PluralFormat</code>.
103 * between the {curly braces} and their sub-message,
[all …]
/external/cronet/stable/third_party/icu/source/i18n/unicode/
Dplurfmt.h5 * Copyright (C) 2007-2014, International Business Machines Corporation and
40 * messages with plural inflection. It is based on <i>plural
41 * selection</i>, i.e. the caller specifies messages for each
46 * <h4>The Problem of Plural Forms in Internationalized Messages</h4>
49 * plurals. Creating internationalized messages that include plural
70 * use the predefined keywords. The whole plural formatting of messages can
73 …* https://unicode-org.github.io/cldr-staging/charts/latest/supplemental/language_plural_rules.…
77 * <p>Note: Typically, plural formatting is done via <code>MessageFormat</code>
79 * rather than using a stand-alone <code>PluralFormat</code>.
103 * between the {curly braces} and their sub-message,
[all …]
/external/icu/libicu/cts_headers/unicode/
Dplurfmt.h5 * Copyright (C) 2007-2014, International Business Machines Corporation and
40 * messages with plural inflection. It is based on <i>plural
41 * selection</i>, i.e. the caller specifies messages for each
46 * <h4>The Problem of Plural Forms in Internationalized Messages</h4>
49 * plurals. Creating internationalized messages that include plural
70 * use the predefined keywords. The whole plural formatting of messages can
73 …* https://unicode-org.github.io/cldr-staging/charts/latest/supplemental/language_plural_rules.…
77 * <p>Note: Typically, plural formatting is done via <code>MessageFormat</code>
79 * rather than using a stand-alone <code>PluralFormat</code>.
103 * between the {curly braces} and their sub-message,
[all …]
/external/dagger2/java/dagger/internal/codegen/base/
DDiagnosticFormatting.java8 * http://www.apache.org/licenses/LICENSE-2.0
23 * Utility methods for formatting diagnostics to the {@link javax.annotation.processing.Messager}.
29 * display in fully qualified types in error messages.
31 * <p>Note: This should never be applied to messages themselves.
35 "(?:^|[^.a-z_])" // What we want to match on but not capture.
36 + "((?:" // Start a group with a non-capturing or part
45 + "[A-Z]"); // What we want to match on but not capture.
49 * representation before being used in error messages.
52 * parameterized) type, and should NOT be used with arbitrary text, especially prose error
53 * messages.
[all …]
/external/bazelbuild-rules_testing/docs/source/
Dtruth.md8 assertions that are easy to understand and give actionable error messages.
10 The basic way it works is wrapping a value in a type-specific object that
11 provides type-specific assertion methods. This style provides several benefits:
15 * Error messages with more informative context
16 * Promotes code reuses at the type-level.
36 access sub-values of it, or otherwise augment interacting with the wrapped
52 easier to, for example, ignore a platform-specific file extension.
56 does, which allows for more intelligible error messages.
72 For top-level subjects, a method named `that_foo()` should be added to the
75 For child-subjects, an appropriately named method should be added to the
[all …]
/external/vulkan-validation-layers/
DCONTRIBUTING.md5 The source code for The Vulkan-ValidationLayer components is sponsored by Khronos and LunarG.
6 * [Khronos Vulkan-ValidationLayers](https://github.com/KhronosGroup/Vulkan-ValidationLayers)
17 * Examine the [issues list](https://github.com/KhronosGroup/Vulkan-ValidationLayers/issues)
19 * Alternatively, run the `vk_validation_stats.py` script (in the scripts directory) with the `-todo`
20 command line argument to see a list of as-yet unimplemented validation checks.
28 Please see the [section about Validation Layers](#special-considerations-for-validation-layers)
47 This will involve [forking the repository](https://help.github.com/articles/fork-a-repo/),
48 …mmits, and then [submitting a pull request](https://help.github.com/articles/using-pull-requests/).
49 * Please read and adhere to the style and process [guidelines ](#coding-conventions-and-formatting)…
56 #### **Coding Conventions and Formatting**
[all …]
/external/tensorflow/tensorflow/tools/tensorflow_builder/compat_checker/
Dcompat_checker_test.py7 # http://www.apache.org/licenses/LICENSE-2.0
48 "raspberry": ["-1"],
77 [2] `.ini` config file with proper formatting.
84 # Make sure no warning or error messages are recorded.
95 [2] `.ini` config file with proper formatting.
101 # Check error and warning messages.
/external/linux-kselftest/tools/testing/selftests/futex/
DREADME17 -----------
22 -------------------------------
27 o Where possible, any helper functions or other package-wide code shall be
34 Output Formatting
35 -----------------
37 results are printed to stdout, while intermediate ERROR or FAIL messages are
38 sent to stderr. Tests shall support the -c option to print PASS, FAIL, and
39 ERROR strings in color for easy visual parsing. Output shall conform to the
44 ERROR: Description of unexpected error
47 # useful here. Using -v to toggle it them on and off, as with -c.
[all …]
/external/python/cpython3/Doc/library/
Dlogging.rst1 :mod:`!logging` --- Logging facility for Python
7 .. moduleauthor:: Vinay Sajip <vinay_sajip@red-dove.com>
8 .. sectionauthor:: Vinay Sajip <vinay_sajip@red-dove.com>
19 * :ref:`Basic Tutorial <logging-basic-tutorial>`
20 * :ref:`Advanced Tutorial <logging-advanced-tutorial>`
21 * :ref:`Logging Cookbook <logging-cookbook>`
23 --------------
30 can include your own messages integrated with messages from third-party
60 .. code-block:: none
69 code fine-grained control if needed. Logged messages to the module-level logger
[all …]
/external/libchrome/mojo/public/js/
DREADME.md39 * `foo_js` JavaScript bindings; used as compile-time dependency.
40 * `foo_js_data_deps` JavaScript bindings; used as run-time dependency.
44 ninja -C out/r services/echo/public/interfaces:interfaces_js
81 handle and dispatches incoming messages to a user-defined interface
118 example, binding/extracting `InterfacePtrInfo`, setting connection error
132 endpoint, dispatching incoming messages to the implementation.
146 error (unless the disconnection is caused by closing/destroying an endpoint, in
148 incoming messages for an endpoint on disconnection, the connection error won't
149 be triggered until the messages are drained.
152 * Mojo system-level causes: process terminated, resource exhausted, etc.
[all …]
/external/elfutils/po/
DMakevars11 XGETTEXT_OPTIONS = --keyword=_ \
12 --keyword=N_ \
13 --keyword=sgettext:1g \
14 --flag=_:1:pass-c-format \
15 --flag=N_:1:pass-c-format \
16 --flag=sgettext:1:pass-c-format \
17 --flag=error:3:c-format \
18 --flag=ERROR:1:c-format \
19 --flag=argp_error:2:c-format \
20 --add-comments
[all …]
/external/icu/libicu/cts_headers/
Dmessageformat2_evaluation.h15 * \brief C++ API: Formats messages using the draft MessageFormat 2.0.
27 // Auxiliary data structures used during formatting a message
38 …// in https://github.com/unicode-org/message-format-wg/blob/main/spec/formatting.md#pattern-select…
58 return -1; in comparePrioritizedVariants()
92 FunctionName selectorName; // For error reporting
99 // -------------------------
103 // A closure represents the right-hand side of a variable
128 // non-empty environments, terminating at an empty environment.
175 // an entire message: arguments, formatter cache, and error list
192 // Errors accumulated during parsing/formatting
/external/icu/icu4c/source/i18n/
Dmessageformat2_evaluation.h15 * \brief C++ API: Formats messages using the draft MessageFormat 2.0.
27 // Auxiliary data structures used during formatting a message
38 …// in https://github.com/unicode-org/message-format-wg/blob/main/spec/formatting.md#pattern-select…
58 return -1; in comparePrioritizedVariants()
92 FunctionName selectorName; // For error reporting
99 // -------------------------
103 // A closure represents the right-hand side of a variable
128 // non-empty environments, terminating at an empty environment.
175 // an entire message: arguments, formatter cache, and error list
192 // Errors accumulated during parsing/formatting
/external/googleapis/google/chat/v1/
Dmessage.proto7 // http://www.apache.org/licenses/LICENSE-2.0
47 pattern: "spaces/{space}/messages/{message}"
52 // Format: `spaces/{space}/messages/{message}`
56 // `{message}` is a system-assigned ID for the message. For example,
57 // `spaces/AAAAAAAAAAA/messages/BBBBBBBBBBB.BBBBBBBBBBB`.
62 // `spaces/AAAAAAAAAAA/messages/client-custom-name`. For details, see [Name
64 // message](https://developers.google.com/workspace/chat/create-messages#name_a_created_message).
69 // user](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user),
97 // Plain-text body of the message. The first link to an image, video, or web
99 // [preview chip](https://developers.google.com/workspace/chat/preview-links).
[all …]
/external/e2fsprogs/doc/RelNotes/
Dv1.13.txt4 Fixed a bug in debugfs where an error messages weren't getting printed
31 an 80 column display when formatting really big filesystems.
43 Fixed minor documentation bugs in man pages and usage messages.
46 -------------------

12345678910>>...31