Home
last modified time | relevance | path

Searched full:date (Results 1 – 25 of 3691) sorted by relevance

12345678910>>...148

/openbmc/openbmc-test-automation/gui/gui_test/settings_menu/
H A Dtest_date_and_time_sub_menu.robot3 Documentation Test OpenBMC GUI "Date and time" sub-menu of "Settings".
9 Test Setup Navigate To Date and Time Page
15 ${xpath_date_time_heading} //h1[text()="Date and time"]
29 Verify Navigation To Date And Time Page
30 [Documentation] Verify navigation to date and time page.
36 Verify Text Under Date And Time Page
37 [Documentation] Verify the presence of the required text on the date and time page.
41 Page Should Contain To change how date and time are displayed
48 Verify Existence Of All Sections In Date And Time Page
49 [Documentation] Verify existence of all sections in date and time page.
[all …]
/openbmc/openbmc-test-automation/ipmi/
H A Dtest_ipmi_sel_time.robot11 ... BMC Native command (date).
21 ... Current SEL time identified via BMC Native command (date) and perform SEL Time operations.
24 ... Get current time from BMC and add future year and compare against BMC native command (date),
25 ... Gets BMC Current Time and Adds 15 minutes and compare against BMC native command (date),
26 ... Gets BMC Current Time and subtracts 1 day and compare against BMC native command (date),
27 ... Add SEL Entry for all the above scenarios and compare against BMC native command (date).
53 # test case. Need to give how many sel should be added with multiple date and time.
72 ${sel_date}= Get Specific Sel Date 5
75 ${sel_date_raw}= Converting Date to HexaDecimal ${sel_date}
87 ${sel_date}= Get Specific Sel Date
[all...]
/openbmc/openbmc-test-automation/pldm/
H A Dtest_pldm_bios.robot21 [Documentation] Verify host date & time.
33 ${bmc_date}= Get Current Date from BMC
34 # Date format example: 2022-10-12 16:31:17
35 Log To Console BMC Date: ${bmc_date}
39 # verify date matching pldmtool vs BMC current time.
44 [Documentation] Verify set date & time for the host.
52 ${current_date_time}= Get Current Date UTC exclude_millis=True
56 ${date}= Add Time To Date ${current_date_time} 400 days exclude_millis=True
57 ${upgrade_date}= Evaluate re.sub(r'-* *:*', "", '${date}') modules=re
59 ${time}= Add Time To Date ${current_date_time} 01:01:00 exclude_millis=True
[all …]
/openbmc/linux/Documentation/ABI/testing/
Dsysfs-fs-nilfs2
Dsysfs-bus-coresight-devices-etm4x
Dsysfs-bus-coresight-devices-cti
Dsysfs-bus-most
Dsysfs-kernel-slab
Dsysfs-block-bcache
Dsysfs-class-net-statistics
Dsysfs-class-powercap
Dsysfs-platform-dfl-fme
/openbmc/openbmc-test-automation/ffdc/plugins/
H A Ddate_time_utils.py4 This module contains functions having to do with date time filter.
12 Convert a date time string to the desired format.
14 This function converts a date time string to the desired format.
15 The function takes the date_str argument, which can be a single date time
16 string or a list of date time strings.
19 specify the input date time pattern and the desired output format,
22 The function returns a list of date time strings in the desired format.
25 date_str (str or list): A date time string or a list of date time
27 date_format (str): The date time pattern of the input string(s).
28 desired_format (str): The desired output format for the date time
[all …]
/openbmc/linux/Documentation/ABI/stable/
Dsysfs-devices-node
Dsysfs-driver-dma-idxd
Dsysfs-bus-vmbus
Dsysfs-class-ubi
/openbmc/phosphor-webui/app/configuration/controllers/
H A Ddate-time-controller.html2 <div id="configuration-date-time">
3 <h1>Date and time settings</h1>
5 <h2>Set date and time manually or configure a Network Time Protocol (NTP) Server</h2>
16 <div class="row column date-time__ntp-servers-wrap">
17 … <fieldset class="date-time__ntp-servers" ng-repeat="server in ntp.servers track by $index">
22 …<button class="btn date-time__dns-remove btn-tertiary" ng-click="removeNTPField($index)">Remove</…
25 <div class="row column date-time__ntp-servers-wrap">
29 <label class="control-radio" for="manual-time">Manually set date and time
34 <ul class="date-time__metadata-wrapper">
35 <li class="date-time__metadata-block">
[all …]
H A Ddate-time-controller.js2 * Controller for date-time
32 $scope.bmc.date =
33 new Date(data.data[timePath + 'bmc'].Elapsed / 1000);
35 $scope.bmc.date.setMilliseconds(0);
40 $scope.bmc.timezone = getUserTimezone($scope.bmc.date) + ' ' +
41 createOffset($scope.bmc.date);
45 $scope.host.date =
46 new Date(data.data[timePath + 'host'].Elapsed / 1000);
47 $scope.host.date.setMilliseconds(0);
48 $scope.host.timezone = getUserTimezone($scope.bmc.date) + ' ' +
[all …]
/openbmc/linux/drivers/staging/most/Documentation/ABI/
Dsysfs-class-most.txt
/openbmc/openbmc-test-automation/redfish/managers/
H A Dtest_managers_bmc_time.robot22 [Documentation] Verify that date/time obtained via redfish matches
23 ... date/time obtained via BMC command line.
28 ${time_diff}= Subtract Date From Date ${cli_date_time}
43 # Add 3 days to current date.
44 ${new_bmc_time}= Add Time to Date ${old_bmc_time} 3 Days
47 ${time_diff}= Subtract Date From Date ${cli_bmc_time}
73 [Documentation] Verify date persists after BMC reboot.
76 # Synchronize BMC date/time to local system date/time.
77 ${local_system_time}= Get Current Date
82 ${local_system_time}= Get Current Date
[all …]
/openbmc/openbmc/poky/meta/recipes-devtools/ruby/ruby/
H A D0005-Mark-Gemspec-reproducible-change-fixing-784225-too.patch3 Date: Fri, 1 Nov 2019 15:25:17 -0300
6 Without an explicit date, they will get the current date and make the
20 "invalid date format in specification: #{date.inspect}")
24 + Time.utc(date.utc.year, date.utc.month, date.utc.day)
26 Time.utc(date.year, date.month, date.day)
/openbmc/linux/drivers/staging/greybus/Documentation/
Dsysfs-bus-greybus
/openbmc/webui-vue/src/components/Global/
H A DTableDateFilter.vue6 label-for="input-from-date"
11 id="input-from-date"
23 {{ $t('global.form.dateMustBeBefore', { date: toDate }) }}
39 aria-controls="input-from-date"
52 label-for="input-to-date"
57 id="input-to-date"
69 {{ $t('global.form.dateMustBeAfter', { date: fromDate }) }}
85 aria-controls="input-to-date"
132 const date = new Date(value);
133 const maxDate = new Date(this.toDate);
[all …]
/openbmc/qemu/tests/qtest/
H A Dm48t59-test.c110 static void cmos_get_date_time(QTestState *s, struct tm *date) in cmos_get_date_time() argument
133 date->tm_isdst = dummy.tm_isdst; in cmos_get_date_time()
134 date->tm_sec = sec; in cmos_get_date_time()
135 date->tm_min = min; in cmos_get_date_time()
136 date->tm_hour = hour; in cmos_get_date_time()
137 date->tm_mday = mday; in cmos_get_date_time()
138 date->tm_mon = mon - 1; in cmos_get_date_time()
139 date->tm_year = base_year + year - 1900; in cmos_get_date_time()
141 date->tm_gmtoff = 0; in cmos_get_date_time()
144 ts = mktime(date); in cmos_get_date_time()
[all …]

12345678910>>...148