start new:
tmux
start new with session name:
tmux new -s myname
package controllers | |
import play.api._ | |
import play.api.data._ | |
import play.api.data.Forms._ | |
import play.api.mvc._ | |
object Application extends Controller { | |
val form = Form( |
Variables | |
========== | |
predefined variables : | |
- inventory_hostname (fqdn) (normally the same as ansible.fqdn) | |
- inventory_hostname_short | |
To know the return codes returned by ansible modules, just use plain ansible -vvv to see them : | |
ansible -i ~/ansible/arrfab.net/hosts/hosts.cfg -vvv -m copy -a 'src=files/sysinfo dest=/etc/sysinfo' tungstene.arrfab.net | |
tungstene.arrfab.net | success >> { | |
"changed": true, |
import java.util.Date | |
import akka.actor.Actor | |
import akka.actor.ActorSystem | |
import akka.actor.Props | |
import akka.actor.ReceiveTimeout | |
import akka.util.duration._ | |
class MyActor extends Actor { | |
context.setReceiveTimeout(5 seconds) |
class A | |
class A2 extends A | |
class B | |
trait M[X] | |
// | |
// Upper Type Bound | |
// | |
def upperTypeBound[AA <: A](x: AA): A = x |