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
| 2012-04-20 13:45:26 | |
| Full thread dump Java HotSpot(TM) 64-Bit Server VM (20.6-b01-414 mixed mode): | |
| "hz._hzInstance_1_hazelcast-jcook.MC.UDP.Listener" prio=5 tid=7ff818850800 nid=0x11770e000 runnable [11770d000] | |
| java.lang.Thread.State: RUNNABLE | |
| at java.net.PlainDatagramSocketImpl.receive0(Native Method) | |
| - locked <7c839ac68> (a java.net.PlainDatagramSocketImpl) | |
| at java.net.PlainDatagramSocketImpl.receive(PlainDatagramSocketImpl.java:145) | |
| - locked <7c839ac68> (a java.net.PlainDatagramSocketImpl) | |
| at java.net.DatagramSocket.receive(DatagramSocket.java:725) |
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
| var log = require( 'ringo/logging' ).getLogger( module.id ); | |
| function main() { | |
| log.info( 'Executing main' ); | |
| require( 'system' ).exit( 0 ); | |
| } | |
| if ( require.main === module ) { | |
| require( "ringo/engine" ).addShutdownHook( function () { | |
| log.error( 'SHUTTING DOWN' ); |
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
| var {Application} = require( 'stick' ); | |
| var response = require( 'ringo/jsgi/response' ); | |
| var app = exports.app = new Application(); | |
| app.configure( 'route' ); | |
| app.get( '/', function ( req ) { | |
| return response.html( 'Hello, World' ); | |
| } ); |
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
| $(document).on("init", function(){ | |
| var frame; | |
| if (mghApiLoaded) { | |
| if(typeof MGH_API != "undefined"){ | |
| activityAPI = new MGH_API(); | |
| frame = new buildingblock(params); | |
| frame.init(); | |
| } else { | |
| setTimeout(arguments.callee, 100); |
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
| (function() { | |
| var a = 10; | |
| setTimeout(function() { | |
| a = a + 10; | |
| }, 1000); | |
| console.log('Value of a: ' + a); | |
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
| <link rel="import" href="../core-scaffold/core-scaffold.html"> | |
| <link rel="import" href="../core-header-panel/core-header-panel.html"> | |
| <link rel="import" href="../core-menu/core-menu.html"> | |
| <link rel="import" href="../core-item/core-item.html"> | |
| <link rel="import" href="../core-icon-button/core-icon-button.html"> | |
| <link rel="import" href="../core-toolbar/core-toolbar.html"> | |
| <link rel="import" href="../core-menu/core-submenu.html"> | |
| <polymer-element name="my-element"> |
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
| { | |
| "actor": { | |
| "name": "Sally Student", | |
| "account": { | |
| "homePage": "https://connected.mcgraw-hill.com", | |
| "name": "sally518" | |
| } | |
| }, | |
| "verb": { | |
| "id": "http://mheducation.com/lrs/verbs/completed", |
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
| function myFilter( $locale ) { | |
| var formats = $locale.NUMBER_FORMATS; | |
| return something; | |
| } | |
| myFilter.$inject = ['$locale']; | |
| $injector.invoke( myFilter ); | |
| $injector.invoke( ['$locale', myFilter] ); |
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
| { | |
| "$schema": "http://json-schema.org/draft-04/schema#", | |
| "additionalProperties": false, | |
| "type": "object", | |
| "properties": { | |
| "about": { | |
| "id": "#about", | |
| "type": "object", | |
| "required": [ | |
| "version" |
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
| protected static Library getFormatLibrary(String version) throws IOException { | |
| String formatPath = "/xapi/schemas/" + version + "/formats.json"; | |
| final LibraryBuilder libraryBuilder = DraftV4Library.get().thaw(); | |
| final JsonNode formats = JsonLoader.fromResource(formatPath); | |
| // Iterate over each of the custom formats in the file | |
| final Iterator<String> names = formats.fieldNames(); | |
| while (names.hasNext()) { |