This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface JQuery { | |
// noinspection JSUnusedLocalSymbols | |
trumbowyg(command: 'html', content?: string): string; | |
// noinspection JSUnusedLocalSymbols | |
trumbowyg(command: 'openModal', options: JQueryTrumbowyg.ModalOptions): JQuery; | |
// noinspection JSUnusedLocalSymbols | |
trumbowyg(command: 'openModalInsert', options: JQueryTrumbowyg.ModalInsertOptions): JQuery; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Random; | |
class TestTypeAverages { | |
static final long TEST_COUNT = 1000000000L; | |
public static void main(String[] args) { | |
int errorCount = 0; | |
Random generator = new Random(); | |
for (long i = 0; i < TEST_COUNT; i++) { | |
long sum = generator.nextLong(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"AWT-EventQueue-0@5581" prio=6 tid=0x38 nid=NA runnable | |
java.lang.Thread.State: RUNNABLE | |
at org.datacleaner.job.builder.AbstractComponentBuilder.setConfiguredProperty(AbstractComponentBuilder.java:292) | |
at org.datacleaner.job.builder.AnalyzerComponentBuilder.setConfiguredProperty(AnalyzerComponentBuilder.java:326) | |
at org.datacleaner.job.builder.AnalyzerComponentBuilder.setConfiguredProperty(AnalyzerComponentBuilder.java:58) | |
at org.datacleaner.widgets.properties.MultipleInputColumnsPropertyWidget.onOutputChanged(MultipleInputColumnsPropertyWidget.java:378) | |
at org.datacleaner.job.builder.TransformerComponentBuilder.onOutputChanged(TransformerComponentBuilder.java:169) | |
at org.datacleaner.job.builder.TransformerComponentBuilder.getOutputColumns(TransformerComponentBuilder.java:151) | |
at org.datacleaner.job.builder.TransformerComponentBuilder.onConfigurationChanged(TransformerComponentBuilder.java:248) | |
at org.datacleaner.job.builder.AbstractComponentBuilder.setConfiguredProperty(AbstractComp |