egolearner
egolearner
Hi @saudet , I get it to work with the following First use `javaText` ```java infoMap.put(new Info("MyType").javaText("\n" + " @NoOffset @Properties(inherit = com.mycompany.myproject2.presets.myproject.class) \n" + " public class MyType extends...
As we all known, no `Info.javaText` will not generate `MyType(long)` constructor. However adding the following will generate compiling error ```java infoMap.put(new Info("MyType::MyType").javaText("public MyType(long size) { allocateArray(size); }")); ``` Error message...
Hi @pdu ,你们进展怎么样?是否已经成功落地到k8s上了?
You can delete unnecessary files after cloning TensorFlow in the same RUN command. It will both keep the image small and avoid wget network issue.
```java infoMap.put(new Info("std::function").pointerTypes("FilterFunction")); public static class FilterFunction extends FunctionPointer { static { Loader.load(); } /** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */ public FilterFunction(Pointer p) { super(p); } protected FilterFunction()...
Remove `&&` works. Thanks a lot @saudet ```java infoMap.put(new Info("SomeClass::set_filter").javaNames("set_filter")); ```
Got stuck with the following mvn error. Help needed. > [ERROR] Plugin org.bytedeco:javacpp:javacpp-1.5.8-SNAPSHOT or one of its dependencies could not be resolved: Could not find artifact org.bytedeco:javacpp:jar:javacpp-1.5.8-SNAPSHOT in sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots)...
got mvn problem solved. Am I supposed to add the following mapping info? ```java infoMap.put(new Info("std::function").pointerTypes("FunctionPointer")); ``` Parsing phase succeeds with the following warning ``` [WARNING] Method "public native void...
> You'll need to use another name than "FunctionPointer". Still not work. ```java infoMap.put(new Info("std::function").pointerTypes("MyFilterFunction")); ``` cannot find symbol [ERROR] symbol: class MyFilterFunction ``` 48: public native void set(@ByRef(true) MyFilterFunction...
It works. I appreciate your effort @saudet