hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
798e01fb2112218ba681cfe1f6f177ebf0b6a38b
diff --git a/lib/project/ruby_motion_query/ext.rb b/lib/project/ruby_motion_query/ext.rb index <HASH>..<HASH> 100644 --- a/lib/project/ruby_motion_query/ext.rb +++ b/lib/project/ruby_motion_query/ext.rb @@ -50,6 +50,10 @@ class UIView def style(&block) rmq(self).style(&block) end + + def color + rmq.colo...
Adds .color to screen and view
infinitered_redpotion
train
f5ca229f8574552538aabc6675b3c355eac230b6
diff --git a/src/Http/RouteManager.php b/src/Http/RouteManager.php index <HASH>..<HASH> 100644 --- a/src/Http/RouteManager.php +++ b/src/Http/RouteManager.php @@ -2,6 +2,7 @@ use Closure; use Illuminate\Support\Arr; +use Illuminate\Routing\Events\RouteMatched; use Illuminate\Support\NamespacedItemResolver; use Il...
Fixes events name to `Illuminate\Routing\Events\RouteMatched`.
orchestral_kernel
train
33fb30468fac32ffeb1db15ddfb066357d436e78
diff --git a/src/java/azkaban/executor/ExecutorManager.java b/src/java/azkaban/executor/ExecutorManager.java index <HASH>..<HASH> 100644 --- a/src/java/azkaban/executor/ExecutorManager.java +++ b/src/java/azkaban/executor/ExecutorManager.java @@ -528,7 +528,6 @@ public class ExecutorManager { httpclient.getConnecti...
Removing an errant System.out statement as well as a javascript error.
azkaban_azkaban
train
0b7bb1717980f5305bf6e5cdcec1685ef0943c0b
diff --git a/thrifty-schema/src/main/java/com/microsoft/thrifty/schema/EnumMember.java b/thrifty-schema/src/main/java/com/microsoft/thrifty/schema/EnumMember.java index <HASH>..<HASH> 100644 --- a/thrifty-schema/src/main/java/com/microsoft/thrifty/schema/EnumMember.java +++ b/thrifty-schema/src/main/java/com/microsoft/...
Add EnumMember#toBuilder() (#<I>)
Microsoft_thrifty
train
56dcdd02ec420f7c5df63befcc2a19a9a8d8aaa0
diff --git a/src/ol/interaction/dragrotateandzoominteraction.js b/src/ol/interaction/dragrotateandzoominteraction.js index <HASH>..<HASH> 100644 --- a/src/ol/interaction/dragrotateandzoominteraction.js +++ b/src/ol/interaction/dragrotateandzoominteraction.js @@ -9,6 +9,7 @@ goog.require('ol.events.ConditionType'); goo...
base dragrotateandzoominteraction on pointer interaction
openlayers_openlayers
train
d60ddb1fdb7b789cd643cd51c5b1fd292fd7aa5f
diff --git a/Minimal-J/src/main/java/org/minimalj/application/MjApplication.java b/Minimal-J/src/main/java/org/minimalj/application/MjApplication.java index <HASH>..<HASH> 100644 --- a/Minimal-J/src/main/java/org/minimalj/application/MjApplication.java +++ b/Minimal-J/src/main/java/org/minimalj/application/MjApplicatio...
MjApplication: Fixed typo
BrunoEberhard_minimal-j
train
d29b8ac223d63d8e12ba96a609783cea7de42a9c
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -94,7 +94,7 @@ module.exports = function (grunt) { curl: { selenium: { dest: 'build/selenium-server-standalone-2.45.0.jar', - src: 'http://selenium-release.storage.googleapis.com/2.44/selenium-se...
Slightly better (working) path
dequelabs_axe-core
train
8895b98c10cf16df65bff2a73f18bd656305401f
diff --git a/garlic.rb b/garlic.rb index <HASH>..<HASH> 100644 --- a/garlic.rb +++ b/garlic.rb @@ -1,30 +1,28 @@ garlic do repo 'resources_controller', :path => '.' - repo 'rails', :url => 'git://github.com/rails/rails'#, :local => "~/dev/vendor/rails" - + repo 'rails', :url => 'git://github.com/rails/rails' ...
Updated garlic.rb to <I> API (no all_targets)
ianwhite_resources_controller
train
ec1e6aa24d72a57d79f8b24a2a0bf0c63aac0e47
diff --git a/classes/Gems/Tracker/Snippets/AnswerModelSnippetGeneric.php b/classes/Gems/Tracker/Snippets/AnswerModelSnippetGeneric.php index <HASH>..<HASH> 100644 --- a/classes/Gems/Tracker/Snippets/AnswerModelSnippetGeneric.php +++ b/classes/Gems/Tracker/Snippets/AnswerModelSnippetGeneric.php @@ -345,7 +345,7 @@ class...
Temporarily disable #<I> copy-to-clipboard for in between release for Rijndam
GemsTracker_gemstracker-library
train
647bcded5c411b9afa218715bedfa6beec74dc42
diff --git a/ClearIce.php b/ClearIce.php index <HASH>..<HASH> 100644 --- a/ClearIce.php +++ b/ClearIce.php @@ -25,7 +25,7 @@ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * * @author James Ainooson <jainooson@gmail.com> - * @copyright Copyright 2012-s014 James Ekow Abaka Ainooson + * @copyri...
Just trying to trigger a test after a travis failure
ekowabaka_clearice
train
078fdab7fc8ea6102da67d34255370f08ed3ae4e
diff --git a/lib/jsdom/level1/core.js b/lib/jsdom/level1/core.js index <HASH>..<HASH> 100644 --- a/lib/jsdom/level1/core.js +++ b/lib/jsdom/level1/core.js @@ -862,7 +862,7 @@ core.Node.prototype = { core.NamedNodeMap = function NamedNodeMap(document) { - this._nodes = {}; + this._nodes = Object.create(null); ...
Handle attribute names from `Object.prototype`. Previously, any attribute (or other `NamedNodeMap` member) whose name was also in `Object.prototype` would cause some massive confusion, since `this._nodes[name]` was truthy even though it didn't exist in the hash. Switching to using `Object.create(null)` fixes this. Fi...
jsdom_jsdom
train
c2687c390f0ac850af399e176f37de9f3fa2df6b
diff --git a/actionpack/lib/action_view.rb b/actionpack/lib/action_view.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_view.rb +++ b/actionpack/lib/action_view.rb @@ -71,11 +71,6 @@ module ActionView autoload :TemplateError autoload :WrongEncodingError end - - autoload_at "action_view/...
Remove autoload for a couple of constants which don't exist anymore
rails_rails
train
ece8e812d81e92c871137bf2d03100a8e99ef4af
diff --git a/conversions/rgb2hex.js b/conversions/rgb2hex.js index <HASH>..<HASH> 100644 --- a/conversions/rgb2hex.js +++ b/conversions/rgb2hex.js @@ -3,8 +3,8 @@ function componentToHex(c) { return hex.length == 1 ? "0" + hex : hex; } -function rgb2hex(r, g, b) { - return "#" + componentToHex(r) + componentToHe...
rgb2hex should accept an array
WickyNilliams_pure-color
train
1088f75544573e30195e5b497fa957b9d43d7878
diff --git a/src/Scaffolding/Scaffolders/CRUD/Create.php b/src/Scaffolding/Scaffolders/CRUD/Create.php index <HASH>..<HASH> 100644 --- a/src/Scaffolding/Scaffolders/CRUD/Create.php +++ b/src/Scaffolding/Scaffolders/CRUD/Create.php @@ -11,6 +11,7 @@ use SilverStripe\Core\Injector\Injector; use SilverStripe\GraphQL\Scaf...
Fix query the object after creation, so data is the same as if queried again (#<I>)
silverstripe_silverstripe-graphql
train
89af8ca62ebcfb22a480626b80a8470b7876c12a
diff --git a/richtextfx/src/main/java/org/fxmisc/richtext/EditableStyledDocument.java b/richtextfx/src/main/java/org/fxmisc/richtext/EditableStyledDocument.java index <HASH>..<HASH> 100644 --- a/richtextfx/src/main/java/org/fxmisc/richtext/EditableStyledDocument.java +++ b/richtextfx/src/main/java/org/fxmisc/richtext/E...
Remove comment about why map is used as it is no longer in its context and can be confusing. The goal is code clarity. There are at least three different ways to achieve the same result. - Pros: The two other ways use less memory or don't have code repetition - Cons: The resulting code is quirky and not easily underst...
FXMisc_RichTextFX
train
1259aa9cf42e0f210aaa3295d397b952de403cd6
diff --git a/core/src/main/java/hudson/cli/InstallPluginCommand.java b/core/src/main/java/hudson/cli/InstallPluginCommand.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/hudson/cli/InstallPluginCommand.java +++ b/core/src/main/java/hudson/cli/InstallPluginCommand.java @@ -27,14 +27,18 @@ import hudson.Extensi...
Improved the error diagnostics based on feedback. See <URL>
jenkinsci_jenkins
train
7163894c9c93ff31757de22dab01d1a2f00c67bf
diff --git a/law/contrib/__init__.py b/law/contrib/__init__.py index <HASH>..<HASH> 100644 --- a/law/contrib/__init__.py +++ b/law/contrib/__init__.py @@ -5,8 +5,6 @@ __all__ = ["available_packages", "loaded_packages", "load", "load_all"] import os import logging -import types -import uuid import glob import la...
Remove deprecated contrib package access.
riga_law
train
b50ec0677c935c6624b05a1a7a0f98294b4ff8da
diff --git a/fermipy/diffuse/gt_srcmap_partial.py b/fermipy/diffuse/gt_srcmap_partial.py index <HASH>..<HASH> 100644 --- a/fermipy/diffuse/gt_srcmap_partial.py +++ b/fermipy/diffuse/gt_srcmap_partial.py @@ -162,6 +162,11 @@ class SrcmapsDiffuse_SG(ScatterGather): def _make_xml_files(diffuse_comp_info_dict): ...
Make srcmdls directory if needed in gt_srcmap_partial
fermiPy_fermipy
train
c193208cd29f9fba584aa5257b1760c1f2be3996
diff --git a/public/app/plugins/datasource/elasticsearch/datasource.js b/public/app/plugins/datasource/elasticsearch/datasource.js index <HASH>..<HASH> 100644 --- a/public/app/plugins/datasource/elasticsearch/datasource.js +++ b/public/app/plugins/datasource/elasticsearch/datasource.js @@ -295,46 +295,29 @@ function (a...
Rewrite query builder to allow for multiple time series.
grafana_grafana
train
4c4a2ab65f6dde0802c7d0ee7fd3200c45316488
diff --git a/src/core/observer/scheduler.js b/src/core/observer/scheduler.js index <HASH>..<HASH> 100644 --- a/src/core/observer/scheduler.js +++ b/src/core/observer/scheduler.js @@ -69,10 +69,14 @@ function flushSchedulerQueue () { } } + // reset scheduler before updated hook called + const oldQueue = queu...
trigger event after reassigned state - Fix #<I> (#<I>)
IOriens_wxml-transpiler
train
c0c9a45e08de4ee9e2b1033f0512161a86be981b
diff --git a/converters/fromZigbee.js b/converters/fromZigbee.js index <HASH>..<HASH> 100644 --- a/converters/fromZigbee.js +++ b/converters/fromZigbee.js @@ -4393,6 +4393,55 @@ const converters = { return {action: getProperty('off', msg, model)}; }, }, + greenpower_on_off_switch: { + ...
Support some green power devices. (#<I>)
Koenkk_zigbee-shepherd-converters
train
53f061f46bdc657bf4fff51d1f33aa85b543c8b8
diff --git a/lib/viddler/client.rb b/lib/viddler/client.rb index <HASH>..<HASH> 100644 --- a/lib/viddler/client.rb +++ b/lib/viddler/client.rb @@ -117,6 +117,9 @@ module Viddler # Returns a Hash containing the API response. # Raises ApiException if an error is returned from the API def upload(file, argum...
Call prepareUpload before uploading to make sure it goes to the right upload server
viddler_viddler-ruby
train
42096755eed4289184c11b03ba16abc1975ef974
diff --git a/bigcommerce/connection.py b/bigcommerce/connection.py index <HASH>..<HASH> 100644 --- a/bigcommerce/connection.py +++ b/bigcommerce/connection.py @@ -239,7 +239,9 @@ class OAuthConnection(Connection): client_secret, algorithms=["HS256"], ...
Fixed issue with the `verify_iss` argument passed to jwt.decode(). Error Occurred with jwt.decode() option `verify_iss=False` passed. ``` JWT verification failed: decode() got an unexpected keyword argument 'verify_iss' Payload verification failed! ```
bigcommerce_bigcommerce-api-python
train
cb1b0572cbaf846a810afaa18af1b797dac29028
diff --git a/libraries/legacy/table/content.php b/libraries/legacy/table/content.php index <HASH>..<HASH> 100644 --- a/libraries/legacy/table/content.php +++ b/libraries/legacy/table/content.php @@ -115,7 +115,7 @@ class JTableContent extends JTable public function bind($array, $ignore = '') { // Search for the ...
Fix issue where existing article can't be saved blank.
joomla_joomla-framework
train
8faaade35e753d8f4174233ff7e4cb4692443773
diff --git a/hot_redis.py b/hot_redis.py index <HASH>..<HASH> 100644 --- a/hot_redis.py +++ b/hot_redis.py @@ -231,29 +231,45 @@ class Set(Iterable): return self.spop() def clear(self): - del self + self.delete() - def remove(self): + def remove(self, value): + self._check_t...
Swap implementation of and/intersect set methods.
stephenmcd_hot-redis
train
7f60ff7604a3f92a59a9d73968cc3b8c24f027de
diff --git a/lib/jekyll/locale/filters.rb b/lib/jekyll/locale/filters.rb index <HASH>..<HASH> 100644 --- a/lib/jekyll/locale/filters.rb +++ b/lib/jekyll/locale/filters.rb @@ -8,6 +8,16 @@ module Jekyll DateTimeHandler.localize(time(input), format) end + def prefix_locale(input) + return in...
Reincarnate locale_url as prefix_locale
ashmaroli_jekyll-locale
train
90cafaea21f99a7dc97c50b591bbe3eae4eb039c
diff --git a/lib/loader/egg_loader.js b/lib/loader/egg_loader.js index <HASH>..<HASH> 100644 --- a/lib/loader/egg_loader.js +++ b/lib/loader/egg_loader.js @@ -291,7 +291,8 @@ class EggLoader { * @since 1.0.0 */ loadFile(filepath, ...inject) { - if (!filepath || !fs.existsSync(filepath)) { + filepath = ...
feat: loader support load file without extname (#<I>) <!-- Thank you for your pull request. Please review below requirements. Bug fixes and new features should include tests and possibly benchmarks. Contributors guide: <URL> <!-- Provide affected core subsystem(s). --> ##### Description of change <!-- Provid...
eggjs_egg-core
train
428f6d11e9536fb4275b5812cbc50652792363c6
diff --git a/src/java/voldemort/client/AbstractStoreClientFactory.java b/src/java/voldemort/client/AbstractStoreClientFactory.java index <HASH>..<HASH> 100644 --- a/src/java/voldemort/client/AbstractStoreClientFactory.java +++ b/src/java/voldemort/client/AbstractStoreClientFactory.java @@ -86,7 +86,7 @@ public abstract...
Reduced synchronization when lazily initializing failureDetector.
voldemort_voldemort
train
854da8026ad99a39ed1d6328f2a4ebe5abcef885
diff --git a/example/tutorial_mnist_distributed.py b/example/tutorial_mnist_distributed.py index <HASH>..<HASH> 100644 --- a/example/tutorial_mnist_distributed.py +++ b/example/tutorial_mnist_distributed.py @@ -14,7 +14,6 @@ import tensorflow as tf import tensorlayer as tl - # load environment for distributed trai...
run yapf and isort.
tensorlayer_tensorlayer
train
320d073bcd4cafde09eb37e958bf3acc370f8f05
diff --git a/helusers/oidc.py b/helusers/oidc.py index <HASH>..<HASH> 100644 --- a/helusers/oidc.py +++ b/helusers/oidc.py @@ -80,6 +80,10 @@ def _reload_settings(setting, **kwargs): _defaults = _build_defaults() +def get_keys(issuer): + return _defaults.key_provider(issuer) + + class AuthenticationErr...
HP-<I> Accept only known issuers If the logout token "iss" claim doesn't match an issuer in the settings, then discard that token.
City-of-Helsinki_django-helusers
train
628728c4d9389d0e7ca3dd1bb89286803f748e04
diff --git a/openquake/calculators/base.py b/openquake/calculators/base.py index <HASH>..<HASH> 100644 --- a/openquake/calculators/base.py +++ b/openquake/calculators/base.py @@ -40,7 +40,7 @@ from openquake.hazardlib.source import rupture from openquake.hazardlib.shakemap.maps import get_sitecol_shakemap from openqu...
Fixed bug in ShakeMaps: the GMFs were stored in the wrong order
gem_oq-engine
train
0ec64488ac99bbcab451be8e122129b33ad752cb
diff --git a/pylleo/lleocal.py b/pylleo/lleocal.py index <HASH>..<HASH> 100644 --- a/pylleo/lleocal.py +++ b/pylleo/lleocal.py @@ -80,6 +80,13 @@ def read_cal(cal_yaml_path): cal_dict = __create_cal(cal_yaml_path) cal_dict['parameters'] = OrderedDict() + # Parse data path name fields + exp_nam...
added generalish routine for calibrating propeller
ryanjdillon_pylleo
train
9b19d548ed00950beb9f67f37d79290845d6d3a9
diff --git a/orbeon_xml_api/builder.py b/orbeon_xml_api/builder.py index <HASH>..<HASH> 100644 --- a/orbeon_xml_api/builder.py +++ b/orbeon_xml_api/builder.py @@ -157,8 +157,9 @@ class Builder: query = "//*[@id='fr-form-instance']/form/*" res = self.xml_root.xpath(query) - for element in res[...
Fix silly bug in Builder set_form(). Loop across all (sections).
bobslee_orbeon-xml-api
train
b89e8a1310bbed055127f9995ffe400fcc7f2674
diff --git a/src/main/java/com/restfb/types/Post.java b/src/main/java/com/restfb/types/Post.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/restfb/types/Post.java +++ b/src/main/java/com/restfb/types/Post.java @@ -226,6 +226,17 @@ public class Post extends NamedFacebookType { private FeedTargeting feedTarge...
Issue #<I> - can_reply_privately field added to Post
restfb_restfb
train
6c710f140727b3ae15664a9e6a06b5249c04361b
diff --git a/src/test/java/io/github/bonigarcia/seljup/test/advance/MultipleConfigWdmJupiterTest.java b/src/test/java/io/github/bonigarcia/seljup/test/advance/MultipleConfigWdmJupiterTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/io/github/bonigarcia/seljup/test/advance/MultipleConfigWdmJupiterTest.java +++ ...
Fix test using different configurations of wdm
bonigarcia_selenium-jupiter
train
8059c676b7eb265c654b556912937d09c5293213
diff --git a/src/Extension/Symfony/Command/CommandJobFactory.php b/src/Extension/Symfony/Command/CommandJobFactory.php index <HASH>..<HASH> 100644 --- a/src/Extension/Symfony/Command/CommandJobFactory.php +++ b/src/Extension/Symfony/Command/CommandJobFactory.php @@ -41,6 +41,6 @@ class CommandJobFactory implements JobF...
Added symfony prefix to the job parameters.
Aureja_JobQueue
train
7c419c6179b9fc20ad49359261af5f4d825675ee
diff --git a/lib/yard/parser/statement_list.rb b/lib/yard/parser/statement_list.rb index <HASH>..<HASH> 100644 --- a/lib/yard/parser/statement_list.rb +++ b/lib/yard/parser/statement_list.rb @@ -79,13 +79,15 @@ module YARD # If the level is greater than 0, add the code to the block text # othe...
Fix parsing bug that added extra newlines to deep blocks
lsegal_yard
train
a0085627083978231bb82788bd2b9eb26cfe4662
diff --git a/src/main/java/com/cloudbees/jenkins/support/impl/AboutBrowser.java b/src/main/java/com/cloudbees/jenkins/support/impl/AboutBrowser.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/cloudbees/jenkins/support/impl/AboutBrowser.java +++ b/src/main/java/com/cloudbees/jenkins/support/impl/AboutBrowser.ja...
NPE when getting a support bundle from cURL.
jenkinsci_support-core-plugin
train
912b806a23f9498c0a78ae9a3ffc4562853fd6eb
diff --git a/lib/pingdom.js b/lib/pingdom.js index <HASH>..<HASH> 100644 --- a/lib/pingdom.js +++ b/lib/pingdom.js @@ -69,7 +69,7 @@ function init(config) { var removeApi = removeResources.map(function(removeResource) { return [ 'remove' + capitalizeFirstLetterAndRemovePeriod(removeResource), - temp...
Fixes issue related to calling remove methods which now bind to 'delMethodName' not 'deleteMethodName'
bebraw_pingdom-api
train
0b77b0a6a91a2d4fd3dc63d583fe6e74506b83b4
diff --git a/src/components/input/input.js b/src/components/input/input.js index <HASH>..<HASH> 100644 --- a/src/components/input/input.js +++ b/src/components/input/input.js @@ -685,7 +685,7 @@ function placeholderDirective($compile) { // md-select handles placeholders on it's own if (element[0].nodeName != ...
fix(md-input) prevent label from focus when tabbing Ensures keyboard won't focus on label when tabbed. Closes #<I>
angular_material
train
1942dcbcd30f678b4c91fcd66f25aa8badf4de37
diff --git a/packages/vaex-core/vaex/dataframe.py b/packages/vaex-core/vaex/dataframe.py index <HASH>..<HASH> 100644 --- a/packages/vaex-core/vaex/dataframe.py +++ b/packages/vaex-core/vaex/dataframe.py @@ -5489,8 +5489,6 @@ class DataFrameLocal(DataFrame): if hasattr(dataset, 'ucds'): self.ucds.u...
🐛 a column named data was not possible (#<I>) Fixes #<I>
vaexio_vaex
train
e69771bb6c5dd07140265fae06a6c505a70e4b9a
diff --git a/lib/puppet/defaults.rb b/lib/puppet/defaults.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/defaults.rb +++ b/lib/puppet/defaults.rb @@ -1346,7 +1346,7 @@ EOT }, :pluginfactsource => { :default => "puppet://$server/pluginfacts", - :desc => "Where to retreieve external facts for ...
(#<I>) Correct a typo in a setting desc.
puppetlabs_puppet
train
8a913d075d3d6752b72919e1fd1dc9332fbbcf33
diff --git a/src/main/java/io/github/robwin/swagger2markup/builder/document/PathsDocument.java b/src/main/java/io/github/robwin/swagger2markup/builder/document/PathsDocument.java index <HASH>..<HASH> 100644 --- a/src/main/java/io/github/robwin/swagger2markup/builder/document/PathsDocument.java +++ b/src/main/java/io/gi...
Refactored the examplesSection method in PathsDocument to remove duplicated code.
Swagger2Markup_swagger2markup
train
c4501e6b62ff5f888008b4ef8a3018b59a28a287
diff --git a/state.go b/state.go index <HASH>..<HASH> 100644 --- a/state.go +++ b/state.go @@ -933,7 +933,7 @@ func (m *Memberlist) suspectNode(s *suspect) { if timeout { if peersAvailable && numConfirmations < k { - metrics.IncrCounter([]string{"memberlist", "degraded", "suspect"}, 1) + metrics.IncrCoun...
Renames "degraded" telemetry (we will add "probe" later).
hashicorp_memberlist
train
6909529535c4f202b1b9b0105901517af65fd885
diff --git a/src/Builder/Delete.php b/src/Builder/Delete.php index <HASH>..<HASH> 100644 --- a/src/Builder/Delete.php +++ b/src/Builder/Delete.php @@ -2,7 +2,7 @@ namespace p810\MySQL\Builder; -class Delete extends Builder +class Delete extends AbstractBuilder { use Grammar\Table; use Grammar\Where; dif...
First batch of refactors for the new builder contract
p810_mysql-helper
train
6d3d00b44577a70e840f0187d6894043677c5329
diff --git a/src/structures/interfaces/InteractionResponses.js b/src/structures/interfaces/InteractionResponses.js index <HASH>..<HASH> 100644 --- a/src/structures/interfaces/InteractionResponses.js +++ b/src/structures/interfaces/InteractionResponses.js @@ -114,9 +114,11 @@ class InteractionResponses { * .then(c...
fix(InteractionResponses): set replied status on editReply (#<I>)
discordjs_discord.js
train
15030d47d8a19fa554a0eeb8632777047f41b6b5
diff --git a/src/Api/Api.php b/src/Api/Api.php index <HASH>..<HASH> 100644 --- a/src/Api/Api.php +++ b/src/Api/Api.php @@ -189,6 +189,8 @@ abstract class Api implements ApiInterface $request = $request->withHeader('Idempotency-Key', $idempotencykey); } + $request = $request->w...
Add way to set a managed account id. Closes #<I>
cartalyst_stripe
train
8bd56d89126dad088e19d3fc16abee63d72737a2
diff --git a/Twig/Extension/AliDatatableExtension.php b/Twig/Extension/AliDatatableExtension.php index <HASH>..<HASH> 100644 --- a/Twig/Extension/AliDatatableExtension.php +++ b/Twig/Extension/AliDatatableExtension.php @@ -66,7 +66,7 @@ class AliDatatableExtension extends \Twig_Extension $rawjs ...
To support PHP <I> I have founded short syntax to declare array which has no support in php<I> so replace with old syntax.
AliHichem_AliDatatableBundle
train
974242feab325ef8710d692adc21b823ad6a2938
diff --git a/registry/integration_test.go b/registry/integration_test.go index <HASH>..<HASH> 100644 --- a/registry/integration_test.go +++ b/registry/integration_test.go @@ -91,7 +91,7 @@ Loop: case <-timeout.C: t.Fatal("Cache timeout") case <-tick.C: - _, err := r.GetImage(id) + _, err := r.GetRepositor...
Move manifest fetch into many goroutines (like registry) to improve performance.
weaveworks_flux
train
db33fa0984034cd1467abedd0f11dedd1e07dac9
diff --git a/src/com/jfoenix/controls/JFXListCell.java b/src/com/jfoenix/controls/JFXListCell.java index <HASH>..<HASH> 100644 --- a/src/com/jfoenix/controls/JFXListCell.java +++ b/src/com/jfoenix/controls/JFXListCell.java @@ -41,6 +41,7 @@ import javafx.scene.control.Control; import javafx.scene.control.Label; impo...
added tooltip to jfxlistview in case of Strings/Labels
jfoenixadmin_JFoenix
train
561e918992c080f77eb4b850c963c8ed419353e5
diff --git a/quilt/cli/__init__.py b/quilt/cli/__init__.py index <HASH>..<HASH> 100644 --- a/quilt/cli/__init__.py +++ b/quilt/cli/__init__.py @@ -30,6 +30,7 @@ import quilt.cli.patchimport import quilt.cli.pop import quilt.cli.previous import quilt.cli.push +import quilt.cli.revert import quilt.cli.series import ...
Import revert to cli commands
bjoernricks_python-quilt
train
856b95f1f5189e1d2ca122b891bc670adac9692b
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ author = 'Kamil A. Kaczmarek and Jakub Czakon' # The short X.Y version version = '0.1' # The full version, including alpha/beta/rc tags -release = '0.1.15' +release = '0.1.16' # -- Genera...
De<I> (#<I>) * check that input to step.fit_transform and step.transform is dict. Same for step outputs * prepare for <I> * Update base.py
neptune-ml_steppy
train
e1fce7c1ba4eb8f9ee915b74017c9147a432dc71
diff --git a/tests/integration/storage/cache/adapter/MemcacheTest.php b/tests/integration/storage/cache/adapter/MemcacheTest.php index <HASH>..<HASH> 100644 --- a/tests/integration/storage/cache/adapter/MemcacheTest.php +++ b/tests/integration/storage/cache/adapter/MemcacheTest.php @@ -136,7 +136,7 @@ class MemcacheTes...
Combine and refactor one integration test with sleep.
UnionOfRAD_lithium
train
763d1ec0c5737a28413eaf32a557a0662c992d44
diff --git a/src/Line.js b/src/Line.js index <HASH>..<HASH> 100644 --- a/src/Line.js +++ b/src/Line.js @@ -1,4 +1,3 @@ -/** @ignore */ const Point = require('./Point'); /** diff --git a/src/bitmap.js b/src/bitmap.js index <HASH>..<HASH> 100644 --- a/src/bitmap.js +++ b/src/bitmap.js @@ -1,7 +1,6 @@ -/**@ignore */ -...
Tidy Up Dependencies - Remove `/** @ignore*/` before each dependency require - unfortunately this will make the documentation coverage score go down, but it seems better to have easier to read code - Assign dependencies with `const` instead of `var` since it prevents accidental re-assignment - Sort dependencies alphab...
joshmarinacci_node-pureimage
train
859dc4aca43ed8e9baf94fbf88e9fb4a1b7dc9bb
diff --git a/bundles/org.eclipse.orion.client.javascript/web/javascript/nls/root/messages.js b/bundles/org.eclipse.orion.client.javascript/web/javascript/nls/root/messages.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.javascript/web/javascript/nls/root/messages.js +++ b/bundles/org.eclipse.orion...
Bug <I> - [OpenDeclaration] provide different commands to allow opening the declation different ways (internationalize the strings)
eclipse_orion.client
train
58c02d5bb7b25aa810c8279c5eb7de95a0362356
diff --git a/br/pkg/restore/systable_restore.go b/br/pkg/restore/systable_restore.go index <HASH>..<HASH> 100644 --- a/br/pkg/restore/systable_restore.go +++ b/br/pkg/restore/systable_restore.go @@ -34,15 +34,16 @@ var unRecoverableTable = map[string]struct{}{ "global_variables": {}, // all user related tables ca...
br: Add system table from <I> into blacklist which shouldn't be restored (#<I>)
pingcap_tidb
train
ad30ff1900f6f32468640609b481d40bdf68c28e
diff --git a/tests/Server/Business/KeysTest.php b/tests/Server/Business/KeysTest.php index <HASH>..<HASH> 100644 --- a/tests/Server/Business/KeysTest.php +++ b/tests/Server/Business/KeysTest.php @@ -32,6 +32,93 @@ class KeysTest extends TestCase $this->assertEquals(array(), $this->business->keys('[*{?\\')); ...
Improve test coverage for key expiries and renames
clue_php-redis-server
train
bc58f5b981b9ae2efc3b35786c44fb5e9b0f0e92
diff --git a/qiskit/tools/visualization/_matplotlib.py b/qiskit/tools/visualization/_matplotlib.py index <HASH>..<HASH> 100644 --- a/qiskit/tools/visualization/_matplotlib.py +++ b/qiskit/tools/visualization/_matplotlib.py @@ -456,7 +456,7 @@ class MatplotlibDrawer: - n_fold * (self._c...
Just use a list not split a string (#<I>) In the matplotlib circuit drawer backend there was a statically defined list of gates to treat as wide. For some reason this list was defined by build a space separated string of the gates and then running the split() method on that string. This is unecessary and we can jus...
Qiskit_qiskit-terra
train
0f92cc7aaaad37f7748cecba691832faba25dc4e
diff --git a/lib/bpl/analysis/verification.rb b/lib/bpl/analysis/verification.rb index <HASH>..<HASH> 100644 --- a/lib/bpl/analysis/verification.rb +++ b/lib/bpl/analysis/verification.rb @@ -18,24 +18,26 @@ module Bpl unroll = options[:unroll] delays = options[:delays] + done = false ...
Only using eventmachine with the parallel flag.
michael-emmi_bam-bam-boogieman
train
4ad40e74b73618588c637c832adc488d38dd92ca
diff --git a/tests/CrEOF/Geo/WKB/Tests/ParserTest.php b/tests/CrEOF/Geo/WKB/Tests/ParserTest.php index <HASH>..<HASH> 100644 --- a/tests/CrEOF/Geo/WKB/Tests/ParserTest.php +++ b/tests/CrEOF/Geo/WKB/Tests/ParserTest.php @@ -101,6 +101,54 @@ class ParserTest extends \PHPUnit_Framework_TestCase 'v...
Tests for POINT Z, M, and ZM
creof_wkb-parser
train
8538df66f0b01c0c1e88fc1162eb4186d3e7d354
diff --git a/tests/testapp/test_flock.py b/tests/testapp/test_flock.py index <HASH>..<HASH> 100644 --- a/tests/testapp/test_flock.py +++ b/tests/testapp/test_flock.py @@ -4,6 +4,7 @@ from hashlib import sha1 from django.core import mail from django.test import TestCase from django.utils import timezone +from django....
Accept both forms of unsetting a cookie
matthiask_django-mooch
train
f74fe5ba52bca86cd74c21e89567c9b2d800c14e
diff --git a/admin/tool/log/backup/moodle2/restore_tool_log_logstore_subplugin.class.php b/admin/tool/log/backup/moodle2/restore_tool_log_logstore_subplugin.class.php index <HASH>..<HASH> 100644 --- a/admin/tool/log/backup/moodle2/restore_tool_log_logstore_subplugin.class.php +++ b/admin/tool/log/backup/moodle2/restore...
MDL-<I> tool_log: marked log values as NOT_MAPPED if mapping not found
moodle_moodle
train
fbd7e936e56d93f82f68bd1f85438a459919fc44
diff --git a/pex/pip/runtime_patches.py b/pex/pip/runtime_patches.py index <HASH>..<HASH> 100644 --- a/pex/pip/runtime_patches.py +++ b/pex/pip/runtime_patches.py @@ -170,8 +170,6 @@ if skip_markers: orig_get_candidate_lookup = RequiresPythonRequirement.get_candidate_lookup orig_is_satisfied_b...
Fix more pathologic lock creation slowness. (#<I>) Although #<I> was on the right track, it missed a small corner case with partial order operators acting against patch versions of zero. More importantly, it missed trimming the final set of versions picked using the specifier in question once up-front. This up-fron...
pantsbuild_pex
train
f37e24b424349cdff0a5fb19e7758dbb12ef0127
diff --git a/claripy/ast/base.py b/claripy/ast/base.py index <HASH>..<HASH> 100644 --- a/claripy/ast/base.py +++ b/claripy/ast/base.py @@ -699,31 +699,6 @@ class Base(ana.Storable): return self._excavated # - # Alright, I give up. Here are some convenience accessors to backend models. - # - - @...
implement AST.__getattr__ for getting models for custom backends
angr_claripy
train
1891783e4e1eef42cf219bbb3b843902a4026b4b
diff --git a/spec/features/actor_stack_spec.rb b/spec/features/actor_stack_spec.rb index <HASH>..<HASH> 100644 --- a/spec/features/actor_stack_spec.rb +++ b/spec/features/actor_stack_spec.rb @@ -27,6 +27,13 @@ RSpec.describe Hyrax::DefaultMiddlewareStack, :clean_repo do .to true end + it 'starts the ...
add actor stack test for workflow status ensure the actor stack starts workflow. the code that does this may be about to change, so let's get a test in.
samvera_hyrax
train
468b5e0f94a80de4a7a3280e39ea4a676a064e1e
diff --git a/ghost.py b/ghost.py index <HASH>..<HASH> 100644 --- a/ghost.py +++ b/ghost.py @@ -186,20 +186,18 @@ class Stash(_BaseStash): db_path=DEFAULT_STASH_PATH, passphrase=None, passphrase_size=12): - db_path = os.path.expanduser(db_path) - if not...
Fix bug where you can't init a stash
nir0s_ghost
train
54e89a2c7b33bb92aa5f85aced00610eb303d6ce
diff --git a/spec/support/integration_example_group.rb b/spec/support/integration_example_group.rb index <HASH>..<HASH> 100644 --- a/spec/support/integration_example_group.rb +++ b/spec/support/integration_example_group.rb @@ -99,10 +99,15 @@ module IntegrationExampleGroup output end - def wait_for_vm(name) ...
Wait longer for resurrector in integration tests
cloudfoundry_bosh
train
9f51b813eb4aa924bcaf98a445d1aea72c624eaf
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -34,24 +34,24 @@ setup( description='A small Python module for determining appropriate ' + \ 'platform-specific dirs, e.g. a "user data dir".', long_description=read('README.rst') + '\n' + read('CHANGES.rst'...
Simplify trove classifier list Easier to simply define a list of strings instead of processing a big string with split() & strip().
zmwangx_xdgappdirs
train
7bae960d78f1cd3b99d2a8744be07d2f243c0719
diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/domain/EntityScanPackages.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/domain/EntityScanPackages.java index <HASH>..<HASH> 100644 --- a/spring-boot...
Polish "Support comma-separated basePackage values in EntityScan" See gh-<I>
spring-projects_spring-boot
train
72655345f4c2dfecc81ee7be4331a6edf130a414
diff --git a/Module.php b/Module.php index <HASH>..<HASH> 100644 --- a/Module.php +++ b/Module.php @@ -65,15 +65,14 @@ class Module 'factories' => array( 'auditConfig' => function($serviceManager){ $config = $serviceManager->get('Application')->getConfig(); - ...
Config changed to just 'config'
API-Skeletons_zf-doctrine-audit
train
5fe6adc4877ecc465e7b75134636dc5139be3a7a
diff --git a/library/src/com/actionbarsherlock/internal/app/ActionBarSupportImpl.java b/library/src/com/actionbarsherlock/internal/app/ActionBarSupportImpl.java index <HASH>..<HASH> 100644 --- a/library/src/com/actionbarsherlock/internal/app/ActionBarSupportImpl.java +++ b/library/src/com/actionbarsherlock/internal/app...
Tweak support action bar indeterminate progress bar display to mirror that of the native version.
JakeWharton_ActionBarSherlock
train
a1be5c61772ce33ba40353a0e66390102170a806
diff --git a/src/java/voldemort/client/ClientConfig.java b/src/java/voldemort/client/ClientConfig.java index <HASH>..<HASH> 100644 --- a/src/java/voldemort/client/ClientConfig.java +++ b/src/java/voldemort/client/ClientConfig.java @@ -45,7 +45,7 @@ import voldemort.utils.Utils; */ public class ClientConfig { - ...
Decreasing default max connections per node to <I>
voldemort_voldemort
train
453dc546529f99e480e2aa26a92cba23e7c06ef0
diff --git a/public/js/vendor/jquery.lister.js b/public/js/vendor/jquery.lister.js index <HASH>..<HASH> 100644 --- a/public/js/vendor/jquery.lister.js +++ b/public/js/vendor/jquery.lister.js @@ -203,8 +203,15 @@ var $nextList = $nextSelect.next("ul"); if (self.settings.populateSelectedTop) {...
Little fix to the way we get our intial value
apostrophecms_apostrophe
train
d02214b226ff54153e950d9fa9becec0b24168a1
diff --git a/src/Number.php b/src/Number.php index <HASH>..<HASH> 100644 --- a/src/Number.php +++ b/src/Number.php @@ -145,6 +145,12 @@ final class Number return ''; } - return substr($this->number, $this->decimalSeparatorPosition + 1); + $fractionalPart = substr($this->number, $th...
number a fraction of zero should return the empty string, just as when there is no fractional part
moneyphp_money
train
86085aa890a270f63fdb27d6f4900fceb9d3cca1
diff --git a/lib/troy/version.rb b/lib/troy/version.rb index <HASH>..<HASH> 100644 --- a/lib/troy/version.rb +++ b/lib/troy/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Troy - VERSION = "0.0.36" + VERSION = "0.0.37" end
Bump up version (<I>).
fnando_troy
train
3270acb803dda7219196f1602dfa4e4d95ffdb89
diff --git a/examples/DoReFa-Net/svhn-digit-dorefa.py b/examples/DoReFa-Net/svhn-digit-dorefa.py index <HASH>..<HASH> 100755 --- a/examples/DoReFa-Net/svhn-digit-dorefa.py +++ b/examples/DoReFa-Net/svhn-digit-dorefa.py @@ -30,27 +30,28 @@ BITG = 4 GRAD_DEFINED = False def get_dorefa(bitW, bitA, bitG): + """ retu...
simplify code and add bit==<I>
tensorpack_tensorpack
train
b1cfa60312baa07691a26dbcfed64caa9e91e818
diff --git a/lib/wice/wice_grid_misc.rb b/lib/wice/wice_grid_misc.rb index <HASH>..<HASH> 100644 --- a/lib/wice/wice_grid_misc.rb +++ b/lib/wice/wice_grid_misc.rb @@ -77,12 +77,16 @@ module Wice def build_includes_includes_is_array(includes, assocs) #:nodoc: - hash_keys = includes - .each...
fixed issues with Ruby <I>
leikind_wice_grid
train
87ab2e880cfe912dd81133bce254c8daea5cbff9
diff --git a/packages/build-tools/tasks/webpack-tasks.js b/packages/build-tools/tasks/webpack-tasks.js index <HASH>..<HASH> 100644 --- a/packages/build-tools/tasks/webpack-tasks.js +++ b/packages/build-tools/tasks/webpack-tasks.js @@ -11,11 +11,18 @@ const { boltWebpackMessages } = require('@bolt/build-utils/webpack-he...
feat: add drupal-lab integration server to webpack build
bolt-design-system_bolt
train
98c1548d7971f7a7a9ae9d7455a3f1d606066ed2
diff --git a/app/helpers/rails_admin/application_helper.rb b/app/helpers/rails_admin/application_helper.rb index <HASH>..<HASH> 100644 --- a/app/helpers/rails_admin/application_helper.rb +++ b/app/helpers/rails_admin/application_helper.rb @@ -42,7 +42,7 @@ module RailsAdmin def main_navigation - n...
RailsAdmin::Config.visible_models only list visible and authorized models
sferik_rails_admin
train
4c7bc196f20edd41c62dd48b54a2a3730476f6aa
diff --git a/aospy/utils.py b/aospy/utils.py index <HASH>..<HASH> 100644 --- a/aospy/utils.py +++ b/aospy/utils.py @@ -1,6 +1,5 @@ """aospy.utils: utility functions for the aospy module.""" import logging -import warnings from infinite_diff import CenDiff import numpy as np @@ -129,14 +128,14 @@ def to_radians(ar...
MAINT change warnings to logging
spencerahill_aospy
train
e9c377440c8b357da6fb43529704ada2ddf960a0
diff --git a/lib/agent.js b/lib/agent.js index <HASH>..<HASH> 100644 --- a/lib/agent.js +++ b/lib/agent.js @@ -181,8 +181,8 @@ Agent.prototype.captureError = function (err, opts, cb) { } if (trans) error.transaction = {id: trans.id} - if (opts && opts.handled && error.exception) { - error.exception....
chore(errors): always include handled flag (#<I>) Fixes #<I>
elastic_apm-agent-nodejs
train
e321552b027f61cd4b84bb2004a18428e3b111a9
diff --git a/src/please.js b/src/please.js index <HASH>..<HASH> 100644 --- a/src/please.js +++ b/src/please.js @@ -122,7 +122,7 @@ exports['get'] = function get (url, opts) { var options = opts || {}; - return xhr('GET', url, false, options); + return xhr('GET', url, undefined, options); ...
passing undefined rather than false for IE9 GET
fffunction_please
train
b59aa358bb311d3d06c5df856a1d57124b857d5a
diff --git a/actionpack/lib/sprockets/helpers/rails_helper.rb b/actionpack/lib/sprockets/helpers/rails_helper.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/sprockets/helpers/rails_helper.rb +++ b/actionpack/lib/sprockets/helpers/rails_helper.rb @@ -58,10 +58,10 @@ module Sprockets private def debug_...
Make Sprockets::Helpers::RailsHelper#debug_assets? more readable
rails_rails
train
88d6b204c7f45ee7b72e70628e527fbbae9f3664
diff --git a/test/on_yubikey/test_cli_openpgp.py b/test/on_yubikey/test_cli_openpgp.py index <HASH>..<HASH> 100644 --- a/test/on_yubikey/test_cli_openpgp.py +++ b/test/on_yubikey/test_cli_openpgp.py @@ -1,20 +1,22 @@ import unittest -from ykman.util import TRANSPORT -from .util import (DestructiveYubikeyTestCase, miss...
Upgrade test_cli_openpgp
Yubico_yubikey-manager
train
f4b35df1978f66a94867632c94d5679ee527d5dc
diff --git a/src/Controller/Component/SearchableComponent.php b/src/Controller/Component/SearchableComponent.php index <HASH>..<HASH> 100644 --- a/src/Controller/Component/SearchableComponent.php +++ b/src/Controller/Component/SearchableComponent.php @@ -157,7 +157,7 @@ class SearchableComponent extends Component ...
is_callable will always returns true if the __call magic method is defined (task #<I>)
QoboLtd_cakephp-search
train
8807e66b5c3593a18e284699860de23f9498ac45
diff --git a/test/path-test.js b/test/path-test.js index <HASH>..<HASH> 100644 --- a/test/path-test.js +++ b/test/path-test.js @@ -111,6 +111,8 @@ describe('path based', () => { .send(testObject) .set('Content-Type', 'application/json') .expect(201) + .e...
updated path tests to validate response header location
mitchallen_marchio-datastore
train
608732aa7a6bc1ed348f8ac06c6b9e525bf92447
diff --git a/src/Illuminate/Database/Schema/Grammars/MySqlGrammar.php b/src/Illuminate/Database/Schema/Grammars/MySqlGrammar.php index <HASH>..<HASH> 100755 --- a/src/Illuminate/Database/Schema/Grammars/MySqlGrammar.php +++ b/src/Illuminate/Database/Schema/Grammars/MySqlGrammar.php @@ -319,6 +319,27 @@ class MySqlGramm...
Improved mysql drop all tables (#<I>)
laravel_framework
train
589aca773abd4637b2962a877f763f0ce97be506
diff --git a/resources/lang/de-DE/dashboard.php b/resources/lang/de-DE/dashboard.php index <HASH>..<HASH> 100644 --- a/resources/lang/de-DE/dashboard.php +++ b/resources/lang/de-DE/dashboard.php @@ -35,7 +35,7 @@ return [ 'failure' => 'Etwas ist mit dem Aktualisieren des Vorfall Updates schief gelaufen...
New translations dashboard.php (German)
CachetHQ_Cachet
train
0cd25dfc74802d9c67493950c304f6076bdade89
diff --git a/lib/src/main/java/org/altbeacon/beacon/service/BeaconService.java b/lib/src/main/java/org/altbeacon/beacon/service/BeaconService.java index <HASH>..<HASH> 100644 --- a/lib/src/main/java/org/altbeacon/beacon/service/BeaconService.java +++ b/lib/src/main/java/org/altbeacon/beacon/service/BeaconService.java @...
Expedite when we promote scanning servicxe to the foreground to avoid crashes
AltBeacon_android-beacon-library
train
5d80d2d89193e018685e4400538bc694349361c9
diff --git a/pywb/webapp/replay_views.py b/pywb/webapp/replay_views.py index <HASH>..<HASH> 100644 --- a/pywb/webapp/replay_views.py +++ b/pywb/webapp/replay_views.py @@ -34,7 +34,7 @@ class CaptureException(WbException): #================================================================= class ReplayView(object): -...
replay: change strip_scheme() to strip_scheme_www() to also strip away www. prefix for self-redirect checking, #<I>
webrecorder_pywb
train
fd374150b4cbe2c423ba3b7b03d395fe28cf56fc
diff --git a/djangular/static/djangular/js/django-angular.js b/djangular/static/djangular/js/django-angular.js index <HASH>..<HASH> 100644 --- a/djangular/static/djangular/js/django-angular.js +++ b/djangular/static/djangular/js/django-angular.js @@ -28,6 +28,22 @@ angular.module('ng.django.forms', []).directive('form'...
Added provider to djangoForm, which accepts errors passed in from ajax success handler
jrief_django-angular
train
21071dc96e695516e83856e9f6bd4a35c16c509a
diff --git a/src/api/create-vis.js b/src/api/create-vis.js index <HASH>..<HASH> 100644 --- a/src/api/create-vis.js +++ b/src/api/create-vis.js @@ -73,7 +73,7 @@ var loadVizJSON = function (el, visModel, vizjsonData, options) { https: isProtocolHTTPs || options.https === true || vizjson.https === true }); - v...
Fix setting the settings using the setSettings method instead set directly.
CartoDB_carto.js
train
42fd75081a75a6ba7377b14262731add0e18f96d
diff --git a/aiohttp/connector.py b/aiohttp/connector.py index <HASH>..<HASH> 100644 --- a/aiohttp/connector.py +++ b/aiohttp/connector.py @@ -261,7 +261,8 @@ class ProxyConnector(TCPConnector): @asyncio.coroutine def _create_connection(self, req, **kwargs): proxy_req = ClientRequest('GET', self.prox...
fix: loop added to proxy_req
aio-libs_aiohttp
train
d3ccb70b20dbe16b0bd16834be6a85df6bbeca4f
diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt index <HASH>..<HASH> 100755 --- a/doc/source/whatsnew/v0.16.1.txt +++ b/doc/source/whatsnew/v0.16.1.txt @@ -239,3 +239,6 @@ Bug Fixes - Fixed latex output for multi-indexed dataframes (:issue:`9778`) - Bug causing an exception when setti...
BUG: hidden ticklabels with sharex and secondary
pandas-dev_pandas
train
0440ef313e2181e901daee24ed05894bb96720d8
diff --git a/src/showdown.js b/src/showdown.js index <HASH>..<HASH> 100644 --- a/src/showdown.js +++ b/src/showdown.js @@ -135,42 +135,6 @@ if (typeof module !== 'undefind' && typeof exports !== 'undefined' && typeof req } } -// -// Options: -// - -// Parse extensions options into separate arrays -if (converter_op...
fix bug with this scope handling and extension converter argument * `this` scope is captured as `self`, so that it can be properly passed to `Showdown.forEach(plugin(self)` otherwise, extension plugin will end up with converter pointing to global scope. * because Showdown is not using proper prototype chain (i.e. re...
showdownjs_showdown
train
c256d900b8f3d6daf344260c297d1dfdf88ae64a
diff --git a/lib/honeybadger/notice.rb b/lib/honeybadger/notice.rb index <HASH>..<HASH> 100644 --- a/lib/honeybadger/notice.rb +++ b/lib/honeybadger/notice.rb @@ -348,7 +348,7 @@ module Honeybadger def rack_env(method) rack_request.send(method) if rack_request rescue => e - { :error => "Failed to ...
Inform user of method when rack_request.method fails. (#<I>)
honeybadger-io_honeybadger-ruby
train
448d23135378b92d9c3d247801785a049b54c4ef
diff --git a/tests/_fixtures/init_user.php b/tests/_fixtures/init_user.php index <HASH>..<HASH> 100644 --- a/tests/_fixtures/init_user.php +++ b/tests/_fixtures/init_user.php @@ -20,4 +20,14 @@ return [ 'confirmation_token' => 'NO2aCmBIjFQX624xmAc3VBu7Th3NJoa6', 'confirmation_sent_at' => $time ], + [ + 'userna...
refactored confirmation cept
harlangray_yii2-user
train
cdf9b8b310d2f0f34deea5f2e4012f8c7f692ede
diff --git a/check_api/src/test/java/com/google/errorprone/ErrorProneOptionsTest.java b/check_api/src/test/java/com/google/errorprone/ErrorProneOptionsTest.java index <HASH>..<HASH> 100644 --- a/check_api/src/test/java/com/google/errorprone/ErrorProneOptionsTest.java +++ b/check_api/src/test/java/com/google/errorprone/...
Migrate from is(Not)SameAs to is(Not)SameInstanceAs. They behave identically, and the old names are being removed. Open-source note: The new methods are available in Truth as of version <I>. ------------- Created by MOE: <URL>
google_error-prone
train
9a9d895481ada301143c0554dabd4ec9914b8703
diff --git a/actionpack/lib/action_view/helpers/asset_tag_helpers/asset_paths.rb b/actionpack/lib/action_view/helpers/asset_tag_helpers/asset_paths.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_view/helpers/asset_tag_helpers/asset_paths.rb +++ b/actionpack/lib/action_view/helpers/asset_tag_helpers/asset_pa...
Fix Typos: remove several occurences of the the
rails_rails
train
d94cf28427889844a978f59ba638a6a2bb9e36c0
diff --git a/state/backups.go b/state/backups.go index <HASH>..<HASH> 100644 --- a/state/backups.go +++ b/state/backups.go @@ -186,8 +186,9 @@ func addBackupMetadataID(st *State, metadata *backup.Metadata, id string) error return nil } -// getBackupMetadata returns the backup metadata associated with "id". -// If...
Fix a copy-and-paste docstring issue.
juju_juju
train