Mark Van de Vyver

Results 99 comments of Mark Van de Vyver

One use case would be [Light LDAP](https://github.com/nitnelave/lldap) support. The LLDAP project may also help with integration testing?

Note to self to investigate possible workaround: Cargo virtual manifests do not support the `[features]` stanza (without also having the `[package]` stanza). See [Cargo issue 4942](https://github.com/rust-lang/cargo/issues/4942).

Workaround for the `test-project`: ```bash cargo test -- --test-threads=1 ``` However, this ***does not*** workaround the issue in the `test-virtual`.

We have also observed this error: ```rust BUG: failed to parse .ll file: Failure(("define internal fastcc void @_Z.... ``` The following is a MRE. Run this command: ```bash RUSTFLAGS =...

RedDocMD posted a [detailed description](https://users.rust-lang.org/t/fold-pattern-compared-with-visitor-pattern/77480/2) of the Fold pattern to the Rust users Discourse server. Not sure if that is an acceptable skeleton for something to replace the current content?

Actually this is an error in starting gRPCui, but I wonder if this setup description is suitable as a Documentation PR to help fellow noobs? The correct setup is: 3....

`-insecure` vs `-plaintext`

Would be great to support the syntax used in the [OCI spec v1.0.1](https://github.com/opencontainers/image-spec/blob/v1.0.1/config.md#properties), which is being adopted in [Redhat documentation/tools](https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux_atomic_host/7/html/managing_containers/finding_running_and_building_containers_without_docker#creating_images_from_scratch_with_buildah), i.e. `80/tcp`. Example: ````bash rkt run --port=80/tcp:8080 ````

@margach, thanks for the heads-up. Can you point to the file and I'll try update the instructions. I can't find that line in this file: https://github.com/rkt/rkt/blob/master/Documentation/getting-started-guide.md Thanks in advance.

It would be great if rkt followed, or tried to follow a subset of the [The "file" URI Scheme (RFC8089)](https://tools.ietf.org/html/rfc8089), `file://localhost/abs/path` `file:///abs/path` `file://rel/path` I'm not familiar with `golang` but surely...