I hereby claim:
- I am dragos on github.
- I am dragos (https://keybase.io/dragos) on keybase.
- I have a public key whose fingerprint is 12D2 FCAC 81B2 3BDF EE19 AEE3 2988 22A1 9159 F5E2
To claim this, I am signing this object:
| package test | |
| // prints: | |
| // | |
| // test.Main.C prefix value: test.Main$@54a097cc | |
| // test.Main.o.D prefix value: Outer(o) | |
| object Main { | |
| val universe = scala.reflect.runtime.universe | |
| val mirror = universe.runtimeMirror(getClass.getClassLoader) | |
| import universe._ |
| trait Encoder[T] | |
| trait JFunction[T, U] | |
| trait Dataset[T] { | |
| def map[U](f: T => U)(implicit encoder: Encoder[U]) | |
| def map[U](f: JFunction[T, U], encoder: Encoder[U]) | |
| } | |
| trait Testing { | |
| implicit val e: Encoder[Int] = ??? |
| ----- org.scala-lang:scala-compiler:jar:2.11.6 found ! | |
| >>>>> Zinc | |
| >> Building Zinc using dbuild | |
| >> Writing properties: /Volumes/Thunderbolt_SSD/dragos/workspace/plugin/uber-build/target/zinc/current-zinc-build.properties | |
| >> publish-repo=https://proxy-ch.typesafe.com:8082/artifactory/ide-2.11 | |
| sbt-tag=v0.13.8 | |
| sbt-version=0.13.8-on-2.11.6-for-IDE-SNAPSHOT | |
| >> Detected sbt version: 0.13.8-on-2.11.6-for-IDE-SNAPSHOT | |
| [scala2] --== Extracting dependencies for scala2 ==-- | |
| [scala2] ---------- |
| package test | |
| import org.apache.spark.SparkConf | |
| import org.apache.spark.SparkContext | |
| import org.apache.spark.rdd.RDD | |
| import org.apache.spark.sql.SQLContext | |
| import SQLContext._ | |
| import org.apache.spark.sql.types._ | |
| case class WikidataElement(id: String, sites: Map[String, String]) |
I hereby claim:
To claim this, I am signing this object:
| $ ./uber-build.sh config/sbt-publish-0.13.6-2.11.x.conf | |
| >>>>> Check arguments | |
| >>>>> Load config | |
| >>>>> Setup logging | |
| >>>>> Set flags | |
| >>>>> Check prerequisites | |
| >>>>> Check configuration | |
| 0 | |
| >>>>> Scala | |
| ----- org.scala-lang:scala-compiler:jar:2.11.6 found ! |
| // build.sbt | |
| resolvers ++= Seq( | |
| Resolver.sonatypeRepo("releases"), | |
| Resolver.sonatypeRepo("snapshots") | |
| ) | |
| // For Scala 2.11.0 | |
| scalaVersion := "2.11.0" | |
| libraryDependencies ++= Seq( |
Eclipse Java C compiler bugs:
Scalac:
| val tpe = typeOf[test.GenericFoo[Int]] //> tpe : reflect.runtime.universe.Type = test.GenericFoo[Int] | |
| tpe.getClass //> res0: Class[?0] = class scala.reflect.internal.Types$TypeRef$$anon$5 | |
| tpe.takesTypeArgs //> res1: Boolean = false | |
| val tpe1 = typeOf[test.GenericFoo[_]].typeSymbol.typeSignature | |
| //> tpe1 : reflect.runtime.universe.Type = [T]AnyRef{def <init>(): test.Generic | |
| //| Foo[T]} | |
| bash GenChangeLog.bash release/scala-ide-2.1.0-m2-2.10 master: | |
| Mon, 25 Feb 2013 02:00:41 -0800 - Iulian Dragos | |
| * Use Scala specific task markers. | |
| Sat, 23 Feb 2013 09:34:01 +0100 - Luc Bourlier | |
| * |