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
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 |
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
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 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 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 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 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 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 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
PROGRAM SUBDEM | |
REAL A,B,C,SUM,SUMSQ | |
CALL INPUT( + A,B,C) | |
CALL CALC(A,B,C,SUM,SUMSQ) | |
CALL OUTPUT(SUM,SUMSQ) | |
END |
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
package edu.illinois.vlsicad.tests | |
import edu.illinois.vlsicad.core.FileFormatChecker | |
import edu.illinois.vlsicad.core.URPException | |
class FileFormatCheckerTest extends GroovyTestCase { | |
void testValidFile() { | |
// Should not have any exceptions thrown | |
FileFormatChecker checker = new FileFormatChecker(file: new File("test3.cubes")) | |
checker.checkFileFormat() |
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
# .tmux.conf file inspired from Pragmatic Tmux | |
# http://pragprog.com/book/bhtmux/tmux | |
# Default to zsh with support for Mac OS X clipboard | |
set -g default-command "reattach-to-user-namespace -l /bin/zsh" | |
# https://wiki.archlinux.org/index.php/Tmux | |
# Set more scrollback history | |
# START:scrollback | |
set -g history-limit 10000 |
OlderNewer