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
class BinOp(Node): | |
def __init__(self, left, op, right, lineno): | |
self.op = op | |
self.left = left | |
self.right = right | |
self.lineno = lineno | |
def __str__(self): | |
return 'BinOp({0}, {1}, {2})'.format(self.op, self.left, self.right) |
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
def p_exp_int(p): | |
'exp : INT' | |
p[0] = ast.Num(p[1], p.lineno(1)) | |
def p_exp_bool_true(p): | |
'exp : TRUE' | |
p[0] = ast.Bool(True, p.lineno(1)) | |
def p_exp_bool_false(p): | |
'exp : FALSE' |
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] "Computing similarity matrix... This may take a while, please be patient. 2014-08-25 20:28:20" | |
[1] "Computing similarity matrix... Done 2014-08-25 20:28:36" | |
[1] "Finding next projects... This may take a while, please be patient. 2014-08-25 20:28:36" | |
[1] "Found 1 projects. New score 0.623298512187401 2014-08-25 20:28:43" | |
[1] "Found 2 projects. New score 0.690091801202912 2014-08-25 20:28:43" | |
[1] "Found 3 projects. New score 0.733776511554289 2014-08-25 20:28:44" | |
[1] "Found 4 projects. New score 0.764165875276986 2014-08-25 20:28:45" | |
[1] "Found 5 projects. New score 0.787749287749288 2014-08-25 20:28:45" | |
[1] "Found 6 projects. New score 0.809275087052865 2014-08-25 20:28:46" | |
[1] "Found 7 projects. New score 0.828110161443495 2014-08-25 20:28:46" |
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] "Round: 1 Selected: 2815 Coverage: 0.221589110477999 Delta: 0.221589110477999" | |
[1] "Round: 2 Selected: 4509 Coverage: 0.39696106362773 Delta: 0.175371953149731" | |
[1] "Round: 3 Selected: 4211 Coverage: 0.503640392529281 Delta: 0.106679328901551" | |
[1] "Round: 4 Selected: 699 Coverage: 0.581513137068693 Delta: 0.0778727445394113" | |
[1] "Round: 5 Selected: 77 Coverage: 0.645932257043368 Delta: 0.0644191199746755" | |
[1] "Round: 6 Selected: 1739 Coverage: 0.685501741057297 Delta: 0.0395694840139285" | |
[1] "Round: 7 Selected: 1144 Coverage: 0.723013611902501 Delta: 0.0375118708452041" | |
[1] "Round: 8 Selected: 1380 Coverage: 0.754985754985755 Delta: 0.0319721430832541" | |
[1] "Round: 9 Selected: 5434 Coverage: 0.776828110161443 Delta: 0.0218423551756886" | |
[1] "Round: 10 Selected: 304 Coverage: 0.794238683127572 Delta: 0.0174105729661286" |
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
* installing *source* package 'Matrix' ... | |
** package 'Matrix' successfully unpacked and MD5 sums checked | |
** libs | |
make[3]: Entering directory `/state/partition1/tmp/RtmpCw7v7G/R.INSTALL3227fa892a3/Matrix/src' | |
mpicc -I/home/tbarik/src/R-3.1.1/include -DNDEBUG -DNTIMER -I./SuiteSparse_config -I/usr/local/incl ude -fpic -I/home/tbarik/include -c CHMfactor.c -o CHMfactor.o | |
In file included from CHMfactor.h:4, | |
from CHMfactor.c:2: | |
Mutils.h: In function 'inv_permutation': | |
Mutils.h:270: error: 'for' loop initial declaration used outside C99 mode | |
In file included from Mutils.h:374, |
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
tbarik@tbarik0:/google/src/cloud/tbarik/rs_kernel/google3$ fileutil ls -l /cns/pe-d/home | grep yodalog | |
drwxrwxr-x 1 danielvd empty 0 2014/07/24 08:36:53 /cns/pe-d/home/yodalog |
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
private static boolean shouldIgnoreOptionalProblems(char[][] folderNames, char[] fileName) { | |
if (folderNames == null || fileName == null) { | |
return false; | |
} | |
for (int i = 0, max = folderNames.length; i < max; i++) { | |
char[] folderName = folderNames[i]; | |
if (isParentOf(folderName, fileName)) { | |
return true; | |
} | |
} |
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 net.barik.spreadsheet; | |
import org.apache.hadoop.conf.Configuration; | |
import org.apache.hadoop.conf.Configured; | |
import org.apache.hadoop.fs.Path; | |
import org.apache.hadoop.io.Text; | |
import org.apache.hadoop.mapreduce.Job; | |
import org.apache.hadoop.mapreduce.lib.input.NLineInputFormat; | |
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat; | |
import org.apache.hadoop.util.Tool; |
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 net.barik.spreadsheet; | |
import org.apache.commons.io.IOUtils; | |
import org.apache.hadoop.conf.Configuration; | |
import org.apache.hadoop.io.LongWritable; | |
import org.apache.hadoop.io.Text; | |
import org.apache.hadoop.mapreduce.Mapper; | |
import org.json.JSONObject; | |
import java.io.*; |
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
{ | |
"Tika-Content-Type": "text/plain", | |
"Tika-Extension": ".txt", | |
"Digest": "sha1:19dfef9ddbc1ab66c351b83caadf1ce35415c0bf", | |
"WARC-Record-ID": "<urn:uuid:00039cab-5ec6-4833-980f-c7c114399674>", | |
"Length": 326 | |
} |