Searched refs:labels (Results 1 – 25 of 72) sorted by relevance
123
/Zephyr-latest/scripts/ci/stats/ |
D | merged_prs.py | 47 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/ |
D | set_assignees.py | 65 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 …]
|
D | make_bugs_pickle.py | 46 return list(zephyr_repo.get_issues(state='open', labels=['bug']))
|
D | dump_bugs_pickle.py | 26 for lbl in issue.labels:
|
/Zephyr-latest/include/zephyr/net/prometheus/ |
D | metric.h | 64 struct prometheus_label labels[MAX_PROMETHEUS_LABELS_PER_METRIC]; member
|
D | gauge.h | 64 .base.labels[0] = __DEBRACKET _label, \
|
D | histogram.h | 84 .base.labels[0] = __DEBRACKET _label, \
|
D | counter.h | 65 .base.labels[0] = __DEBRACKET _label, \
|
D | summary.h | 88 .base.labels[0] = __DEBRACKET _label, \
|
/Zephyr-latest/scripts/dts/python-devicetree/src/devicetree/ |
D | dtlib.py | 105 self.labels: list[str] = [] 206 s = "".join(label + ": " for label in self.labels) 342 self.labels: list[str] = [] 587 s = "".join(label + ": " for label in self.labels) + self.name 926 for labels, address, offset in self.memreserves: 928 for label in labels: 984 prop_copy.labels = prop.labels[:] 997 node_copy.labels = node.labels[:] 1093 labels = [] 1095 _append_no_dup(labels, self._next_token().val) [all …]
|
/Zephyr-latest/samples/modules/tflite-micro/magic_wand/train/ |
D | data_load.py | 86 labels = np.zeros(length) 92 labels[padded_num * idx + num] = self.label2id[label] 95 (features, labels.astype("int32")))
|
/Zephyr-latest/subsys/net/lib/prometheus/ |
D | formatter.c | 129 "%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()
|
D | Kconfig | 18 Specify how many labels can be attached to a metric.
|
/Zephyr-latest/doc/_extensions/zephyr/ |
D | gh_utils.py | 142 labels = quote("area: Documentation") 145 labels += "," + ",".join([label for area in areas for label in area.labels])
|
/Zephyr-latest/doc/_static/css/ |
D | gcs.css | 75 .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/subsys/storage/flash_map/ |
D | Kconfig | 39 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/tests/ |
D | test_dtlib.py | 2365 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/.github/ISSUE_TEMPLATE/ |
D | 002_enhancement.md | 5 labels: Enhancement
|
D | 004_feature_request.md | 5 labels: Feature Request
|
D | 008_bin-blobs.md | 5 labels: TSC
|
D | 006_nomination.md | 5 labels: Role Nomination
|
/Zephyr-latest/boards/shields/mikroe_mcp2518fd_click/doc/ |
D | index.rst | 19 a ``mikrobus_spi`` and ``mikrobus_header`` node labels
|
/Zephyr-latest/doc/contribute/style/ |
D | devicetree.rst | 15 * Use underscores (``_``) as word separators in node labels.
|
/Zephyr-latest/doc/services/storage/flash_map/ |
D | flash_map.rst | 45 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/scripts/dts/ |
D | gen_dts_cmake.py | 119 for label in node.labels:
|
123