Benchmark Name | Control | Experiment | Diff |
---|---|---|---|
default_middleware | 0.0004362226 | 0.0004246712 | 0.0000115514 (2.65% faster) |
form_clean | 0.0000272989 | 0.0000275135 | -0.0000002146 (0.79% slower) |
form_create | 0.0001109242 | 0.0001112223 | -0.0000002980 (0.27% slower) |
l10n_render | 0.0062908888 | 0.0062882066 | 0.0000026822 (0.04% faster) |
locale_from_request | 0.0009182096 | 0.0008761168 | 0.0000420928 (4.58% faster) |
model_creation | 0.0002615690 | 0.0002635717 | -0.0000020027 (0.77% slower) |
model_delete | 0.0004529595 | 0.0004537106 | -0.0000007510 (0.17% slower) |
model_save_existing | 0.0140781879 | 0.0141631722 | -0.0000849843 (0.60% slower) |
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
sssssssssssssssssssssssssss.....................E.. | |
====================================================================== | |
ERROR: test_lorem_tag (django.contrib.webdesign.tests.WebdesignTest) | |
---------------------------------------------------------------------- | |
Traceback (most recent call last): | |
File "/root/bench/django/django/contrib/webdesign/tests.py", line 20, in test_lorem_tag | |
File "/root/bench/django/django/template/loader.py", line 156, in get_template_from_string | |
return Template(source, origin, name) | |
File "/root/bench/django/django/template/base.py", line 134, in __init__ | |
self.nodelist = compile_string(template_string, origin) |
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
from django.db.models.fields import AutoField, CharField, FieldDoesNotExist | |
from django.conf import settings | |
from oauth2client.file import Storage | |
import mailer | |
class ThreadOptions(object): | |
abstract = False | |
swapped = False |
- Qui è dove sono stato io, non ho mai avuto problemi: http://www.eastendproperties.co.uk/. Io pagavo per una stanza molto piccola sui £500 al mese. Se state in due la cosa è ovviamente molto più agevolata. Se vuoi consigli sul prezzo, puoi mandarmelo e qualche foto e ti do il mio parere.
- http://www.gumtree.com/ qui ci sono annunci di tutti i tipi attenta alle sole
- Queste sono delle cose importanti di quanto vai a vedere le case inglesi:
- Controlla l'acqua calda!
- Le bollette preferibilmente incluse, perchè costano un botto
- Internet di base è ottimo quello inglese, ma controlla sempre
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 main | |
import ( | |
"math" | |
"flag" | |
"fmt" | |
"sort" | |
"labix.org/v2/mgo" | |
"labix.org/v2/mgo/bson" | |
) |
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 Expense | |
attr_accessor :description, :price | |
def initialize(inputted_description, inputted_price) | |
# inputted_price is passed as a string, lets | |
# convert it to int. | |
# price_to_integer has no @ because its just | |
# for temporary use, no need to remember it! | |
price_to_integer = inputted_price.to_i |
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 main | |
import ( | |
"fmt" | |
"sync" | |
"math" | |
) | |
type FreqDist struct { | |
sync.Mutex |
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 Person | |
attr_accessor :name | |
def initialize(name) | |
@name = name | |
end | |
def say_hello | |
return "Hello! my name is #{@name}" | |
end |