This file contains hidden or 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
const Suite = require('benchmark').Suite; | |
const EventEmitter = require('events'); | |
const UEE = require('unusual-event-emitter'); | |
const suite = new Suite(); | |
const testListener = () => { | |
}; |
This file contains hidden or 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
declare var require: { | |
<T>(path: string): T; | |
(paths: string[], callback: (...modules: any[]) => void): void; | |
ensure: (paths: string[], callback: (require: <T>(path: string) => T) => void) => void; | |
}; |
This file contains hidden or 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
package com.schrmnnj.sample | |
import rx.Observable | |
import rx.schedulers.Schedulers | |
/** | |
* Created on 08.01.16. | |
*/ | |
class RxMultiThreadCheck { |
This file contains hidden or 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 javafx.animation.PauseTransition; | |
import javafx.application.Application; | |
import javafx.beans.value.*; | |
import javafx.embed.swing.SwingFXUtils; | |
import javafx.event.*; | |
import javafx.geometry.Bounds; | |
import javafx.scene.Scene; | |
import javafx.scene.control.*; | |
import javafx.scene.image.*; | |
import javafx.scene.layout.*; |