/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/ |
H A D | gitsm.py | 46 uris = {} 87 uris[m] = md['url'] 91 if uris[m].startswith('..') or uris[m].startswith('./'): 94 uris[m] = Git._get_repo_url(self, newud) 99 if "://" in uris[module]: 101 proto = uris[module].split(':', 1)[0] 102 url = uris[module].replace('%s:' % proto, 'gitsm:', 1) 104 if ":" in uris[module]: 107 if ":/" in uris[module]: 113 url = "gitsm://" + uris[module].replace(':', '/', 1) [all …]
|
H A D | __init__.py | 977 uris = [] 987 def adduri(ud, uris, uds, mirrors, tarballs): argument 996 if not newuri or newuri in uris or newuri == origud.url: 1019 adduri(newud, uris, uds, localmirrors, tarballs) 1023 uris.append(newuri) 1026 adduri(newud, uris, uds, localmirrors, tarballs) 1028 adduri(origud, uris, uds, mirrors, origud.mirrortarballs or [None]) 1030 return uris, uds 1160 uris, uds = build_mirroruris(origud, mirrors, ld) 1162 for index, uri in enumerate(uris):
|
/openbmc/openbmc-tools/openbmc-autobump/ |
H A D | openbmc-autobump.py | 43 def extract_project_from_uris(uris, args): argument 45 uris = uris.split('"')[1] 46 for uri in uris.split(): 70 uris = "" 79 elif not project and uris or "_URI" in line: 80 uris += line.split("\\")[0] 85 uri = extract_project_from_uris(uris, args) 89 uris = ""
|
/openbmc/openbmc-test-automation/lib/ |
H A D | bmc_dbus.robot | 20 # Return the dbus uris corresponding to the service name provided. 40 # Find index of all the uris where the dbus URI matched. 55 # Return the dbus uris list without the unicodes. 57 # dbus_uri_list List of all the uris for the corresponding service name.
|
/openbmc/webui-vue/src/store/modules/SecurityAndAccess/ |
H A D | SessionsStore.js | 44 async disconnectSessions({ dispatch }, uris = []) { argument 45 const promises = uris.map((uri) =>
|
/openbmc/bmcweb/redfish-core/lib/ |
H A D | metric_report_definition.hpp | 394 std::vector<std::string> uris; member 435 std::optional<std::vector<std::string>> uris; in getUserMetric() local 445 "MetricProperties", uris // in getUserMetric() 451 if (uris) in getUserMetric() 453 metricArgs.uris = std::move(*uris); in getUserMetric() 649 getChassisSensorNode(metric.uris, matched); in getChassisSensorNodeFromMetrics() 793 sensorParams.reserve(metric.uris.size()); in performAddReport() 797 const std::string& uri = metric.uris[i]; in performAddReport() 851 std::span<const std::string> uris, in sensorPathToUri() argument 857 for (const std::string& uri : uris) in sensorPathToUri() [all …]
|
/openbmc/bmcweb/redfish-core/include/utils/ |
H A D | telemetry_utils.hpp | 63 std::span<const std::string> uris, in getChassisSensorNode() argument 67 for (const std::string& uri : uris) in getChassisSensorNode()
|
/openbmc/webui-vue/src/views/SecurityAndAccess/Sessions/ |
H A D | Sessions.vue | 247 disconnectSessions(uris) { 249 .dispatch('sessions/disconnectSessions', uris) 279 const uris = this.selectedRows.map((row) => row.uri); 298 this.disconnectSessions(uris);
|
/openbmc/webui-vue/src/store/modules/Logs/ |
H A D | EventLogStore.js | 97 async deleteEventLogs({ dispatch }, uris = []) { argument 98 const promises = uris.map((uri) =>
|
/openbmc/openbmc-test-automation/network/ |
H A D | test_vlan_network.robot | 275 ${uris}= Get Dictionary Keys ${vlan_record} 277 FOR ${uri} IN @{uris} 282 Run Keyword If @{uris} == @{EMPTY} 362 ${uris}= Get Dictionary Keys ${vlan_record} 363 Return From Keyword If @{uris} == @{EMPTY} 365 RETURN ${uris[${0}]}
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/json-schema-validator/json-schema-validator/ |
H A D | 0003-For-root-value-use-empty-pointer.patch | 28 propertyNames_ = schema::make(attr.value(), root, {"propertyNames"}, uris);
|
/openbmc/openbmc/poky/bitbake/lib/bb/tests/ |
H A D | fetch.py | 734 def fetchUnpack(self, uris): argument 735 fetcher = bb.fetch.Fetch(uris, self.d) 1742 uri = uris[0] 1748 uris = [uri] 1750 fetcher = bb.fetch2.Fetch(uris, d) 2290 uris = self.d.getVar('SRC_URI').split() 2291 uri = uris[0] 2294 fetcher = bb.fetch2.Fetch(uris, d) 2482 uris = self.d.getVar('SRC_URI').split() 2485 fetcher = bb.fetch2.Fetch(uris, self.d) [all …]
|
/openbmc/openbmc/poky/meta/recipes-extended/xdg-utils/xdg-utils/ |
H A D | CVE-2022-4055.patch | 1 xdg-email does not parse mailto uris properly for thunderbird 3 When using thunderbird as mailto handler xdg-email translates mailto uris into an 'thunderbird -com…
|
/openbmc/webui-vue/src/views/Logs/EventLogs/ |
H A D | EventLogs.vue | 516 deleteLogs(uris) { 518 .dispatch('eventLog/deleteEventLogs', uris) 561 const uris = this.selectedRows.map((row) => row.uri); 590 uris.length, 596 this.deleteLogs(uris);
|
/openbmc/openbmc/poky/meta/lib/oe/package_manager/ |
H A D | __init__.py | 432 def construct_uris(self, uris, base_paths): argument 450 return _append(uris, base_paths)
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | recipeutils.py | 457 uris = (d.getVar('SRC_URI') or "").split() 458 fetch = bb.fetch2.Fetch(uris, d) 465 for uri in uris:
|
/openbmc/openbmc/poky/meta/classes/ |
H A D | go-vendor.bbclass | 83 # Skip non Go module src uris
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/wvdial/wvstreams/ |
H A D | 0001-Forward-port-to-OpenSSL-1.1.x.patch | 298 GENERAL_NAMES *uris = GENERAL_NAMES_new();
|
/openbmc/openbmc/poky/meta/classes-global/ |
H A D | sstate.bbclass | 760 uris = ['file://{0};downloadfilename={0}'.format(sstatefetch), 763 uris += ['file://{0}.sig;downloadfilename={0}.sig'.format(sstatefetch)] 765 for srcuri in uris:
|