goerch
goerch
Did anyone succeed adding [optimistic locking](https://en.wikipedia.org/wiki/Optimistic_concurrency_control) in an `appbuilder` application?
### Description When testing with different SQL numeric types like NUMERIC, NUMERIC(14, 2), NUMERIC(14, 4) we noticed that the views always show two decimal places. This fix respects the SQL...
I'm currently interested in getting the tests to run. It would be great to get some guidance if and how we should handle and test compatibility of the PR w.r.t....
Based on the discussion at https://discourse.julialang.org/t/surprising-runtime-behaviour-when-wrapping-functions/68140/3 the small test program ``` using BenchmarkTools using NLSolversBase function evaluate(f, x) return f(x) end function evaluate(od::OnceDifferentiable, x) return od.f(x) end function test(f, n)...
Running JET results in the following message ``` ┌ @ C:\Users\Win10\source\repos\julia\NLSolversBase.jl-7.8.1\src\objective_types\incomplete.jl:46 │ ArgumentError: invalid type for argument t in method definition for make_f at C:\Users\Win10\source\repos\julia\NLSolversBase.jl-7.8.1\src\objective_types\incomplete.jl:46 │ Stacktrace: │ [1] evaluate_methoddef(frame::JuliaInterpreter.Frame,...
Adding specializations to Base.getproperty and Base.setproperty to eliminate dynamic dispatch on Julia 1.7.0-rc1
Inspired by [this](https://github.com/ggerganov/llama.cpp/issues/2134) discussion I tried to understand the work scheduling. The patch uses a plain `pthreads` emulation for [Windows](https://nachtimwald.com/2019/04/05/cross-platform-thread-wrapper/) and a thread pool implementation from the same [site](https://nachtimwald.com/2019/04/12/thread-pool-in-c/) with...