This file contains 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 dalton | |
dalton.inject() | |
from httplib import HTTPConnection | |
recorder = dalton.Recorder(caller=HTTPConnection('www.google.com')) | |
def test(): |
This file contains 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
2010-05-12 05:28:36 [1092] [INFO] Listening at: unix:/mnt/application/mopho-v5/run/gunicorn.sock | |
2010-05-12 05:28:36 [1097] [INFO] Worker spawned (pid: 1097) | |
2010-05-12 05:28:36 [1098] [INFO] Worker spawned (pid: 1098) | |
2010-05-12 05:28:36 [1098] [ERROR] Unexpected error in acceptor. Sepuku. | |
Traceback (most recent call last): | |
File "/mnt/application/mopho-v5/src/gunicorn/gunicorn/workers/geventlet.py", line 59, in acceptor | |
conn, addr = self.socket.accept() | |
File "/mnt/application/mopho-v5/lib/python2.6/site-packages/eventlet/greenio.py", line 161, in accept | |
timeout_exc=socket.timeout("timed out")) | |
File "/mnt/application/mopho-v5/lib/python2.6/site-packages/eventlet/hubs/__init__.py", line 118, in trampoline |
This file contains 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
module("Observing global vs. local properties ", { | |
setup: function() { | |
objectA = SC.Object.create({ | |
calledLocalObserver: false, | |
calledGlobalObserver: false, | |
calledMixedObserver: false, | |
locallyObservedProperty: 'beingWatched', |
This file contains 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
def funcall(tuple, ~'[]', [index]) | |
if index < 0 | |
index = index + tuple.size() | |
erlang::element(index + 1, tuple) |
NewerOlder