Method | Mean | Error | StdDev | Median | Min | Max | Gen0 | Gen1 | Gen2 | Allocated |
---|---|---|---|---|---|---|---|---|---|---|
ParseAndTypeCheckProject_Resumable | 382.906 ms | 16.6768 ms | 17.1258 ms | 377.704 ms | 356.566 ms | 424.642 ms | 2000.0000 | 1000.0000 | 1000.0000 | 229.03 MB |
ParseAndTypeCheckProject_Normal | 359.397 ms | 18.5518 ms | 19.8502 ms | 363.683 ms | 333.375 ms | 401.576 ms | 2000.0000 | 1000.0000 | 1000.0000 | 229.56 MB |
ParseAllFilesInProjectSequential_Resumable | 20.691 ms | 1.2518 ms | 1.3913 ms | 20.766 ms | 18.529 ms | 23.995 ms | 34.5395 | 17.2697 | - | 6.79 MB |
ParseAllFilesInProjectSequential_Normal | 20.904 ms | 0.8382 ms | 0.9653 ms | 20.669 ms | 19.498 ms | 22.755 ms | 33.1790 | 16.2037 | - |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
POSTGRES_USER=postgres | |
POSTGRES_PASSWORD=postgres | |
POSTGRES_DB_HOST=postgres | |
POSTGRES_DB_PORT=5432 | |
POSTGRES_DATABASES=langflow,n8n,windmill | |
POSTGRES_DB_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_DB_HOST}:${POSTGRES_DB_PORT}/ | |
LANGFLOW_DATABASE_URL=${POSTGRES_DB_URL}langflow | |
WINDMILL_DATABASE_URL=${POSTGRES_DB_URL}windmill | |
WM_IMAGE=ghcr.io/windmill-labs/windmill:main |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open BenchmarkDotNet.Attributes | |
open BenchmarkDotNet.Configs | |
open BenchmarkDotNet.Environments | |
open BenchmarkDotNet.Jobs | |
open BenchmarkDotNet.Running | |
[<MemoryDiagnoser(displayGenColumns=false)>] | |
[<HideColumns("Job", "Error", "StdDev", "Median", "RatioSD")>] | |
type Benchmarks () = | |
let x = Some 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for vzarytovskii/emacs-plus/emacs-plus on macOS 14 | |
Build date: 2024-01-30 14:45:17 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Homebrew build logs for vzarytovskii/emacs-plus/emacs-plus on macOS 14 | |
Build date: 2024-01-30 14:41:50 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Custom.Builder | |
open Fun.Blazor | |
module Main = | |
[<EntryPoint>] | |
let main _ = | |
let test = | |
div { | |
div { | |
style'' { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Project | |
open System | |
open System.Windows | |
open System.IO | |
open System.Windows.Markup | |
open System.Windows.Controls | |
open System.Reflection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let getTypeCheck (syntaxTree: SyntaxTree) : NodeCode<TypeCheck> = | |
node { | |
let! input, _sourceRange, fileName, parseErrors = syntaxTree.ParseNode.GetOrComputeValue() | |
use _ = Activity.start "BoundModel.TypeCheck" [| Activity.Tags.fileName, fileName |] | |
IncrementalBuilderEventTesting.MRU.Add(IncrementalBuilderEventTesting.IBETypechecked fileName) | |
let capturingDiagnosticsLogger = CapturingDiagnosticsLogger("TypeCheck") | |
let diagnosticsLogger = GetDiagnosticsLoggerFilteringByScopedPragmas(false, input.ScopedPragmas, tcConfig.diagnosticsOptions, capturingDiagnosticsLogger) | |
use _ = new CompilationGlobalsScope(diagnosticsLogger, BuildPhase.TypeCheck) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Trace - 5:11:12 PM] Sending request 'fsharp/workspacePeek - (26)'. | |
Params: { | |
"Directory": "c:\\Users\\vlza\\code\\fsharp", | |
"Deep": 1, | |
"ExcludedDirs": [ | |
".git", | |
"eng", | |
"artifacts", | |
"fcs-samples", | |
"tests/projects", |
NewerOlder