Home
last modified time | relevance | path

Searched full:labels (Results 1 – 25 of 98) sorted by relevance

1234

/Zephyr-latest/.github/workflows/
Dissues-report-config.json4 "labels": ["bug", "priority: high"], array
9 "labels": ["bug", "priority: medium"], array
14 "labels": ["bug", "priority: low"], array
19 "labels": ["Enhancement"], array
24 "labels": ["Feature"], array
29 "labels": ["question"], array
34 "labels": ["Coverity"], array
Ddo_not_merge.yml13 if: ${{ contains(github.event.*.labels.*.name, 'DNM') ||
14 contains(github.event.*.labels.*.name, 'TSC') ||
15 contains(github.event.*.labels.*.name, 'Architecture Review') ||
16 contains(github.event.*.labels.*.name, 'dev-review') }}
Dmanifest.yml38 labels: 'manifest'
39 dnm-labels: 'DNM'
Dstale_issue.yml26 exempt-pr-labels: 'Blocked,In progress'
27 … exempt-issue-labels: 'In progress,Enhancement,Feature,Feature Request,RFC,Meta,Process,Coverity'
/Zephyr-latest/
DMAINTAINERS.yml32 # labels:
33 # List of GitHub labels to add to pull requests that modify the area.
89 # * The labels listed in 'labels' are automatically added to the pull
124 labels:
146 labels:
170 labels:
190 labels:
213 labels:
223 labels:
234 labels:
[all …]
/Zephyr-latest/scripts/
Dset_assignees.py65 labels = set()
78 labels = {'size: XS'}
99 labels.update(area.labels)
110 log(f"labels: {labels}")
154 # Set labels
155 if labels:
156 if len(labels) < 10:
157 for l in labels:
162 log(f"Too many labels to be applied")
247 if not area.labels:
[all …]
/Zephyr-latest/scripts/ci/stats/
Dmerged_prs.py47 labels = []
48 for label in pr.labels:
49 labels.append(label.name)
68 ('Trivial' in labels or 'Hotfix' in labels):
95 trivial = 'Trivial' in labels
96 hotfix = 'Hotfix' in labels
129 prj['labels'] = labels
/Zephyr-latest/samples/tfm_integration/psa_crypto/src/
Dutil_sformat.h23 /** Whether or not to add address labels to the output. */
25 /** The starting value for the address labels. */
31 * optional ascii equivalents and address labels.
/Zephyr-latest/include/zephyr/net/prometheus/
Dmetric.h63 /** Labels associated with the Prometheus metric. */
64 struct prometheus_label labels[MAX_PROMETHEUS_LABELS_PER_METRIC]; member
65 /** Number of labels associated with the Prometheus metric. */
Dgauge.h46 * @param _label Label for the metric. Additional labels can be added at runtime.
64 .base.labels[0] = __DEBRACKET _label, \
Dlabel.h20 /** Maximum number of labels per metric */
Dhistogram.h66 * @param _label Label for the metric. Additional labels can be added at runtime.
84 .base.labels[0] = __DEBRACKET _label, \
/Zephyr-latest/subsys/storage/flash_map/
DKconfig39 bool "Access flash area labels at runtime"
42 at runtime. The available labels will also be displayed in the
/Zephyr-latest/scripts/dts/python-devicetree/src/devicetree/
Ddtlib.py67 labels:
68 A list with all labels pointing to the node, in the same order as the
69 labels appear, but with duplicates removed.
71 'label_1: label_2: node { ... };' gives 'labels' the value
97 self.labels: List[str] = []
184 s = "".join(label + ": " for label in self.labels)
279 Data labels in the property value do not influence the type.
281 labels:
282 A list with all labels pointing to the property, in the same order as the
283 labels appear, but with duplicates removed.
[all …]
/Zephyr-latest/doc/_extensions/zephyr/
Dgh_utils.py121 labels already pre-filled with useful information.
142 labels = quote("area: Documentation")
145 labels += "," + ",".join([label for area in areas for label in area.labels])
163 return f"{app.config.gh_link_base_url}/issues/new?title={title}&labels={labels}&body={body}"
/Zephyr-latest/doc/_static/css/
Dgcs.css75 .gs-webResult div.gs-per-result-labels {
81 .gs-webResult div.gs-per-result-labels span {
85 .gs-webResult div.gs-per-result-labels a.gs-label {
/Zephyr-latest/dts/bindings/pwm/
Dinfineon,xmc4xxx-ccu4-pwm.yaml7 The are four CCU4 modules with dts node labels:
47 The CCU4 pinctrl nodes have a node labels in the format
/Zephyr-latest/subsys/net/lib/prometheus/
DKconfig18 Specify how many labels can be attached to a metric.
/Zephyr-latest/samples/modules/tflite-micro/magic_wand/train/
Ddata_load.py86 labels = np.zeros(length)
92 labels[padded_num * idx + num] = self.label2id[label]
95 (features, labels.astype("int32")))
/Zephyr-latest/doc/services/storage/flash_map/
Dflash_map.rst45 DTS node label using :c:macro:`FIXED_PARTITION_ID()`; these labels are obtained
68 ``scratch_partition`` node labels are defined for MCUboot, though not all MCUboot
81 All :code:`FIXED_PARTITION_*` macros take DTS node labels as partition
/Zephyr-latest/.github/ISSUE_TEMPLATE/
D002_enhancement.md5 labels: Enhancement
D004_feature_request.md5 labels: Feature Request
D008_bin-blobs.md5 labels: TSC
/Zephyr-latest/doc/project/
Ddev_env_and_tools.rst64 Categories/Labels
252 GitHub **labels** to classify and organize these issues and PRs by area, type,
256 Issues and PRs often have multiple labels assigned,
258 When reviewing a PR, if it has missing or incorrect labels, maintainers shall
264 These are the labels we currently have, grouped by applicability:
266 Labels applicable to issues only
312 Labels applicable to pull requests only
350 For all labels applicable to PRs: Please note that the label, together with
355 Labels applicable to both pull requests and issues
/Zephyr-latest/doc/build/dts/
Dintro-syntax-structure.rst49 .. _dt-node-labels:
51 Nodes can be assigned *node labels*, which are unique shorthands that refer to
53 ``subnode_nodelabel``. A node can have zero, one, or multiple node labels. You
54 can use node labels to refer to the node elsewhere in the devicetree.
311 which is distinct from the standard :ref:`node label <dt-node-labels>`.
403 <dt-node-labels>`. Here is an example devicetree fragment:
441 There are two additional ways beyond :ref:`node labels <dt-node-labels>` to

1234