chore: import upstream snapshot with attribution
CI / Deep Native Runtime Cases (1/6) (push) Has been skipped
CI / Native Preflight (push) Failing after 1s
CI / Native Runtime Cases (1/2) (push) Failing after 0s
CI / Native Runtime Cases (2/2) (push) Failing after 1s
CI / Native Metadata Reports (push) Failing after 0s
CI / Native Direct Backend Artifacts (push) Failing after 0s
CI / Native Sanitizer Smoke (push) Failing after 1s
CI / Command Contract Snapshots (push) Failing after 1s
CI / Deep Conformance Suite (push) Has been skipped
CI / Graph Build Perf (push) Failing after 1s
CI / Deep Native Preflight (push) Has been skipped
CI / Deep Native Runtime Cases (2/6) (push) Has been skipped
CI / Deep Native Runtime Cases (3/6) (push) Has been skipped
CI / Conformance Suite (push) Failing after 1s
CI / Workspace Checks (push) Failing after 0s
CI / Deep Native Runtime Cases (5/6) (push) Has been skipped
CI / Deep Native Runtime Cases (6/6) (push) Has been skipped
CI / Deep Native Runtime Cases (4/6) (push) Has been skipped
CI / Deep Graph Build Perf (push) Has been skipped

This commit is contained in:
wehub-resource-sync
2026-07-13 12:29:30 +08:00
commit e7738de6d2
1723 changed files with 216139 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
fn cleanup() -> Void {
return
}
fn status() -> Status {
return Status.ready
}
+19
View File
@@ -0,0 +1,19 @@
use std.codec
use std.parse
use std.time
use helpers
use types
pub fn main(world: World) -> Void raises {
let utf8_ok: Bool = std.codec.utf8Valid("abcd")
let digits: usize = std.parse.scanDigits("123abc")
let duration: Duration = std.time.add(std.time.ms(5), std.time.seconds(1))
if digits == 3 && utf8_ok && std.time.asMsFloor(duration) > 0 {
check world.out.write("systems package\n")
}
cleanup()
}
+9
View File
@@ -0,0 +1,9 @@
enum Status {
ready,
failed,
}
choice Result {
ok,
failed: i32,
}
Binary file not shown.
+7
View File
@@ -0,0 +1,7 @@
[package]
name = "systems-package"
version = "0.1.0"
[targets.cli]
kind = "exe"
main = "src/main.0"