n9
n9
```C# typeof(IReadOnlyList).ToContextualType().EnumerableItemType ``` Returns `Int32` in version 1.0.23. But in the current version 2.0.10 it returns `null`. (It also returns `null` in 2.0.0.)
```C# typeof(Dictionary).ToContextualType().EnumerableItemType ``` returns `null`. The reason seems to be that ```C# typeof(Dictionary).GetRuntimeMethod("GetEnumerator", Array.Empty()) .ReturnParameter?.ToContextualParameter().Type.ToString() ``` returns ``System.Collections.Generic.Dictionary`2+Enumerator[System.String,System.Int32]``. And the current implementation looks like: https://github.com/RicoSuter/Namotion.Reflection/blob/4279901776ed8cbcb9f2338cefd1ab5465948863/src/Namotion.Reflection/Context/ContextualType.cs#L160-L165
Let's have the following code: ```C# public static class SimpleTextEx { public static SimpleText Times(this int number, SimpleText text) { return TextEx.Times(number, text); //
To [serialize/deserialize collection using `XmlSerializer` without container](http://stackoverflow.com/a/5271489/121968) `[XmlElementAttribute]` can be used. This approach however does not work in Bender. Example code: ``` C# public class Root { [XmlElement("Item")] public Item[]...
Test output: > Warning: Accessing PropTypes via the main React package is deprecated, and will be removed in React v16.0. Use the latest available v15.* prop-types package from npm instead....
``` echo {"message": "foo"} | jp "merge({message: message}, contextMap)" ``` ``` panic: interface conversion: interface {} is nil, not map[string]interface {} goroutine 1 [running]: github.com/jmespath/go-jmespath.jpfMerge({0xc00004ec20, 0x2, 0xc00000e3c0}) /Users/jamessar/Source/go/pkg/mod/github.com/jmespath/[email protected]/functions.go:520 +0x197 github.com/jmespath/go-jmespath.(*functionCaller).CallFunction(0x70e1c0,...
Is it possible to use `fetch` for unix socket (e.g. to call [docker API](https://docs.docker.com/engine/api/))? If not, what is the best way to communicate via HTTP through unix socket?
(Just to track from [man auditctl.8](https://man7.org/linux/man-pages/man8/auditctl.8.html).) > The -w form of writing watches is for backwards compatibility and is **deprecated due to poor system performance**. Convert watches of this form...
Implementation for #525, #414, https://github.com/argoproj/argo-cd/issues/5882
**Which component**: Controller. **Is your feature request related to a problem? Please describe.** Derive password hash (bcrypt) from password (e.g. for htpasswd). **Describe the solution you'd like** Add sprig functions...