I am running contiperf with mvn test and I get a report in the folder "contiperf -report", but I do not see any images/pictures either in the report or in the folder.
Does anybody have the same problem and know how to solve it? Does the computer needs to be online to make this work? I am not online when executing my contiperf tests.
Cheers
Magnus
Yes, you must be online because charts are generated with Google chart API. Here an example of charts :
<img src='http://chart.apis.google.com/chart?cht=lxy&chs=320x240&chd=t:47,48,49,50,51,52,53,54|0,80,75,1,0,0,0,0&chxt=x&chxr=0,0,54&chds=0,54,0,100&chf=c,lg,0,FFFFFF,0,FFFF88,1&chm=B,FFE69B,0,0,0|Aavg,666666,0,1,15|Amed,666666,0,1,15|A90%,666666,0,2,15' width='320', height='240'/
it generates beautiful reports. what version you are using? the only problem i find is sometimes i am getting pergen space error but nothing to do with contiperf.
I don't think you need to be online. it is like junit test reports and running off your maven test
Related
I am trying to download diff image of base and checkpoint url created by applitools.
I found test result handler which does this. Here is the link:
https://help.applitools.com/hc/en-us/articles/360007188111-TestResultsHandler-a-way-to-download-diffs-baseline-and-current-images
While running repo I am getting errors.
How to make it work? Anyone has example that works?
I am using java selenium.
I work on the Applitools technical support team. I understand that you're running into an issue with downloading the diff images when using the TestResultsHandler class in Java.
It is tough to say exactly what the issue is that you're experiencing without seeing the error messages as well as your code. In any case, here is an example of the TestResultsHandler usage.
Alternatively, you can also use the Eyes Utilities JAR which also provides the capability of downloading the differences.
Lastly, if you're still running into issues, please feel free to reach out to us directly by opening a ticket via this web form.
I am really finding it difficult to even frame this question. But i will try to explain this in detail.
I have created a plugin using gradle in Intellij Idea. What it does is, checks 2 json files and prints error, according to some logic. All is working well. As soon as i create a jar file of this plugin and do "install plugin from disk" in settings, and then launch plugin, it is not printing System.err.println statements on console, where i am in. Also i see is, idea log files is generating those print statements but not printing on console. Just wanted to know if someone has ever faced such issue, or can help me out. It would be great. Thank you.
Your plugin does not have the access to input/output streams of the JVM process when you are executing it.
You can create a dialog/notification as per this IntelliJ's guide
OR
This thread shows steps needed in creating your own text console.
HTH
I am just a newbie on Adempiere. I downloaded the Adempiere's project and run setup. After that, I've got this error and couldn't find the answer on google.
Does anyone have any idea about this error.
The error you have is due to custom code been defined in the ModelValidator window of ADempiere where the custom module is not compiled together into the binary. But as Colin Rooney asked for clarification, your error pop up box is specifying 'iDempiere' in some data. I can see it is ADempiere as the project logo is clearly ADempiere's and not to be the newer fork, iDempiere's. Also in your error-stack the log name is ADempiere.
Nevertheless the issue is the same for both. Just go to your database (most likely Postgres) go to the ModelValidator table and the FA module record, uncheck the IsActive field or delete the record.
To introduce the FA module you have to first compile it together with the whole ADempiere codebase before deploying.
iDempiere is different, as it does not lock modules in its meta data anymore. It is injected purely by OSGi plugin much like how Eclipse IDE works. I have a movie comparing both ways of deploying custom changes: http://youtu.be/Pm0DzUbVhes
I downloaded the Adempiere's project and run setup.
Did you download Adempiere or iDempiere? From the error it looks like iDemiere but that's not what you say. For support questions like this on Adempiere you'd be better asking for help in their forums or their gitter room
Stackoverflow is directed at developers and development/coding issues.
I've had a look at the JGAP package from the robocode website and I have been getting problems when attempting to set it up. It seems that some of the files that are talked about are not actually in the download. For instance the line on the website says:-
"MyRobot that resides in subdirectory myrobots. In the above call, Aspirant3285 is used"
However the above subdirectory or robot is not in the download also when attempting to run the JAR files the error bellow is shown:
"[main] WARN org.jgap.robocode.EvolveRobot - File not found"
Anyone who can give me a link to a tutorial or some advice on this fix would be much appreciated if further details are required feel free to ask.....
Regards..
I'm not sure on the example from the website how the structure is set up as I was unable to get this running myself.
I've created a small example of how to get the two libraries integrated with each other and running in a very simple application to write, generate, battle and evolve a robot population which may help to get you going in the right direction.
https://github.com/samternent/robocode-jgap-template/
I have a Java Application and I need to get a Jasper report located in Alfresco. Once I have the report I need to add some parameters and then compile it and generate a PDF.
I know this is possible, using alfresco API and Jasper Report API. I have searched in Java-backed Web Scripts Samples but I don't understand the examples, because i'm new in Alfresco and Java, so any clue would be appreciated.
You might be interested in Benjamin Rodriguez' Jasper Reports Dashlet which he submitted as part of last year's Dashlet Challenge. The dashlet makes it possible to configure and run Jasper reports from within the Share UI. This isn't exactly what you are trying to do but it may be a good source of example code.