Jack

Results 9 issues of Jack

Brief overview of BGP, both iBGP and eBGP. Short explanation of an AS, with an example. Mention of peering process between two BGP speakers.

This change enables a user to utilise a `preprocessor` or a `postprocessor` with the schema syntax. E.g. ``` test_env = Env(TEST=dict(cast=str, preprocessor=lambda v: v.upper())) ``` Prior to this, the pre/post...

This PR alters a minor typo in the `config` package `LoadConfig` function error message.

Closes https://github.com/confluentinc/confluent-kafka-go/issues/778 Adding the ability to use a concrete `Offset` type with the `NewOffset` func, by extension this also enables it through the `Offset.Set` func. An `Offset` is an `int64`...

Fixing minor typo in the `README.md` style guide.

When accessing system tables, it should be noted that this is currently not stable and can affect performance of production systems. `influxctl` provides this warning through a prompt, but if...

Helps towards https://github.com/apache/iceberg-rust/issues/408 and https://github.com/apache/iceberg-rust/issues/410 Adds support for GCS as a storage backend.

Wrapping a `usize` within an `Arc` is basically atomics with extra steps. The mutexes/locks build upon atomics and we really only need the value for what is being used here....

The current implementation of [`arrow_schema_to_schema`](https://docs.rs/iceberg/0.4.0/iceberg/arrow/fn.arrow_schema_to_schema.html) does not support the arrow [`Dictionary`](https://docs.rs/arrow/latest/arrow/datatypes/enum.DataType.html#variant.Dictionary) type and cannot be visited. A small reproducer for this is as follows: ```rust use arrow::datatypes::{DataType, Field, Schema}; use...