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
| public void doAnalysisSequential() { | |
| StockDataCollection nyseData = loadNyseData(); | |
| StockDataCollection nasdaqData = loadNasdaqData(); | |
| StockDataCollection mergedMarketData = mergeMarketData(Arrays.asList(nyseData, nasdaqData)); | |
| StockDataCollection normalizedMarketData = normalizeData(mergedMarketData); | |
| StockDataCollection fedHistoricalData = loadFedHistoricalData(); | |
| StockDataCollection normalizedHistoricalData = normalizeData(fedHistoricalData); | |
| StockAnalysisCollection analyzedStockData = analyzeData(normalizedMarketData); | |
| MarketModel modeledMarketData = runModel(analyzedStockData); | |
| StockAnalysisCollection analyzedHistoricalData = analyzeData(normalizedHistoricalData); |
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
| override def doAnalysisParallel() = { | |
| implicit val executor = ExecutionContext.fromExecutorService(new ForkJoinPool()) | |
| val nyseData = Future(loadNyseData()) | |
| val nasdaqData = Future(loadNasdaqData()) | |
| val mergedMarketData = for { | |
| nyse <- nyseData | |
| nasdaq <- nasdaqData |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <java version="1.6.0_24" class="java.beans.XMLDecoder"> | |
| <object class="edu.illinois.codingspectator.refactoringproblems.logger.RefactoringProblem"> | |
| <void property="persistableAttributes"> | |
| <object class="java.util.HashMap"> | |
| <void method="put"> | |
| <string>id</string> | |
| <string>33554772</string> | |
| </void> | |
| <void method="put"> |
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
| <?xml version='1.0' encoding='UTF-8'?> | |
| <?metadataRepository version='1.1.0'?> | |
| <repository name='Update Site' type='org.eclipse.equinox.internal.p2.metadata.repository.LocalMetadataRepository' version='1'> | |
| <properties size='2'> | |
| <property name='p2.timestamp' value='1300688960908'/> | |
| <property name='p2.compressed' value='true'/> | |
| </properties> | |
| <units size='45'> | |
| <unit id='org.eclipse.ltk.core.refactoring' version='3.9.100.201103210128'> | |
| <update id='org.eclipse.ltk.core.refactoring' range='[0.0.0,3.9.100.201103210128)' severity='0'/> |
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
| #!/bin/sh | |
| # | |
| if git rev-parse --verify HEAD >/dev/null 2>&1 | |
| then | |
| against=HEAD | |
| else | |
| # Initial commit: diff against an empty tree object | |
| against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 | |
| fi |
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
| daigo:ROSE_Experiments vazexqi$ build/Rewrite_ROSE.out examples/simple.cpp | |
| "/usr/include/sys/cdefs.h", line 140: warning: incompatible redefinition of | |
| macro "__dead2" (declared at line 148 of | |
| "/usr/local/rose/include/g++_HEADERS/rose_edg_required_macros_and_fun | |
| ctions.h") | |
| #define __dead2 __attribute__((__noreturn__)) | |
| ^ | |
| "/usr/include/sys/cdefs.h", line 141: warning: incompatible redefinition of | |
| macro "__pure2" (declared at line 149 of |
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
| 1. Item 1 | |
| 1. Item 2 | |
| 1. Item 3 | |
| 1. Item 4 | |
| 1. Item 5 | |
| 1. Item 6 | |
| 1. Item 7 | |
| 1. Item 8 | |
| 1. Item 9 | |
| 1. Item 10 |
NewerOlder