Chinh Nguyen
Chinh Nguyen
Check out https://docs.microsoft.com/en-us/windows/desktop/FileIO/naming-a-file specifically https://docs.microsoft.com/en-us/windows/desktop/FileIO/naming-a-file#maximum-path-length-limitation. As an aside, the prefix can also be \\\\?\\UNC\\
This may be related to #26
Example output: ``` InodeEnumList { list: [ File { name: "README.md", value: "" }, File { name: "LICENCE.md", value: "" }, Dir { name: "empty", inode: [] }, Dir {...
1. Javassist version is 3.24.0-GA. 1. I have no idea, my version of javassist from maven does not have source file. But it is 99% likely to be `cp.cacheCtClass(getName(), obj,...
@Capicou I am now using the crate `quick-xml` for XML deserialization but not for this specific issue. I wrote up a quick test and found that: * Latest `serde-xml-rs` (0.6.0)...
Yes, I have disabled it as it's not a common format and the information my program can extract from this type of archive is not especially relevant or useful. The...
I have the same problem. The issue seems to be the file is placed with the wrong path in the execution directory. The entire `file:/` URI is treated like a...
This path problem also affects other task such as Spark Task including the main JAR file. However, since Dolphin will use the full JAR path when constructing the `spark-submit` command,...
**Current workaround** for me is to pass `--master ... --deploy-mode cluster` in the extra options. Since _spark-submit_ will use the last values, this will send task to local cluster. For...
It still issues an assertion error even if using larger value (for example 32). I've modified the unit test: ```c DEF_TEST(issue_5) { // static const int NUM = 32; #define...