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
Updating the code to: | |
```scala | |
import scala.reflect.ClassTag | |
object TestingUnapply { | |
sealed trait Thing | |
case class ThingA(a: String) extends Thing | |
case class ThingB(b: String, thingA: ThingA) extends Thing |
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
object TestingUnapply { | |
sealed trait Thing | |
case class ThingA(a: String) extends Thing | |
case class ThingB(b: String, thingA: ThingA) extends Thing | |
val x: Thing = ThingA("hello") | |
val y: Thing = ThingB("goodbye", ThingA("maybe")) | |
process(x, new { def unapply(thing: ThingA) = ThingA.unapply(thing)}) |
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
auto lo | |
iface lo inet loopback | |
auto eth0 | |
iface eth0 inet static | |
address 5.196.205.132 | |
netmask 255.255.255.255 | |
broadcast 5.196.205.132 | |
gateway 91.121.89.254 | |
post-up /sbin/route add 91.121.89.254 dev eth0 |
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
auto lo | |
iface lo inet loopback | |
auto eth0 | |
iface eth0 inet manual | |
auto br0 | |
iface br0 inet static | |
address 91.121.89.146 | |
netmask 255.255.255.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
$ git show-ref --tags | |
44f824e4ead5e2516a6abf2db9cd91bf1e9a9a99 refs/tags/eXist-2.2 | |
6f67af030cd534df60209e6e78c13a4cd88ff6fc refs/tags/eXist-2.2.RC1 | |
28f90f702e9f8228485985f8bfe093d4392a8666 refs/tags/eXist-2.2.RC2 | |
$ git checkout 6f67af030cd534df60209e6e78c13a4cd88ff6fc | |
Checking out files: 100% (2471/2471), done. | |
Note: checking out '6f67af030cd534df60209e6e78c13a4cd88ff6fc'. | |
You are in 'detached HEAD' state. You can look around, make experimental |
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 javaapplication1; | |
import java.math.BigInteger; | |
import java.util.UUID; | |
public class JavaApplication1 { | |
public static void main(String[] args) { | |
final UUID uuid = UUID.randomUUID(); | |
System.out.println("uuid=" + uuid.toString()); |
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 xpdl.xdm; | |
import xpdl.HString; | |
interface Item { | |
public function stringValue() : xpdl.xdm.String; | |
} | |
class String implements Item { | |
var value: HString; |
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 xpdl; | |
typedef HString = String; |
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
import org.junit.internal.JUnitSystem; | |
import org.junit.internal.RealSystem; | |
import org.junit.internal.TextListener; | |
import org.junit.runner.Description; | |
import org.junit.runner.JUnitCore; | |
import java.util.ArrayList; | |
import java.util.List; | |
/** |
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 org.rocksdb.test; | |
import org.junit.runner.JUnitCore; | |
import org.junit.runner.Result; | |
import org.junit.internal.JUnitSystem; | |
import org.junit.internal.RealSystem; | |
import org.junit.internal.TextListener; | |
public class JUnitConsoleRunner { | |
public final static void main(final String args[]) { |