MCPcopy Create free account
hub / github.com/AI45Lab/Code / now_ms

Function now_ms

core/src/agent_api/session_clock.rs:3–8  ·  view source on GitHub ↗

Session runtime clock helpers.

()

Source from the content-addressed store, hash-verified

1//! Session runtime clock helpers.
2
3pub(super) fn now_ms() -> u64 {
4 std::time::SystemTime::now()
5 .duration_since(std::time::UNIX_EPOCH)
6 .map(|d| d.as_millis() as u64)
7 .unwrap_or(0)
8}

Callers 1

applyMethod · 0.70

Calls 1

nowFunction · 0.85

Tested by

no test coverage detected