.> builtins.merge
Some basics:
unique type Cat.Dog = Mouse Nat
unique type Rat.Dog = Bird
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdarg.h> | |
#include <string.h> | |
typedef struct Node { | |
char *header; | |
struct Node **children; | |
int children_count; | |
} Node; |
2024-03-17T14:30:27.9653564Z ##[group]Run stack build --fast --test unison-cli | |
2024-03-17T14:30:27.9654123Z [36;1mstack build --fast --test unison-cli[0m | |
2024-03-17T14:30:27.9682909Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} | |
2024-03-17T14:30:27.9683342Z env: | |
2024-03-17T14:30:27.9683564Z ormolu_version: 0.5.2.0 | |
2024-03-17T14:30:27.9683841Z racket_version: 8.7 | |
2024-03-17T14:30:27.9684174Z ucm_local_bin: /home/runner/work/_temp/ucm-local-bin | |
2024-03-17T14:30:27.9684604Z jit_version: @unison/internal/releases/0.0.11 | |
2024-03-17T14:30:27.9685015Z jit_src_scheme: unison-jit-src/scheme-libs/racket | |
2024-03-17T14:30:27.9685392Z jit_dist: unison-jit-dist |
/** Disk-Space Utilization Report For base-main/.unison/v2/unison.sqlite3 | |
Page size in bytes................................ 4096 | |
Pages in the whole file (measured)................ 7809 | |
Pages in the whole file (calculated).............. 7809 | |
Pages that store data............................. 7809 100.0% | |
Pages on the freelist (per header)................ 0 0.0% | |
Pages on the freelist (calculated)................ 0 0.0% | |
Pages of auto-vacuum overhead..................... 0 0.0% | |
Number of tables in the database.................. 35 |
/** Disk-Space Utilization Report For base-release/.unison/v2/unison.sqlite3 | |
Page size in bytes................................ 4096 | |
Pages in the whole file (measured)................ 3245 | |
Pages in the whole file (calculated).............. 3245 | |
Pages that store data............................. 3245 100.0% | |
Pages on the freelist (per header)................ 0 0.0% | |
Pages on the freelist (calculated)................ 0 0.0% | |
Pages of auto-vacuum overhead..................... 0 0.0% | |
Number of tables in the database.................. 35 |
class UnisonFromSrc < Formula | |
desc "Unison Language and Codebase Manager" | |
homepage "https://unisonweb.org" | |
url "https://github.com/unisonweb/unison/archive/refs/tags/release/0.5.15.tar.gz" | |
sha256 "03b2334fc75edafbe5300284ae19d0b9abeaf4e8c5c13d1c899c80c9e6050990" | |
license "MIT" | |
version_scheme 1 | |
depends_on "[email protected]" => :build |
Found "/Users/arya/work/unison/.trunk-pristine/hie.yaml" for "/Users/arya/work/unison/.trunk-pristine/a" | |
Run entered for haskell-language-server-wrapper(haskell-language-server-wrapper) Version 2.4.0.0 aarch64 ghc-9.2.8 | |
Current directory: /Users/arya/work/unison/.trunk-pristine | |
Operating system: darwin | |
Arguments: ["--lsp"] | |
Cradle directory: /Users/arya/work/unison/.trunk-pristine | |
Cradle type: Stack | |
Tool versions found on the $PATH | |
cabal: 3.6.2.1 |
Found "/Users/arya/work/unison/.trunk-pristine/hie.yaml" for "/Users/arya/work/unison/.trunk-pristine/a" | |
Run entered for haskell-language-server-wrapper(haskell-language-server-wrapper) Version 2.4.0.0 aarch64 ghc-9.2.8 | |
Current directory: /Users/arya/work/unison/.trunk-pristine | |
Operating system: darwin | |
Arguments: ["--lsp"] | |
Cradle directory: /Users/arya/work/unison/.trunk-pristine | |
Cradle type: Stack | |
Tool versions found on the $PATH | |
cabal: 3.6.2.1 |
.> builtins.merge
Some basics:
unique type Cat.Dog = Mouse Nat
unique type Rat.Dog = Bird
.> project.create bugreport
bugreport/main> pull @unison/json/releases/1.0.2 lib.json_1_0_2
success : '{Decoder} Text
success =
array.at 0 (object.at "success" (object.at "authorizeduser" Decoder.text))
CREATE TABLE namespace_term ( | |
id INTEGER PRIMARY KEY NOT NULL, | |
namesegment_id INTEGER NOT NULL REFERENCES text(id), | |
referent_object_id INTEGER NOT NULL REFERENCES object(id), | |
referent_component_id INTEGER NOT NULL, | |
referent_constructor_id INTEGER NULL, | |
); | |
CREATE INDEX namespace_term_name ON namespace_term ( | |
namesegment_id | |
); |