Vladimir Chebotarev
Vladimir Chebotarev
You can not use separate DWARF symbols because you have to understand exactly where linker relocates the object data to. By mistake
Guys this is not a bug. Git works exactly as the spec says: > If there is a separator at the end of the pattern then the pattern will only...
@cpburnz You can check how I solved it in my module. First, making a group for extra path parts: https://github.com/excitoon/gitignorefile/commit/6763d4772bb06965d774aaab2dde5d82f33855a3#diff-21e52cb6c7e0acafac258d280cac806bcf75715e4207b85d451e0c9e88d9f2b5R305-R306 Second, analyzing if anything matched. If it did not, we...
One more example: ``` core !core/ ```
I checked `pathspec` against `gitignorefile` on this branch https://github.com/excitoon/3/tree/pathspec . On big project (16188 directories, 204718 files) it is still faster: ``` real 0m43.853s ``` vs ``` real 0m25.885s ```...
I made it to: ``` real 0m28.939s ``` so far. Thing is, `gitignorefile`'s results are more precise, and if I could afford wrong results, it would be much more fast.
I got slightly better RE for a start of pattern: `(?:^|.+/)` instead of `^(?:.+/)?`. @cpburnz check that out
Of course it is On Fri, Sep 2, 2022, 7:20 PM Nicholas Bollweg ***@***.***> wrote: > Is it worth adding an actual benchmark with e.g. pytest-benchmark > or asv >...
> > > would it be possible to add a flag in the json (then in the .shim) indicating that shim.exe should not wait indefinitely? Something like > > ```cs...
@r15ch13 I just made a PR for that.