Ramón García Fernández
Ramón García Fernández
Hello, While testing with Windows 2012R2 I found that strongswan could not estabish an IPSEC connection in transport mode because it makes a certificate request with the CA in ASN1_BMPSTRING...
The current interface of IYamlTypeConverter one cannot deserialize a type that contains other types. Unlike that interface INodeDeserializer, the interface does not receive a nested object deserializer (Func nestedObjectDeserializer). This...
Although there is already an attribute YamlMember, DataMember does not depend on Yaml, and allows one to have consistent serialized field names in YamlDotNet and System.Text.Json Best regards.
When one saves results to the database with dbcontext.SaveChanges(), an exception is raised if the table already contains a row with the same primary key value. A very desirable property...
As explained in [this blog entry about Parquet](https://blog.twitter.com/engineering/en_us/a/2013/dremel-made-simple-with-parquet), it is necessary to include a definition level in optional columns in order to rebuild a register from column data. Parquet.net examples...
Under Windows 2016 server, domain join fails with a mysterious message of password not strong enough. Difficult to understand, since the password of a machine account is automatically generated. The...
When one loads an assembly from the menu, and then tries to execute tests, the execution fails silently. No log file, no message, nothing. After debugging the code, one finds...
If one restores a model with SavedModelBundle::load() and obtains a graph, there is no way to get Variables from it. One can obtain an Operation with Graph::operation_by_name_required, but not a...
The examples, for instance, examples/regression.rs include code to load a graph from a .pb file ``` let mut graph = Graph::new(); let mut proto = Vec::new(); File::open(filename)?.read_to_end(&mut proto)?; graph.import_graph_def(&proto, &ImportGraphDefOptions::new())?;...
Suppose that one, for instance, restores a graph from a file. Then one needs to add some elements. But one needs a Scope as an argument for building operations. Tensorflow-java...