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 concurrency.part1.ch1; | |
public class Example2 { | |
public static void main(String[] args) | |
throws Exception { | |
Runnable _r = new Runnable() { | |
public void run() { | |
System.out.println("Hello again, concurrent 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
package concurrency.part1.ch1; | |
public class Example1 { | |
public static void main(String[] args) | |
throws Exception { | |
new Thread() { | |
@Override | |
public void run() { |
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
* { | |
text-rendering: optimizelegibility; | |
} | |
p { | |
padding:40px; | |
font-size:20px; | |
} | |
code { |
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 $gwt_version = "2.0.4";var $wnd = window;var $doc = $wnd.document;var $moduleName, $moduleBase;var $strongName = '1D88C1CFC956D9CCF482C24AC7F915B7';var $stats = $wnd.__gwtStatsEvent ? function(a) {return $wnd.__gwtStatsEvent(a);} : null;var $sessionId = $wnd.__gwtStatsSessionId ? $wnd.__gwtStatsSessionId : null;$stats && $stats({moduleName:'rubiks',sessionId:$sessionId,subSystem:'startup',evtGroup:'moduleStartup',millis:(new Date()).getTime(),type:'moduleEvalStart'});function r(){} | |
function F(){} | |
function E(){} | |
function D(){} | |
function C(){} | |
function mq(){} | |
function hb(){} | |
function vb(){} | |
function Hb(){} | |
function Lb(){} |
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
digraph { | |
node [shape=circle,fontsize=8,fixedsize=true,width=0.9]; | |
edge [fontsize=8]; | |
rankdir=LR; | |
"queue" [shape="doublecircle" color="orange"]; | |
"s1" -> "queue"; | |
"queue" -> "s2"; |
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
digraph { | |
node [shape=circle,fontsize=8,fixedsize=true,width=0.9]; | |
edge [fontsize=8]; | |
rankdir=LR; | |
"do" [shape="circle", style="filled", color="green"]; | |
"approved" [shape="circle", style="filled", color="red"]; | |
"do" -> "approval"; |
NewerOlder