Anton Korobeynikov
Anton Korobeynikov
> Actually EXTRA_QT_PLUGINS name is a bit misleading, it should actually be EXTRA_QT_MODULES. I think this was just taken over from linuxdeployqt. We should think about correcting this. Mind to...
## Bug report ### Expected behavior and actual behavior Cannot run nextflow CLI ### Steps to reproduce the problem Just run nextflow CLI script ### Program output We are having:...
BioConda builds RGI from the following recipe https://github.com/bioconda/bioconda-recipes/blob/master/recipes/rgi/meta.yaml which seems to be not updated for the latest 5.2.0 release as it has Python version restrictions and relies on old BioPython....
It seems that segment naming rules are different for different record types and contradict with each other. E.g.: For `S` lines we're having the following regexp: `[!-)+--~][!-~]*`, and `W` lines...
Steps to reproduce: - Grab a clone https://github.com/llvm/llvm-project - Importing as a new project takes several minutes at least - Then after selecting the main branch something takes minutes as...
This adds cmake-based build system instead of manually written Makefiles. Included benefits: - Variety of cmake-supported makefile generators (e.g. Ninja or VCPP project files) - More flexibility in options, targets,...
For #4120 and https://github.com/p4lang/p4-spec/issues/1261 This is an example implementation for foreach-style bounded loops. It contains no tests (as they are written for dowstream backend) and some sema checks are certainly...
cstrings are commonly used as "the string type" in p4c. However, they should be used with more care. The reason is that they are internalized, so each new string is...
There are some bits in visitors that are not used and not correspondingly lacking any test coverage. Examples are: - `dontForwardChildrenBeforePreorder` - `loop_revisit` and corresponding boilerplate Are they stale? Or...
Visitors are central objects in P4C architecture. However, the current implementation imposes lots of overheads and some inefficiencies. I would name some of those that draw my attention 1. They...