{"id":47795071,"url":"https://github.com/eclipse-score/inc_feo","last_synced_at":"2026-04-03T16:13:57.592Z","repository":{"id":273527635,"uuid":"901774996","full_name":"eclipse-score/inc_feo","owner":"eclipse-score","description":"Incubation repository for the fixed execution order framework","archived":false,"fork":false,"pushed_at":"2025-08-19T13:15:12.000Z","size":329,"stargazers_count":4,"open_issues_count":1,"forks_count":5,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-08-19T15:27:07.898Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://eclipse-score.github.io/inc_feo","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eclipse-score.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-12-11T09:42:12.000Z","updated_at":"2025-08-19T13:15:17.000Z","dependencies_parsed_at":"2025-01-21T13:25:05.275Z","dependency_job_id":"07fd16ed-fb5b-46b9-878b-54c6d5c08c00","html_url":"https://github.com/eclipse-score/inc_feo","commit_stats":null,"previous_names":["eclipse-score/inc_feo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/eclipse-score/inc_feo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Finc_feo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Finc_feo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Finc_feo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Finc_feo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eclipse-score","download_url":"https://codeload.github.com/eclipse-score/inc_feo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-score%2Finc_feo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31362716,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-03T15:19:21.178Z","status":"ssl_error","status_checked_at":"2026-04-03T15:19:20.670Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-03T16:13:56.545Z","updated_at":"2026-04-03T16:13:57.573Z","avatar_url":"https://github.com/eclipse-score.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# score-feo\n\n## Rust setup\n\nYou can build the Rust code both with `bazel` and with `cargo`.\nThe CI will run both builds and ensure neither one is broken.\n\n### Bazel specific commands\n\nLint Rust code (clippy)\n\n```sh\nbazel build --config=lint-rust //...\n```\n\n## Bazel quick-start\n\nThe recommended way to run `bazel` is with [`bazelisk`][bazelisk].\nOn linux, this means downloading the binary from the releases page\nand symlinking it to `bazel` somewhere on the `PATH`.\n\n### Bazel examples\n\nBuild the whole workspace\n\n```sh\nbazel build //...\n```\n\nTest the whole workspace\n\n```sh\nbazel test //...\n```\n\nQuery for targets\n\n```sh\nbazel query //...\n```\n\nRun example rust binary\n\n```sh\nbazel run //examples/rust/mini-adas:adas_primary\n```\n\n[bazelisk]: https://github.com/bazelbuild/bazelisk\n\n## Profiling\n\n### CPU\n\n[Samply](https://github.com/mstange/samply) is a convenient tool to profile `perf` based. The main goal is to simplify the usage of `perf` and provide a web interface to analyze the results without the need to perform manual steps.\n\nGet your copy of *samply*:\n\n```sh\ncurl --proto '=https' --tlsv1.2 -LsSf https://github.com/mstange/samply/releases/download/samply-v0.12.0/samply-installer.sh | sh\n```\n\nProfile:\n\n```sh\ncargo build --example hello_tracing --profile profiling\nsamply record target/profiling/examples/hello_tracing\n# ...\n# \u003cctrl-c\u003e\n```\nSamply will spawn a webserver on [https://127.0.0.1:3000](https://127.0.0.1:3000) by default. Open and enjoy the results.\nThe [Firefox Profiler](https://profiler.firefox.com) requires Firefox or Chrome (Safari is not supported).\n\n### Memory\n\nEasiest way to profile memory usage is to use\n[bytehound](https://github.com/koute/bytehound). It is a tool that can be used\nto profile memory usage of a binary or verify that a binary is allocation free.\nIt supports Linux only at the moment.\n\nInstall *bytehound* with the following commands:\n\n```sh\nwget https://github.com/koute/bytehound/releases/download/0.11.0/bytehound-x86_64-unknown-linux-gnu.tgz\ntar xzf bytehound-x86_64-unknown-linux-gnu.tgz bytehound libbytehound.so \nmv bytehound libbytehound.so $HOME/.cargo/bin\n```\n\nRecord something with bytehound:\n\n```sh\nLD_PRELOAD=$HOME/.cargo/bin/libbytehound.so target/debug/examples/hello_tracing\n# ...\n# \u003cctrl-c\u003e\n```\n\nDone with recording.  Analyze the recording by \n\n```sh\nbytehound server memory-profiling_*.dat\n# [2025-01-16T10:15:18Z INFO  server_core] Trying to load \"memory-profiling_hello_tracing_1737022463_1792106.dat\"...\n# [2025-01-16T10:15:18Z INFO  cli_core::loader] Loaded data in 0s 099\n# [2025-01-16T10:15:18Z INFO  actix_server::builder] Starting 96 workers\n# [2025-01-16T10:15:18Z INFO  actix_server::builder] Starting server on 127.0.0.1:8080\n```\n\nClick on the [link](http://127.0.0.1:8080) in the output to open the browser and\nsee the results. Setup ssh port forwarding if needed when working remote (`ssh -L 8080:localhost:8080 host`).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipse-score%2Finc_feo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feclipse-score%2Finc_feo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipse-score%2Finc_feo/lists"}