| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update horde compute to use Jupiter for storage (#60) | Joe Kirchoff | 2022-03-17 | 1 | -16/+22 |
| | | |||||
| * | Minor cleanup of free functions. | Per Larsson | 2022-02-03 | 1 | -1/+1 |
| | | |||||
| * | Moved cloud cache token provider out from options. | Per Larsson | 2022-02-01 | 1 | -4/+5 |
| | | |||||
| * | Refactored cloud cache access token provider. | Per Larsson | 2022-02-01 | 1 | -1/+1 |
| | | |||||
| * | Parital completed cloud cache token provider interface. | Per Larsson | 2022-02-01 | 1 | -1/+3 |
| | | |||||
| * | Format fix. | Per Larsson | 2022-01-22 | 1 | -2/+4 |
| | | |||||
| * | Converted use of _format UDL to fmt::format | Martin Ridgers | 2022-01-10 | 1 | -11/+7 |
| | | |||||
| * | Merged main. | Per Larsson | 2021-12-14 | 1 | -21/+46 |
| |\ | |||||
| | * | Merged main | Martin Ridgers | 2021-12-08 | 1 | -9/+22 |
| | |\ | |||||
| | * \ | Merged main | Martin Ridgers | 2021-11-22 | 1 | -5/+6 |
| | |\ \ | |||||
| | * \ \ | Merged main | Martin Ridgers | 2021-11-16 | 1 | -2/+105 |
| | |\ \ \ | |||||
| | * | | | | Removed if-def ZEN_PLATFORM_WINDOWS as its covered by WITH_COMPUTE now | Martin Ridgers | 2021-11-03 | 1 | -15/+7 |
| | | | | | | |||||
| | * | | | | Wrapped /apply/ and /exec/ services in a ZEN_WITH_COMPUTE_SERVICES define | Martin Ridgers | 2021-11-03 | 1 | -0/+4 |
| | | | | | | |||||
| | * | | | | Fixed warnings about unhandled switch cases | Martin Ridgers | 2021-10-29 | 1 | -0/+15 |
| | | | | | | |||||
| | * | | | | Marked DataHash as unused | Martin Ridgers | 2021-10-29 | 1 | -0/+4 |
| | | | | | | |||||
| | * | | | | If-def'd out Basic/SandboxedFuncJob classes and CreateProcess() calls | Martin Ridgers | 2021-10-29 | 1 | -0/+10 |
| | | | | | | |||||
| | * | | | | CAS.cpp/h -> cas.cpp/h to keep Zen's file casing consistent | Martin Ridgers | 2021-10-29 | 1 | -1/+1 |
| | | | | | | |||||
| | * | | | | Fixed up Windows-specific include statements | Martin Ridgers | 2021-10-29 | 1 | -1/+1 |
| | | | | | | |||||
| * | | | | | Format fix. | Per Larsson | 2021-12-09 | 1 | -4/+1 |
| | |_|_|/ |/| | | | |||||
| * | | | | Remove throw missed in last commit | Joe Kirchoff | 2021-12-01 | 1 | -1/+0 |
| | | | | | |||||
| * | | | | Don't throw a runtime_error if remote execute api fails | Joe Kirchoff | 2021-12-01 | 1 | -8/+22 |
| | |_|/ |/| | | | | | | | | asio currently doesn't propagate the exception as a 500 error | ||||
| * | | | Add errorcode to output when a task fails | Joe Kirchoff | 2021-11-18 | 1 | -5/+6 |
| | | | | |||||
| * | | | Change error code for failed upsteam apply | Joe Kirchoff | 2021-11-17 | 1 | -1/+1 |
| | |/ |/| | |||||
| * | | Use upstream apply with Horde | Joe Kirchoff | 2021-11-15 | 1 | -2/+105 |
| |/ | |||||
| * | zencore: Enabled MSC warning 4668 to get warnings when preprocessor macros ↵ | Stefan Boberg | 2021-10-15 | 1 | -4/+2 |
| | | | | | | | | | are used without an explicit definition Also fixed up various code to compile with this, by using ZEN_THIRD_PARTY_INCLUDES_START/ZEN_THIRD_PARTY_INCLUDES_END macros Removed prewindows.h/postwindows.h since they are no longer to be used due to the above | ||||
| * | apply: Re-enabled environment variable setup for child processes | Stefan Boberg | 2021-09-27 | 1 | -2/+2 |
| | | |||||
| * | Encapsulated containers in CasChunkSet to allow for more efficient ↵ | Stefan Boberg | 2021-09-21 | 1 | -5/+4 |
| | | | | | udpates/queries | ||||
| * | Compact binary package caching support (#9) | Per Larsson | 2021-09-16 | 1 | -1/+1 |
| | | |||||
| * | Fixed marshaling of outputs including sanity checks, logging | Stefan Boberg | 2021-09-16 | 1 | -2/+20 |
| | | |||||
| * | Fixed some unreferenced variable warnings (why don't we get these in sln ↵ | Stefan Boberg | 2021-09-16 | 1 | -10/+20 |
| | | | | | builds?). Also added size verification to certain payloads | ||||
| * | Added more context to missing chunk exceptions | Stefan Boberg | 2021-09-15 | 1 | -3/+4 |
| | | |||||
| * | Changed `std::exception` into `std::runtime_error` since `std::exception` ↵ | Stefan Boberg | 2021-09-15 | 1 | -4/+4 |
| | | | | | does not have a constructor which accepts a string argument in the standard (this appears to be an MSVC implementation thing) | ||||
| * | Changed logging implementation | Stefan Boberg | 2021-09-15 | 1 | -22/+22 |
| | | | | | | | * Code should no longer directly `#include spdlog/spdlog.h`, instead use `#include <zencore/logging.h>` * Instead of explicit calls to `spdlog::info(...)` and such please use the logging macros defined in `zencore/logging.h`. I.e `ZEN_INFO`, `ZEN_DEBUG`, `ZEN_TRACE`, `ZEN_ERROR`, `ZEN_CRITITCAL` * The macros will pick up the "most local" logger via a `Log()` call to retrieve a logger instance. To override the default logger in a class please implement your own `Log()` function | ||||
| * | Changed so more loggers go via the zen::loggers interface | Stefan Boberg | 2021-09-15 | 1 | -85/+1 |
| | | |||||
| * | Updated function service to new package management API | Stefan Boberg | 2021-09-14 | 1 | -21/+29 |
| | | |||||
| * | HttpResponse enum -> HttpResponseCode | Stefan Boberg | 2021-09-12 | 1 | -11/+11 |
| | | | | | Also removed initial CbPackage API HttpServer changes as I have decided to take a different approach | ||||
| * | Merge branch 'main' of https://github.com/EpicGames/zen | Stefan Boberg | 2021-09-06 | 1 | -1/+1 |
| |\ | |||||
| | * | Cleaned up log message | Stefan Boberg | 2021-09-04 | 1 | -1/+1 |
| | | | |||||
| * | | Changed so function service commits compressed buffers | Stefan Boberg | 2021-09-06 | 1 | -5/+7 |
| |/ | |||||
| * | Introduced support for compressed buffer attachments | Stefan Boberg | 2021-09-02 | 1 | -2/+2 |
| | | |||||
| * | Format fix. | Per Larsson | 2021-08-31 | 1 | -1/+1 |
| | | |||||
| * | Basic implementation of function evaluation | Stefan Boberg | 2021-08-28 | 1 | -63/+290 |
| | | |||||
| * | Implemented function propagation | Stefan Boberg | 2021-08-24 | 1 | -1/+56 |
| | | |||||
| * | WIP interface for submitting workers/jobs | Stefan Boberg | 2021-08-24 | 1 | -3/+63 |
| | | |||||
| * | WIP services | Stefan Boberg | 2021-08-20 | 1 | -4/+25 |
| | | |||||
| * | Tactical checkin: function service stub - not yet in use! | Stefan Boberg | 2021-08-19 | 1 | -0/+531 |