-
Is there a way to "compress" or truncate a patch log in combination with a TDB2 backup. I imagine after a longer time of operation the patch log can grow rather large.
-
man, for another lang translation project, can you send the decompile bins tool, or english source?
if you don't can send in public, can send email for: ddtank.marcus@gmail.com
sorry for all
-
Since hard links can't go across partitions. I think this could be solved by tarring to symbolic links instead?
I can't seem to solve this with the current tar archive because there doesn't seem to b…
-
Condor cluster interface in MadGraph should be updated to work with condor on lxplus. This is currently under investigation, with a few known issues documented here for better bookkeeping.
@vciulli…
-
I want to resume training my model from a checkpoint file (*.pt), but facing `pykeen.training.training_loop.CheckpointMismatchError` error.
Full stack trace:
```python-traceback
INFO:pykeen.train…
-
(This is an addition to the RDFS vocab not a SPARQL feature, but I still think this group is an appropriate forum to post such addition.)
## Why?
`rdfs:subClassOf`, `rdfs:subPropertyOf` are refl…
-
Motivated by the other discussion (#131), I had a closer look at our turtle and TriG grammar (https://www.w3.org/TR/rdf12-turtle/#sec-grammar https://www.w3.org/TR/rdf12-trig/) and was surprised, th…
-
test code:
``` go
package main
import (
"context"
"fmt"
"io"
"os"
"github.com/mholt/archiver/v4"
)
func extractArchiverInsideFile(fPath string) ([]string, error) {
reader, err :…
-
Trying some basic podman things in a FreeBSD 14.1-RELEASE jail. Permissions have been given to the jail:
```
children.max = 20;
allow.mount;
allow.mount.devfs;
allow.mount.procfs;
allow.mount.…
-
where do I cd when doing:
```
for FILE in *.tar;
do
mkdir ${FILE/.tar/};
cd ${FILE/.tar/};
tar xvf ../$FILE;
cd ..;
done
```