(slot string)
| 635 | const cacheTestVolatileValueSentinel = "dagql.cache-test.volatile-value" |
| 636 | |
| 637 | func cacheTestVolatileSessionResourceHandle(slot string) SessionResourceHandle { |
| 638 | return SessionResourceHandle(digest.FromString("cache-test volatile session resource: " + slot).String()) |
| 639 | } |
| 640 | |
| 641 | func cacheTestSessionResourceLeaf(ctx context.Context, handle SessionResourceHandle) (Result[String], error) { |
| 642 | leaf, err := NewResultForCall(NewString("volatile"), &ResultCall{ |
no test coverage detected