问题标签 [systemtime]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - FireMonkey 中的 SYSTEMTIME
你能帮助我吗。我有一个代码,但它在 Android 上不起作用(谁会怀疑)。
我需要一个类似的代码,但要使其适用于 Android 或类比。提前致谢
c++ - Are there facilities in std::chrono to assist with injecting system_clock for unit testing
I depend on hardware that may or may not respond. As a consequence I frequently end up writing functions with timeouts. System time is a known source for brittle unit tests so injecting a controlled and stable time seems like a good idea for testing.
I wonder if there are any facilities in std::chrono that help with that. The alternative I see is to write a wrapper around the system time and depend on that adapter.
Here is a minimal example of how a wrapper could look like.
How much of this can be replaced with functionality from std::chrone?
Edit 1:
- "What exactly are you testing?"
I am controlling time as a test condition to change the behaviour of method calls that depend on time. The Test illustrates that mocking the time and controlling behaviour as a concept works and shows my understanding of it. The point of the minimal example is to show my understanding of mocking time to make it easier to show the differences to the
std::
facilities. - "spend ~10 words saying what the tests should contrast." The one Test always times out. The other Test shows no passage of time. A third Test that controls an exact and non zero passage of time was not included.
- "Besides, sleep has nothing to do with the clock. It's not a chrono feature." I needed it to ensure that the one test never loops more than a certain amount before timing out, this simulates some action that takes time and can time out. On the other hand I wanted to build in a shortcut so the second test does not waste time waiting. It would be ok to not mock Sleep as well but the test would take 2 seconds. I recognize the point that Sleep is not a chrono feature and therefor misleading.
android - 从网络更新Android系统时间时捕获事件
如果设备已配置,Settings->Date & time->Automatic date & time
它将在设备连接到网络时更新其系统时间(并且网络可以提供时间)。
是否有我可以订阅的事件,以便我知道是否以及何时发生?
html - 将视频位置与系统时间同步
我刚开始使用 html5 & co。(不是一个该死的初学者,但已经有一段时间了..)我需要一些建议来创建我的项目。
设置:我有一个 24 小时视频,应该在 html 网站上全屏显示(仅限离线使用)。如果您打开 html 文件,视频应自动从相应的视频位置开始 - 与系统时间同步(例如:视频时间轴中的 1.30am = 1.30h)。
一个在线示例可能是 24hoursofhappy 网站,如果您打开它,视频将从同步的系统时间位置开始。
你们能帮帮我吗?我不知道如何实现这一点:/
visual-studio-2008 - 如何在 Visual Studio 2008 中获取当前日期和时间?
我很想在我的网站上获取当前日期和时间。我正在使用以下函数来获取日期和时间。
我得到了正确的日期,但我得到的时间是 12:00 AM。请有人告诉我如何获取当前时间和日期。
java - 在 Windows 时间设置(即 12 小时或 24 小时)中检测时间格式并在 Java 中使用它
我想知道用户在他的计算机中选择的时间格式在他的 Windows 时间设置中,比如 12 小时或 24 小时格式。我想检测到这一点并将其用作我的 Java 应用程序中的时间格式。
注意:我知道 SimpleDateFormat API,但只有在我可以检测到用户在 Windows 时间设置中选择了什么之后,我才会使用它。
任何帮助表示赞赏。克里希纳
android - 始终检查系统时间并调用函数
在我的应用程序中,我想每秒检查一次系统时间,然后花时间将其与一个数字数组进行比较并返回该值,直到用户关闭应用程序。所以请谁能帮帮我谢谢....
java - 如何使 Java 指向不同于系统日期/时间的(自定义)日期/时间?
我在工作中遇到了这种情况,我需要使用 JAVA 运行我的 java 应用程序,让我相信日期/时间在未来的某个地方。团队一直在更改系统时间并重新启动 WebSphere Application Sever 以反映所需的日期/时间。但是,我觉得这是进行“时间旅行”的一种粗鲁方式。我四处搜索,发现有一种方法可以在启动时设置服务器的时区,方法是在 JVM 参数中使用“Duser.timezone=GMT”。除了更改我的系统日期/时间之外,有没有办法让我的工作站上的 Java 指向自定义日期/时间?
time - Docker 容器:时间/时区错误
我在一个正在运行的带有节点的 docker 容器中,由于某种原因,主机的时区/时间与 docker 容器内部的时间从不对齐:
所以我已经在我的 docker-start shell 中做的是脚本如下:
...但是,正如您在第一个代码块中看到的那样,时间仍然是错误的!对此有什么想法吗?我错过了什么?
(仅供参考:我正在运行一个通过mupx部署的流星应用程序)
更新:
date
在宿主机上和容器内运行后,再次有 2hrs 的差异。所以由于某种原因,docker容器只是没有“应用”我的时区,而且问题似乎与 JS/node 无关,因为date
它只是一个简单的 unix 系统 cmd ......我在这里错过了什么?!
laravel - Laravel 5.1 时区、时间戳和系统时间不同。会出什么问题?请问有什么解决办法
我的 routes.php 中有这个
但它不起作用。