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
2011-04-15 09:05:58.760:DBUG::async request [GET /socket.io/xhr-multipart/]@5547667 org.eclipse.jetty.server.Request@54a693 | |
2011-04-15 09:05:58.760:DBUG::REQUEST /socket.io/xhr-multipart/ on org.eclipse.jetty.server.nio.SelectChannelConnector$2@1f0940a | |
2011-04-15 09:05:58.760:DBUG::sessionManager=org.eclipse.jetty.server.session.HashSessionManager@365dc0 | |
2011-04-15 09:05:58.760:DBUG::session=null | |
2011-04-15 09:05:58.760:DBUG::servlet=org.waveprotocol.box.server.rpc.ServerRpcProvider$WaveSocketIOServlet-18074979 | |
2011-04-15 09:05:58.760:DBUG::servlet holder= org.waveprotocol.box.server.rpc.ServerRpcProvider$WaveSocketIOServlet-18074979 | |
2011-04-15 09:05:58.760:DBUG::chain= null | |
2011-04-15 09:05:58.760:WARN::Committed before 404 null | |
2011-04-15 09:05:58.760:WARN::/socket.io/xhr-multipart/ |
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
if (UserAgent.isFirefox()) { | |
popup = | |
PopupFactory.createPopup(this.getElement(), new RelativePopupPositioner() { | |
@Override | |
public void setPopupPositionAndMakeVisible(Element relative, final Element p) { | |
ScheduleCommand.addCommand(new Scheduler.Task() { | |
@Override | |
public void execute() { | |
p.getStyle().setLeft((RootPanel.get().getOffsetWidth() - p.getOffsetWidth()) / 2, Unit.PX); |
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
ompiling module org.waveprotocol.box.webclient.WebClientDev | |
[java] Validating newly compiled units | |
[java] [ERROR] Errors in 'file:/C:/cygwin/home/vega/wave-protocol/src/org/waveprotocol/box/webclient/client/HistorySupport.java' | |
[java] [ERROR] Line 24: The import org.waveprotocol.box.webclient.client.events.Log cannot be resolved | |
[java] [ERROR] Line 37: Log cannot be resolved to a type | |
[java] [ERROR] Line 37: Log cannot be resolved | |
[java] [ERROR] Line 49: Log cannot be resolved to a type | |
[java] [ERROR] Line 52: Log cannot be resolved to a type | |
[java] [ERROR] Errors in 'file:/C:/cygwin/home/vega/wave-protocol/src/org/waveprotocol/box/webclient/client/RemoteWaveViewService.java' | |
[java] [ERROR] Line 29: The import org.waveprotocol.box.webclient.client.events.Log cannot be resolved |
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
class DeltaStoreBasedWaveletState implements WaveletState { | |
// Some more declarations. | |
** Executor to evaluate results from future when they become ready. */ | |
private final Executor continuationExecutor = Executors.newSingleThreadExecutor(); | |
/** Keyed by appliedAtVersion. */ | |
private final ConcurrentMap<HashedVersion, ByteStringMessage<ProtocolAppliedWaveletDelta>> | |
appliedDeltasToPersist = | |
new ConcurrentHashMap<HashedVersion, ByteStringMessage<ProtocolAppliedWaveletDelta>>(); |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<Module> | |
<ModulePrefs title="View Hits" width="72" height="25"> | |
<Require feature="wave" /> | |
</ModulePrefs> | |
<Content type="html"> | |
<![CDATA[ | |
<div> |
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 recfun | |
import common._ | |
object Main { | |
def main(args: Array[String]) { | |
println("Pascal's Triangle") | |
for (row <- 0 to 10) { | |
for (col <- 0 to row) | |
print(pascal(col, row) + " ") | |
println() |
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 quickcheck | |
import common._ | |
import org.scalacheck._ | |
import Arbitrary._ | |
import Gen._ | |
import Prop._ | |
abstract class QuickCheckHeap extends Properties("Heap") with IntHeap { |
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
implicit class FutureCompanionOps(f: Future.type) extends AnyVal { | |
def userInput(message: String): Future[String] = Future { | |
readLine(message) | |
} | |
} | |
class FutureCompanionOps(f: Future.type) extends AnyVal { | |
def userInput(message: String): Future[String] = Future { | |
readLine(message) |
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
public static String getTitle(WaveId waveId, WaveletId waveletId, WaveMap waveMap, | |
ConversationUtil conversationUtil) { | |
String title = ""; | |
WaveViewData wave = | |
AbstractSearchProviderImpl.buildWaveViewData(waveId, Lists.newArrayList(waveletId), | |
SolrSearchProviderImpl.matchesFunction, waveMap); | |
OpBasedWavelet wavelet = OpBasedWavelet.createReadOnly(wave.getWavelet(waveletId)); | |
if (WaveletBasedConversation.waveletHasConversation(wavelet)) { |
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
#!/bin/bash | |
# | |
# | |
# | |
# Start on runlevels 3, 4 and 5. Start late, kill early. | |
# chkconfig: 345 95 05 | |
# | |
# | |
#!/bin/bash |
OlderNewer