0
I Use This!
Low Activity

Commits : Listings

Analyzed about 15 hours ago. based on code collected 1 day ago.
Apr 16, 2023 — Apr 16, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
added async_callback!(..) macro for general async callback actions. Here the caller has to make sure of proper cloning for captured vars More... 3 months ago
added a more generic Callback support in addition to MsgSubscription. The problem with the latter is that clients are often not homogenous with respect to the published message (e.g. the notorious Server::pushWsMessage instead of a general Server::Update). Now we have a general callback mechanism that allows both sync and async actions that are defined by the sender (i.e. the publisher does not have to know concrete client messages). The underlying Callbacks (which probably will be mostly send_msg() variants, hence the send_msg_callback!() macro) can also be used for oneshot messages to avoid an additional message path that would be required if we use Query messages. More... 3 months ago
fixed Stamen Terrain config (as far as we can without stadia.com subscription) More... 3 months ago
removed leftover import More... 4 months ago
Merge remote-tracking branch 'sequoia/smoke' into wind More... 4 months ago
pre-smoke branch commit this only updates .gitignore to exclude CMake build directories More... 4 months ago
rustc on Windows was complaining about missing inferred lifetime Not sure why that didn't happen on Darwin but there is no harm in '_ More... 4 months ago
update copyright headers for c++ and js files, add minimal README for gdalutil More... 4 months ago
updated environment More... 4 months ago
added copyright headers to *.js sources (this is problematic - now we really should really minify) More... 4 months ago
added copyright headers to *.rs sources More... 4 months ago
updated environment More... 4 months ago
updated smoke cloud service More... 4 months ago
updated smoke js resources More... 4 months ago
updated smoke configs More... 4 months ago
updated smoke segmentation actor to have optional start api command in config More... 4 months ago
updated files to use huggingface model, added liscense More... 4 months ago
moved smoke configs to dedicated folder More... 4 months ago
extended impl_actor and related macros to support option 'mut' prefix in match arms (as in "mut Cycle => .. msg.round += 1..") comes in handy if we want to modify the msg object we own anyways More... 4 months ago
removed unnecessary files More... 4 months ago
updated api server More... 4 months ago
updated test More... 4 months ago
cleaned smoke segmentation files: More... 4 months ago
Merge branch 'wind' of ssh://38.99.249.67:2357/home/pmehlitz/git/race into gdal More... 4 months ago
merged Sequoia's GDAL contour support plus services/client-ui doc More... 4 months ago
used Cargo [workspace.dependencies] to work around the odin_common/gdal/config dependencies in other odin crates. Now we can also build from RACE root, but this remains a quirk More... 4 months ago
refactored Ask into more general Query and added a QueryBuilder in case queries are repetitive (no need to create the channel per query). As it turns out there is nothing to be gained from kanal::oneshot so we drop it to further reduce the difference between channel implementations More... 4 months ago
changed DSL syntax for impl_actor!{..} to strike a balance between Rust and actor centric users. It now reads like "impl_actor!{ match msg for Actor<StateType,MsgType> as ..". That way we do show there is an Actor<State,Msg> type involved - while we make a best effort to hide it this might get exposed by compiler messages and it would confuse developers to see the Actor type instance without knowing where it came from. More... 4 months ago
next round of odin_actor refinement. More... 4 months ago
removed old commented code More... 4 months ago