Finn Kumkar

Results 10 comments of Finn Kumkar

I would second this request. Our use case is the need to disable the `ts-doc-at-sign-in-word` rule, The following should not trigger any warnings: ```TypeScript /** * A method description containing...

I can also reproduce this bug with `vagrant 2.3.1` and `OpenSSH_for_Windows_8.1p1, LibreSSL 3.0.2` using the following minimal test case: **Vagrantfile** ```Ruby Vagrant.configure("2") do |config| config.vm.box = "debian/bullseye64" config.ssh.forward_agent = true...

If I am running `vagrant up --debug` there is a line indicating, that Vagrant tries to find a pageant process. ``` E, [2022-10-15T21:02:06.088907 #32892] ERROR -- net.ssh.authentication.agent[26548]: could not connect...

OK, I dug around and vagrant indeed uses https://github.com/net-ssh/net-ssh in the shell provisioning context and the available `ssh` binary in the `vagrant ssh` context. See https://github.com/hashicorp/vagrant/issues/10195 for details. The problem...

Until the vagrant shell provisioning is fully cross-platform compatible, we can use the following workaround: **Vagrantfile** ```Ruby ENV['VAGRANT_EXPERIMENTAL'] = "typed_triggers" Vagrant.configure("2") do |config| config.ssh.forward_agent = true config.vm.box = "debian/bullseye64" config.vm.provision...

@cskwrd: I can reproduce that SSH agent forwarding in a provisioning context does _not_ work on Windows. See https://github.com/hashicorp/vagrant/issues/12062#issuecomment-1279788972 for a minimal test case. But I would classify this behavior...

I can also reproduce this behaviour when installing `windows-kill` via Chocolatey. But when I use the binary directly from the [windows-kill_x64_1.1.4_lib_release.zip](https://github.com/alirdn/windows-kill/releases/download/1.1.4/windows-kill_x64_1.1.4_lib_release.zip) it works flawlessly: ```PowerShell .\windows-kill_x64_1.1.4_lib_release\windows-kill.exe -SIGINT 16312 Windows Kill...

Hi, first of all @ggerganov thank you for this awesome project! **Problem** As a Windows user I also struggled to build llama.cpp with CMake and BLAS acceleration via OpenBLAS. The...

@mudler The primary use case is to get usage stats on the client side with the streaming API. I see two combinable changes that would greatly optimize the streaming behaviour...

@linbudu599 I am not sure, if this is related. I am using the following configuration esbuild version: 0.17.14 esbuild-plugin-copy version: 2.1.1 use watch mode like this: https://esbuild.github.io/api/#watch But the plugin...