duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
| $ bin/jruby -X+T bin/irb | |
| irb(main):001:0> Truffle::CExt.inline %s{ | |
| irb(main):002:0: #include <unistd.h> | |
| irb(main):003:0: #include <stdio.h> | |
| irb(main):004:0: }, %s{ | |
| irb(main):005:0: printf("Hello, World! I'm %d\n", getpid()); | |
| irb(main):006:0: } | |
| Hello, World! I'm 36641 | |
| => true | |
| irb(main):002:0> exit |
| (function () { | |
| var makeCallback = function(eventType, observer) { | |
| if (eventType === 'value') { | |
| return function(snap) { | |
| observer.onNext(snap); | |
| }; | |
| } else { | |
| return function(snap, prevName) { | |
| // Wrap into an object, since we can only pass one argument through. | |
| observer.onNext({snapshot: snap, prevName: prevName}); |
| (ns util.redis | |
| (:refer-clojure :exclude [memoize]) | |
| (:require [taoensso.carmine :as car])) | |
| ;; boilerplate stuff that is not in Carmine | |
| (def ^:dynamic ^:private *pool*) | |
| (def ^:dynamic ^:private *spec*) | |
| (defmacro with-redis |
| package com.rtr.infra.wizard.test; | |
| import org.hibernate.Session; | |
| import org.hibernate.SessionFactory; | |
| import org.hibernate.context.internal.ManagedSessionContext; | |
| import org.junit.After; | |
| import org.junit.Before; | |
| public abstract class DropwizardDAOTest { |