diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/ELiDE/ELiDE/statlist.py b/ELiDE/ELiDE/statlist.py
index <HASH>..<HASH> 100644
--- a/ELiDE/ELiDE/statlist.py
+++ b/ELiDE/ELiDE/statlist.py
@@ -156,21 +156,12 @@ class StatListView(ListView):
def __init__(self, **kwargs):
kwargs['adapter'] = self.get_adapter()
self._listeners = {}
- ... | Get rid of old MirrorMapping-based listeners |
diff --git a/tests/test_library.py b/tests/test_library.py
index <HASH>..<HASH> 100644
--- a/tests/test_library.py
+++ b/tests/test_library.py
@@ -125,7 +125,6 @@ def test_library_add_edit_delete(plex, movies, photos):
# Create Other Videos library = No external metadata scanning
section_name = "plexapi_test_... | removing testing with `Path` object |
diff --git a/bundler.d/checking.rb b/bundler.d/checking.rb
index <HASH>..<HASH> 100644
--- a/bundler.d/checking.rb
+++ b/bundler.d/checking.rb
@@ -1,7 +1,6 @@
group :checking do
unless defined? JRUBY_VERSION
- # TODO - lock until we get this working on rhel6
- gem 'therubyracer', "= 0.11.0beta8", :require => ... | bumping version of therubyracer |
diff --git a/lib/active_record/connection_adapters/sqlserver/database_statements.rb b/lib/active_record/connection_adapters/sqlserver/database_statements.rb
index <HASH>..<HASH> 100644
--- a/lib/active_record/connection_adapters/sqlserver/database_statements.rb
+++ b/lib/active_record/connection_adapters/sqlserver/data... | [Rails3] New DatabaseStatement for empty insert statements. |
diff --git a/news-bundle/src/Resources/contao/dca/tl_news.php b/news-bundle/src/Resources/contao/dca/tl_news.php
index <HASH>..<HASH> 100644
--- a/news-bundle/src/Resources/contao/dca/tl_news.php
+++ b/news-bundle/src/Resources/contao/dca/tl_news.php
@@ -320,7 +320,7 @@ $GLOBALS['TL_DCA']['tl_news'] = array
'exclud... | [News] Allow HTML input in image caption fields (see #<I>) |
diff --git a/spec/unit/connection_spec.rb b/spec/unit/connection_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/unit/connection_spec.rb
+++ b/spec/unit/connection_spec.rb
@@ -109,7 +109,7 @@ module Neography
end
it "does requests with authentication" do
- connection.client.should_receive(:s... | authentication now happens at initialization, not later |
diff --git a/lib/dryrun/android_project.rb b/lib/dryrun/android_project.rb
index <HASH>..<HASH> 100644
--- a/lib/dryrun/android_project.rb
+++ b/lib/dryrun/android_project.rb
@@ -82,7 +82,7 @@ module Dryrun
content = File.open(@settings_gradle_path, 'rb').read
modules = content.scan(/'([^']*)'/)
- ... | Do not inclue file separator to the name of custom module |
diff --git a/silverberg/thrift_client.py b/silverberg/thrift_client.py
index <HASH>..<HASH> 100644
--- a/silverberg/thrift_client.py
+++ b/silverberg/thrift_client.py
@@ -109,7 +109,7 @@ class OnDemandThriftClient(object):
return d
def _notify_on_connect(self):
- d = Deferred(lambda d: self.disco... | reverted cancellation in thirftclient
since cancellation of cqlclient will call its disconnect which will call
thrift client's disconnect |
diff --git a/gui.go b/gui.go
index <HASH>..<HASH> 100644
--- a/gui.go
+++ b/gui.go
@@ -6,6 +6,7 @@ package gocui
import (
"errors"
+ "sync"
"github.com/nsf/termbox-go"
)
@@ -28,6 +29,9 @@ type Gui struct {
keybindings []*keybinding
maxX, maxY int
+ // Protects the gui from being flushed concurrently.
+... | Protect Gui from being flushed concurrently |
diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -480,7 +480,7 @@ module.exports = function(grunt) {
// public commands
grunt.registerTask('happyplan:dev', ['jshint', 'happyplan:build']);
- grunt.registerTask('happyplan:dist', ['jshint', 'happ... | Start with a clean `build` directory each time you start the process.
Close #<I> |
diff --git a/helpers/io_helper.rb b/helpers/io_helper.rb
index <HASH>..<HASH> 100644
--- a/helpers/io_helper.rb
+++ b/helpers/io_helper.rb
@@ -127,6 +127,11 @@ module IO_helper
File.open(path, 'w+'){|f| f.write(new_lines.join)}
end
+ def cd_in(path)
+ puts "cd into #{path}".colorize(:green)
+ FileUtils.c... | io helper cd_in method added |
diff --git a/tests/test_kvstore.py b/tests/test_kvstore.py
index <HASH>..<HASH> 100644
--- a/tests/test_kvstore.py
+++ b/tests/test_kvstore.py
@@ -176,6 +176,13 @@ class KVStoreBase(object):
class TestBsddbStore(unittest.TestCase, KVStoreBase):
DB = "tests.test_bsddb_store"
+ @classmethod
+ def setUpClass... | Skip BsddbStore tests if bsddb is missing or broken (as on OSX) |
diff --git a/src/Controller/MenusController.php b/src/Controller/MenusController.php
index <HASH>..<HASH> 100644
--- a/src/Controller/MenusController.php
+++ b/src/Controller/MenusController.php
@@ -18,7 +18,7 @@ class MenusController extends AppController
*/
public function index()
{
- $menus = ... | Removed pagination, will be handled by datatables (task #<I>) |
diff --git a/src/test/java/com/esotericsoftware/kryo/KryoTest.java b/src/test/java/com/esotericsoftware/kryo/KryoTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/com/esotericsoftware/kryo/KryoTest.java
+++ b/src/test/java/com/esotericsoftware/kryo/KryoTest.java
@@ -84,7 +84,7 @@ public class KryoTest {
... | change reference to this instead of the field |
diff --git a/meta/state.go b/meta/state.go
index <HASH>..<HASH> 100644
--- a/meta/state.go
+++ b/meta/state.go
@@ -130,7 +130,19 @@ func (r *localRaft) open() error {
return err
}
- // Make sure our address is in the raft peers or we won't be able to boot into the cluster
+ // For single-node clusters, we can up... | Make host rename on single node more seemless
Renaming a host that is a raft peer member is pretty difficult but
we can special case single-node renames since we know all the member
in the cluster and we can update the peer store directly on all nodes
(just one).
Fixes #<I> |
diff --git a/numexpr/version.py b/numexpr/version.py
index <HASH>..<HASH> 100644
--- a/numexpr/version.py
+++ b/numexpr/version.py
@@ -1,5 +1,5 @@
version='1.2'
-release=False
+release=True
if not release:
version += '.dev' | Start the packaging phase for <I>. |
diff --git a/tests/text_quotations_test.py b/tests/text_quotations_test.py
index <HASH>..<HASH> 100644
--- a/tests/text_quotations_test.py
+++ b/tests/text_quotations_test.py
@@ -712,7 +712,11 @@ Subject: Hi
Attachments: none
Hello.
+
+-- Original Message --
+On 24th February 2016 at 09.32am Conal Wrote:
+Hey!
"""... | Updating test to account for --original message-- case |
diff --git a/src/models/color.js b/src/models/color.js
index <HASH>..<HASH> 100644
--- a/src/models/color.js
+++ b/src/models/color.js
@@ -272,6 +272,9 @@ const ColorModel = Hook.extend({
:
{ min: timeMdl.start, max: timeMdl.end };
+ if (!limits.min) limits.min = new Date();
+ if (!limits.... | Add protection for the case when buildScale is executed prematurely and limits are null, which results in error when doing null.valueOf() <URL> |
diff --git a/Dropbox/OAuth/Storage/Encrypter.php b/Dropbox/OAuth/Storage/Encrypter.php
index <HASH>..<HASH> 100644
--- a/Dropbox/OAuth/Storage/Encrypter.php
+++ b/Dropbox/OAuth/Storage/Encrypter.php
@@ -66,6 +66,11 @@ class Encrypter
$iv = substr($cipherText, 0, self::IV_SIZE);
$cipherText = substr($cipherText, s... | Added check for failed unserialisation of token |
diff --git a/src/base/reader.js b/src/base/reader.js
index <HASH>..<HASH> 100644
--- a/src/base/reader.js
+++ b/src/base/reader.js
@@ -151,7 +151,14 @@ const Reader = Class.extend({
const result = Object.keys(row).reduce((result, key) => {
if (correct) {
- const value = utils.isString(row[key... | Trim right zeros only if dot is present. Trim trailing dot (#<I>) |
diff --git a/liquibase-core/src/main/java/liquibase/changelog/OfflineChangeLogHistoryService.java b/liquibase-core/src/main/java/liquibase/changelog/OfflineChangeLogHistoryService.java
index <HASH>..<HASH> 100644
--- a/liquibase-core/src/main/java/liquibase/changelog/OfflineChangeLogHistoryService.java
+++ b/liquibase-... | closing streams before rename
(cherry picked from commit b8c<I>afe7c<I>da<I>ef5f<I>e6a0bed6) |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -19,7 +19,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
os.system('pip install https://bitbucket.org/lazka/mutagen/get/default.tar.gz')
setup(
name='soundscrape',
- version='0.2... | <I> - initial Python3 support. Hoping this doesn't break P2 unicode.. |
diff --git a/common.js b/common.js
index <HASH>..<HASH> 100644
--- a/common.js
+++ b/common.js
@@ -188,9 +188,11 @@ function schemaToArray(schema,offset,options,data) {
let blockDepth = 0;
let container = [];
let block = { title: '', rows: [] };
- if (schema.description) block.title = schema.descripti... | Harden prev commit against undefined schemas |
diff --git a/server/clientcommands.js b/server/clientcommands.js
index <HASH>..<HASH> 100644
--- a/server/clientcommands.js
+++ b/server/clientcommands.js
@@ -46,8 +46,13 @@ var listeners = {
// be sent from the IRCd to the target without being truncated.
var blocks = truncateString(args.msg, 350)... | Callback fix on on truncated messages |
diff --git a/src/autobind.js b/src/autobind.js
index <HASH>..<HASH> 100644
--- a/src/autobind.js
+++ b/src/autobind.js
@@ -78,7 +78,7 @@ function autobindMethod(target, key, { value: fn, configurable, enumerable }) {
return fn;
}
- // Autobound method calling calling super.sameMethod() which is a... | comment had double "calling" word |
diff --git a/stanza/models/ner_tagger.py b/stanza/models/ner_tagger.py
index <HASH>..<HASH> 100644
--- a/stanza/models/ner_tagger.py
+++ b/stanza/models/ner_tagger.py
@@ -249,8 +249,9 @@ def train(args):
logger.info("Training ended with {} steps.".format(global_step))
- best_f, best_eval = max(dev_score_his... | Only report max dev score if ran dev set at least once |
diff --git a/client/state/plugins/installed/test/selectors.js b/client/state/plugins/installed/test/selectors.js
index <HASH>..<HASH> 100644
--- a/client/state/plugins/installed/test/selectors.js
+++ b/client/state/plugins/installed/test/selectors.js
@@ -125,6 +125,20 @@ describe( 'Installed plugin selectors', () => {
... | Plugins State: Add test for new isLoaded selector (#<I>) |
diff --git a/usb/_interop.py b/usb/_interop.py
index <HASH>..<HASH> 100644
--- a/usb/_interop.py
+++ b/usb/_interop.py
@@ -131,8 +131,7 @@ def as_array(data=None):
except TypeError:
# When you pass a unicode string or a character sequence,
# you get a TypeError if first parameter does not match
-... | Fixed compatibility with Python <I>. closes #8.
In usb/_interop.py in the as_array function, the array typecodes 'c' and
'u' are used. The 'c' typecode was removed from python <I> and 'u' will
is deprecated. The solution is to use the fromstring array method, but
it has the side effect of adding only the first byte of... |
diff --git a/login/index.php b/login/index.php
index <HASH>..<HASH> 100644
--- a/login/index.php
+++ b/login/index.php
@@ -152,6 +152,9 @@ if ($authsequence[0] == 'cas' and !empty($CFG->cas_enabled)) {
set_moodle_cookie($USER->username);
set_login_session_preferences();
+ /// This... | MDL-<I> placement of load_all_capabilities() in login page |
diff --git a/packages/core/src/textures/resources/CanvasResource.js b/packages/core/src/textures/resources/CanvasResource.js
index <HASH>..<HASH> 100644
--- a/packages/core/src/textures/resources/CanvasResource.js
+++ b/packages/core/src/textures/resources/CanvasResource.js
@@ -1,6 +1,10 @@
import BaseImageResource fr... | Compatibility with older typescript OffscreenCanvas type (#<I>) |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -16,15 +16,9 @@ try:
from Cython.Build import cythonize
except ImportError:
import os
- try:
- pyx_time = os.path.getmtime('cyflann/index.pyx')
- pxd_time = os.path.getmtime('cyflann/flann.pxd')
- ... | meh; don't be clever about mod-times for .c when cython isn't available |
diff --git a/sinatra-contrib/lib/sinatra/reloader.rb b/sinatra-contrib/lib/sinatra/reloader.rb
index <HASH>..<HASH> 100644
--- a/sinatra-contrib/lib/sinatra/reloader.rb
+++ b/sinatra-contrib/lib/sinatra/reloader.rb
@@ -232,6 +232,15 @@ module Sinatra
# Contains the methods defined in Sinatra::Base that are overr... | don't run if we are already running, closes #<I> |
diff --git a/pull_into_place/pipeline.py b/pull_into_place/pipeline.py
index <HASH>..<HASH> 100644
--- a/pull_into_place/pipeline.py
+++ b/pull_into_place/pipeline.py
@@ -102,7 +102,7 @@ class Workspace(object):
@property
def rosetta_dir(self):
- return self.find_path('rosetta')
+ return self.... | Install the rosetta symlink into the root dir.
This removes the need for creating a basically empty project_params dir
in remote workspaces. |
diff --git a/lib/fabrication/schematic/manager.rb b/lib/fabrication/schematic/manager.rb
index <HASH>..<HASH> 100644
--- a/lib/fabrication/schematic/manager.rb
+++ b/lib/fabrication/schematic/manager.rb
@@ -8,16 +8,13 @@ class Fabrication::Schematic::Manager
def initializing?; @initializing end
- def freeze
- ... | Delegate clear and empty? to schematics |
diff --git a/app/controllers/tuttle/ruby_controller.rb b/app/controllers/tuttle/ruby_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/tuttle/ruby_controller.rb
+++ b/app/controllers/tuttle/ruby_controller.rb
@@ -7,7 +7,7 @@ module Tuttle
def index
# TODO: need better filter for sensitive va... | filter *_AUTHENTICATION environment variables |
diff --git a/test/unit/list_test.rb b/test/unit/list_test.rb
index <HASH>..<HASH> 100644
--- a/test/unit/list_test.rb
+++ b/test/unit/list_test.rb
@@ -158,7 +158,8 @@ EOS
def test_self_default_getter
- assert_equal nil, PublicSuffix::List.class_eval { @default }
+ PublicSuffix::List.default = nil
+ asse... | As we don't know test_self_default_getter will run, it must be set to nil |
diff --git a/app/controllers/concerns/paginated.rb b/app/controllers/concerns/paginated.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/concerns/paginated.rb
+++ b/app/controllers/concerns/paginated.rb
@@ -6,7 +6,7 @@ module Paginated
end
def per_page
- @per_page ||= params[:per_page].to_i == 0 ? AppSet... | Fixed per_page assignment booboo |
diff --git a/Helper/PasswordHelper.php b/Helper/PasswordHelper.php
index <HASH>..<HASH> 100644
--- a/Helper/PasswordHelper.php
+++ b/Helper/PasswordHelper.php
@@ -12,7 +12,7 @@
namespace Orkestra\Bundle\ApplicationBundle\Helper;
use Orkestra\Bundle\ApplicationBundle\Entity\HashedEntity;
-use Orkestra\Bundle\Applica... | PasswordHelper now only needs a UserInterface |
diff --git a/firetv/__init__.py b/firetv/__init__.py
index <HASH>..<HASH> 100644
--- a/firetv/__init__.py
+++ b/firetv/__init__.py
@@ -9,6 +9,7 @@ ADB Debugging must be enabled.
import errno
from socket import error as socket_error
from adb import adb_commands
+from adb.adb_protocol import InvalidChecksumError
# ... | Worked around bug with Checksum error dropping connection |
diff --git a/bypy.py b/bypy.py
index <HASH>..<HASH> 100755
--- a/bypy.py
+++ b/bypy.py
@@ -1500,13 +1500,15 @@ class ByPy(object):
return EFileWrite
def __store_json(self, r):
+ j = {}
try:
- r.json()
+ j = r.json()
except Exception:
perr("Failed to decode JSON:\n" \
"Exception:\n{}".format(... | Print auth/refresh web response on error |
diff --git a/lib/api.js b/lib/api.js
index <HASH>..<HASH> 100644
--- a/lib/api.js
+++ b/lib/api.js
@@ -1,7 +1,8 @@
/**
* Helper "class" for accessing MediaWiki API and handling cookie-based session
*/
- var VERSION = '0.3.5';
+module.exports = (function() {
+ var VERSION = '0.3.6';
// @see https://github.com/m... | api.js:
* fix for huge POST requests (make sure data is POSTed, not encoded in URL)
* wrap module in immediate function
* <I> |
diff --git a/src/main/java/org/java_websocket/WebSocket.java b/src/main/java/org/java_websocket/WebSocket.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/java_websocket/WebSocket.java
+++ b/src/main/java/org/java_websocket/WebSocket.java
@@ -137,17 +137,18 @@ public interface WebSocket {
boolean hasBuffered... | Update documentation comments for member methods
Update documentation comments for methods getRemoteSocketAddress and getLocalSocketAddress in WebSocket.java. |
diff --git a/montblanc/impl/biro/v5/gpu/RimeSumCoherencies.py b/montblanc/impl/biro/v5/gpu/RimeSumCoherencies.py
index <HASH>..<HASH> 100644
--- a/montblanc/impl/biro/v5/gpu/RimeSumCoherencies.py
+++ b/montblanc/impl/biro/v5/gpu/RimeSumCoherencies.py
@@ -26,8 +26,8 @@ import pycuda.gpuarray as gpuarray
import montblan... | Cease passing weight vector flags in v5. |
diff --git a/js/sia.js b/js/sia.js
index <HASH>..<HASH> 100644
--- a/js/sia.js
+++ b/js/sia.js
@@ -18,7 +18,6 @@ function SiadWrapper () {
var settings = {
fileName: process.platform === 'win32' ? 'siad.exe' : 'siad',
detached: false,
- agent: 'Sia-Agent',
address: 'localhost:9980',
rpcAddress... | User agent option prevented siad from starting
Somehow I thought I already fixed this. |
diff --git a/lib/sensu/api/routes/silenced.rb b/lib/sensu/api/routes/silenced.rb
index <HASH>..<HASH> 100644
--- a/lib/sensu/api/routes/silenced.rb
+++ b/lib/sensu/api/routes/silenced.rb
@@ -77,7 +77,7 @@ module Sensu
if data[:expire]
expire = data[:expire]
e... | [maitenance] fixed minor indentation issue |
diff --git a/jsx.js b/jsx.js
index <HASH>..<HASH> 100644
--- a/jsx.js
+++ b/jsx.js
@@ -43,12 +43,9 @@
acornJSXWalk(walk.base);
// Allow renaming variables used in JSX.
- infer.searchVisitor.JSXIdentifier = function () {
- // Identifier is defined ad-hoc, so call the latest instance. Using
- //... | Use typical "forwarding" technique. |
diff --git a/src/util/Constants.js b/src/util/Constants.js
index <HASH>..<HASH> 100644
--- a/src/util/Constants.js
+++ b/src/util/Constants.js
@@ -723,7 +723,7 @@ exports.VerificationLevels = createEnum(['NONE', 'LOW', 'MEDIUM', 'HIGH', 'VERY_
* * MESSAGE_ALREADY_HAS_THREAD
* * THREAD_LOCKED
* * MAXIMUM_ACTIVE_TH... | docs(Constants): fix typo "announcement" (#<I>) |
diff --git a/wayback-core/src/main/java/org/archive/wayback/webapp/AccessPoint.java b/wayback-core/src/main/java/org/archive/wayback/webapp/AccessPoint.java
index <HASH>..<HASH> 100644
--- a/wayback-core/src/main/java/org/archive/wayback/webapp/AccessPoint.java
+++ b/wayback-core/src/main/java/org/archive/wayback/webap... | FIX: self-redirect check accounts for relative urls |
diff --git a/consumer_test.go b/consumer_test.go
index <HASH>..<HASH> 100644
--- a/consumer_test.go
+++ b/consumer_test.go
@@ -243,7 +243,7 @@ func TestConsumerRebalancingMultiplePartitions(t *testing.T) {
seedBroker.Close()
}
-func ExampleConsumer_usingSelect() {
+func ExampleConsumer_select() {
master, err := ... | Tweaks to consumer_test.rb |
diff --git a/tests/class-wp-cli-test-case.php b/tests/class-wp-cli-test-case.php
index <HASH>..<HASH> 100644
--- a/tests/class-wp-cli-test-case.php
+++ b/tests/class-wp-cli-test-case.php
@@ -43,12 +43,13 @@ abstract class Wp_Cli_Test_Case extends PHPUnit_Framework_TestCase {
}
class Wordpress_Installer {
+
privat... | don't require passing a runner to Wordpress_Installer |
diff --git a/closure/goog/locale/timezonefingerprint.js b/closure/goog/locale/timezonefingerprint.js
index <HASH>..<HASH> 100644
--- a/closure/goog/locale/timezonefingerprint.js
+++ b/closure/goog/locale/timezonefingerprint.js
@@ -201,7 +201,7 @@ goog.locale.TimeZoneFingerprint = {
680176266: ['RU-Asia/Krasnoyarsk']... | Avoid mystifying certain DownUnder users. Hobart is a far bigger place than Currie. Note that goog.locale.timeZoneDetection.detectTimeZone() looks at the 0'th string in the array.
-------------
Created by MOE: <URL> |
diff --git a/estnltk/taggers/web_taggers/v01/batch_processing_web_tagger.py b/estnltk/taggers/web_taggers/v01/batch_processing_web_tagger.py
index <HASH>..<HASH> 100644
--- a/estnltk/taggers/web_taggers/v01/batch_processing_web_tagger.py
+++ b/estnltk/taggers/web_taggers/v01/batch_processing_web_tagger.py
@@ -44,7 +44,... | Refactored BatchProcessingWebTagger: now join_layers_while_reusing_spans is used for joining |
diff --git a/pyphi/labels.py b/pyphi/labels.py
index <HASH>..<HASH> 100644
--- a/pyphi/labels.py
+++ b/pyphi/labels.py
@@ -12,18 +12,26 @@ def default_labels(indices):
class NodeLabels:
- '''
- TODO: validate labels for duplicates
- TODO: pass in indices if defaults are generated here
+ '''Text labels ... | Cast string of labels to a tuple |
diff --git a/lib/axiom/relation/operation/sorted/direction_set.rb b/lib/axiom/relation/operation/sorted/direction_set.rb
index <HASH>..<HASH> 100644
--- a/lib/axiom/relation/operation/sorted/direction_set.rb
+++ b/lib/axiom/relation/operation/sorted/direction_set.rb
@@ -90,7 +90,7 @@ module Axiom
# @api priv... | Refactor comparison to return early when it is nonzero |
diff --git a/km3pipe/io/aanet.py b/km3pipe/io/aanet.py
index <HASH>..<HASH> 100644
--- a/km3pipe/io/aanet.py
+++ b/km3pipe/io/aanet.py
@@ -327,7 +327,7 @@ class AanetPump(Pump):
tab_dict['parameter'].append(parameter)
tab_dict['field_names'].append(' '.join(fields))
tab_dict['fiel... | Don't use commas for splitting char in the dtype field |
diff --git a/Tests/Logger/LoggerFactoryTest.php b/Tests/Logger/LoggerFactoryTest.php
index <HASH>..<HASH> 100644
--- a/Tests/Logger/LoggerFactoryTest.php
+++ b/Tests/Logger/LoggerFactoryTest.php
@@ -48,14 +48,16 @@ class LoggerFactoryTest extends \PHPUnit_Framework_TestCase {
{
$this->initiateContainerWit... | Assert for check if logger is being added or not |
diff --git a/disposable_email_checker/__init__.py b/disposable_email_checker/__init__.py
index <HASH>..<HASH> 100644
--- a/disposable_email_checker/__init__.py
+++ b/disposable_email_checker/__init__.py
@@ -1 +1 @@
-__version__ = '1.0.0'
+__version__ = '1.1.0' | version bump <I> - Increase number of blacklisted domains |
diff --git a/limpyd/__init__.py b/limpyd/__init__.py
index <HASH>..<HASH> 100644
--- a/limpyd/__init__.py
+++ b/limpyd/__init__.py
@@ -2,7 +2,7 @@
power and the control of the Redis API, in a limpid way, with just as
abstraction as needed."""
-VERSION = (0, 1, 0)
+VERSION = (0, 1, 1)
__author__ = 'Yohan Boniface... | Include only the "limpyd" package in setup.py (no tests) |
diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -23,7 +23,7 @@ module.exports = function createServePlaceholder (_options) {
}
// In case of no handler guessed
- if (handler === undefined) {
+ if (typeof handler === 'undefined') {
if... | refactor: use typeof for undefined check |
diff --git a/lib/fog/rackspace/models/auto_scale/policy.rb b/lib/fog/rackspace/models/auto_scale/policy.rb
index <HASH>..<HASH> 100644
--- a/lib/fog/rackspace/models/auto_scale/policy.rb
+++ b/lib/fog/rackspace/models/auto_scale/policy.rb
@@ -154,6 +154,18 @@ module Fog
true
end
+ # Saves t... | [rackspace|auto_scale] added a save method to policy |
diff --git a/Example/bouncing/index.js b/Example/bouncing/index.js
index <HASH>..<HASH> 100644
--- a/Example/bouncing/index.js
+++ b/Example/bouncing/index.js
@@ -43,6 +43,7 @@ class Snappable extends Component {
return (
<PanGestureHandler
{...this.props}
+ maxPointers={1}
onGestur... | Make it easier to twist view in twist & bounce example. |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -3,6 +3,7 @@
var fs = require('fs');
var url = require('url');
+var pathlib = require('path');
var co = require('co');
var maybe = require('call-me-maybe');
@@ -10,7 +11,7 @@ var fetch = require('node-fetch');
var yam... | Make statusCodes.json findable when loaded as module |
diff --git a/agrona/src/main/java/org/agrona/DeadlineTimerWheel.java b/agrona/src/main/java/org/agrona/DeadlineTimerWheel.java
index <HASH>..<HASH> 100644
--- a/agrona/src/main/java/org/agrona/DeadlineTimerWheel.java
+++ b/agrona/src/main/java/org/agrona/DeadlineTimerWheel.java
@@ -244,7 +244,7 @@ public class Deadline... | fix handling of timers that get shceduled to expire in the current tick by always perfoming one loop in the poll. If breaking out due to max expirations, don't advance the tick. |
diff --git a/parsedatetime/pdt_locales/base.py b/parsedatetime/pdt_locales/base.py
index <HASH>..<HASH> 100644
--- a/parsedatetime/pdt_locales/base.py
+++ b/parsedatetime/pdt_locales/base.py
@@ -86,8 +86,8 @@ decimal_mark = '.'
# this will be added to re_values later
units = {
- 'seconds': ['second', 'seconds', ... | Add 'secs' and 'mins' into base units |
diff --git a/src/Model/AssociationsAwareTrait.php b/src/Model/AssociationsAwareTrait.php
index <HASH>..<HASH> 100644
--- a/src/Model/AssociationsAwareTrait.php
+++ b/src/Model/AssociationsAwareTrait.php
@@ -244,6 +244,12 @@ trait AssociationsAwareTrait
*/
if ($field->getAssocCsvModule() === $module) ... | Add self related associations (task #<I>) |
diff --git a/blockstack_client/cli.py b/blockstack_client/cli.py
index <HASH>..<HASH> 100644
--- a/blockstack_client/cli.py
+++ b/blockstack_client/cli.py
@@ -214,7 +214,7 @@ def run_cli(argv=None, config_path=CONFIG_PATH):
sys.exit(1)
argv = new_argv
- if cli_password or os.environ.get('BLOCKSTACK_C... | don't set to boolean |
diff --git a/client/html/src/Client/Html/Catalog/Lists/Standard.php b/client/html/src/Client/Html/Catalog/Lists/Standard.php
index <HASH>..<HASH> 100644
--- a/client/html/src/Client/Html/Catalog/Lists/Standard.php
+++ b/client/html/src/Client/Html/Catalog/Lists/Standard.php
@@ -646,13 +646,15 @@ class Standard
$page... | Sort by parameter before category position (#<I>)
Sort by the parameter `f_sort` with higher priority then the position of the item in the category. |
diff --git a/SoftLayer/CLI/modules/subnet.py b/SoftLayer/CLI/modules/subnet.py
index <HASH>..<HASH> 100644
--- a/SoftLayer/CLI/modules/subnet.py
+++ b/SoftLayer/CLI/modules/subnet.py
@@ -93,11 +93,12 @@ Options:
table.align['cost'] = 'r'
total = 0.0
- for price in result['prices']:
- ... | Make sure the 'prices' key exists in the dictionary before trying to use it |
diff --git a/resources/views/app.blade.php b/resources/views/app.blade.php
index <HASH>..<HASH> 100644
--- a/resources/views/app.blade.php
+++ b/resources/views/app.blade.php
@@ -43,7 +43,7 @@
@endforeach
</head>
-<body>
+<body class="page-{{\Str::slug(\Route::currentRouteName())}}">
<div class="container-... | Added routeprefixed class to body (#<I>)
* Added routeprefixed class to body
Added a class to body, that will always use a slugified version of the current path as basic.
This allows to style subpages (login, template, ...) differently easily using a custom css file.
* Added slugified route name as body class |
diff --git a/grails-datastore-gorm-hibernate5/src/main/groovy/org/grails/orm/hibernate/cfg/GrailsDomainBinder.java b/grails-datastore-gorm-hibernate5/src/main/groovy/org/grails/orm/hibernate/cfg/GrailsDomainBinder.java
index <HASH>..<HASH> 100644
--- a/grails-datastore-gorm-hibernate5/src/main/groovy/org/grails/orm/hib... | fix for #<I> (#<I>) |
diff --git a/tests/unit/Gateway/SeemeGatewayTest.php b/tests/unit/Gateway/SeemeGatewayTest.php
index <HASH>..<HASH> 100644
--- a/tests/unit/Gateway/SeemeGatewayTest.php
+++ b/tests/unit/Gateway/SeemeGatewayTest.php
@@ -2,6 +2,7 @@
namespace Indigo\Sms\Test\Gateway;
+use Indigo\Sms\Message;
use Indigo\Sms\Gateway\... | Removes Message mocking for now, error thrown because of serializable |
diff --git a/lib/browser/api/browser-window.js b/lib/browser/api/browser-window.js
index <HASH>..<HASH> 100644
--- a/lib/browser/api/browser-window.js
+++ b/lib/browser/api/browser-window.js
@@ -95,17 +95,6 @@ BrowserWindow.prototype._init = function () {
// Notify the creation of the window.
app.emit('browser-wi... | Remove BrowserWindow events now on WebContents |
diff --git a/src/Illuminate/Routing/Router.php b/src/Illuminate/Routing/Router.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Routing/Router.php
+++ b/src/Illuminate/Routing/Router.php
@@ -305,7 +305,20 @@ class Router implements RegistrarContract, BindingRegistrar
}
/**
- * Route an api resource ... | [<I>] Add apiResources function to Router (#<I>)
* Add apiResources function to Router
Mimick the functionality of resources in routes with apiResources
* Update Router.php |
diff --git a/cmd/kube-scheduler/app/options/configfile.go b/cmd/kube-scheduler/app/options/configfile.go
index <HASH>..<HASH> 100644
--- a/cmd/kube-scheduler/app/options/configfile.go
+++ b/cmd/kube-scheduler/app/options/configfile.go
@@ -53,7 +53,7 @@ func loadConfig(data []byte) (*config.KubeSchedulerConfiguration, e... | Switch klog call to use structured logging |
diff --git a/client/my-sites/pages/page/index.js b/client/my-sites/pages/page/index.js
index <HASH>..<HASH> 100644
--- a/client/my-sites/pages/page/index.js
+++ b/client/my-sites/pages/page/index.js
@@ -211,7 +211,11 @@ class Page extends Component {
}
return (
- <PopoverMenuItem onClick={ this.editPage } onM... | Resolve a<I>y warnings |
diff --git a/lib/health-data-standards/import/bundle/importer.rb b/lib/health-data-standards/import/bundle/importer.rb
index <HASH>..<HASH> 100644
--- a/lib/health-data-standards/import/bundle/importer.rb
+++ b/lib/health-data-standards/import/bundle/importer.rb
@@ -64,8 +64,11 @@ module HealthDataStandards
... | Do not save the bundle if it did not successfully import
Currently if you import a bundle and it fails because the same version already exists in the database, then the ensure block is still run and the bundle is still saved, leaving 2 records for the same bundle in the database. This adds a check to see if the bundle... |
diff --git a/sqlparse/filters/reindent.py b/sqlparse/filters/reindent.py
index <HASH>..<HASH> 100644
--- a/sqlparse/filters/reindent.py
+++ b/sqlparse/filters/reindent.py
@@ -168,7 +168,8 @@ class ReindentFilter(object):
def _process_default(self, tlist, stmts=True):
self._split_statements(tlist) if stmts... | Make reindent more robust regarding max recursion errors. |
diff --git a/lib/discordrb/voice/voice_bot.rb b/lib/discordrb/voice/voice_bot.rb
index <HASH>..<HASH> 100644
--- a/lib/discordrb/voice/voice_bot.rb
+++ b/lib/discordrb/voice/voice_bot.rb
@@ -99,6 +99,12 @@ module Discordrb::Voice
@encoder.filter_volume = value
end
+ # @see #filter_volume=
+ # @retur... | Add a reader for filter_volume |
diff --git a/tls.go b/tls.go
index <HASH>..<HASH> 100644
--- a/tls.go
+++ b/tls.go
@@ -10,8 +10,9 @@
package gramework
import (
+ "crypto/ecdsa"
+ "crypto/elliptic"
"crypto/rand"
- "crypto/rsa"
"crypto/tls"
"crypto/x509"
"crypto/x509/pkix"
@@ -27,7 +28,7 @@ func selfSignedCertificate(clientHello *tls.Client... | Using ECDSA for self-signed certificat |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -41,6 +41,6 @@ module.exports = function createGenerator(pattern, options) {
var genericName = interpolateName(loaderContext, name, loaderOptions);
return genericName
.replace(new RegExp('[^a-zA-Z0-9\\-_\u00A0... | Prefix hashes with underscores based on CSS spec
To match with <URL> |
diff --git a/src/attributes.js b/src/attributes.js
index <HASH>..<HASH> 100644
--- a/src/attributes.js
+++ b/src/attributes.js
@@ -153,15 +153,15 @@ jQuery.fn.extend({
},
val: function( value ) {
- var hooks, val,
+ var hooks, ret,
elem = this[0];
if ( !arguments.length ) {
if ( elem ) {
hoo... | Performance testing: localize val to each block and only set val to value when not a function |
diff --git a/__pkginfo__.py b/__pkginfo__.py
index <HASH>..<HASH> 100644
--- a/__pkginfo__.py
+++ b/__pkginfo__.py
@@ -23,10 +23,10 @@ numversion = (1, 2, 1)
version = '.'.join([str(num) for num in numversion])
if sys.version_info < (2, 6):
- install_requires = ['logilab-common >= 0.53.0', 'astroid >= 1.2',
+ ... | go back to dependency on astroid <I> since it breaks tox tests, even when configured to grab astroid from hg :( |
diff --git a/lib/frameit/editor.rb b/lib/frameit/editor.rb
index <HASH>..<HASH> 100644
--- a/lib/frameit/editor.rb
+++ b/lib/frameit/editor.rb
@@ -20,7 +20,7 @@ module Frameit
def run(path, color = Color::BLACK)
@color = color
- Dir["#{path}/**/*.png"].each do |screenshot|
+ Dir.glob("#{path}/**... | Added support for PNG files (upper case) |
diff --git a/lib/audited/auditor.rb b/lib/audited/auditor.rb
index <HASH>..<HASH> 100644
--- a/lib/audited/auditor.rb
+++ b/lib/audited/auditor.rb
@@ -43,7 +43,7 @@ module Audited
class_attribute :audit_associated_with, instance_writer: false
if options[:only]
- except = column_names - opti... | Fix bug when only: is a single field. |
diff --git a/tofu/version.py b/tofu/version.py
index <HASH>..<HASH> 100644
--- a/tofu/version.py
+++ b/tofu/version.py
@@ -1,2 +1,2 @@
# Do not edit, pipeline versioning governed by git tags!
-__version__ = '1.4.3b4-44-g38061c12'
\ No newline at end of file
+__version__ = '1.4.3b4-44-g38061c12' | Added new line at end of file |
diff --git a/drip/models.py b/drip/models.py
index <HASH>..<HASH> 100644
--- a/drip/models.py
+++ b/drip/models.py
@@ -1,9 +1,14 @@
from datetime import datetime, timedelta
from django.db import models
-from django.contrib.auth.models import User
from django.core.exceptions import ValidationError
+try:
+ from... | support for django <I>'s custom user model |
diff --git a/src/scripts/directives/fa-input.js b/src/scripts/directives/fa-input.js
index <HASH>..<HASH> 100644
--- a/src/scripts/directives/fa-input.js
+++ b/src/scripts/directives/fa-input.js
@@ -37,7 +37,7 @@
*
**/
angular.module('famous.angular')
-.config(function ($provide) {
+.config(['$provide', function ... | =BG= minor: explicit directive name for minifcation
one more yet! |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -98,7 +98,7 @@ var latencyReport = function() {
max: latencyData.max,
avg: latencyData.total / latencyData.count,
};
- exports.emit('eventloop', { time: Date.now(), latency: latency });
+ module.exports.emit('ev... | Make use of module.exports/exports consistent (#<I>) |
diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -371,6 +371,7 @@ gulp.task('bundle-framework', function bundleBoot() {
.external('reducer-register')
.external('redux-thunk')
.external('redux')
+ .external('silverstripe-backend')
.external(... | Require silverstripe-backend to avoid double include |
diff --git a/lib/bmc-daemon-lib/conf.rb b/lib/bmc-daemon-lib/conf.rb
index <HASH>..<HASH> 100644
--- a/lib/bmc-daemon-lib/conf.rb
+++ b/lib/bmc-daemon-lib/conf.rb
@@ -85,7 +85,7 @@ module BmcDaemonLib
Encoding.default_external = "utf-8"
# Try to access any key to force parsing of the files
- self[:... | conf: avoid key collision in prepare method |
diff --git a/src/main/java/water/TypeMap.java b/src/main/java/water/TypeMap.java
index <HASH>..<HASH> 100644
--- a/src/main/java/water/TypeMap.java
+++ b/src/main/java/water/TypeMap.java
@@ -133,7 +133,9 @@ public class TypeMap {
Freezable f = GOLD[id];
if( f == null ) {
try { GOLD[id] = f = (Freezable... | Rearrange code to make it possible to set a breakpoint on the exception. |
diff --git a/src/lewis/adapters/stream.py b/src/lewis/adapters/stream.py
index <HASH>..<HASH> 100644
--- a/src/lewis/adapters/stream.py
+++ b/src/lewis/adapters/stream.py
@@ -675,6 +675,8 @@ class StreamInterface(InterfaceBase):
in_terminator = '\r'
out_terminator = '\r'
+ readtimeout = 100
+
comman... | ReadTimeout attribute, analogous but opposite direction of ReadTimeout in protocol files |
diff --git a/less.js b/less.js
index <HASH>..<HASH> 100644
--- a/less.js
+++ b/less.js
@@ -9,7 +9,10 @@ var options = loader.lessOptions || {};
// default optimization value.
options.optimization |= lessEngine.optimization;
-lessEngine.options.async = true;
+if(lessEngine.options) {
+ lessEngine.options.async = tru... | Make sure lessEngine.options exist
Only exists in the browser, it seems. |
diff --git a/specs/spec-reporter.spec.php b/specs/spec-reporter.spec.php
index <HASH>..<HASH> 100644
--- a/specs/spec-reporter.spec.php
+++ b/specs/spec-reporter.spec.php
@@ -8,11 +8,10 @@ use Symfony\Component\Console\Output\BufferedOutput;
describe('SpecReporter', function() {
beforeEach(function() {
- ... | cover SpecReporter::color |
diff --git a/resource/crud.go b/resource/crud.go
index <HASH>..<HASH> 100644
--- a/resource/crud.go
+++ b/resource/crud.go
@@ -58,17 +58,7 @@ func (res *Resource) saveHandler(result interface{}, context *qor.Context) error
if (context.GetDB().NewScope(result).PrimaryKeyZero() &&
res.HasPermission(roles.Create, con... | Remove unnecessary create operation if failed to save |
diff --git a/source/Application/Model/PaymentList.php b/source/Application/Model/PaymentList.php
index <HASH>..<HASH> 100644
--- a/source/Application/Model/PaymentList.php
+++ b/source/Application/Model/PaymentList.php
@@ -62,7 +62,6 @@ class PaymentList extends \OxidEsales\Eshop\Core\Model\ListModel
$tableVie... | perf optimization payment list.
question in slack by aurimas urbonas. would it be faster with this small change without any break? |
diff --git a/tests/TestCase/Integration/JsonApi/SparseFieldsetsIntegrationTest.php b/tests/TestCase/Integration/JsonApi/SparseFieldsetsIntegrationTest.php
index <HASH>..<HASH> 100644
--- a/tests/TestCase/Integration/JsonApi/SparseFieldsetsIntegrationTest.php
+++ b/tests/TestCase/Integration/JsonApi/SparseFieldsetsInteg... | Small difference in url to ensure that correct association is still used |
diff --git a/metrics-core/src/test/java/com/codahale/metrics/TimerTest.java b/metrics-core/src/test/java/com/codahale/metrics/TimerTest.java
index <HASH>..<HASH> 100644
--- a/metrics-core/src/test/java/com/codahale/metrics/TimerTest.java
+++ b/metrics-core/src/test/java/com/codahale/metrics/TimerTest.java
@@ -123,11 +1... | Add additional checks for the try-with-resources test for a Timer |
diff --git a/lib/FieldType/Mapper/RelationListFormMapper.php b/lib/FieldType/Mapper/RelationListFormMapper.php
index <HASH>..<HASH> 100644
--- a/lib/FieldType/Mapper/RelationListFormMapper.php
+++ b/lib/FieldType/Mapper/RelationListFormMapper.php
@@ -48,7 +48,7 @@ class RelationListFormMapper implements FieldTypeFormMa... | Fix EZP-<I>: "Allowed content types" selected item, from ezobjectrelationlist, changes under certain conditions |
diff --git a/src/connection.js b/src/connection.js
index <HASH>..<HASH> 100644
--- a/src/connection.js
+++ b/src/connection.js
@@ -149,6 +149,9 @@ Connection.prototype.send = function(message) {
if (this._options['apisecret']) {
message.apisecret = this._options['apisecret'];
}
+ if (!message['transaction']... | Always add transaction on connection.send if it's not present |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.