Home
last modified time | relevance | path

Searched refs:labels (Results 1 – 25 of 69) sorted by relevance

123

/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/scripts/
Dset_assignees.py65 labels = set()
78 labels = {'size: XS'}
99 labels.update(area.labels)
155 if labels:
156 if len(labels) < 10:
157 for l in labels:
247 if not area.labels:
250 labels = set()
251 for label in area.labels:
252 labels.add(label.lower())
[all …]
Dmake_bugs_pickle.py46 return list(zephyr_repo.get_issues(state='open', labels=['bug']))
Ddump_bugs_pickle.py26 for lbl in issue.labels:
/Zephyr-latest/include/zephyr/net/prometheus/
Dmetric.h64 struct prometheus_label labels[MAX_PROMETHEUS_LABELS_PER_METRIC]; member
Dgauge.h64 .base.labels[0] = __DEBRACKET _label, \
Dhistogram.h84 .base.labels[0] = __DEBRACKET _label, \
Dcounter.h65 .base.labels[0] = __DEBRACKET _label, \
Dsummary.h88 .base.labels[0] = __DEBRACKET _label, \
/Zephyr-latest/scripts/dts/python-devicetree/src/devicetree/
Ddtlib.py97 self.labels: List[str] = []
184 s = "".join(label + ": " for label in self.labels)
312 self.labels: List[str] = []
564 s = "".join(label + ": " for label in self.labels) + self.name
904 for labels, address, offset in self.memreserves:
906 for label in labels:
962 prop_copy.labels = prop.labels[:]
973 node_copy.labels = node.labels[:]
1069 labels = []
1071 _append_no_dup(labels, self._next_token().val)
[all …]
/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/subsys/net/lib/prometheus/
Dformatter.c129 "%s{%s=\"%s\"} %llu\n", metric->name, metric->labels[i].key, in prometheus_format_one_metric()
130 metric->labels[i].value, counter->value); in prometheus_format_one_metric()
149 "%s{%s=\"%s\"} %f\n", metric->name, metric->labels[i].key, in prometheus_format_one_metric()
150 metric->labels[i].value, gauge->value); in prometheus_format_one_metric()
DKconfig18 Specify how many labels can be attached to a metric.
/Zephyr-latest/doc/_extensions/zephyr/
Dgh_utils.py142 labels = quote("area: Documentation")
145 labels += "," + ",".join([label for area in areas for label in area.labels])
/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/scripts/dts/python-devicetree/tests/
Dtest_dtlib.py2365 assert root_copy.labels == []
2366 assert root_copy.labels is not dt.root.labels
2381 assert rootprop_copy.labels == ['rootprop_label']
2382 assert rootprop_copy.labels is not dt.root.props['rootprop'].labels
2394 assert node_copy.labels == ['nodelabel']
2395 assert node_copy.labels is not dt.get_node('/node@1234').labels
2402 assert node_copy.props['nodeprop'].labels == []
/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/.github/ISSUE_TEMPLATE/
D002_enhancement.md5 labels: Enhancement
D004_feature_request.md5 labels: Feature Request
D008_bin-blobs.md5 labels: TSC
D006_nomination.md5 labels: Role Nomination
/Zephyr-latest/boards/shields/mikroe_mcp2518fd_click/doc/
Dindex.rst19 a ``mikrobus_spi`` and ``mikrobus_header`` node labels
/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/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
/Zephyr-latest/scripts/dts/
Dgen_dts_cmake.py119 for label in node.labels:

123