diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/Geometry/rectangle.py b/Geometry/rectangle.py
index <HASH>..<HASH> 100644
--- a/Geometry/rectangle.py
+++ b/Geometry/rectangle.py
@@ -8,10 +8,11 @@ Provides an implementation of a rectangle designed to be easy to use:
import random
import math
-from .point import Point
+from .point2 import Point
from ... | added support for new Point, beginning of rotations |
diff --git a/lib/travis/services/find_repo_settings.rb b/lib/travis/services/find_repo_settings.rb
index <HASH>..<HASH> 100644
--- a/lib/travis/services/find_repo_settings.rb
+++ b/lib/travis/services/find_repo_settings.rb
@@ -4,7 +4,7 @@ module Travis
register :find_repo_settings
def run(options = {})
... | Return nil from find_repo_settings service if repo can't be find |
diff --git a/integration/cluster.go b/integration/cluster.go
index <HASH>..<HASH> 100644
--- a/integration/cluster.go
+++ b/integration/cluster.go
@@ -837,6 +837,7 @@ func NewClusterV3(t *testing.T, cfg *ClusterConfig) *ClusterV3 {
clus := &ClusterV3{
cluster: NewClusterByConfig(t, cfg),
}
+ clus.Launch(t)
for... | integration: NewClusterV3 should launch cluster before creating clients |
diff --git a/src/components/TableBody.js b/src/components/TableBody.js
index <HASH>..<HASH> 100644
--- a/src/components/TableBody.js
+++ b/src/components/TableBody.js
@@ -55,13 +55,7 @@ class TableBody extends React.Component {
const toIndex = Math.min(count, (page + 1) * rowsPerPage);
if (page > totalPages... | Issue warning insteaf of throwing an error (#<I>)
We have a means to clean up the page out of bounds issue elsewhere, so this error is no longer needed and was causing breakage in certain circumstances. |
diff --git a/salt/states/file.py b/salt/states/file.py
index <HASH>..<HASH> 100644
--- a/salt/states/file.py
+++ b/salt/states/file.py
@@ -2199,7 +2199,7 @@ def replace(name,
not_found_content=None,
backup='.bak',
show_changes=True):
- '''
+ r'''
Maintain an edit in a f... | Added note to file.replace about avoiding quoting and escaping in YAML |
diff --git a/tests/test_integrated_channels/test_canvas/test_client.py b/tests/test_integrated_channels/test_canvas/test_client.py
index <HASH>..<HASH> 100644
--- a/tests/test_integrated_channels/test_canvas/test_client.py
+++ b/tests/test_integrated_channels/test_canvas/test_client.py
@@ -19,7 +19,7 @@ NOW = datetime.... | add canvas to installed_apps for test env |
diff --git a/build/deps.js b/build/deps.js
index <HASH>..<HASH> 100644
--- a/build/deps.js
+++ b/build/deps.js
@@ -34,6 +34,7 @@ var deps = {
Extensions: {
src: [
'ext/LatLngUtil.js',
+ 'ext/PolygonUtil.js',
'ext/LineUtil.Intersect.js',
'ext/Polyline.Intersect.js',
'ext/Polygon.Intersect.js' | Including the PolygonUtil file in the dependencies config so it is included in the build. |
diff --git a/spec/xpath_spec.rb b/spec/xpath_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/xpath_spec.rb
+++ b/spec/xpath_spec.rb
@@ -155,6 +155,19 @@ describe Capybara::XPath do
@driver.find(@query).first.value.should == 'seeekrit'
end
end
+
+ describe '#button' do
+ it "should find a button by id ... | Spec example for XPath.button was added |
diff --git a/httpretty/core.py b/httpretty/core.py
index <HASH>..<HASH> 100644
--- a/httpretty/core.py
+++ b/httpretty/core.py
@@ -482,7 +482,8 @@ class fakesock(object):
self.truesock = self.create_socket()
elif not self.truesock:
raise UnmockedError()
- with r... | prevent exception from re-applying monkey patches. closes #<I> |
diff --git a/src/Command/ModuleDownloadCommand.php b/src/Command/ModuleDownloadCommand.php
index <HASH>..<HASH> 100644
--- a/src/Command/ModuleDownloadCommand.php
+++ b/src/Command/ModuleDownloadCommand.php
@@ -16,7 +16,6 @@ use Symfony\Component\Console\Output\OutputInterface;
use Buzz\Browser;
use Alchemy\Zippy\Zip... | Applied PHPQA to be PSR-2 complaint |
diff --git a/dpark/tracker.py b/dpark/tracker.py
index <HASH>..<HASH> 100644
--- a/dpark/tracker.py
+++ b/dpark/tracker.py
@@ -127,13 +127,15 @@ class TrackerClient(object):
if self.ctx is None:
self.ctx = zmq.Context()
+ sock = None
try:
sock = self.ctx.socket(zmq.R... | Bugfix: variable maybe not defined in finnal block. |
diff --git a/tohu/v6/tohu_namespace.py b/tohu/v6/tohu_namespace.py
index <HASH>..<HASH> 100644
--- a/tohu/v6/tohu_namespace.py
+++ b/tohu/v6/tohu_namespace.py
@@ -17,8 +17,7 @@ def get_anonymous_name_for(g):
if g.tohu_name is not None:
return f"ANONYMOUS_ANONYMOUS_ANONYMOUS_{g.tohu_name}"
else:
- ... | Display generator type in anonymous names (for easier debugging) |
diff --git a/javamelody-core/src/main/java/net/bull/javamelody/CounterError.java b/javamelody-core/src/main/java/net/bull/javamelody/CounterError.java
index <HASH>..<HASH> 100644
--- a/javamelody-core/src/main/java/net/bull/javamelody/CounterError.java
+++ b/javamelody-core/src/main/java/net/bull/javamelody/CounterErro... | increase the default max size of stacktrace to <I> characters |
diff --git a/datajoint/blob.py b/datajoint/blob.py
index <HASH>..<HASH> 100644
--- a/datajoint/blob.py
+++ b/datajoint/blob.py
@@ -11,8 +11,15 @@ from decimal import Decimal
import datetime
import uuid
import numpy as np
+import sys
from .errors import DataJointError
+if sys.version_info[1] < 6:
+ from collect... | Update read_dict to return an OrderedDict. |
diff --git a/action/Adapter.php b/action/Adapter.php
index <HASH>..<HASH> 100644
--- a/action/Adapter.php
+++ b/action/Adapter.php
@@ -39,8 +39,10 @@ abstract class Adapter extends Component
}
if ($view = $this->getView()) {
- foreach ($response->content as $key => $value) {
- ... | fixed bug with related adapter without vars |
diff --git a/test/test_all_basic.rb b/test/test_all_basic.rb
index <HASH>..<HASH> 100755
--- a/test/test_all_basic.rb
+++ b/test/test_all_basic.rb
@@ -7,12 +7,12 @@ FILES = Dir[IMAGES_DIR + '/Button_*.gif'].sort
FLOWER_HAT = IMAGES_DIR + '/Flower_Hat.jpg'
IMAGE_WITH_PROFILE = IMAGES_DIR + '/image_with_profile.jpg'
... | Require 'simplecov' before 'test/unit' to retrives valid result (#<I>)
Seems simplecov generate wrong report if it was required after 'test/unit’.
* Before
simplecov reports <I>% covered in rmagick_internal.rb
* After
simplecov reports <I>% covered in rmagick_internal.rb |
diff --git a/src/components/zoom/zoom.js b/src/components/zoom/zoom.js
index <HASH>..<HASH> 100644
--- a/src/components/zoom/zoom.js
+++ b/src/components/zoom/zoom.js
@@ -646,7 +646,12 @@ export default {
swiper.zoom.onTouchEnd(e);
},
doubleTap(swiper, e) {
- if (swiper.params.zoom.enabled && swip... | fix(core): don't toggle zoom during transition
Fixes #<I> |
diff --git a/resource/meta.go b/resource/meta.go
index <HASH>..<HASH> 100644
--- a/resource/meta.go
+++ b/resource/meta.go
@@ -157,6 +157,9 @@ func (meta *Meta) UpdateMeta() {
qor.ExitWithMsg("%v meta type %v needs Collection", meta.Name, meta.Type)
}
+ scopeField, _ := scope.FieldByName(meta.Alias)
+ relationsh... | Move get scope field outside of Setter |
diff --git a/spec/cycle_spec.rb b/spec/cycle_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/cycle_spec.rb
+++ b/spec/cycle_spec.rb
@@ -58,7 +58,7 @@ def create_chickens!(options = {})
options[:random].to_i.times do
attributes = {}
data.each do |type, values|
- attributes["#{type}_col"] = value... | there is no Array::rand |
diff --git a/pydas/core.py b/pydas/core.py
index <HASH>..<HASH> 100644
--- a/pydas/core.py
+++ b/pydas/core.py
@@ -78,18 +78,12 @@ class Communicator(object):
return self._url
@url.setter
- def url_set(self, value):
+ def url(self, value):
"""Setter for the url.
"""
... | BUG: Fixing url setter property errors.
Thanks go to David Thompson for finding this. |
diff --git a/linguist/models/base.py b/linguist/models/base.py
index <HASH>..<HASH> 100644
--- a/linguist/models/base.py
+++ b/linguist/models/base.py
@@ -57,7 +57,7 @@ class Translation(models.Model):
language = models.CharField(
max_length=10,
- verbose_name=_('locale'),
+ verbose_name=_... | Fix language field verbose name. |
diff --git a/app/controllers/no_cms/admin/pages/pages_controller.rb b/app/controllers/no_cms/admin/pages/pages_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/no_cms/admin/pages/pages_controller.rb
+++ b/app/controllers/no_cms/admin/pages/pages_controller.rb
@@ -72,7 +72,7 @@ module NoCms::Admin::Pages
... | Added some params to the allowed ones |
diff --git a/shared/actions/chat2/index.js b/shared/actions/chat2/index.js
index <HASH>..<HASH> 100644
--- a/shared/actions/chat2/index.js
+++ b/shared/actions/chat2/index.js
@@ -814,15 +814,19 @@ const clearInboxFilter = (action: Chat2Gen.SelectConversationPayload) =>
// Show a desktop notification
const desktopNoti... | Show teamname as the title for big team chat notifications (#<I>)
* replace notification title with teamname for team chat notifications
* include channelname for big teams |
diff --git a/backbone.js b/backbone.js
index <HASH>..<HASH> 100644
--- a/backbone.js
+++ b/backbone.js
@@ -1292,7 +1292,7 @@
return optional ? match : '([^/?]+)';
})
.replace(splatParam, '([^?]*?)');
- return new RegExp('^' + route + '(?:\\?(.*))?$');
+... | Handle newlines in route params. |
diff --git a/package/src/testHelpers/factories.js b/package/src/testHelpers/factories.js
index <HASH>..<HASH> 100644
--- a/package/src/testHelpers/factories.js
+++ b/package/src/testHelpers/factories.js
@@ -124,6 +124,23 @@ export const factories = {
return this;
},
+ withAudioFileType: function(... | Add factory builder method to define audio file type |
diff --git a/scdl/scdl.py b/scdl/scdl.py
index <HASH>..<HASH> 100755
--- a/scdl/scdl.py
+++ b/scdl/scdl.py
@@ -395,7 +395,7 @@ def download_playlist(client: SoundCloud, playlist: BasicAlbumPlaylist, **kwargs
try:
if kwargs.get("n"): # Order by creation date and get the n lasts tracks
playlis... | Fix issue for limitting number of playlist entry downloads
created_at doesn't seem to be present in the MiniTrack class, but id will always
be present and works equally well. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ setup.py -- setup script for use of packages.
"""
from setuptools import setup, find_packages
-__version__ = '1.3.6'
+__version__ = '1.3.7'
# create entry points
# see http://astropy.readthedocs.org/en/lat... | Bump to <I>. This includes mainly removal of large filterbank files to an outside source, and JOSS paper initial submission (not last version).
Former-commit-id: a<I>dce<I>c7f<I>dfd2d<I>c7dd<I>c4db0c<I> |
diff --git a/src/com/opera/core/systems/preferences/FilePreference.java b/src/com/opera/core/systems/preferences/FilePreference.java
index <HASH>..<HASH> 100644
--- a/src/com/opera/core/systems/preferences/FilePreference.java
+++ b/src/com/opera/core/systems/preferences/FilePreference.java
@@ -28,7 +28,7 @@ public clas... | The constructor in super is already setting the value, instead we want to write it to disk |
diff --git a/lib/opentsdb/version.rb b/lib/opentsdb/version.rb
index <HASH>..<HASH> 100644
--- a/lib/opentsdb/version.rb
+++ b/lib/opentsdb/version.rb
@@ -1,3 +1,3 @@
module OpenTSDB
- VERSION = "0.2.0"
+ VERSION = '1.0.0'
end | Bumps the version to MAJOR. |
diff --git a/cli/includes/helpers.php b/cli/includes/helpers.php
index <HASH>..<HASH> 100644
--- a/cli/includes/helpers.php
+++ b/cli/includes/helpers.php
@@ -16,7 +16,7 @@ define('VALET_STATIC_PREFIX', '41c270e4-5535-4daa-b23e-c269744c2f45');
define('VALET_LEGACY_HOME_PATH', $_SERVER['HOME'].'/.valet');
-define('... | Fix command to get binary path
Because echo is include new line but printf is not include |
diff --git a/test/index.js b/test/index.js
index <HASH>..<HASH> 100644
--- a/test/index.js
+++ b/test/index.js
@@ -54,4 +54,20 @@ describe('funcDeps', function() {
assert.equal(testDeps.func, test);
});
});
+ describe('called with inline annotated functions', function() {
+ it('hand... | Add tests for inline annotated functions |
diff --git a/tests/test_integration.py b/tests/test_integration.py
index <HASH>..<HASH> 100644
--- a/tests/test_integration.py
+++ b/tests/test_integration.py
@@ -484,7 +484,12 @@ class TestSonosPlaylist(object):
with pytest.raises(SoCoUPnPException):
soco.remove_sonos_playlist("SQ:-7")
#... | Improve test_remove_playlist_bad_id() to accommodate no existing playlists |
diff --git a/src/main/java/org/dasein/cloud/google/compute/server/ServerSupport.java b/src/main/java/org/dasein/cloud/google/compute/server/ServerSupport.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/dasein/cloud/google/compute/server/ServerSupport.java
+++ b/src/main/java/org/dasein/cloud/google/compute/ser... | and forgot to save between staging, editing and comitting... |
diff --git a/lib/sample.js b/lib/sample.js
index <HASH>..<HASH> 100644
--- a/lib/sample.js
+++ b/lib/sample.js
@@ -12,10 +12,6 @@ const readFileAsync = util.promisify(fs.readFile)
const pathToSamples = path.join(__dirname, '../samples.json')
module.exports = function (reporter, definition) {
- if (reporter.comp... | refactor exe compilation to be compatible with new pkg compilation |
diff --git a/sources/scalac/ast/TreeGen.java b/sources/scalac/ast/TreeGen.java
index <HASH>..<HASH> 100644
--- a/sources/scalac/ast/TreeGen.java
+++ b/sources/scalac/ast/TreeGen.java
@@ -528,6 +528,14 @@ public class TreeGen implements Kinds, Modifiers, TypeTags {
//################################################... | - Added methods isInstanceOf |
diff --git a/anime.js b/anime.js
index <HASH>..<HASH> 100644
--- a/anime.js
+++ b/anime.js
@@ -7,8 +7,20 @@
* Released under the MIT license
*/
-var anime = (function() {
-
+(function (root, factory) {
+ if (typeof define === 'function' && define.amd) {
+ // AMD. Register as an anonymous module.
+ define([... | make anime export as a UMD module |
diff --git a/closure/goog/db/error.js b/closure/goog/db/error.js
index <HASH>..<HASH> 100644
--- a/closure/goog/db/error.js
+++ b/closure/goog/db/error.js
@@ -340,6 +340,8 @@ goog.db.Error.fromRequest = function(request, message) {
* @param {!IDBDatabaseException} ex The exception that was thrown.
* @param {string}... | Fix issues blocking the JSCompiler release
Most of these consist of
- invalid type casts
- function declarations in 'if' blocks, which are forbidden in
future versions of JS
- bad generic types
DELTA=2 (2 added, 0 deleted, 0 changed)
Revision created by MOE tool push_codebase.
MOE_MIGRATION=<I>
git-svn-id: <URL> |
diff --git a/src/Dingo/Api/Api.php b/src/Dingo/Api/Api.php
index <HASH>..<HASH> 100644
--- a/src/Dingo/Api/Api.php
+++ b/src/Dingo/Api/Api.php
@@ -100,11 +100,11 @@ class Api {
*/
public function currentRequestTargettingApi()
{
- if ($this->request->header('host') == $this->domain)
+ if ( ! is_null($this->doma... | Fixed bug where all requests treated as API request. |
diff --git a/ipyrad/assemble/cluster_across.py b/ipyrad/assemble/cluster_across.py
index <HASH>..<HASH> 100644
--- a/ipyrad/assemble/cluster_across.py
+++ b/ipyrad/assemble/cluster_across.py
@@ -1336,6 +1336,7 @@ def build_clustbits(data, ipyclient, force):
uhandle = os.path.join(data.dirs.across, data.name+".utem... | Better handling for restarting jobs in substeps of step 6. |
diff --git a/spec/client_spec.rb b/spec/client_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/client_spec.rb
+++ b/spec/client_spec.rb
@@ -128,10 +128,10 @@ describe Customerio::Client do
Customerio::Client.should_receive(:post).with(
"/api/v1/customers/5/events", {
:basic_auth => anything(),
-... | Fix use of to_json in spec |
diff --git a/vagrant_box_defaults.rb b/vagrant_box_defaults.rb
index <HASH>..<HASH> 100644
--- a/vagrant_box_defaults.rb
+++ b/vagrant_box_defaults.rb
@@ -3,10 +3,10 @@
Vagrant.require_version ">= 2.2.0"
$SERVER_BOX = "cilium/ubuntu-dev"
-$SERVER_VERSION= "186"
+$SERVER_VERSION= "188"
$NETNEXT_SERVER_BOX= "cilium/... | vagrant: bump box versions
These new box images include Go <I> (cilium/packer-ci-build#<I>) and
pre-pull all Docker images which are currently used to build and test
Cilium (cilium/packer-ci-build#<I> and cilium/packer-ci-build#<I>). |
diff --git a/src/components/fields/Select/index.js b/src/components/fields/Select/index.js
index <HASH>..<HASH> 100644
--- a/src/components/fields/Select/index.js
+++ b/src/components/fields/Select/index.js
@@ -3,6 +3,7 @@ import Select from 'react-select'
import autobind from 'autobind-decorator'
import PropTypes fr... | use isNil for select has value |
diff --git a/test.js b/test.js
index <HASH>..<HASH> 100755
--- a/test.js
+++ b/test.js
@@ -15,7 +15,7 @@ console.log('starting actionhero test suite with NODE_ENV=test');
var execeutable;
if(process.platform === 'win32'){
- execeutable = 'mocha.bash';
+ execeutable = 'mocha.cmd';
}else{
execeutable = 'mocha';... | back to spawn; but with mocha.bat |
diff --git a/src/Email/Swift5.php b/src/Email/Swift5.php
index <HASH>..<HASH> 100644
--- a/src/Email/Swift5.php
+++ b/src/Email/Swift5.php
@@ -35,7 +35,7 @@ class Swift5 extends SwiftAbstract
{
$this->config = $config;
if( !class_exists('\Swift_Mailer') ) {
- require_once dirname(__FIL... | removes hardcoded include to swift |
diff --git a/config/options.go b/config/options.go
index <HASH>..<HASH> 100644
--- a/config/options.go
+++ b/config/options.go
@@ -143,6 +143,26 @@ func LoadOptions(ops Options) {
}).Debug("Overriding Elastic startup timeout")
options.ESStartupTimeout = minTimeout
}
+
+ if options.ZKReconnectStartDelay < 1 {
+... | Make sure start and max delays meet minimum requirements |
diff --git a/src/main/java/org/skysql/jdbc/MySQLStatement.java b/src/main/java/org/skysql/jdbc/MySQLStatement.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/skysql/jdbc/MySQLStatement.java
+++ b/src/main/java/org/skysql/jdbc/MySQLStatement.java
@@ -303,7 +303,12 @@ public class MySQLStatement implements State... | Null out cached statements early on when a statement is closed. Attempt to reduce memory overhead |
diff --git a/test/com/google/javascript/jscomp/CommandLineRunnerTest.java b/test/com/google/javascript/jscomp/CommandLineRunnerTest.java
index <HASH>..<HASH> 100644
--- a/test/com/google/javascript/jscomp/CommandLineRunnerTest.java
+++ b/test/com/google/javascript/jscomp/CommandLineRunnerTest.java
@@ -1884,7 +1884,6 @@... | Move the exit code test to the end of the function so that it doesn't hide real error messages. |
diff --git a/app/mailers/pointless_feedback/feedback_mailer.rb b/app/mailers/pointless_feedback/feedback_mailer.rb
index <HASH>..<HASH> 100644
--- a/app/mailers/pointless_feedback/feedback_mailer.rb
+++ b/app/mailers/pointless_feedback/feedback_mailer.rb
@@ -14,7 +14,7 @@ module PointlessFeedback
end
def fe... | Changed default email subject to just "Feedback"
- warmest regards |
diff --git a/lib/active_file/hash_and_array_files.rb b/lib/active_file/hash_and_array_files.rb
index <HASH>..<HASH> 100644
--- a/lib/active_file/hash_and_array_files.rb
+++ b/lib/active_file/hash_and_array_files.rb
@@ -13,7 +13,7 @@ module ActiveFile
loaded_files = full_paths.collect { |path| load_path(path) }
... | Fix deprecation warning of `Enumerable#sum`
```
DEPRECATION WARNING: Rails <I> has deprecated Enumerable.sum in favor of Ruby's native implementation available since <I>. Sum of non-numeric elements requires an initial argument.
``` |
diff --git a/app/src/js/modules/omnisearch.js b/app/src/js/modules/omnisearch.js
index <HASH>..<HASH> 100644
--- a/app/src/js/modules/omnisearch.js
+++ b/app/src/js/modules/omnisearch.js
@@ -49,8 +49,7 @@
results.push({
id: item.path,
pa... | Remove priority from result, as it is unused |
diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -121,8 +121,8 @@ gulp.task('build.js.dev', function () {
var result = gulp.src([join(PATH.src.all, '**/*ts'),
'!' + join(PATH.src.all, '**/*_spec.ts')])
.pipe(plumber())
- .pipe... | Move inlining as does not support source map yet |
diff --git a/src/StrokerCache/Service/CacheService.php b/src/StrokerCache/Service/CacheService.php
index <HASH>..<HASH> 100644
--- a/src/StrokerCache/Service/CacheService.php
+++ b/src/StrokerCache/Service/CacheService.php
@@ -86,17 +86,18 @@ class CacheService
/**
* @param array $tags
+ * @return bool... | clearByTags should return a boolean |
diff --git a/js/main.js b/js/main.js
index <HASH>..<HASH> 100644
--- a/js/main.js
+++ b/js/main.js
@@ -1,5 +1,5 @@
/*
- * jQuery File Upload Plugin JS Example 7.1
+ * jQuery File Upload Plugin JS Example 7.1.1
* https://github.com/blueimp/jQuery-File-Upload
*
* Copyright 2010, Sebastian Tschan
@@ -32,7 +32,8 @@ ... | Updated domain check for the demo settings.
blueimp.github.com => blueimp.github.io |
diff --git a/stagpy/processing.py b/stagpy/processing.py
index <HASH>..<HASH> 100644
--- a/stagpy/processing.py
+++ b/stagpy/processing.py
@@ -155,8 +155,9 @@ def stream_function(step):
x=r_coord,
initial=0)
for i_z, r_pos in enume... | Fix stream function computation in spherical geom |
diff --git a/packages/eslint-config-import/index.js b/packages/eslint-config-import/index.js
index <HASH>..<HASH> 100644
--- a/packages/eslint-config-import/index.js
+++ b/packages/eslint-config-import/index.js
@@ -1,6 +1,6 @@
module.exports = {
"parser": "babel-eslint",
- "extends": "airbnb-base/rules/import",
+ ... | fix(eslint-config-import): fix typo in airbnb rules name
affects: @goldwasserexchange/eslint-config-import
the rule package is called imports and not import |
diff --git a/core/ports/jms/src/test/java/org/openengsb/core/ports/jms/JMSPortTest.java b/core/ports/jms/src/test/java/org/openengsb/core/ports/jms/JMSPortTest.java
index <HASH>..<HASH> 100644
--- a/core/ports/jms/src/test/java/org/openengsb/core/ports/jms/JMSPortTest.java
+++ b/core/ports/jms/src/test/java/org/openeng... | Calling audit in TestCase |
diff --git a/benchmarks/regression-test.js b/benchmarks/regression-test.js
index <HASH>..<HASH> 100644
--- a/benchmarks/regression-test.js
+++ b/benchmarks/regression-test.js
@@ -17,6 +17,10 @@ fs.readFile('books.json', 'utf8',
(err, data) => setupBenchmarks(JSON.parse(data).books)
);
+var filter = process.argv.l... | Added support for filtering benchmarks |
diff --git a/org/postgresql/jdbc2/TimestampUtils.java b/org/postgresql/jdbc2/TimestampUtils.java
index <HASH>..<HASH> 100644
--- a/org/postgresql/jdbc2/TimestampUtils.java
+++ b/org/postgresql/jdbc2/TimestampUtils.java
@@ -1,6 +1,6 @@
/*-------------------------------------------------------------------------
*
-* Co... | use DSTSavings when converting to timestamp |
diff --git a/src/multi.js b/src/multi.js
index <HASH>..<HASH> 100644
--- a/src/multi.js
+++ b/src/multi.js
@@ -135,10 +135,10 @@ var multi = (function() {
item_group.className = "item-group";
if ( option.parentNode.label ) {
- var label = document.createElement("sp... | Fixed issue where search wouldn’t work with optgroups |
diff --git a/deliver/lib/deliver/html_generator.rb b/deliver/lib/deliver/html_generator.rb
index <HASH>..<HASH> 100644
--- a/deliver/lib/deliver/html_generator.rb
+++ b/deliver/lib/deliver/html_generator.rb
@@ -9,7 +9,8 @@ module Deliver
def run(options, screenshots)
begin
- html_path = self.render... | [deliver] generate Preview.html file in fastlane directory like gitignore suggests (#<I>) |
diff --git a/Tests/ResourceMirrorTest.php b/Tests/ResourceMirrorTest.php
index <HASH>..<HASH> 100644
--- a/Tests/ResourceMirrorTest.php
+++ b/Tests/ResourceMirrorTest.php
@@ -37,4 +37,15 @@ class ResourceMirrorTest extends \PHPUnit_Framework_TestCase
$mirror = new ResourceMirror(new EventDispatcher(), 'http://... | Test creating a mirror with a bad directory. |
diff --git a/tests/explainers/test_kernel.py b/tests/explainers/test_kernel.py
index <HASH>..<HASH> 100644
--- a/tests/explainers/test_kernel.py
+++ b/tests/explainers/test_kernel.py
@@ -71,7 +71,7 @@ def test_kernel_shap_with_a1a_sparse_zero_background():
explainer.shap_values(x_test)
def test_kernel_shap_with... | Fix windows issue with set_printoptions |
diff --git a/lib/matcher/Matcher.js b/lib/matcher/Matcher.js
index <HASH>..<HASH> 100644
--- a/lib/matcher/Matcher.js
+++ b/lib/matcher/Matcher.js
@@ -874,7 +874,7 @@
i = -1, len = m.length;
for ( ; ++i < len ; ) {
- for902 (j in m[i]) {
+ for (j in m[i]) {
if ... | matcher fixedRoles and canMatchSameRole |
diff --git a/packages/eslint-config/lib/overrides.js b/packages/eslint-config/lib/overrides.js
index <HASH>..<HASH> 100644
--- a/packages/eslint-config/lib/overrides.js
+++ b/packages/eslint-config/lib/overrides.js
@@ -14,6 +14,23 @@ const overrides = [];
if (hasTypescript) {
overrides.push(
{
+ ... | Make sure eslint works with mjs files |
diff --git a/src/threadPool.py b/src/threadPool.py
index <HASH>..<HASH> 100644
--- a/src/threadPool.py
+++ b/src/threadPool.py
@@ -32,6 +32,7 @@ class ThreadPool(Module):
self.name = name
if prctl:
prctl.set_name(name)
+ prctl.set_proctitle(name)... | threadPool: also set proctitle |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ setup(
author="David Uebelacker",
author_email="david@uebelacker.ch",
url="https://github.com/hackercowboy/python-maxcube-api.git",
- license=license,
+ license='MIT',
packages=["maxcub... | setup.py: fix license value
The value is unset, which does not propagate the license into PyPi. |
diff --git a/specs-go/config.go b/specs-go/config.go
index <HASH>..<HASH> 100644
--- a/specs-go/config.go
+++ b/specs-go/config.go
@@ -24,9 +24,9 @@ type Spec struct {
Annotations map[string]string `json:"annotations,omitempty"`
// Linux is platform specific configuration for Linux based containers.
- Linux Linux... | specs-go/config: Make Linux and Solaris omitempty
Both fields are optional, so you could conceivably have neither.
However, in most cases folks will populate the one corresponding to
their platform. The one that *doesn't* match their platform must not
show up, in order to avoid violating the:
This should only be s... |
diff --git a/dns.go b/dns.go
index <HASH>..<HASH> 100644
--- a/dns.go
+++ b/dns.go
@@ -16,7 +16,7 @@ type DNSRecord struct {
Name string `json:"name,omitempty"`
Content string `json:"content,omitempty"`
Proxiable bool `json:"proxiable,omitempty"`
- Proxied bool `json:"proxied,... | Always serialize Proxied and Priority fields |
diff --git a/lib/dalli/client.rb b/lib/dalli/client.rb
index <HASH>..<HASH> 100644
--- a/lib/dalli/client.rb
+++ b/lib/dalli/client.rb
@@ -269,7 +269,7 @@ module Dalli
end
def key_without_namespace(key)
- @options[:namespace] ? key.gsub(%r(\A#{@options[:namespace]}:), '') : key
+ @options[:namespa... | Stop attempting to strip the namespace from a key multiple times |
diff --git a/test/net/fortuna/ical4j/data/CalendarOutputterTest.java b/test/net/fortuna/ical4j/data/CalendarOutputterTest.java
index <HASH>..<HASH> 100644
--- a/test/net/fortuna/ical4j/data/CalendarOutputterTest.java
+++ b/test/net/fortuna/ical4j/data/CalendarOutputterTest.java
@@ -118,7 +118,7 @@ public class Calendar... | Ensure BufferedReader buffer size <= UnfoldingReader buffer size |
diff --git a/lib/models/design.js b/lib/models/design.js
index <HASH>..<HASH> 100644
--- a/lib/models/design.js
+++ b/lib/models/design.js
@@ -50,8 +50,8 @@ let designModel = function (modelSchema, methods) {
_modelSchema.attributes[index].type = property.type;
i... | Don't let default value of fall through. |
diff --git a/scheduler/scheduler.go b/scheduler/scheduler.go
index <HASH>..<HASH> 100644
--- a/scheduler/scheduler.go
+++ b/scheduler/scheduler.go
@@ -158,6 +158,11 @@ func NewMesosSchedulerDriver(config DriverConfig) (initializedDriver *MesosSched
if framework.GetUser() == "" {
user, err := user.Current()
if e... | Log warning if no username can be obtained (and none is given). |
diff --git a/publish.js b/publish.js
index <HASH>..<HASH> 100644
--- a/publish.js
+++ b/publish.js
@@ -21,7 +21,7 @@ module.exports = function() {
function putThemInVendorDir (filepath) {
return 'vendor/' + path.basename(filepath);
- }g
+ }
return {
humaName : 'UI.Ace', | fix(publisher): remove typo |
diff --git a/js/base/Exchange.js b/js/base/Exchange.js
index <HASH>..<HASH> 100644
--- a/js/base/Exchange.js
+++ b/js/base/Exchange.js
@@ -677,8 +677,8 @@ module.exports = class Exchange {
async fetchL2OrderBook (symbol, params = {}) {
let orderbook = await this.fetchOrderBook (symbol, params)
re... | Exchange: fix for "removed the bidask sorting from fetchL2OrderBook to fetchOrderBook #<I>" |
diff --git a/lib/server.js b/lib/server.js
index <HASH>..<HASH> 100644
--- a/lib/server.js
+++ b/lib/server.js
@@ -82,8 +82,12 @@ function handleResponse (opts, newReq, resp, response) {
resp.writeHead(response.status, '', response.headers);
resp.end(body);
} else {
- if (r... | Include an Error instance in the log warning |
diff --git a/src/js/lightbox/lightbox.js b/src/js/lightbox/lightbox.js
index <HASH>..<HASH> 100644
--- a/src/js/lightbox/lightbox.js
+++ b/src/js/lightbox/lightbox.js
@@ -94,6 +94,9 @@ class PhotoSwipeLightbox extends PhotoSwipeBase {
if (clickedChildIndex !== -1) {
return clickedChildIndex;
+ } else i... | #<I> fix - Clicking the surrounding element always opens the first image of the gallery |
diff --git a/src/EncodingHelper/FromUtf8.php b/src/EncodingHelper/FromUtf8.php
index <HASH>..<HASH> 100644
--- a/src/EncodingHelper/FromUtf8.php
+++ b/src/EncodingHelper/FromUtf8.php
@@ -58,7 +58,7 @@ class FromUtf8 implements EncodingHelperInterface
{
$return = '';
for ($i = 0; $i < strlen($stri... | fix 'Array and string offset access syntax with curly braces is deprecated' note in php-<I> (#<I>) |
diff --git a/src/ServiceProvider.php b/src/ServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/ServiceProvider.php
+++ b/src/ServiceProvider.php
@@ -17,7 +17,7 @@ class ServiceProvider extends LaravelServiceProvider
*
* @return void
*/
- protected function boot()
+ public function boot()
... | Fix wrong access type for service provider methods |
diff --git a/model1.py b/model1.py
index <HASH>..<HASH> 100644
--- a/model1.py
+++ b/model1.py
@@ -24,7 +24,7 @@ class Model1(object):
self.en_dict, self.en_words = self.convertArgsToTokens( self.data[2] )
self.dev_in = open(self.data[3], 'r')
- self._dev_lines = self.dev_in.readlines()
+ self.dev... | writing dev-words handling and realized that I am storing the transmissions inccorrectly... need to reverse the dict.... debugging now |
diff --git a/lib/browse_everything/version.rb b/lib/browse_everything/version.rb
index <HASH>..<HASH> 100644
--- a/lib/browse_everything/version.rb
+++ b/lib/browse_everything/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module BrowseEverything
- VERSION = '1.0.1'
+ VERSION = '1.0.2'
end | Preparing for release <I> |
diff --git a/bugwarrior/services/gitlab.py b/bugwarrior/services/gitlab.py
index <HASH>..<HASH> 100644
--- a/bugwarrior/services/gitlab.py
+++ b/bugwarrior/services/gitlab.py
@@ -80,7 +80,7 @@ class GitlabIssue(Issue):
'label': 'Gitlab Type',
},
NUMBER: {
- 'type': 'numeric',
+... | gitlab: make the gitlabnumber UDA a string (fixes #<I>)
The gitlabnumber's of todos on gitlab.com have grown beyond the limits of the
numeric type, and that may happen on other instances too. |
diff --git a/anypubsub/backends/memory.py b/anypubsub/backends/memory.py
index <HASH>..<HASH> 100644
--- a/anypubsub/backends/memory.py
+++ b/anypubsub/backends/memory.py
@@ -9,8 +9,8 @@ except ImportError: # pragma: nocover
class MemorySubscriber(Subscriber):
- def __init__(self):
- self.messages = Que... | Allowed using a custom queue in memory backend. |
diff --git a/tensorpack/dataflow/format.py b/tensorpack/dataflow/format.py
index <HASH>..<HASH> 100644
--- a/tensorpack/dataflow/format.py
+++ b/tensorpack/dataflow/format.py
@@ -6,6 +6,7 @@ import h5py
import random
from six.moves import range
+from ..utils import logger
from .base import DataFlow
"""
@@ -20,7... | consume all hdf5 to memory |
diff --git a/pandas/tests/test_series.py b/pandas/tests/test_series.py
index <HASH>..<HASH> 100644
--- a/pandas/tests/test_series.py
+++ b/pandas/tests/test_series.py
@@ -1127,12 +1127,21 @@ class TestSeries(unittest.TestCase, CheckNameIntegration):
self.assertRaises(ValueError, s.__setitem__, tuple([[[True, F... | BUG: test case showing why assigning to dtype is unsafe |
diff --git a/tasks/loop-mocha.js b/tasks/loop-mocha.js
index <HASH>..<HASH> 100644
--- a/tasks/loop-mocha.js
+++ b/tasks/loop-mocha.js
@@ -97,7 +97,6 @@ module.exports = function (grunt) {
_.each(_.omit(localMochaOptions
, 'reportLocation'
, 'iterations'
- , 'noFail'
, 'limit' /... | moving noFail to the loop configuration area |
diff --git a/test/test_publish.py b/test/test_publish.py
index <HASH>..<HASH> 100644
--- a/test/test_publish.py
+++ b/test/test_publish.py
@@ -11,7 +11,6 @@ import shutil
import six
from asv import config
-from asv.commands.publish import Publish
from asv import util
@@ -61,7 +60,6 @@ def test_publish(tmpdir):... | test: Remove unused import and too many blank line |
diff --git a/example/src/components/IconPage.react.js b/example/src/components/IconPage.react.js
index <HASH>..<HASH> 100644
--- a/example/src/components/IconPage.react.js
+++ b/example/src/components/IconPage.react.js
@@ -36,7 +36,7 @@ function IconPage(): React.Node {
{iconSets.map(iconSet => (
<C... | feat(IconPage): Include the title |
diff --git a/lib/active_record/connection_adapters/activesalesforce_adapter.rb b/lib/active_record/connection_adapters/activesalesforce_adapter.rb
index <HASH>..<HASH> 100644
--- a/lib/active_record/connection_adapters/activesalesforce_adapter.rb
+++ b/lib/active_record/connection_adapters/activesalesforce_adapter.rb
@... | fixed rail <I> bug, see select_all() method: regex |
diff --git a/src/Scripts/jquery.fileDownload.js b/src/Scripts/jquery.fileDownload.js
index <HASH>..<HASH> 100644
--- a/src/Scripts/jquery.fileDownload.js
+++ b/src/Scripts/jquery.fileDownload.js
@@ -329,7 +329,9 @@ $.extend({
function checkFileDownloadComplete() {
//has the cookie been written d... | Made cookie filename comparison case insensitive. |
diff --git a/docs/build.py b/docs/build.py
index <HASH>..<HASH> 100644
--- a/docs/build.py
+++ b/docs/build.py
@@ -74,6 +74,7 @@ if __name__ == '__main__':
# build the API doc
api = ['sphinx-apidoc',
+ '-e',
'-o',
cwd,
abspath('../trimesh')] | Put documentation for each module on its own page |
diff --git a/tests/vcloud/models/compute/conn_helper.rb b/tests/vcloud/models/compute/conn_helper.rb
index <HASH>..<HASH> 100644
--- a/tests/vcloud/models/compute/conn_helper.rb
+++ b/tests/vcloud/models/compute/conn_helper.rb
@@ -1,19 +1,17 @@
module Fog
module Vcloud
- class Compute < Fog::Service
- class... | [vcloud|compute] rather mock Fog::Vcloud::Connection as this is the right place to mock things |
diff --git a/src/blocks/scratch3_data.js b/src/blocks/scratch3_data.js
index <HASH>..<HASH> 100644
--- a/src/blocks/scratch3_data.js
+++ b/src/blocks/scratch3_data.js
@@ -17,7 +17,7 @@ Scratch3DataBlocks.prototype.getPrimitives = function () {
'data_variable': this.getVariable,
'data_setvariableto': t... | Fix data_listcontents block name (#<I>) |
diff --git a/fastlane_core/lib/fastlane_core/helper.rb b/fastlane_core/lib/fastlane_core/helper.rb
index <HASH>..<HASH> 100644
--- a/fastlane_core/lib/fastlane_core/helper.rb
+++ b/fastlane_core/lib/fastlane_core/helper.rb
@@ -202,9 +202,15 @@ module FastlaneCore
return ENV["FASTLANE_ITUNES_TRANSPORTER_PATH"] if... | [fastlane_core] added deliver/pilot support for Xcode <I> - new search path for itms_path (#<I>)
* [fastlane_core] added new search path for itms_path for xcode <I>
* Added path check for manually installed itms |
diff --git a/api/models.py b/api/models.py
index <HASH>..<HASH> 100644
--- a/api/models.py
+++ b/api/models.py
@@ -444,7 +444,7 @@ class Release(UuidAuditedModel):
config = models.ForeignKey('Config')
build = models.ForeignKey('Build')
# NOTE: image contains combined build + config, ready to run
- ima... | fix(controller): set default release image
If you scale an application with `deis scale cmd=1` before an
application has been pushed, it should deploy deis/helloworld.
However, the initial release (v1) does not have a image set for
the release, only the build. Setting the default to deis/helloworld
fixes the "scale be... |
diff --git a/gwpy/plotter/core.py b/gwpy/plotter/core.py
index <HASH>..<HASH> 100644
--- a/gwpy/plotter/core.py
+++ b/gwpy/plotter/core.py
@@ -32,6 +32,7 @@ except ImportError:
from mpl_toolkits.axes_grid import make_axes_locatable
from . import (tex, axes, utils)
+from .axes import Axes
from .log import Combi... | Plot: add_subplot now sets default projection
- this should fix problems introduced by removing the custom gca() |
diff --git a/cmsplugin_cascade/__init__.py b/cmsplugin_cascade/__init__.py
index <HASH>..<HASH> 100644
--- a/cmsplugin_cascade/__init__.py
+++ b/cmsplugin_cascade/__init__.py
@@ -19,6 +19,6 @@ Release logic:
12. git commit -m 'Start with <version>'
13. git push
"""
-__version__ = "0.9.1"
+__version__ = "0.10.dev"
... | prepare for version <I>.x |
diff --git a/lib/client_side_validations/active_record.rb b/lib/client_side_validations/active_record.rb
index <HASH>..<HASH> 100644
--- a/lib/client_side_validations/active_record.rb
+++ b/lib/client_side_validations/active_record.rb
@@ -6,3 +6,6 @@ require 'client_side_validations/active_record/middleware'
validat... | Load order fix. Force ActiveRecord::Base instances to have the instance
methods |
diff --git a/src/workerCode.js b/src/workerCode.js
index <HASH>..<HASH> 100644
--- a/src/workerCode.js
+++ b/src/workerCode.js
@@ -7,12 +7,12 @@
export function workerCode() {
self.document = {}; // Workaround for "ReferenceError: document is not defined" in hpccWasm
- var hpccWasm;
self.onconnect = f... | Avoid loading script in shared worker more than once |
diff --git a/src/ngrest/base/Plugin.php b/src/ngrest/base/Plugin.php
index <HASH>..<HASH> 100644
--- a/src/ngrest/base/Plugin.php
+++ b/src/ngrest/base/Plugin.php
@@ -77,7 +77,7 @@ abstract class Plugin extends Component
throw new Exception("Plugin attributes name, alias and i18n must be configured.");
... | revert event validation index in order to keep model generates rules.
closes #<I> |
diff --git a/pydle/connection.py b/pydle/connection.py
index <HASH>..<HASH> 100644
--- a/pydle/connection.py
+++ b/pydle/connection.py
@@ -85,6 +85,26 @@ class Connection:
self.eventloop.register(self.socket.fileno())
self.setup_handlers()
+
+ def upgrade_to_tls(self, tls_verify=False, tls_certif... | Add upgrade to TLS functionality to connection. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.