Home
last modified time | relevance | path

Searched full:resolved (Results 1 – 25 of 587) sorted by relevance

12345678910>>...24

/openbmc/phosphor-webui/
H A Dpackage-lock.json9 "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", string
18 "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.9.0.tgz", string
29 "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.9.0.tgz", string
53 … "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", string
62 "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", string
71 "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", string
79 "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.9.5.tgz", string
91 …"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7… string
100 …"resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-… string
110 …"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-tar… string
[all …]
/openbmc/webui-vue/
H A Dpackage-lock.json81 "resolved": "https://registry.npmjs.org/@achrinza/node-ipc/-/node-ipc-9.2.9.tgz", string
106 "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", string
118 "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.7.tgz", string
154 "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.7.tgz", string
168 …"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7… string
180 …"resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-… string
193 …"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-tar… string
208 …"resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create… string
231 …"resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-creat… string
248 …"resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-pol… string
[all …]
/openbmc/openbmc-test-automation/gui/gui_test/logs_and_services_menu/
H A Dtest_event_logs_sub_menu.robot28 ${xpath_event_status_resolved} //*[@data-test-id="tableFilter-checkbox-Resolved"]
60 # Types of event status: Resolved, Unresolved.
165 [Documentation] Verify that error log can be resolved via GUI
173 # Mark single event log as resolved.
176 Wait Until Page Contains Successfully resolved 1 log timeout=10
178 # Verify the Redfish response after event log mark as resolved.
179 Get And Verify Status Of Resolved Field In Event Logs ${True}
183 [Documentation] Verify that error logs can be resolved via GUI
194 # Since we are selecting 'all events', 3+1 logs are resolved including informational.
195 Wait Until Page Contains Successfully resolved 4 logs. timeout=10
[all …]
/openbmc/phosphor-webui/app/common/directives/
H A Dlog-filter.html43 … <span ng-if="!selectedStatus.all && selectedStatus.resolved">Resolved events</span>
44 … <span ng-if="!selectedStatus.all && !selectedStatus.resolved">Unresolved events</span>
54 … ng-click="selectedStatus.all = false; selectedStatus.resolved = true; statusFilter = false;"
55 ng-class="{'active' : selectedStatus.resolved}">Resolved events</button>
59 … ng-click="selectedStatus.all = false; selectedStatus.resolved = false; statusFilter = false;"
60 … ng-class="{'active' : !selectedStatus.resolved}">Unresolved events</button>
H A Dlog-event.html24 <p class="inline event__priority event-resolved" ng-hide="event.Resolved == 0">Resolved</p>
56 …ng-class="{'disabled': (event.Resolved == 1 || multiSelected)}" ng-click="resolveEvent(event)" ng-…
57 <icon file="icon-check.svg"></icon>Mark as resolved
/openbmc/phosphor-logging/test/
H A Delog_update_ts_test.cpp34 // Test that the update timestamp changes when the resolved property changes
37 // Setting resolved will serialize, so need this directory. in TEST()
83 elog.resolved(true); in TEST()
89 elog.resolved(false); in TEST()
96 elog.resolved(false); in TEST()
107 // Setting resolved will serialize, so need this directory. in TEST()
152 EXPECT_THROW(elog.resolved(true), in TEST()
159 EXPECT_NO_THROW(elog.resolved(true)); in TEST()
160 EXPECT_EQ(elog.resolved(), true); in TEST()
/openbmc/phosphor-logging/
H A Delog_serialize.cpp35 e.associations(), e.resolved(), e.version(), e.updateTimestamp(), in save()
56 bool resolved{}; in load() local
67 resolved); in load()
75 resolved, fwVersion); in load()
83 resolved, fwVersion, updateTimestamp); in load()
90 resolved, fwVersion, updateTimestamp, eventId); in load()
98 resolved, fwVersion, updateTimestamp, eventId, resolution); in load()
104 resolved, fwVersion, updateTimestamp, eventId, resolution); in load()
113 e.sdbusplus::server::xyz::openbmc_project::logging::Entry::resolved( in load()
114 resolved, true); in load()
H A Delog_entry.hpp84 sdbusplus::server::xyz::openbmc_project::logging::Entry::resolved( in Entry()
113 * status (true = resolved)
114 * @returns value of 'Resolved' property
116 bool resolved(bool value) override;
118 using sdbusplus::server::xyz::openbmc_project::logging::Entry::resolved;
/openbmc/webui-vue/src/store/modules/Logs/
H A DEventLogStore.js21 // is resolved when the property is available in Redfish
58 Resolved,
70 filterByStatus: Resolved ? 'Resolved' : 'Unresolved',
71 status: Resolved, //true or false
137 api.patch(log.uri, { Resolved: true }).catch((error) => { property in EventLogStore.actions.resolveEventLogs.AnonymousClass724e31d50901
172 api.patch(log.uri, { Resolved: false }).catch((error) => { property in EventLogStore.actions.unresolveEventLogs.AnonymousClass724e31d50d01
209 .patch(log.uri, { Resolved: updatedEventLogStatus }) property in AnonymousClass724e31d51101
/openbmc/phosphor-webui/app/server-health/controllers/
H A Dlog-controller.js45 $scope.selectedStatus = {all: true, resolved: false}; property in $scope.selectedStatus
91 (log.Resolved && $scope.selectedStatus.resolved) ||
92 (!log.Resolved && !$scope.selectedStatus.resolved));
183 return item.Resolved != 1;
191 item.Resolved = 1;
/openbmc/openbmc-test-automation/gui/test/gui_header/
H A Dtest_obmc_gui_server_health.robot132 Select All Error Logs And Mark As Resolved
133 [Documentation] Select all error logs and mark them as resolved.
218 Select Single Error Log And Mark As Resolved
219 [Documentation] Select single error log and mark as resolved.
232 ... msg=Failed to mark single error log entry as resolved.
235 Select Multiple Error Logs And Mark As Resolved
236 [Documentation] Select multiple error logs and mark as resolved.
250 ... msg=Failed to mark multiple error log entries as resolved.
318 # (e.g. "Delete" or "Resolved" or "Export").
338 # (e.g. "Delete" or "Resolved" or "Export").
/openbmc/phosphor-dbus-monitor/src/
H A Dresolve_errors.cpp33 constexpr auto RESOLVED_PROPERTY = "Resolved";
45 // 3) Set the Resolved property to true on the entry in operator ()()
91 std::variant<bool> resolved = true; in resolve() local
94 LOGGING_IFACE, RESOLVED_PROPERTY, resolved); in resolve()
/openbmc/qemu/include/io/
H A Ddns-resolver.h152 * @naddr: pointer to hold number of resolved addresses
153 * @addrs: pointer to hold resolved addresses
158 * with all the resolved addresses. @naddrs will specify
204 * @naddr: pointer to hold number of resolved addresses
205 * @addrs: pointer to hold resolved addresses
209 * results. @addrs will be filled with all the resolved
/openbmc/bmcweb/redfish-core/include/utils/
H A Ddbus_event_log_entry.hpp20 bool Resolved = false; member
39 "Resolved", entry.Resolved, in fillDbusEventLogEntryFromPropertyMap()
/openbmc/openbmc/poky/meta/recipes-connectivity/connman/connman/
H A D0001-connman.service-stop-systemd-resolved-when-we-use-co.patch4 Subject: [PATCH] connman.service: stop systemd-resolved when we use connman
6 Stop systemd-resolved service when we use connman as network manager.
23 +Conflicts=systemd-resolved.service
/openbmc/openbmc/poky/meta/lib/oeqa/core/decorator/
H A Ddepends.py44 def _dep_resolve(graph, node, resolved, seen): argument
47 if edge not in resolved:
51 _dep_resolve(graph, edge, resolved, seen)
52 resolved.append(node)
/openbmc/openbmc-test-automation/redfish/systems/eventlog/
H A Dtest_event_association.robot91 # "Resolved": 0,
128 # "Resolved": 0,
152 # "Resolved": 0,
195 Set Resolved Field And Verify Callout Deletion
196 [Documentation] Set the "Resolved" error log and verify callout is deleted
205 # Set the error log field "Resolved".
208 OpenBMC Put Request ${elog_entry[0]}/attr/Resolved data=${valueDict}
238 # "Resolved": 0,
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Logging/
H A DEntry.interface.yaml45 - name: Resolved
49 this error log has been resolved. This will start out 'false' by
67 since the epoch (1 Jan 1970 00:00:00 UTC). As only the Resolved
70 would indicate that Resolved was changed.
/openbmc/openbmc/poky/meta/recipes-connectivity/avahi/files/
H A D0001-Fix-opening-etc-resolv.conf-error.patch6 Fix to start avahi-daemon after systemd-resolved.service. This is because
9 is created by systemd-resolved.service by default in current OE's systemd
39 +After=systemd-resolved.service connman.service
/openbmc/linux/net/appletalk/
H A Daarp.c70 /* Hashed list of resolved, unresolved and proxy entries */
71 static struct aarp_entry *resolved[AARP_HASH_SIZE]; variable
314 __aarp_expire_timer(&resolved[ct]); in aarp_expire_timeout()
340 __aarp_expire_device(&resolved[ct], dev); in aarp_device_event()
369 __aarp_expire_all(&resolved[ct]); in aarp_purge()
605 /* Do we have a resolved entry? */ in aarp_send_ddp()
613 a = __aarp_find_entry(resolved[hash], dev, sa); in aarp_send_ddp()
680 * An entry in the aarp unresolved queue has become resolved. Send
695 /* Move into the resolved list */ in __aarp_resolved()
696 a->next = resolved[hash]; in __aarp_resolved()
[all …]
/openbmc/linux/tools/perf/pmu-events/arch/arm64/arm/neoverse-n1/
H A Dtlb.json4 …any Instruction fetch. If there are multiple misses in the TLB that are resolved by the refill, th…
8 …sulted in TLB refills. If there are multiple misses in the TLB that are resolved by the refill, th…
36 …emory read operations. If there are multiple misses in the TLB that are resolved by the refill, th…
40 …mory write operations. If there are multiple misses in the TLB that are resolved by the refill, th…
/openbmc/linux/tools/perf/pmu-events/arch/arm64/arm/neoverse-n2-v2/
H A Dtlb.json4 …any Instruction fetch. If there are multiple misses in the TLB that are resolved by the refill, th…
8 …sulted in TLB refills. If there are multiple misses in the TLB that are resolved by the refill, th…
36 …emory read operations. If there are multiple misses in the TLB that are resolved by the refill, th…
40 …mory write operations. If there are multiple misses in the TLB that are resolved by the refill, th…
/openbmc/linux/drivers/acpi/acpica/
H A Dexresop.c83 * resolved
248 * resolved to a value in acpi_ex_resolve_operands()
258 * must be resolved to a node in acpi_ex_resolve_operands()
300 * -- All others must be resolved below. in acpi_ex_resolve_operands()
326 /* Get the resolved object */ in acpi_ex_resolve_operands()
335 * For the simple cases, only one type of resolved object in acpi_ex_resolve_operands()
374 * The more complex cases allow multiple resolved object types in acpi_ex_resolve_operands()
570 * (which could be a resolved region field) in acpi_ex_resolve_operands()
649 * Make sure that the original object was resolved to the in acpi_ex_resolve_operands()
/openbmc/openbmc/meta-quanta/meta-s6q/recipes-core/systemd/
H A Dsystemd-conf_%.bbappend14 ${sysconfdir}/systemd/resolved.conf.d/s6q-resolv.conf \
26 install -d ${D}${sysconfdir}/systemd/resolved.conf.d/
28 ${D}${sysconfdir}/systemd/resolved.conf.d/
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/
H A Dnpmsw.py99 resolved = params.get("resolved", None)
100 version = params.get("version", resolved)
105 if not resolved:
110 uri = URI(resolved)
122 resolvefile = localpath + ".resolved"

12345678910>>...24