hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
609f7803a5d8b054f643b9b28be95d0754df6e46
diff --git a/tests/test_ice.py b/tests/test_ice.py index <HASH>..<HASH> 100644 --- a/tests/test_ice.py +++ b/tests/test_ice.py @@ -38,6 +38,35 @@ def run(coro): return asyncio.get_event_loop().run_until_complete(coro) +class ConnectionMock: + local_password = 'some-password' + + +class IceComponentTest(unit...
[tests] add test for invalid request method
aiortc_aioice
train
5cfb3e3a8efdfc48993f1e25bb0bd53124347b30
diff --git a/sendform/lib/SendForm.php b/sendform/lib/SendForm.php index <HASH>..<HASH> 100755 --- a/sendform/lib/SendForm.php +++ b/sendform/lib/SendForm.php @@ -63,6 +63,8 @@ class SendForm { $this->id = $id; + $this->erroneousFields = array(); + // the token is stored as session variable until the form is...
Added missing initialization of erroneousFields array. Fixes #8.
mzur_kirby-uniform
train
0031c112eb130a79825748885ea14817fe1c0921
diff --git a/bottery/__init__.py b/bottery/__init__.py index <HASH>..<HASH> 100644 --- a/bottery/__init__.py +++ b/bottery/__init__.py @@ -8,4 +8,4 @@ ''' -__version__ = '0.0.1a4' +__version__ = '0.0.1a5'
New version: <I>a5
rougeth_bottery
train
82b61c9dbfc91fdc285b7b9db2d2eeff43fd6dd4
diff --git a/modules/social_features/social_tagging/src/SocialTaggingOverrides.php b/modules/social_features/social_tagging/src/SocialTaggingOverrides.php index <HASH>..<HASH> 100644 --- a/modules/social_features/social_tagging/src/SocialTaggingOverrides.php +++ b/modules/social_features/social_tagging/src/SocialTaggin...
Issue #<I> by Kingdutch: Content tagging filters on search and overview don't update when terms or settings change
goalgorilla_open_social
train
7a228a3ad8390f4a7e67c49b1937b3eee7ac2772
diff --git a/pdb.py b/pdb.py index <HASH>..<HASH> 100644 --- a/pdb.py +++ b/pdb.py @@ -77,6 +77,7 @@ class DefaultConfig: completekey = 'tab' highlight = True bg = 'dark' + use_pygments = True colorscheme = None editor = '${EDITOR:-vi}' # use $EDITOR if set, else default to vi stdin_pas...
Add an option to ignore pygments even if it is installed. I personally prefer my source code to be that way :-)
antocuni_pdb
train
0045578a5c091e2b2a12b56f618e2043e8ea8f5f
diff --git a/app/models/spree/gateway/razorpay.rb b/app/models/spree/gateway/razorpay.rb index <HASH>..<HASH> 100644 --- a/app/models/spree/gateway/razorpay.rb +++ b/app/models/spree/gateway/razorpay.rb @@ -8,7 +8,7 @@ module Spree end def provider_class - self + ActiveMerchant::Billing::Razorpay ...
Modifying provider_class in order to test
neerajkumar_spree-razorpay
train
860cf22d3b86323ab368c9ea2c8d52b0df88c6a1
diff --git a/lib/battle_boats/board.rb b/lib/battle_boats/board.rb index <HASH>..<HASH> 100644 --- a/lib/battle_boats/board.rb +++ b/lib/battle_boats/board.rb @@ -1,4 +1,5 @@ require "battle_boats/cell" +require "battle_boats/fleet" module BattleBoats class Board @@ -30,7 +31,11 @@ module BattleBoats end ...
display win message when all ships are sunk
Thomascountz_battle_boats
train
31f08f4cc5638b240d4c17097d99a07981261222
diff --git a/Resources/Private/JavaScript/Host/Redux/User/Name/index.js b/Resources/Private/JavaScript/Host/Redux/User/Name/index.js index <HASH>..<HASH> 100644 --- a/Resources/Private/JavaScript/Host/Redux/User/Name/index.js +++ b/Resources/Private/JavaScript/Host/Redux/User/Name/index.js @@ -1,14 +1,20 @@ +import {Ma...
TASK: Describe initial state of user.name as a hydrator function
neos_neos-ui
train
7b8bb261af3db31aa2155eda26d4087f4bdb57f6
diff --git a/src/Drupal/Pages/AdminManageFieldsPage.php b/src/Drupal/Pages/AdminManageFieldsPage.php index <HASH>..<HASH> 100644 --- a/src/Drupal/Pages/AdminManageFieldsPage.php +++ b/src/Drupal/Pages/AdminManageFieldsPage.php @@ -8,7 +8,6 @@ namespace Codeception\Module\Drupal\Pages; /** * Class AdminManageFields...
Remove references to the codeception suite the pages were originally developed for
ixis_codeception-drupal-pages
train
7dd4b2aa989123030141fbd593926c7dd2151035
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -223,10 +223,10 @@ class Tab extends EventEmitter { let tabGroup = this.tabGroup; tabGroup.tabContainer.removeChild(this.tab); tabGroup.viewContainer.removeChild(this.webview); + let activeTab...
Fix previous tab not activated on close
brrd_electron-tabs
train
b0b18dd9946d95730d3613825cdb9846bee46b73
diff --git a/scripts/commonOptions.js b/scripts/commonOptions.js index <HASH>..<HASH> 100644 --- a/scripts/commonOptions.js +++ b/scripts/commonOptions.js @@ -42,4 +42,4 @@ module.exports = { .option('--log-level <level>', 'Log level (none, error, warn, info, verbose, debug, silly). Default is info.', 'inf...
Add version to non-common scripts
F5Networks_f5-cloud-libs
train
c532cb4d5ae7b49f644a7f438d9fedd007b83ee0
diff --git a/core/commands/add.go b/core/commands/add.go index <HASH>..<HASH> 100644 --- a/core/commands/add.go +++ b/core/commands/add.go @@ -60,6 +60,10 @@ Adds contents of <path> to ipfs. Use -r to add directories. Note that directories are added recursively, to form the ipfs MerkleDAG. +If the daemon is not run...
Document add behavior when the daemon is not running
ipfs_go-ipfs
train
261bb6cb44f33e7395bf5861282cede902fb4627
diff --git a/isogeo_pysdk/api/routes_search.py b/isogeo_pysdk/api/routes_search.py index <HASH>..<HASH> 100644 --- a/isogeo_pysdk/api/routes_search.py +++ b/isogeo_pysdk/api/routes_search.py @@ -13,19 +13,12 @@ # Standard library import logging -from functools import wraps -from urllib.parse import urlparse, parse_...
add a method to quickly retrieve search context
isogeo_isogeo-api-py-minsdk
train
a7b5e3306121f470c2c57197d3ab5e65e6fa35ed
diff --git a/lib/sup/modes/line-cursor-mode.rb b/lib/sup/modes/line-cursor-mode.rb index <HASH>..<HASH> 100644 --- a/lib/sup/modes/line-cursor-mode.rb +++ b/lib/sup/modes/line-cursor-mode.rb @@ -15,11 +15,24 @@ class LineCursorMode < ScrollMode def initialize opts={} @cursor_top = @curpos = opts.delete(:skip_to...
make load-more callbacks use a queue and be thread-safe Replaced previous insane implementation with something that actually makes sense.
sup-heliotrope_sup
train
ab94510efa09a2772881f976c96a17232ede9941
diff --git a/src/number.js b/src/number.js index <HASH>..<HASH> 100644 --- a/src/number.js +++ b/src/number.js @@ -27,8 +27,8 @@ function NumberSchema(){ inherits(NumberSchema, SchemaObject, { _typeCheck(v) { - if ( typeof v === 'number' && !(v !== +v) ) return true - if ( typeof v === 'object' && v instanc...
[fixed] boxed number allowed NaN
jquense_yup
train
94fc6aac1990dc3233c70f471432c5b9f230e756
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index <HASH>..<HASH> 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -949,21 +949,35 @@ jQuery.extend({ return jQuery.curCSS( e, p ); }, - curCSS: function(e,p,force) { - var r; - - if (!force && e.style[p]) - r = e.style[p]; - else i...
Added a fix for the Safari computedStyle bug.
jquery_jquery
train
5a3086bb0244965ead523a730b20ad641598afb5
diff --git a/examples/cnvsparse/demo_cbpdndl_vid.py b/examples/cnvsparse/demo_cbpdndl_vid.py index <HASH>..<HASH> 100644 --- a/examples/cnvsparse/demo_cbpdndl_vid.py +++ b/examples/cnvsparse/demo_cbpdndl_vid.py @@ -17,9 +17,10 @@ import tempfile import sys import numpy as np try: - import cv2 + import skvideo....
Fixed demo script that was non-functional due to broken data url
bwohlberg_sporco
train
e6590a8fe3b5a7b7d77cc5b28712d9621a7f9746
diff --git a/visidata/canvas.py b/visidata/canvas.py index <HASH>..<HASH> 100644 --- a/visidata/canvas.py +++ b/visidata/canvas.py @@ -283,7 +283,7 @@ class GridCanvas(PixelCanvas): if attr is None: if len(self.unusedAttrs) > 1: attr = self.unusedAttrs.pop() - legen...
Fix non-string key legends; other niceties
saulpw_visidata
train
a84de7d1526e6bf99e91edc3f1651e8034285db0
diff --git a/lib/Gangway.js b/lib/Gangway.js index <HASH>..<HASH> 100644 --- a/lib/Gangway.js +++ b/lib/Gangway.js @@ -577,7 +577,7 @@ Gangway.prototype.render = function(template,locals,reload){ if(error){ gw.error(500,error); } else { - var type = mime.lookup(gw.path.replace(/^.*\./,"")); + ...
Better regexps on Directory middleware logic
pillarsjs_pillars
train
27226f28bb375f4b8c38da1ec99a354430195277
diff --git a/cauldron/render/encoding.py b/cauldron/render/encoding.py index <HASH>..<HASH> 100644 --- a/cauldron/render/encoding.py +++ b/cauldron/render/encoding.py @@ -13,8 +13,11 @@ class ComplexJsonEncoder(json.JSONEncoder): return value.isoformat() elif isinstance(value, datetime.datetime): ...
Improved ComplexEncoder Add additional datetime objects to ComplexEncoder for better handling of DataFrame table display.
sernst_cauldron
train
bb2dd3acc96165115e4298b68774282a5713736f
diff --git a/database/migrations/create_laravel_follow_tables.php b/database/migrations/create_laravel_follow_tables.php index <HASH>..<HASH> 100644 --- a/database/migrations/create_laravel_follow_tables.php +++ b/database/migrations/create_laravel_follow_tables.php @@ -19,7 +19,7 @@ class CreateLaravelFollowTables ext...
Scrutinizer Auto-Fixes This commit consists of patches automatically generated for this project on <URL>
overtrue_laravel-follow
train
1d3f2829bce2ba617248df01be45c1742ba36030
diff --git a/src/LAG/AdminBundle/Filter/Factory/FilterFormBuilder.php b/src/LAG/AdminBundle/Filter/Factory/FilterFormBuilder.php index <HASH>..<HASH> 100644 --- a/src/LAG/AdminBundle/Filter/Factory/FilterFormBuilder.php +++ b/src/LAG/AdminBundle/Filter/Factory/FilterFormBuilder.php @@ -3,11 +3,13 @@ namespace LAG\Admi...
improve the css class management in the FilterFormBuilder
larriereguichet_AdminBundle
train
2544435d1e73d75264fcf12766c108caf9bac287
diff --git a/spec/support/active_record.rb b/spec/support/active_record.rb index <HASH>..<HASH> 100644 --- a/spec/support/active_record.rb +++ b/spec/support/active_record.rb @@ -1,7 +1,7 @@ require 'database_cleaner' ActiveRecord::Base.establish_connection(adapter: 'sqlite3', database: ':memory:') -ActiveRecord::B...
revert logger back to /dev/null
toptal_chewy
train
a980be371db47f5a8a55f3f62fc19db375618e2c
diff --git a/modules/styles.js b/modules/styles.js index <HASH>..<HASH> 100644 --- a/modules/styles.js +++ b/modules/styles.js @@ -41,9 +41,7 @@ module.exports = function(grunt, util, config) { ] }, compile: { - files: { - 'build/styles.css': 'styles/index.styl' - } + files: {} } }, ...
WordPress theme support for Stylus.
tamiadev_tamia-grunt
train
b6e632059a81eb7e3bf3b42d2c7ce12bc207a0a2
diff --git a/js2/modules/module_test.go b/js2/modules/module_test.go index <HASH>..<HASH> 100644 --- a/js2/modules/module_test.go +++ b/js2/modules/module_test.go @@ -34,6 +34,8 @@ type testModule struct { Counter int } +func (*testModule) unexported() bool { return true } + func (*testModule) Func() {} func (...
Make sure unexported methods are unexported
loadimpact_k6
train
dfa56305110e7852d8c74a78d7de829106187148
diff --git a/lib/irrc/whoisd/client.rb b/lib/irrc/whoisd/client.rb index <HASH>..<HASH> 100644 --- a/lib/irrc/whoisd/client.rb +++ b/lib/irrc/whoisd/client.rb @@ -26,60 +26,60 @@ module Irrc def process(query) case query.object_type when 'as-set' - query.add_aut_num_result objects_from...
Performance improvement for whoisd: split root query into nested queries to process simultaneously NOTE: Changing output format when nested query fails. When aut-num expansion fails while as-set expansion succeeds, - {} + {'AS-SET' => {:ipv4 => {'AS<I>' => []}, :ipv6 => {'AS<I>' => []}}}
codeout_irrc
train
0ed0cc3fb8a3416cadcf22678840de5ffbd06800
diff --git a/kytos/utils/config.py b/kytos/utils/config.py index <HASH>..<HASH> 100644 --- a/kytos/utils/config.py +++ b/kytos/utils/config.py @@ -1,3 +1,4 @@ +"""Kytos Configuration.""" # This file is part of kytos-utils. # # Copyright (c) 2016 Kytos Team @@ -18,9 +19,9 @@ # You should have received a copy of the ...
Fixes in KytosConfig - Bug: config-file uri value overridden by default - Bug: default uri missing trailing '/' for urljoin - Removed debugging user and token - Several linter errors
kytos_kytos-utils
train
a113a603d383218dcc595c7fa9e86257a299e487
diff --git a/tests/test_pane.py b/tests/test_pane.py index <HASH>..<HASH> 100644 --- a/tests/test_pane.py +++ b/tests/test_pane.py @@ -31,9 +31,9 @@ def test_set_height(session): pane1 = window.attached_pane pane1_height = pane1['pane_height'] - pane1.set_height(2) + pane1.set_height(4) assert pa...
try to fix height test by making pane taller
tmux-python_libtmux
train
d5292aaedeb300de87fb214fc7997f963848c996
diff --git a/tes/client.py b/tes/client.py index <HASH>..<HASH> 100644 --- a/tes/client.py +++ b/tes/client.py @@ -17,7 +17,7 @@ class HTTPClient(object): timeout = attrib(default=10, validator=instance_of(int)) @url.validator - def check_url(self, attribute, value): + def __check_url(self, attribute,...
added test for empty ListTasksResponse
ohsu-comp-bio_py-tes
train
c81dda0001fad35ba71b1bc52541609ceb80dee9
diff --git a/mpc/mpc.py b/mpc/mpc.py index <HASH>..<HASH> 100644 --- a/mpc/mpc.py +++ b/mpc/mpc.py @@ -198,14 +198,35 @@ class MPC(Module): elif isinstance(cost, QuadCost) and cost.C.ndimension() == 4: n_batch = cost.C.size(1) else: - assert False, 'Could not infer batch size, ...
Add more automatic reshaping.
locuslab_mpc.pytorch
train
ff2aa2b6a4d8ab0f6261ccd86d51717e7f6501b0
diff --git a/app/models/event_cal/calendar.rb b/app/models/event_cal/calendar.rb index <HASH>..<HASH> 100644 --- a/app/models/event_cal/calendar.rb +++ b/app/models/event_cal/calendar.rb @@ -10,8 +10,8 @@ class EventCal::Calendar base_date = Date.parse(date) end - @start_on = base_date.beginning_of_mon...
Refactor: end_of_week(start_day = :sunday) -> end_of_week(:sunday)
shin1ohno_event_cal
train
1fca5e0a027bf23e760864517033d6e02b3f0432
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -15,13 +15,14 @@ from __future__ import print_function import sys -import ez_setup -ez_setup.use_setuptools() - if __name__ == '__main__' and sys.argv[1] == "gevent_nosetests": + print("Running gevent tests") from...
Fix unit tests that may break under gevent
datastax_python-driver
train
9992504bc2fcc23b8d6975807eed50de2d5160c5
diff --git a/code/dataobjects/EmbeddedObject.php b/code/dataobjects/EmbeddedObject.php index <HASH>..<HASH> 100644 --- a/code/dataobjects/EmbeddedObject.php +++ b/code/dataobjects/EmbeddedObject.php @@ -34,12 +34,8 @@ class EmbeddedObject extends DataObject public function onBeforeWrite() { $changes ...
FIX Only update embed HTML on SourceURL changes Previous code would wipe out any changes made to the Width and Height properties manually set by the user. The HTML should only auto-update if the source URL is changed
sheadawson_silverstripe-linkable
train
dfbcf418ec88c55217f42ca12d94a0b054c731ed
diff --git a/src/components/loadJSON.js b/src/components/loadJSON.js index <HASH>..<HASH> 100644 --- a/src/components/loadJSON.js +++ b/src/components/loadJSON.js @@ -12,7 +12,7 @@ module.exports.create = function create(wofRoot, missingFilesAreFatal) { if (!record.path || record.path === 'path') { // we ...
meta files, ensure path column is present
pelias_whosonfirst
train
e7a9c5b8417959379c4a7ce66ae2cfd305455241
diff --git a/backbone-firebase.js b/backbone-firebase.js index <HASH>..<HASH> 100644 --- a/backbone-firebase.js +++ b/backbone-firebase.js @@ -8,12 +8,14 @@ var _ = this._; var Backbone = this.Backbone; Backbone.Firebase = function(ref) { - this._fbref = ref; this._children = []; if (typeof ref == "string") ...
Add query support, closes #<I>
googlearchive_backbonefire
train
eca98b3f8739ba01eb9b67da27949cba9e961eb7
diff --git a/libnavigation-ui/src/main/java/com/mapbox/navigation/ui/NavigationViewModel.java b/libnavigation-ui/src/main/java/com/mapbox/navigation/ui/NavigationViewModel.java index <HASH>..<HASH> 100644 --- a/libnavigation-ui/src/main/java/com/mapbox/navigation/ui/NavigationViewModel.java +++ b/libnavigation-ui/src/m...
fix crash when onboard router and/or distance formatter are not provided the NavigationViewModel will create defaults.
mapbox_mapbox-navigation-android
train
c94385ffaefd3fdd6ea99181d2edc32e2a08590e
diff --git a/qdarkgraystyle/__init__.py b/qdarkgraystyle/__init__.py index <HASH>..<HASH> 100644 --- a/qdarkgraystyle/__init__.py +++ b/qdarkgraystyle/__init__.py @@ -37,7 +37,7 @@ from PyQt5 import QtCore from qdarkgraystyle import compile_qrc, pyqt5_style_rc -__version__ = '1.0.0' +__version__ = '1.0.1' def...
[IMP] Update package version to <I>
mstuttgart_qdarkgraystyle
train
074335dd3d72b2084e4de63264afa7cc869cd448
diff --git a/AntiSpoof.php b/AntiSpoof.php index <HASH>..<HASH> 100644 --- a/AntiSpoof.php +++ b/AntiSpoof.php @@ -1,5 +1,22 @@ <?php +/** + * Set this to false to disable the active checks; + * items will be logged but invalid or conflicting + * accounts will not be stopped. + * + * Logged items will be marked with...
override mode, and include normalized form in log
wikimedia_mediawiki-extensions-AntiSpoof
train
3be3c1f4c5a3da8b4b853cbf49491661ca78ca90
diff --git a/core/http.go b/core/http.go index <HASH>..<HASH> 100644 --- a/core/http.go +++ b/core/http.go @@ -346,13 +346,24 @@ func bitmaps(frame string, obj JsonObject) chan uint64 { if timestamp == "2014-01-01 00:00:00" { //skip the default timestamp c <- base_id } else { + quantum := index.YMDH + ...
added default granulatrity to time fragments'
pilosa_pilosa
train
d22eb13e92cd6f25069d4681b2d5eccb85c0e1bf
diff --git a/cli/__snapshots__/verify_spec.js b/cli/__snapshots__/verify_spec.js index <HASH>..<HASH> 100644 --- a/cli/__snapshots__/verify_spec.js +++ b/cli/__snapshots__/verify_spec.js @@ -138,3 +138,12 @@ It looks like this is your first time using Cypress: 1.2.3 Opening Cypress... ` + +exports['verbose stdout o...
Verify command <I> (#<I>) * find single line with ping value, close #<I> * linting
cypress-io_cypress
train
6578f5be73a609e475d6d1bc3253351fa1002fdf
diff --git a/dev/com.ibm.ws.config/src/com/ibm/ws/config/xml/internal/ConfigValidator.java b/dev/com.ibm.ws.config/src/com/ibm/ws/config/xml/internal/ConfigValidator.java index <HASH>..<HASH> 100644 --- a/dev/com.ibm.ws.config/src/com/ibm/ws/config/xml/internal/ConfigValidator.java +++ b/dev/com.ibm.ws.config/src/com/i...
Resolve variables before comparing elements
OpenLiberty_open-liberty
train
e7c6c5c65824992effc6d7649c68b1340e3f52c5
diff --git a/tasks/lintspaces.js b/tasks/lintspaces.js index <HASH>..<HASH> 100644 --- a/tasks/lintspaces.js +++ b/tasks/lintspaces.js @@ -162,8 +162,9 @@ module.exports = function(grunt) { /* Use fake replace cycle to find indices of all /* lines to be ignored. Return unchanged match. */ - data.re...
Fix issue when repeated comments did't match twice. Closes #<I>
schorfES_grunt-lintspaces
train
66cc71eb797f6a95eb325a5aafb35a7655db89d6
diff --git a/features/support/env.rb b/features/support/env.rb index <HASH>..<HASH> 100644 --- a/features/support/env.rb +++ b/features/support/env.rb @@ -12,19 +12,10 @@ Dir["#{File.expand_path('../step_definitions', __dir__)}/*.rb"].each do |f| require f end -require 'rails' -ENV['RAILS_ROOT'] = File.expand_pat...
Simplify cucumber setup And make it consistent with RSpec setup.
activeadmin_activeadmin
train
a6f35253b8d37e35a9dbb6fe6ef8fe292eb61f84
diff --git a/ladybug/datatype/base.py b/ladybug/datatype/base.py index <HASH>..<HASH> 100644 --- a/ladybug/datatype/base.py +++ b/ladybug/datatype/base.py @@ -164,8 +164,6 @@ class DataTypeBase(object): 'type': 'DataTypeBase' } - # TODO: Un-comment the numeric check once we have gotten rid of...
feat(dt): Support DateTimes in Rhino 5 From what I can tell, this seems to be the only thing preventing us from running the plugins in Rhino 5 right now so I think these extra 3 try/excepts are worthwhile.
ladybug-tools_ladybug
train
7766c5e6f2f8da886973d2b3c2066cefe18660db
diff --git a/glamkit_collections/contrib/work_creator/admin.py b/glamkit_collections/contrib/work_creator/admin.py index <HASH>..<HASH> 100644 --- a/glamkit_collections/contrib/work_creator/admin.py +++ b/glamkit_collections/contrib/work_creator/admin.py @@ -294,7 +294,7 @@ class CreatorBaseAdmin( def get_querys...
Improve list peformance by deferring load of edits fields.
ic-labs_django-icekit
train
efea5148663185f2e2147ac3b5d1087d516463a7
diff --git a/niworkflows/interfaces/segmentation.py b/niworkflows/interfaces/segmentation.py index <HASH>..<HASH> 100644 --- a/niworkflows/interfaces/segmentation.py +++ b/niworkflows/interfaces/segmentation.py @@ -9,6 +9,7 @@ from __future__ import absolute_import, division, print_function, unicode_litera from nipype...
fixed no semgnets issue
poldracklab_niworkflows
train
325d03db8c4a4e5ea2062050178467bacf14f160
diff --git a/holoviews/plotting/plotly/element.py b/holoviews/plotting/plotly/element.py index <HASH>..<HASH> 100644 --- a/holoviews/plotting/plotly/element.py +++ b/holoviews/plotting/plotly/element.py @@ -10,7 +10,8 @@ from ...util.transform import dim from ..plot import GenericElementPlot, GenericOverlayPlot from ...
Plotly <I> support (#<I>) * plotly.offline.offline.utils -> plotly.utils * Only add legend options to trace types that support them
pyviz_holoviews
train
ed3e1e8fc1f917a7d40f3e08ad968a2328c5f85a
diff --git a/classes/hypeJunction/Data/Property.php b/classes/hypeJunction/Data/Property.php index <HASH>..<HASH> 100644 --- a/classes/hypeJunction/Data/Property.php +++ b/classes/hypeJunction/Data/Property.php @@ -234,11 +234,11 @@ class Property implements PropertyInterface { /** * {@inheritdoc} */ - public f...
fix(data): sanitizers and validators should not need an object to perform
hypeJunction_hypeApps
train
6f1875d9235dcb4f5e6f53918a36473181b40985
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -262,8 +262,8 @@ def get_version_info(): # If this is a release or another kind of source distribution of PyCBC except: - version = '1.7.0dev' - release = 'False' + version = '1.6.14' + ...
set to <I> for final build test
gwastro_pycbc
train
871405599234c2366f031eead89c10e3254dbf57
diff --git a/demo_msis.py b/demo_msis.py index <HASH>..<HASH> 100644 --- a/demo_msis.py +++ b/demo_msis.py @@ -13,7 +13,7 @@ if __name__ == '__main__': from argparse import ArgumentParser p = ArgumentParser(description='calls MSISE-00 from Python, a basic demo') - p.add_argument('simtime',help='yyyy-mm-d...
allow 0 lat/lon to work
scivision_msise00
train
6befa15589a3590f3aa6b62d572ac1c074ecf5b5
diff --git a/pom.xml b/pom.xml index <HASH>..<HASH> 100644 --- a/pom.xml +++ b/pom.xml @@ -18,7 +18,7 @@ <parent> <groupId>com.opentable</groupId> <artifactId>otj-parent-spring</artifactId> - <version>184</version> + <version>243</version> </parent> <scm> diff --git a/src/main/java/com/openta...
Spring <I> * Revert the ObjectMapper to explicitly not put a colon, as behavior flips in Jackson <I>
opentable_otj-jackson
train
2bc4b32909cda9a518fc4971a0a6e184f7e2a59f
diff --git a/edxval/exceptions.py b/edxval/exceptions.py index <HASH>..<HASH> 100644 --- a/edxval/exceptions.py +++ b/edxval/exceptions.py @@ -11,7 +11,6 @@ class ValError(Exception): action. """ - pass class ValInternalError(ValError): @@ -23,7 +22,6 @@ class ValInternalError(ValError): servic...
Fix pylint issues.
edx_edx-val
train
e7312295cbdd88cb9101968aa9ed2db88234e9f5
diff --git a/src/core.js b/src/core.js index <HASH>..<HASH> 100644 --- a/src/core.js +++ b/src/core.js @@ -22,12 +22,12 @@ class Root extends React.Component { } export function makeStreamState( - initialState, update, eventStream, middlewares, streamWrapper, + initialState, update, streamWrapper, middlewares, )...
[fix] problem with makeStreamState in TanokInReact (#<I>)
brabadu_tanok
train
b586030a9481090a3eb7e0c25f3eddbaa8780154
diff --git a/lib/rollbar/js/frameworks/rails.rb b/lib/rollbar/js/frameworks/rails.rb index <HASH>..<HASH> 100644 --- a/lib/rollbar/js/frameworks/rails.rb +++ b/lib/rollbar/js/frameworks/rails.rb @@ -21,7 +21,7 @@ module Rollbar def insert_middleware_after_secure_headers instance = self - ...
Rename initializer for Rollbar::Js
rollbar_rollbar-gem
train
b19dfeb25bbc291b52d2b8047f0b03e249b07371
diff --git a/spec/file_store/providers/s3_spec.rb b/spec/file_store/providers/s3_spec.rb index <HASH>..<HASH> 100644 --- a/spec/file_store/providers/s3_spec.rb +++ b/spec/file_store/providers/s3_spec.rb @@ -149,7 +149,7 @@ module FileStore let(:download_opts) { {ttl: 1} } it 'should expire t...
[#1] Increase sleep time for test
payout_file_store
train
d0664a9cbf07969ef09daafa82d9b91c48db2451
diff --git a/shared/actions/chat/inbox.js b/shared/actions/chat/inbox.js index <HASH>..<HASH> 100644 --- a/shared/actions/chat/inbox.js +++ b/shared/actions/chat/inbox.js @@ -173,8 +173,8 @@ function* onInboxStale(): SagaGenerator<any, any> { ) const inboxBigChannels = I.Map( conversations.reduce((map,...
merge in channel names instead of overwriting them. adopt it from untrusted if it exists instead of using - (#<I>)
keybase_client
train
7883a618a3691a17adf0bc9362cdc20b1e6043e9
diff --git a/director/lib/director/client.rb b/director/lib/director/client.rb index <HASH>..<HASH> 100644 --- a/director/lib/director/client.rb +++ b/director/lib/director/client.rb @@ -59,14 +59,20 @@ module Bosh::Director result["value"] end - def wait_until_ready(poll_interval = 1.0) + def wait_...
make wait_until_ready timeout after 5 minutes instead of an indefinite wait
cloudfoundry_bosh
train
a84a6d6f5b71cb310fd382f802669d6b76b31d19
diff --git a/jss/distribution_points.py b/jss/distribution_points.py index <HASH>..<HASH> 100755 --- a/jss/distribution_points.py +++ b/jss/distribution_points.py @@ -132,8 +132,6 @@ class DistributionPoints(object): # Handle Explictly declared DP's. elif repo.get('type') in ['AFP', ...
Don't have socket calls in the loop. -- Clean up variable names. -- Only update any_match tuple if values are not already include. -- remove no longer used counter and 'name' var
jssimporter_python-jss
train
33a0a065f9f95b0221ff4926b7084981fec6b6ec
diff --git a/wallet/psbt.go b/wallet/psbt.go index <HASH>..<HASH> 100644 --- a/wallet/psbt.go +++ b/wallet/psbt.go @@ -186,33 +186,28 @@ func (w *Wallet) FundPsbt(packet *psbt.Packet, keyScope *waddrmgr.KeyScope, inputSource := constantInputSource(credits) // We also need a change source which needs to be able ...
wallet: use walletdb.Update in FundPsbt To make sure we don't create any manual DB transactions, we refactor FundPsbt to use walletdb.Update instead.
btcsuite_btcwallet
train
daab6df9e81cdd3ddb8e9806f5dde2e5da1b481b
diff --git a/agent/gpu/generate_mocks.go b/agent/gpu/generate_mocks.go index <HASH>..<HASH> 100644 --- a/agent/gpu/generate_mocks.go +++ b/agent/gpu/generate_mocks.go @@ -1,3 +1,5 @@ +// +build linux + // Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. // // Licensed under the Apache License,...
add missing linux build tag to agent/gpu/generate_mocks.go
aws_amazon-ecs-agent
train
f308d448bf2c95cea5ab0ffa6210e26b71b3ea7d
diff --git a/src/test/java/picocli/CommandLineHelpTest.java b/src/test/java/picocli/CommandLineHelpTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/picocli/CommandLineHelpTest.java +++ b/src/test/java/picocli/CommandLineHelpTest.java @@ -39,6 +39,8 @@ import java.net.InetAddress; import java.util.Arrays; im...
#<I> added failing test (ignored for now)
remkop_picocli
train
f83706727f601e14b41cdbb349bc8a5bbdfcde35
diff --git a/project_generator/project.py b/project_generator/project.py index <HASH>..<HASH> 100644 --- a/project_generator/project.py +++ b/project_generator/project.py @@ -280,7 +280,7 @@ class Project: else: use_includes = [files] - if use_group_name not in self.project['export']['inc...
Include files group only if there is at least one include file
project-generator_project_generator
train
5563c0bcc163ec18a9990c02f8b6650031c3ca83
diff --git a/theme/bootstrapbase/layout/secure.php b/theme/bootstrapbase/layout/secure.php index <HASH>..<HASH> 100644 --- a/theme/bootstrapbase/layout/secure.php +++ b/theme/bootstrapbase/layout/secure.php @@ -51,9 +51,9 @@ echo $OUTPUT->doctype() ?> <header role="banner" class="navbar navbar-fixed-top moodle-has-zin...
MDL-<I> theme: Removed home link and limited login info in secure.php Credits: Thanks go to Andreas Hruska [<URL>
moodle_moodle
train
6a6696ba437ad328d5e2e99365d218ab1414821a
diff --git a/lib/store/mongoConnectionProvider.js b/lib/store/mongoConnectionProvider.js index <HASH>..<HASH> 100644 --- a/lib/store/mongoConnectionProvider.js +++ b/lib/store/mongoConnectionProvider.js @@ -128,7 +128,7 @@ module.exports = function(providerConfiguration) { } connectionString = conne...
Read Mongo database name from configuration file
jsreport_jsreport
train
717cd72d561cf054995d6239b539261b962426be
diff --git a/sdk/src/main/java/com/wonderpush/sdk/WonderPushRegistrationIntentService.java b/sdk/src/main/java/com/wonderpush/sdk/WonderPushRegistrationIntentService.java index <HASH>..<HASH> 100644 --- a/sdk/src/main/java/com/wonderpush/sdk/WonderPushRegistrationIntentService.java +++ b/sdk/src/main/java/com/wonderpus...
Ensure SDK initialization for InstanceID token refresh
wonderpush_wonderpush-android-sdk
train
0972f60b6804295889ba8fea51379409f42b7e5e
diff --git a/openquake/hazardlib/geo/geodetic.py b/openquake/hazardlib/geo/geodetic.py index <HASH>..<HASH> 100644 --- a/openquake/hazardlib/geo/geodetic.py +++ b/openquake/hazardlib/geo/geodetic.py @@ -217,10 +217,7 @@ def _reshape(array, orig_shape): def min_geodetic_distance(mlons, mlats, slons, slats, diameter=2...
Fixed two links in the docs
gem_oq-engine
train
de659859333c4e1a7840cc8d43765f47fcf53e9f
diff --git a/test/unit/css.js b/test/unit/css.js index <HASH>..<HASH> 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -12,6 +12,8 @@ test("css(String|Hash)", function() { ok( jQuery('#nothiddendiv').is(':visible'), 'Modified CSS display: Assert element is visible'); // handle negative numbers by ignoring ...
Make sure that some height/width is set for the nothiddendiv before checking.
jquery_jquery
train
beedf6980eb3ddb96081381bc076d118360b695a
diff --git a/ansible_runner/runner_config.py b/ansible_runner/runner_config.py index <HASH>..<HASH> 100644 --- a/ansible_runner/runner_config.py +++ b/ansible_runner/runner_config.py @@ -697,7 +697,7 @@ class RunnerConfig(object): ]) # volume mount ~/.ssh/ into the exec env c...
change the ssh home mount to be correct we need to ensure this stays in sync with our baseimage over time with what ansible-builder is producing
ansible_ansible-runner
train
5f98df85aa3c1ef70971526fa953636cf9fe895f
diff --git a/djoser/serializers.py b/djoser/serializers.py index <HASH>..<HASH> 100644 --- a/djoser/serializers.py +++ b/djoser/serializers.py @@ -143,13 +143,9 @@ class TokenCreateSerializer(serializers.Serializer): password=attrs.get('password') ) - # why is self.user passed to _validat...
Improve code style, delete stale function.
sunscrapers_djoser
train
9c649e7c5cdb6b6c2a5875b48ec0edd348fc494d
diff --git a/src/net/sf/mpxj/SubProject.java b/src/net/sf/mpxj/SubProject.java index <HASH>..<HASH> 100644 --- a/src/net/sf/mpxj/SubProject.java +++ b/src/net/sf/mpxj/SubProject.java @@ -109,35 +109,58 @@ public final class SubProject } /** + * Retrieves the offset applied to task unique IDs + * from th...
Updated to fix unique ID and unique ID offset confusion for subprojects.
joniles_mpxj
train
a37c2e159094e0cbb5135efa9ed60705e6ba8ab5
diff --git a/tests/unit/modules/test_aptpkg.py b/tests/unit/modules/test_aptpkg.py index <HASH>..<HASH> 100644 --- a/tests/unit/modules/test_aptpkg.py +++ b/tests/unit/modules/test_aptpkg.py @@ -367,23 +367,17 @@ class AptPkgTestCase(TestCase, LoaderModuleMockMixin): } with patch.multi...
Fix for aptpkg test with older mock modules … and removal of debug prints
saltstack_salt
train
03d929dba4220527b30dac45f97bf7d2a98f98df
diff --git a/locale/tr.js b/locale/tr.js index <HASH>..<HASH> 100644 --- a/locale/tr.js +++ b/locale/tr.js @@ -12,7 +12,7 @@ const messages = { credit_card: (field) => `${field} numarası hatalı.`, date_between: (field, [min, max]) => `${field} ${min} ile ${max} tarihleri arasında olmalıdır.`, date_format: (fie...
Fix Turkish conjunction combined spelling mistake Turkish 've(and)' the conjunction is written in combined. The spelling error was corrected because it was a separate word.
baianat_vee-validate
train
4ac7474e4e83c3b5f8557e591bae9da54e4420d8
diff --git a/lib/router/index.js b/lib/router/index.js index <HASH>..<HASH> 100644 --- a/lib/router/index.js +++ b/lib/router/index.js @@ -198,39 +198,41 @@ proto.handle = function(req, res, done) { trim_prefix(); }); - function trim_prefix() { - var c = path[layer.path.length]; - i...
trim_prefix causing --use-strict flag to fail as specified in bug #<I> the `trim_prefix` function declaration within the `try/catch` causes problems when starting express with `--use_strict` directive.
expressjs_express
train
4ea7f6e72335be3cae35a32923a79a7eba692a7f
diff --git a/malcolm/modules/ADPandABlocks/doublebuffer.py b/malcolm/modules/ADPandABlocks/doublebuffer.py index <HASH>..<HASH> 100644 --- a/malcolm/modules/ADPandABlocks/doublebuffer.py +++ b/malcolm/modules/ADPandABlocks/doublebuffer.py @@ -225,7 +225,7 @@ class DoubleBuffer: This is designed to be called ...
Refactor double buffer clean up for clarity in pandaseqtriggerpart
dls-controls_pymalcolm
train
c7cf5e59a145ae3e2bc581f04aacf7f9d0938c59
diff --git a/lib/plugins.js b/lib/plugins.js index <HASH>..<HASH> 100644 --- a/lib/plugins.js +++ b/lib/plugins.js @@ -159,79 +159,82 @@ exports.read = function(val) { // {{{2 * @method read */ - O.log.notice('Reading configuration, creating plugins ...'); - - if (typeof val === 'string') { - val = require(...
Change: `Plugins.read()` runs `config()` after setImmediate
OpenSmartEnvironment_ose
train
3a05e9e328dbd700fc1b01d5dcb2d9f0fda886da
diff --git a/create_app.py b/create_app.py index <HASH>..<HASH> 100644 --- a/create_app.py +++ b/create_app.py @@ -99,6 +99,14 @@ _change_pylint_interpreter() # Add RESOURCEPATH to PATH, so that Spyder can find pylint inside the app new_path = "os.environ['PATH'] += os.pathsep + os.environ['RESOURCEPATH']\n" +# Add...
Add IPYTHONDIR to the Mac app environment - For some reason Ipython is not getting it right when running inside the app.
spyder-ide_spyder
train
967121561f0c87c89dce0f8c41271324a724af07
diff --git a/src/Core/Client.php b/src/Core/Client.php index <HASH>..<HASH> 100644 --- a/src/Core/Client.php +++ b/src/Core/Client.php @@ -213,6 +213,7 @@ class Client extends AbstractHttpClient implements LoggerAwareInterface ) { $client->setCorrelationIdProvider($this->getConfig()->getCo...
WIP: add correlation id to oauth requests
commercetools_commercetools-php-sdk
train
83eb21fe2e0076428e1cca46a8ca3008dbf956de
diff --git a/vendor/k8s.io/kubernetes/staging/src/k8s.io/client-go/rest/config.go b/vendor/k8s.io/kubernetes/staging/src/k8s.io/client-go/rest/config.go index <HASH>..<HASH> 100644 --- a/vendor/k8s.io/kubernetes/staging/src/k8s.io/client-go/rest/config.go +++ b/vendor/k8s.io/kubernetes/staging/src/k8s.io/client-go/rest...
UPSTREAM: revert: <I>: Fix bug with InClusterConfig requiring bearer token This reverts commit bd<I>daf<I>fba<I>d<I>a<I>bb2c<I> from openshift/kubernetes.
openshift_origin
train
678010c45e0fc24b19056863a1fac53521c7bed5
diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index <HASH>..<HASH> 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -1,13 +1,14 @@ name: Lint on: [pull_request] jobs: - golangci-lint: + golangci: + name: golangci-lint runs-on: ubuntu-latest steps: ...
fix linters & switch to official linter (#<I>)
tendermint_tendermint
train
25c6840ef7981cef5ecfa92b1b0e442e29494c57
diff --git a/code/libraries/koowa/template/helper/behavior.php b/code/libraries/koowa/template/helper/behavior.php index <HASH>..<HASH> 100644 --- a/code/libraries/koowa/template/helper/behavior.php +++ b/code/libraries/koowa/template/helper/behavior.php @@ -296,7 +296,7 @@ class KTemplateHelperBehavior extends KTempla...
test #<I>: Fix autocomplete for custom cases like different element names or different JSON properties
timble_kodekit
train
bab7e484962c906bbb6d59a6a2455c8a7b0f16db
diff --git a/Gemfile.lock b/Gemfile.lock index <HASH>..<HASH> 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - redlander (0.5.0) + redlander (0.5.1) ffi (~> 1.1) xml_schema (~> 0.1.0) @@ -9,14 +9,14 @@ GEM remote: http://rubygems.org/ specs: di...
fixed a memory leak in Model#query when bindings are returned
cordawyn_redlander
train
90ac694e99e89df3e7d62157822dbee1842ca98d
diff --git a/ExistingServiceException.php b/ExistingServiceException.php index <HASH>..<HASH> 100644 --- a/ExistingServiceException.php +++ b/ExistingServiceException.php @@ -16,8 +16,6 @@ namespace Sylius\Component\Registry; /** * This exception should be thrown by service registry * when given type already exist...
Remove the remaining author docblocks
Sylius_Registry
train
7ad4c1b5a08858de1ebae2aad95bf272f9aed3f8
diff --git a/examples/client.go b/examples/client.go index <HASH>..<HASH> 100644 --- a/examples/client.go +++ b/examples/client.go @@ -1,11 +1,10 @@ -// An example Diagnostic Tools v1 API Client +//An example Diagnostic Tools v1 API Client package main import ( "fmt" "log" "math/rand" - "net/url" "time" ...
Update example code to use new API version This commit updates examples code to use new API version and update the structs to parse updated response.
akamai_AkamaiOPEN-edgegrid-golang
train
42e36cd9a48ba2f114fa9ea8d3f153fb4671fbe8
diff --git a/transactions/src/main/java/org/ehcache/transactions/xa/SoftLock.java b/transactions/src/main/java/org/ehcache/transactions/xa/SoftLock.java index <HASH>..<HASH> 100644 --- a/transactions/src/main/java/org/ehcache/transactions/xa/SoftLock.java +++ b/transactions/src/main/java/org/ehcache/transactions/xa/Sof...
Issue #<I> Fix SoftLock handling of null old value
ehcache_ehcache3
train
d64f0c5d5ea25d7dcc3624d98476d570ac00c7c9
diff --git a/Cake/ORM/Table.php b/Cake/ORM/Table.php index <HASH>..<HASH> 100644 --- a/Cake/ORM/Table.php +++ b/Cake/ORM/Table.php @@ -780,7 +780,7 @@ class Table { * @param \Cake\Validation\Validator $validator * @return \Cake\Validation\Validator */ - public function validator($name = 'default', $instance = nul...
Fixing a few CS errors
cakephp_cakephp
train
8f22b504d75f226f9dbeb2549fcd4df00bfa9f23
diff --git a/activejdbc/src/main/java/org/javalite/activejdbc/dialects/DefaultDialect.java b/activejdbc/src/main/java/org/javalite/activejdbc/dialects/DefaultDialect.java index <HASH>..<HASH> 100644 --- a/activejdbc/src/main/java/org/javalite/activejdbc/dialects/DefaultDialect.java +++ b/activejdbc/src/main/java/org/ja...
#<I> Correction for models with id generator
javalite_activejdbc
train
7c4a4ca1fdeadd2c08bdee8c12389a96609da066
diff --git a/lib/variants.js b/lib/variants.js index <HASH>..<HASH> 100644 --- a/lib/variants.js +++ b/lib/variants.js @@ -63,6 +63,11 @@ function find(client) { @param {object} [options.android] - The specific Android options @param {string} [options.android.googleKey] - The Google Cloud Messaging Key. Required ...
add in the some docs about creating/update the amazon push variant
bucharest-gold_unifiedpush-admin-client
train
48441768fa425cea09b1957904a029aa4e98130f
diff --git a/service/turn.proxy/src/main/java/org/kaazing/gateway/service/turn/proxy/filters/TurnFrameEncoder.java b/service/turn.proxy/src/main/java/org/kaazing/gateway/service/turn/proxy/filters/TurnFrameEncoder.java index <HASH>..<HASH> 100644 --- a/service/turn.proxy/src/main/java/org/kaazing/gateway/service/turn/p...
MESSAGE INTEGRITY algorithm adapted to coturn
kaazing_gateway
train
3f614d1b3207c96460b31e4e99a91af1ac896528
diff --git a/Command/CreateDatabaseDoctrineCommand.php b/Command/CreateDatabaseDoctrineCommand.php index <HASH>..<HASH> 100644 --- a/Command/CreateDatabaseDoctrineCommand.php +++ b/Command/CreateDatabaseDoctrineCommand.php @@ -57,6 +57,11 @@ EOT $params = $params['master']; } + // Since d...
Fix primary param for dbal <I> compatibility
doctrine_DoctrineBundle
train
6551701153f1ca2f355bb6c53553c1608e2dd159
diff --git a/HISTORY.md b/HISTORY.md index <HASH>..<HASH> 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -5,6 +5,7 @@ https://github.com/josdejong/jsoneditor ## not yet released, version 5.26.3 +- Fixed #610: JSON Repair now removes trailing commas. - Upgraded devDependency `gulp` to v4. Thanks @maestr0. diff --...
Fixed #<I>: JSON Repair now removes trailing commas
josdejong_jsoneditor
train
690bc111d8295cc2ac1724e282d2eb42aff6ee51
diff --git a/src/server/cmd/pachctl/cmd/cmd.go b/src/server/cmd/pachctl/cmd/cmd.go index <HASH>..<HASH> 100644 --- a/src/server/cmd/pachctl/cmd/cmd.go +++ b/src/server/cmd/pachctl/cmd/cmd.go @@ -119,11 +119,13 @@ This resets the cluster to its initial state.`, Long: "Forward a port on the local machine to pachd. Th...
Don't swallow subcommands stderr.
pachyderm_pachyderm
train
2b3ebbcfa9300610f212257a944d48437efb52c6
diff --git a/treeherder/model/management/commands/migrate_buildapi_artifacts.py b/treeherder/model/management/commands/migrate_buildapi_artifacts.py index <HASH>..<HASH> 100644 --- a/treeherder/model/management/commands/migrate_buildapi_artifacts.py +++ b/treeherder/model/management/commands/migrate_buildapi_artifacts....
Bug <I> - Fix up migration script for some edge cases
mozilla_treeherder
train
26b696e8774c4ef98beee209232ff7b60cb74996
diff --git a/src/render-size.js b/src/render-size.js index <HASH>..<HASH> 100644 --- a/src/render-size.js +++ b/src/render-size.js @@ -27,6 +27,10 @@ export function resizeRenderer(view) { view._handler.origin(origin); view._resizeListeners.forEach(function(handler) { - handler(w, h); + try { + handl...
Trap errors raised in resize callbacks.
vega_vega-view
train
072891d529604872d790e53af344c646b96e33a2
diff --git a/src/Api/Management/Controller/AttributesAwareEntityControllerTrait.php b/src/Api/Management/Controller/AttributesAwareEntityControllerTrait.php index <HASH>..<HASH> 100644 --- a/src/Api/Management/Controller/AttributesAwareEntityControllerTrait.php +++ b/src/Api/Management/Controller/AttributesAwareEntityC...
[#<I>] All responseToArray methods have the same signature.
apigee_apigee-client-php
train
360f35b2bc68b6c2c9b8abd22caf68e22396926d
diff --git a/js/bootstrap-select.js b/js/bootstrap-select.js index <HASH>..<HASH> 100644 --- a/js/bootstrap-select.js +++ b/js/bootstrap-select.js @@ -964,7 +964,7 @@ }); if (that.$element[0].hasAttribute('required')) { - this.$element.on('invalid', function () { + this.$element.on('invali...
namespace invalid, change, and focus events (related to #<I>)
snapappointments_bootstrap-select
train
fd0847b7ff5684429fbe3b33c9b775965b3f28c2
diff --git a/excludes/de.php b/excludes/de.php index <HASH>..<HASH> 100644 --- a/excludes/de.php +++ b/excludes/de.php @@ -13,6 +13,8 @@ return [ ':resource Details', ':resource Details: :title', + 'Action Name', + 'Action Status', 'Administrator', 'Afghanistan', 'Andorra', @@ -58,12 +60...
[de] exclude, the time to fix the todo script
caouecs_Laravel-lang
train
bda8c89e7f75dea0c531c121957099cee70c8c87
diff --git a/aioimaplib/aioimaplib.py b/aioimaplib/aioimaplib.py index <HASH>..<HASH> 100644 --- a/aioimaplib/aioimaplib.py +++ b/aioimaplib/aioimaplib.py @@ -334,6 +334,14 @@ class IMAP4ClientProtocol(asyncio.Protocol): return (yield from self.execute(Command('STATUS', self.new_tag(), *args, loop=self.loop)))...
[aiolib] added subscribe/unsubscribe commands
bamthomas_aioimaplib
train
376c126dd6740e207e6881f269278d1ced0d893a
diff --git a/src/collectors/jolokia/jolokia.py b/src/collectors/jolokia/jolokia.py index <HASH>..<HASH> 100644 --- a/src/collectors/jolokia/jolokia.py +++ b/src/collectors/jolokia/jolokia.py @@ -153,7 +153,7 @@ class JolokiaCollector(diamond.collector.Collector): def read_request(self, domain): try: - ...
Escape reserved characters in Jolokia domains
python-diamond_Diamond
train
51cc562a3aefc884fdb52f966efbd1a821e0f64a
diff --git a/simanneal/anneal.py b/simanneal/anneal.py index <HASH>..<HASH> 100644 --- a/simanneal/anneal.py +++ b/simanneal/anneal.py @@ -277,8 +277,11 @@ class Annealer(object): self.update(step, T, E, None, None) while T == 0.0: step += 1 - self.move() - T = abs(s...
also using optional delta energy at other place in auto param estimation
perrygeo_simanneal
train
526b20a0bb8e0aa31f69482f735eddaea07c69dd
diff --git a/pandas/tools/rplot.py b/pandas/tools/rplot.py index <HASH>..<HASH> 100644 --- a/pandas/tools/rplot.py +++ b/pandas/tools/rplot.py @@ -416,10 +416,34 @@ class TrellisGrid(Layer): layers.append(trellised) rplot.layers = layers +def merge_aes(layer1, layer2): + """Merges the aesthetics dictionaries f...
Implemented sequence_layers and merge_aes functions
pandas-dev_pandas
train