Clouds
Clouds
related to https://github.com/cafebazaar/elixir-cassandra/pull/9
we use `MyModel` in following examples ```python class MyModel(models.Model): composite_pk = models.CompositeField('column1', 'column2', primary_key=True) column1 = IntegerField() column2 = IntegerField() class MyModel2(models.Model): model_id = models.CompositeField('column1', 'column2') column1 = IntegerField() column2...
# I have made things! Move _default_manager from Model (as a `@classproperty`) to ModelBase (as a `@property`) To match what exactly happens in django https://github.com/django/django/blob/e14d08cd894e9d91cb5d9f44ba7532c1a223f458/django/db/models/base.py#L429 (and also makes pyright/pylance happy)...
## Describe the feature let struct like `User` compatible with protobuf, and generate `user.proto` at the same time ## Motivation So that we could easily integrate with grpc ## Related...
now `relpath_from_repo_root` would fail if file not exists ``` ERROR: LoadError: IOError: cd("/cache/build/default-amdci5-1/julialang/julia-master/usr/share/julia/stdlib/v1.9/CRC32c/src"): no such file or directory (ENOENT) Stacktrace: [1] uv_error @ ./libuv.jl:100 [inlined] [2] cd(dir::String) @ Base.Filesystem ./file.jl:91...
So that it works for ``[`x -> sin(x)`](@ref)``, As well as ``[`sin(_)`](@ref)`` if https://github.com/JuliaLang/julia/pull/46633 checked in
other than manually input them and place into right place? Just like how https://github.com/JuliaPackaging/Yggdrasil/blob/8be19820afa24ff817185f3c53c4d20786a8add3/T/TVM/build_tarballs.jl does
It would take long `getEthPriceUsd` when I'd like to deploy to my local network (and for every single transaction). Is it possible 1. disable getEthPriceUsd via config 2. cache the...
I love the idea of hot reloading, but the crate could not compile now since the removal of qusi-quoting api https://github.com/rust-lang/rust/issues/46849 Should we migrate to [proc-macro](https://doc.rust-lang.org/reference/procedural-macros.html) with [syn](https://github.com/dtolnay/syn)/[quote](https://github.com/dtolnay/quote)?