neoxpert
neoxpert
Well which prebuilts? If you are still trying to use 7.6.2 -> There are none available for your machine architecture. If prebuilt-install does not find prebuilt binaries for 8.4.0 that...
As stated in the Hadoop wiki it does not support Java 11 at _compile time_ but at _runtime_. So as long as you do not want to recompile the Hadoop...
The constructor of the AuthenticationContext class takes the domain as third parameter: https://github.com/hierynomus/smbj/blob/3dfc55362bb1f3216ba83e5467ecc73f279d2566/src/main/java/com/hierynomus/smbj/auth/AuthenticationContext.java#L25 You do not need to prepend the domain manually to the user name. If You do so...
@jmkremer6 I don't know all the technical terms here .. but in all environments I used smbj in, the actual value for the domain field varied, as some SMB servers...
As far as I know - at least on windows based shares - there is a 15 minutes auto disconnect timeout for idle connections. To prevent the server to close...
Something like this should work, but I do not know if that is "the clean way". ``` SMB2Echo echo = new SMB2Echo(SMB2Dialect.SMB_2_0_2); session.send(echo); ```
So I also added the /std:c++17 flag for the MSVC settings. But I think it is worth to mention that, as of now, builds against the electron 20 / 21...
Not a problem of the frontend maven plugin. Looks like you are using an incompatible NodeJS executable. Googling for the report error yields several results related to running NodeJS on...
If you have control over the project by changing / adding the wanted version in the [package.json](https://docs.npmjs.com/cli/v10/configuring-npm/package-json#dependencies) of your project. Otherise tell the authors of that discord bot, that they...
Well discord.js itself does not declare a dependency to better-sqlite3. Which other dependencies do you use in your project? Running ```npm list better-sqlite3``` in your project's root folder should list...