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 Color { | |
final int value; | |
const Color._internal(this.value); | |
static const Color WHITE = const Color._internal(0); | |
static const Color BLACK = const Color._internal(1); | |
@override | |
bool operator==(Object o) => identical(this, o) || | |
o is Color && value == o.value; |
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
| filename | Size | Nodes | Edges | | |
|--------------------|-----------|--------|--------| | |
| 10004-gephi.graphml | 1.518554 | 736 | 7901 | | |
| 10032-gephi.graphml | 0.075646 | 204 | 305 | | |
| 10066-gephi.graphml | 0.178006 | 431 | 745 | | |
| 10188-gephi.graphml | 0.188993 | 542 | 749 | | |
| 10218-gephi.graphml | 0.002426 | 6 | 7 | | |
| 10220-gephi.graphml | 0.011594 | 37 | 41 | | |
| 10405-gephi.graphml | 0.071999 | 188 | 293 | | |
| 10422-gephi.graphml | 0.004462 | 10 | 16 | |
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
v1020-wn-202-209:graphpass ryandeschamps$ gtime -v ./graphpass -f cpp2.graphml -q | |
>>>>>>> GRAPHPASSING >>>>>>>> | |
DIRECTORY: assets/ | |
STRLEN PATH: 7 | |
OUTPUT DIRECTORY: OUT/ | |
PERCENTAGE: 0.000000 | |
FILE: cpp2.graphml | |
METHODS STRING: d | |
QUICKRUN: 1 | |
REPORT: 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
18/03/21 10:06:03 INFO TaskSetManager: Finished task 9.0 in stage 0.0 (TID 9) in 92758 ms on localhost (executor driver) (26/33) | |
[Stage 0:============================================> (26 + 7) / 33]18/03/21 10:06:10 ERROR Executor: Exception in task 17.0 in stage 0.0 (TID 17) | |
java.lang.OutOfMemoryError: Java heap space | |
at java.util.Arrays.copyOf(Arrays.java:3332) | |
at java.lang.StringCoding.safeTrim(StringCoding.java:89) | |
at java.lang.StringCoding.access$100(StringCoding.java:50) | |
at java.lang.StringCoding$StringDecoder.decode(StringCoding.java:154) | |
at java.lang.StringCoding.decode(StringCoding.java:193) | |
at java.lang.StringCoding.decode(StringCoding.java:254) | |
at java.lang.String.<init>(String.java:534) |
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
v1020-wn-252-13:aut ryandeschamps$ scala -version | |
Scala code runner version 2.12.4 -- Copyright 2002-2017, LAMP/EPFL and Lightbend, Inc. | |
v1020-wn-252-13:aut ryandeschamps$ java -version | |
java version "1.8.0_25" | |
Java(TM) SE Runtime Environment (build 1.8.0_25-b17) | |
Java HotSpot(TM) 64-Bit Server VM (build 25.25-b02, mixed mode) | |
v1020-wn-252-13:aut ryandeschamps$ ls | |
CONTRIBUTING.md LICENSE_HEADER.txt config metastore_db pyaut.zip target | |
LICENSE README.md derby.log pom.xml src | |
v1020-wn-252-13:aut ryandeschamps$ cd target/bin |
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
[ryandeschamps@desktop2-ia ~]$ ssh altiscale | |
ssh: Could not resolve hostname altiscale: Name or service not known | |
[ryandeschamps@desktop2-ia ~]$ cat .bash_profile | |
# .bash_profile | |
# Get the aliases and functions | |
if [ -f ~/.bashrc ]; then | |
. ~/.bashrc | |
fi |