Skip to content

Instantly share code, notes, and snippets.

@brendano
Created July 8, 2011 04:14
Show Gist options
  • Select an option

  • Save brendano/1071131 to your computer and use it in GitHub Desktop.

Select an option

Save brendano/1071131 to your computer and use it in GitHub Desktop.
[INFO] --- maven-scala-plugin:2.12:compile (default) @ scalanlp-data_2.8.1 ---
[INFO] Checking for multiple versions of scala
[INFO] includes = [**/*.scala,**/*.java,]
[INFO] excludes = []
[INFO] Compiling 108 source files to /Users/brendano/sw/scala/scalanlp-core/data/target/classes
[INFO] cmd: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/bin/java -classpath /Users/brendano/.m2/repository/org/scala-lang/scala-compiler/2.8.1/scala-compiler-2.8.1.jar:/Users/brendano/.m2/repository/org/scala-lang/scala-library/2.8.1/scala-library-2.8.1.jar:/Users/brendano/.m2/repository/org/scala-tools/maven-scala-plugin/2.12/maven-scala-plugin-2.12.jar -Xbootclasspath/a:/Users/brendano/.m2/repository/org/scala-lang/scala-library/2.8.1/scala-library-2.8.1.jar -Xmx1G -Xms64m org.scala_tools.maven.executions.MainWithArgsInFile scala.tools.nsc.Main /private/var/folders/2l/2l25C5HFHfCT5yqrRPfA2U+++TQ/-Tmp-/scala-maven-286153903777917039.args
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/collection/immutable/BinomialHeap.scala:26: error: GenTraversableOnce is not a member of collection
import collection.{GenTraversableOnce, IterableLike}
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/collection/immutable/BinomialHeap.scala:35: error: not found: type Serializable
class BinomialHeap[T<%Ordered[T]] extends Iterable[T] with IterableLike[T,BinomialHeap[T]] with Serializable {
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/collection/immutable/Beam.scala:99: error: not found: value sys
def apply() = sys.error("Sorry, need a max size")
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/collection/LazyIterable.scala:23: error: GenTraversableOnce is not a member of scala.collection
import scala.collection.GenTraversableOnce
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/collection/LazyIterable.scala:111: error: not found: type GenTraversableOnce
protected[this] val mapping: A => GenTraversableOnce[B]
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/collection/LazyIterable.scala:216: error: not found: type GenTraversableOnce
override def flatMap[B, That](f: A => GenTraversableOnce[B])(implicit bf: CanBuildFrom[This, B, That]): That =
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/collection/LazyIterable.scala:193: error: not found: type GenTraversableOnce
protected def newFlatMapped[B](f: A => GenTraversableOnce[B]): Transformed[B] = new FlatMapped[B] { val mapping = f }
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/serialization/Serialization.scala:54: error: not found: type Serializable
trait SerializationFormat extends Serializable {
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/serialization/Serialization.scala:62: error: not found: type Serializable
trait Readable[T] extends Serializable {
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/serialization/Serialization.scala:67: error: not found: type Serializable
trait Writable[T] extends Serializable {
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/collection/mutable/ArrayMap.scala:36: error: not found: type Serializable
with MapLike[Int,V,ArrayMap[V]] with Serializable {
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/collection/mutable/SDArray.scala:10: error: not found: type Serializable
final class SDArray[@specialized T:ClassManifest](_length: Int, default: =>T) extends IntMap[T] with Serializable {
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/collection/mutable/SparseArrayMap.scala:12: error: not found: type Serializable
extends scala.collection.mutable.Map[Int,T] with IntMap[T] with MapLike[Int,T,SparseArrayMap[T]] with Serializable {
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/data/Example.scala:27: error: not found: type Serializable
trait Example[+L,+T] extends Observation[T] with Labeled[L] with Serializable {outer=>
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/data/Observation.scala:27: error: not found: type Serializable
trait Observation[+T] extends Serializable { outer=>
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/distributed/SocketService.scala:48: error: not found: type Serializable
sealed trait ServiceReply extends ServiceMessage with Serializable;
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/distributed/SocketService.scala:29: error: not found: type Serializable
sealed trait ServiceMessage extends Serializable;
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/stage/History.scala:27: error: not found: type Serializable
trait History extends Signature with Serializable {
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/util/Index.scala:173: error: not found: type Serializable
class HashIndex[T] extends MutableIndex[T] with Serializable {
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/text/tokenize/Tokenizer.scala:32: error: not found: type Serializable
trait Tokenizer extends (String => Iterable[String]) with Serializable {
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/text/tokenize/Transformer.scala:28: error: not found: type Serializable
trait Transformer extends (Iterable[String] => Iterable[String]) with Serializable {
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/util/Encoder.scala:163: error: not found: type Serializable
private class SimpleEncoder[T](val index: Index[T]) extends Encoder[T] with Serializable;
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/util.scala:29: error: not found: value sys
def TODO = sys.error("TODO (Not implemented)");
^
/Users/brendano/sw/scala/scalanlp-core/data/src/main/scala/scalanlp/util.scala:34: error: not found: value sys
def XXX = sys.error("XXX Not Implemented");
^
24 errors found
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment