hash
stringlengths
40
40
diff
stringlengths
131
26.7k
message
stringlengths
7
694
project
stringlengths
5
67
split
stringclasses
1 value
diff_languages
stringlengths
2
24
574f034e6646da5a77287d0eb5c89b14dd275608
diff --git a/nunaliit2-js/src/main/js/nunaliit2/n2.couchModule.js b/nunaliit2-js/src/main/js/nunaliit2/n2.couchModule.js index <HASH>..<HASH> 100644 --- a/nunaliit2-js/src/main/js/nunaliit2/n2.couchModule.js +++ b/nunaliit2-js/src/main/js/nunaliit2/n2.couchModule.js @@ -461,6 +461,9 @@ var ModuleDisplay = $n2.Class({ ...
Open sliding panel when search initiated (#<I>)
GCRC_nunaliit
train
js
f19b37f0c467dd2cf4103f214c3ce8aa33bf162b
diff --git a/src/Parser/State.php b/src/Parser/State.php index <HASH>..<HASH> 100644 --- a/src/Parser/State.php +++ b/src/Parser/State.php @@ -69,6 +69,8 @@ class State */ protected $new_statement_character_found = false; + protected $valid_placeholder_characters = []; + /** * * Con...
Removed the call to State->capture from State->getIdentifier
auraphp_Aura.Sql
train
php
1073eca2fac1b05c0e20b02aea78e8a2f550cfe5
diff --git a/model/connect/DBSchemaManager.php b/model/connect/DBSchemaManager.php index <HASH>..<HASH> 100644 --- a/model/connect/DBSchemaManager.php +++ b/model/connect/DBSchemaManager.php @@ -591,7 +591,7 @@ abstract class DBSchemaManager { if (!isset($this->tableList[strtolower($table)])) $newTable = true; ...
Bugfix: Complex (curly) syntax
silverstripe_silverstripe-framework
train
php
b91a4a35d447f91de12c2e0da1f11f22070c0647
diff --git a/pyoos/utils/asatime.py b/pyoos/utils/asatime.py index <HASH>..<HASH> 100644 --- a/pyoos/utils/asatime.py +++ b/pyoos/utils/asatime.py @@ -59,4 +59,4 @@ class AsaTime(object): date = dateparser.parse(date_string, tzinfos=cls.tzd) return date except: - raise ...
Raise a short stack when we can't parse a date
ioos_pyoos
train
py
04e8c66c2c7dce8b53cd075c9a058548e0f3e305
diff --git a/index.php b/index.php index <HASH>..<HASH> 100644 --- a/index.php +++ b/index.php @@ -17,6 +17,11 @@ ? 'administration' : 'frontend'); + header('Expires: Mon, 12 Dec 1982 06:14:00 GMT'); + header('Last-Modified: ' . gmdate('r')); + header('Cache-Control: no-cache, must-revalidate, max-age=0'); +...
Moved cache preventing headers from bundle.php to index.php. Allows scripts to include the Symphony engine without getting unwanted headers set.
symphonycms_symphony-2
train
php,php
785cc320722cfc335dd7770ad31b471aa4e39d1f
diff --git a/app/models/specialist_document_edition.rb b/app/models/specialist_document_edition.rb index <HASH>..<HASH> 100644 --- a/app/models/specialist_document_edition.rb +++ b/app/models/specialist_document_edition.rb @@ -22,7 +22,7 @@ class SpecialistDocumentEdition field :state, type: String - embeds_man...
Ensure attachment callbacks fire on edition save
alphagov_govuk_content_models
train
rb
d0b067017352938984595baa7ee7524600b50442
diff --git a/app/services/never_logged_in_notifier.rb b/app/services/never_logged_in_notifier.rb index <HASH>..<HASH> 100644 --- a/app/services/never_logged_in_notifier.rb +++ b/app/services/never_logged_in_notifier.rb @@ -3,7 +3,7 @@ module NeverLoggedInNotifier def self.send_reminders return unless Rails.conf...
Replace each with find_each in existing notifiers
ministryofjustice_peoplefinder
train
rb,rb
3ecc795e950d016b75cfca748f772f9bdc20bd36
diff --git a/plugins/io.sarl.eclipse/src/io/sarl/eclipse/wizards/sreinstall/StandardSREPage.java b/plugins/io.sarl.eclipse/src/io/sarl/eclipse/wizards/sreinstall/StandardSREPage.java index <HASH>..<HASH> 100644 --- a/plugins/io.sarl.eclipse/src/io/sarl/eclipse/wizards/sreinstall/StandardSREPage.java +++ b/plugins/io.sa...
[eclipse] Add logging messages for debugging SRE file selection. see #<I>
sarl_sarl
train
java
adcea27d72685800ec0383f90491815b94c66b12
diff --git a/lib/airrecord/table.rb b/lib/airrecord/table.rb index <HASH>..<HASH> 100644 --- a/lib/airrecord/table.rb +++ b/lib/airrecord/table.rb @@ -180,7 +180,7 @@ module Airrecord end def save - raise Error, "Unable to save a new record" if new_record? + return create if new_record? r...
Create new records instead of raising in #save
sirupsen_airrecord
train
rb,rb
ca4e4893c38db4e5ab3d7040cbc0fa3b5cdaf6b9
diff --git a/src/runner.js b/src/runner.js index <HASH>..<HASH> 100644 --- a/src/runner.js +++ b/src/runner.js @@ -3,6 +3,7 @@ var Runner = require('screener-runner'); var cloneDeep = require('lodash/cloneDeep'); var omit = require('lodash/omit'); var url = require('url'); +var pkg = require('../package.json'); /...
add screener-storybook version to meta
screener-io_screener-storybook
train
js
70de24e12ccb8e6bceadb035d2daaacf119a0316
diff --git a/lib/simple_form/components/labels.rb b/lib/simple_form/components/labels.rb index <HASH>..<HASH> 100644 --- a/lib/simple_form/components/labels.rb +++ b/lib/simple_form/components/labels.rb @@ -28,7 +28,7 @@ module SimpleForm end def label_text - SimpleForm.label_text.call(raw_label_...
fix a couple of escaping issues in edge rails
plataformatec_simple_form
train
rb,rb
372cab2963094b43423742164dd9224acd0f1d4d
diff --git a/aioice/exceptions.py b/aioice/exceptions.py index <HASH>..<HASH> 100644 --- a/aioice/exceptions.py +++ b/aioice/exceptions.py @@ -1,7 +1,3 @@ -class ConnectionError(Exception): - pass - - class TransactionError(Exception): response = None
[exceptions] don't define custom ConnectionError, it's not used
aiortc_aioice
train
py
7ad0c0b9acd4aee7eb0b4787730b3e2058579d26
diff --git a/livestyle-client.js b/livestyle-client.js index <HASH>..<HASH> 100644 --- a/livestyle-client.js +++ b/livestyle-client.js @@ -191,7 +191,7 @@ toWatch = [], url, i; - cssIncludes.unshift({ href: loc...
Disabled the client subscribing to the current page url, which introduced a lot of errors. See Issue #<I> to reimplement it.
One-com_livestyle
train
js
4c606477733323101b9efaf913da6cbfb260f8d0
diff --git a/lib/metadata/MIQExtract/MIQExtract.rb b/lib/metadata/MIQExtract/MIQExtract.rb index <HASH>..<HASH> 100644 --- a/lib/metadata/MIQExtract/MIQExtract.rb +++ b/lib/metadata/MIQExtract/MIQExtract.rb @@ -26,7 +26,7 @@ class MIQExtract def initialize(filename, ost = nil) # TODO: Always pass in MiqVm ost |...
Refactor " : nil" used in ternary operators Add removed whitespace Revert refactor Revert refactor Revert refactor (transferred from ManageIQ/manageiq-gems-pending@7a<I>b<I>de<I>c7bc3e<I>cef<I>dbbea9ce<I>a<I>d)
ManageIQ_manageiq-smartstate
train
rb
bd3dff2bb464dd0e777f51d408ad5caf199c7bfc
diff --git a/src/SuffixExtractor.php b/src/SuffixExtractor.php index <HASH>..<HASH> 100644 --- a/src/SuffixExtractor.php +++ b/src/SuffixExtractor.php @@ -113,7 +113,7 @@ class SuffixExtractor } } - return [$host, '']; + return [$host, null]; }
Fix to result: null on incorrect TLD now
layershifter_TLDExtract
train
php
a61a8d78b13e2bb2eee7178552ab55168406b213
diff --git a/src/Composer/Command/InitCommand.php b/src/Composer/Command/InitCommand.php index <HASH>..<HASH> 100644 --- a/src/Composer/Command/InitCommand.php +++ b/src/Composer/Command/InitCommand.php @@ -705,8 +705,18 @@ EOT )); } + // Check for similar names/typos ...
Fix warning for packages not existing while they exist but not at the required stability, fixes #<I>
composer_composer
train
php
6fbd88a43882bb4d60d0219964626503f154e217
diff --git a/lib/knapsack/adapters/minitest_adapter.rb b/lib/knapsack/adapters/minitest_adapter.rb index <HASH>..<HASH> 100644 --- a/lib/knapsack/adapters/minitest_adapter.rb +++ b/lib/knapsack/adapters/minitest_adapter.rb @@ -52,7 +52,11 @@ module Knapsack def self.test_path(obj) # Pick the first publi...
Add support got Minitest::SharedExamples
ArturT_knapsack
train
rb
5c2bb9412d40b5f5208240b8fa81ab15e98cf330
diff --git a/lib/vagrant/action/vm/nfs.rb b/lib/vagrant/action/vm/nfs.rb index <HASH>..<HASH> 100644 --- a/lib/vagrant/action/vm/nfs.rb +++ b/lib/vagrant/action/vm/nfs.rb @@ -110,7 +110,6 @@ module Vagrant # up to the host class to define the specific behavior. def export_folders @env[:ui]....
A much cleaner way to find NFS folders to mount
hashicorp_vagrant
train
rb
e0c8ed569272a9082cb3bdb4d539ae09fe8c89ed
diff --git a/src/edeposit/amqp/ftp/__init__.py b/src/edeposit/amqp/ftp/__init__.py index <HASH>..<HASH> 100644 --- a/src/edeposit/amqp/ftp/__init__.py +++ b/src/edeposit/amqp/ftp/__init__.py @@ -5,9 +5,7 @@ # Interpreter version: python 2.7 # #= Imports ===============================================================...
Added CreateUser and RemoveUser messages.
edeposit_edeposit.amqp.ftp
train
py
d07ff0e463003dcd68a20470f56dfb4c39bab6d5
diff --git a/salt/modules/hipchat.py b/salt/modules/hipchat.py index <HASH>..<HASH> 100644 --- a/salt/modules/hipchat.py +++ b/salt/modules/hipchat.py @@ -20,7 +20,7 @@ import requests import logging from urlparse import urljoin as _urljoin from requests.exceptions import ConnectionError -from six.moves import range...
Replaced module six in file /salt/modules/hipchat.py
saltstack_salt
train
py
9acd41af304dc742fc3982f2dbd94c8edc0f4e12
diff --git a/salt/states/network.py b/salt/states/network.py index <HASH>..<HASH> 100644 --- a/salt/states/network.py +++ b/salt/states/network.py @@ -164,7 +164,7 @@ all interfaces are ignored unless specified. - max_bonds: 1 - updelay: 0 - use_carrier: on - - xmit_hash_policy: layer2...
Update network states doc Previously it was xmit_hash_policy, but that's not what the code is actually looking for.
saltstack_salt
train
py
f1167cc9f49ef09009c948a0b4ac9f399046904e
diff --git a/modules/__tests__/Router-test.js b/modules/__tests__/Router-test.js index <HASH>..<HASH> 100644 --- a/modules/__tests__/Router-test.js +++ b/modules/__tests__/Router-test.js @@ -158,6 +158,27 @@ describe('Router', function () { }); }); + it('does not double escape when nested', function(do...
added a test for nested routes
taion_rrtr
train
js
dc33e09b241bdb824fe767a2f19be04e2b94d379
diff --git a/pkg/services/ngalert/schedule/schedule.go b/pkg/services/ngalert/schedule/schedule.go index <HASH>..<HASH> 100644 --- a/pkg/services/ngalert/schedule/schedule.go +++ b/pkg/services/ngalert/schedule/schedule.go @@ -700,26 +700,11 @@ func (r *alertRuleRegistry) del(key models.AlertRuleKey) (*alertRuleInfo, b...
simplify getting a slice of keys (#<I>)
grafana_grafana
train
go
f298a105175ab5632c7ffeac84805cca6ffe5f72
diff --git a/lib/parameters/instance_param.rb b/lib/parameters/instance_param.rb index <HASH>..<HASH> 100644 --- a/lib/parameters/instance_param.rb +++ b/lib/parameters/instance_param.rb @@ -31,7 +31,7 @@ module Parameters # The value of the instance param. # def value - @object.instance_variable_...
Reduce usage of to_sym.
postmodern_parameters
train
rb
0e11f7fbb8726f079f7a292bbaae51bb7aaff77d
diff --git a/test/test_commands.py b/test/test_commands.py index <HASH>..<HASH> 100644 --- a/test/test_commands.py +++ b/test/test_commands.py @@ -194,15 +194,8 @@ invocation. subprocess.check_output( ['git', 'remote', 'set-url', 'origin', 'http://foo.com/bar.git'], stderr=subprocess....
fix logic in test since the commands are expected to have a return code of zero (#<I>)
dirk-thomas_vcstool
train
py
7f92efb5064b5f87ef0324f182c7f3bf5e1d556e
diff --git a/src/astral.py b/src/astral.py index <HASH>..<HASH> 100644 --- a/src/astral.py +++ b/src/astral.py @@ -668,6 +668,7 @@ class Location(object): return locals() tz = property(**tz()) + tzinfo = tz def solar_depression(): doc = """The number of degrees the sun must be b...
Added `tzinfo` as an alias for `tz`
sffjunkie_astral
train
py
3e70c457cc201b7538156660d3cb22aabe2dd8aa
diff --git a/test/unit/utils-tests.js b/test/unit/utils-tests.js index <HASH>..<HASH> 100644 --- a/test/unit/utils-tests.js +++ b/test/unit/utils-tests.js @@ -143,4 +143,17 @@ test('libpq connection string building', function() { })) }) + test('password contains < and/or > characters', function () { + v...
test case for password containing a < or > sign
brianc_node-postgres
train
js
5874d37bf0c7b24ae372b21cf263d09d3621e1c4
diff --git a/lib/request.js b/lib/request.js index <HASH>..<HASH> 100644 --- a/lib/request.js +++ b/lib/request.js @@ -205,10 +205,9 @@ class Request extends AsyncResource { } if ( - this.streaming && this.body && - !this.body.destroyed && - typeof this.body.destroy === 'function' + ...
refactor: simplify req body destroy
mcollina_undici
train
js
e39844f8b6b56ecbc887d38df79e7d755acb642c
diff --git a/Examples/Calculator/features/roles/calculating_individual.rb b/Examples/Calculator/features/roles/calculating_individual.rb index <HASH>..<HASH> 100644 --- a/Examples/Calculator/features/roles/calculating_individual.rb +++ b/Examples/Calculator/features/roles/calculating_individual.rb @@ -18,10 +18,6 @@ cl...
Refactoring: Apparently noone needs the Calculating Individual to respond to 'equals'
RiverGlide_CukeSalad
train
rb
7baf68d8a71c841ebc0545bdb37c2723d018c30e
diff --git a/admin/settings/appearance.php b/admin/settings/appearance.php index <HASH>..<HASH> 100644 --- a/admin/settings/appearance.php +++ b/admin/settings/appearance.php @@ -45,7 +45,7 @@ if ($hassiteconfig) { // speedup for non-admins, add all caps used on this page $temp->add(new admin_setting_configtext('c...
MDL-<I> longer default salt; merged from MOODLE_<I>_STABLE
moodle_moodle
train
php
6f9a444bba13f134c2395dd52a3816ab7ec3031c
diff --git a/lib/puppet/rails/param_name.rb b/lib/puppet/rails/param_name.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/rails/param_name.rb +++ b/lib/puppet/rails/param_name.rb @@ -9,7 +9,7 @@ class Puppet::Rails::ParamName < ActiveRecord::Base hash = {} hash[:name] = self.name.to_sym hash[...
Fixed #<I> by applying patch by vvidic.
puppetlabs_puppet
train
rb
e7cdd2f9f354e86dbee32597d376a5ace2dc1e4e
diff --git a/src/Schema/Extensions/GraphQLExtension.php b/src/Schema/Extensions/GraphQLExtension.php index <HASH>..<HASH> 100644 --- a/src/Schema/Extensions/GraphQLExtension.php +++ b/src/Schema/Extensions/GraphQLExtension.php @@ -14,7 +14,7 @@ abstract class GraphQLExtension implements \JsonSerializable * ...
Remove return type to match Laravel style
nuwave_lighthouse
train
php
dd21df83a7b02dfca4b243dc0a96098cacf5123f
diff --git a/Branch-SDK/src/io/branch/referral/ServerRequestActionCompleted.java b/Branch-SDK/src/io/branch/referral/ServerRequestActionCompleted.java index <HASH>..<HASH> 100644 --- a/Branch-SDK/src/io/branch/referral/ServerRequestActionCompleted.java +++ b/Branch-SDK/src/io/branch/referral/ServerRequestActionComplete...
log warning for non purchase event sent to usercompletedaction
BranchMetrics_android-branch-deep-linking
train
java
87007c50df503471bb4fa7d568677e49d872b618
diff --git a/src/main/java/com/flipkart/zjsonpatch/PathUtils.java b/src/main/java/com/flipkart/zjsonpatch/PathUtils.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/flipkart/zjsonpatch/PathUtils.java +++ b/src/main/java/com/flipkart/zjsonpatch/PathUtils.java @@ -21,8 +21,8 @@ class PathUtils { private st...
Switched `tilda (~)` and `slash(/)` decode order.
flipkart-incubator_zjsonpatch
train
java
8a4ab3164b97c1dfa42f0e2305dd2567853ecd0d
diff --git a/instana/__init__.py b/instana/__init__.py index <HASH>..<HASH> 100644 --- a/instana/__init__.py +++ b/instana/__init__.py @@ -24,7 +24,7 @@ __author__ = 'Instana Inc.' __copyright__ = 'Copyright 2017 Instana Inc.' __credits__ = ['Pavlo Baron', 'Peter Giacomo Lombardo'] __license__ = 'MIT' -__version__ =...
Bump package version to <I>
instana_python-sensor
train
py,py
8f262d8e3e758bdcf499a3fb3d6575c85e1a91cf
diff --git a/cmsplugin_zinnia/__init__.py b/cmsplugin_zinnia/__init__.py index <HASH>..<HASH> 100644 --- a/cmsplugin_zinnia/__init__.py +++ b/cmsplugin_zinnia/__init__.py @@ -1,5 +1,5 @@ """cmsplugin_zinnia""" -__version__ = '0.4' +__version__ = '0.4.1' __license__ = 'BSD License' __author__ = 'Fantomas42'
Bump to version <I>
django-blog-zinnia_cmsplugin-zinnia
train
py
625a238bbec857fdb5ec72ea2db15943aaae2538
diff --git a/DependencyInjection/EasyAdminExtension.php b/DependencyInjection/EasyAdminExtension.php index <HASH>..<HASH> 100644 --- a/DependencyInjection/EasyAdminExtension.php +++ b/DependencyInjection/EasyAdminExtension.php @@ -62,6 +62,11 @@ class EasyAdminExtension extends Extension $parts = explode('...
Allow to have different entities with the same exact name This is very rare, except for entities like "Category" which can be defined in different bundles for different purposes. The proposed solution is very simple, but it should do the trick.
EasyCorp_EasyAdminBundle
train
php
b314741ed279167f2775a9bf6989ebeea97cb803
diff --git a/ui/app/mixins/searchable.js b/ui/app/mixins/searchable.js index <HASH>..<HASH> 100644 --- a/ui/app/mixins/searchable.js +++ b/ui/app/mixins/searchable.js @@ -48,7 +48,7 @@ export default Mixin.create({ }), listSearched: computed('searchTerm', 'listToSearch.[]', 'searchProps.[]', function() { - c...
Trim whitespace on the search term Trailing whitespace messes with tokenization
hashicorp_nomad
train
js
481be9da35248502211d22d8114de16026926311
diff --git a/communicator/winrm/communicator.go b/communicator/winrm/communicator.go index <HASH>..<HASH> 100644 --- a/communicator/winrm/communicator.go +++ b/communicator/winrm/communicator.go @@ -217,7 +217,7 @@ func (c *Communicator) newCopyClient() (*winrmcp.Winrmcp, error) { OperationTimeout: c.Timeout(),...
code reformatted with gofmt
hashicorp_terraform
train
go
b6e1f7b2af0639070d5ab191110c99f524a8f6ca
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -7,7 +7,6 @@ const stylelint = require('stylelint'); const debug = require('debug')('prettier-stylelint:main'); // const explorer = cosmiconfig('stylelint'); -const linterAPI = stylelint.createLinter({ fix:...
fix: dont re use the same linter instance because we can't invalidate the config cache
hugomrdias_prettier-stylelint
train
js
3981efff3757b8b48422beda74de0faebdbef3b0
diff --git a/pypiper/pypiper.py b/pypiper/pypiper.py index <HASH>..<HASH> 100755 --- a/pypiper/pypiper.py +++ b/pypiper/pypiper.py @@ -888,15 +888,24 @@ class PipelineManager(object): if not annotation: annotation = self.pipeline_name + annotation = str(annotation) + # In case the value is passed with trai...
Finalize report_figure to relative paths
databio_pypiper
train
py
623b7dfd7b7fc686f69714e0e7864eac5bb08fd1
diff --git a/src/main/java/org/asteriskjava/manager/internal/ManagerReaderImpl.java b/src/main/java/org/asteriskjava/manager/internal/ManagerReaderImpl.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/asteriskjava/manager/internal/ManagerReaderImpl.java +++ b/src/main/java/org/asteriskjava/manager/internal/Mana...
Remove a check-then-act in ManagerReaderImpl
asterisk-java_asterisk-java
train
java
2fc1d40acbb0ee69587a8b2e80fc3cddec722e75
diff --git a/src/Client/Middleware/MiddlewareClient.php b/src/Client/Middleware/MiddlewareClient.php index <HASH>..<HASH> 100644 --- a/src/Client/Middleware/MiddlewareClient.php +++ b/src/Client/Middleware/MiddlewareClient.php @@ -22,7 +22,7 @@ trait MiddlewareClient /** * @var IOAuthClient */ - pri...
fix(Middleware): Change middleware client accessibility
zerospam_sdk-framework
train
php
a7c3c9f0d504ad2f2a74fdd380ef3ac63fd7d8fe
diff --git a/staging/src/k8s.io/legacy-cloud-providers/gce/gce_zones.go b/staging/src/k8s.io/legacy-cloud-providers/gce/gce_zones.go index <HASH>..<HASH> 100644 --- a/staging/src/k8s.io/legacy-cloud-providers/gce/gce_zones.go +++ b/staging/src/k8s.io/legacy-cloud-providers/gce/gce_zones.go @@ -20,6 +20,7 @@ package gce...
Fix ListZonesInRegion() after client BasePath change This path fixes region Regex for listing zones. Compute client BasePath changed to compute.googleapis.com, but resource URI were left as www.googleapis.com
kubernetes_kubernetes
train
go
58d6a588a1fdc1784becab28a1f4870902d9a203
diff --git a/gwt-material/src/main/java/gwt/material/design/client/ui/MaterialSideNav.java b/gwt-material/src/main/java/gwt/material/design/client/ui/MaterialSideNav.java index <HASH>..<HASH> 100644 --- a/gwt-material/src/main/java/gwt/material/design/client/ui/MaterialSideNav.java +++ b/gwt-material/src/main/java/gwt/...
Added method setActive(int index) to automatically select sidenav items.
GwtMaterialDesign_gwt-material
train
java
f00ab76be2572951dcc50431fcbd74fa4e610265
diff --git a/client/extensions/woocommerce/app/dashboard/pre-setup-view.js b/client/extensions/woocommerce/app/dashboard/pre-setup-view.js index <HASH>..<HASH> 100644 --- a/client/extensions/woocommerce/app/dashboard/pre-setup-view.js +++ b/client/extensions/woocommerce/app/dashboard/pre-setup-view.js @@ -8,7 +8,7 @@ i...
Store: Fix store address setup for CA addresses by using the correct `find`
Automattic_wp-calypso
train
js
dd133fe034274ea6bdd2c738241191087a92a3c7
diff --git a/testsuite.py b/testsuite.py index <HASH>..<HASH> 100644 --- a/testsuite.py +++ b/testsuite.py @@ -40,6 +40,7 @@ from __future__ import print_function +import errno import kconfiglib import os import platform @@ -2433,8 +2434,16 @@ def equal_confs(): with open(".config") as menu_conf: ...
Warn if the Makefile patch hasn't been applied The old error from the test suite was cryptic.
ulfalizer_Kconfiglib
train
py
213942149427cd443bf13e54c482afafb66a284c
diff --git a/session/bootstrap.go b/session/bootstrap.go index <HASH>..<HASH> 100644 --- a/session/bootstrap.go +++ b/session/bootstrap.go @@ -1421,7 +1421,7 @@ func doDMLWorks(s Session) { } func mustExecute(s Session, sql string) { - _, err := s.Execute(context.Background(), sql) + _, err := s.ExecuteInternal(con...
session: use ExecuteInternal to execute the bootstrap SQLs (#<I>)
pingcap_tidb
train
go
e2417c3b6a4ba6c0c860e3e472fd9b7e6bc3cb4b
diff --git a/test/suite/Integration/Counterpart/CounterpartMatcherDriverTest.php b/test/suite/Integration/Counterpart/CounterpartMatcherDriverTest.php index <HASH>..<HASH> 100644 --- a/test/suite/Integration/Counterpart/CounterpartMatcherDriverTest.php +++ b/test/suite/Integration/Counterpart/CounterpartMatcherDriverTe...
Add Counterpart matcher driver test requirement for easy version switching.
eloquent_phony
train
php
7887eabbfa1a80bb4d46a99f28385f45c45309f5
diff --git a/hazelcast/src/main/java/com/hazelcast/instance/Node.java b/hazelcast/src/main/java/com/hazelcast/instance/Node.java index <HASH>..<HASH> 100644 --- a/hazelcast/src/main/java/com/hazelcast/instance/Node.java +++ b/hazelcast/src/main/java/com/hazelcast/instance/Node.java @@ -166,7 +166,6 @@ public class Node...
Moved version check after node starts.
hazelcast_hazelcast
train
java
cb2f7d499466acd2a8c9b917262914e46b5bf104
diff --git a/test/test_helper.rb b/test/test_helper.rb index <HASH>..<HASH> 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -62,3 +62,7 @@ end require "active_storage/attached" ActiveRecord::Base.send :extend, ActiveStorage::Attached::Macros + +require "global_id" +GlobalID.app = "ActiveStorageExample...
Still need GlobalID for PurgeJob serialization
rails_rails
train
rb
923acb68201622af4f0be0ba4c4ec059e919b536
diff --git a/lib/unix_daemon.rb b/lib/unix_daemon.rb index <HASH>..<HASH> 100644 --- a/lib/unix_daemon.rb +++ b/lib/unix_daemon.rb @@ -76,7 +76,9 @@ module ActsAsFerret # checked on ubuntu and OSX only def process_exists(pid) ps = IO.popen("ps -fp #{pid}", "r") - ps.to_a[1] =~ /ferret_serv...
close pipe so defunct ps process is not left hanging around
jkraemer_acts_as_ferret
train
rb
c6c83aa9b96807692e68f71dca5c73e6878b3ed0
diff --git a/webapps/client/scripts/filter/modals/cam-tasklist-filter-modal.js b/webapps/client/scripts/filter/modals/cam-tasklist-filter-modal.js index <HASH>..<HASH> 100644 --- a/webapps/client/scripts/filter/modals/cam-tasklist-filter-modal.js +++ b/webapps/client/scripts/filter/modals/cam-tasklist-filter-modal.js @...
fix(filter): fix typo in filter dialog related to CAM-<I>
camunda_camunda-bpm-platform
train
js
dbefa2b55132aeb5cc1411faefef331d5418bb62
diff --git a/lib/findJsModulesFor.js b/lib/findJsModulesFor.js index <HASH>..<HASH> 100644 --- a/lib/findJsModulesFor.js +++ b/lib/findJsModulesFor.js @@ -116,6 +116,14 @@ function findJsModulesFor(config, pathToCurrentFile, variableName) { }); }); + config.environmentCoreModules().forEach((dep) => { + if...
Move finding environmentCoreModules above dependencies Conceptually these should be considered first, since they are part of the environment. Furthermore, this is how we group things so it is nice to have the symmetry here.
Galooshi_import-js
train
js
5161b793c3a06d70daa685c5a9b35fa3a101df40
diff --git a/packages/hw-transport-webhid/src/TransportWebHID.js b/packages/hw-transport-webhid/src/TransportWebHID.js index <HASH>..<HASH> 100644 --- a/packages/hw-transport-webhid/src/TransportWebHID.js +++ b/packages/hw-transport-webhid/src/TransportWebHID.js @@ -115,10 +115,10 @@ export default class TransportWebHI...
call observer.error instead of throwing an error
LedgerHQ_ledgerjs
train
js
1d0b6ad75e1f8ca2934a7fe8d00953a430806184
diff --git a/common/src/test/java/io/netty/util/concurrent/DefaultPromiseTest.java b/common/src/test/java/io/netty/util/concurrent/DefaultPromiseTest.java index <HASH>..<HASH> 100644 --- a/common/src/test/java/io/netty/util/concurrent/DefaultPromiseTest.java +++ b/common/src/test/java/io/netty/util/concurrent/DefaultPr...
DefaultPromiseTest dead code removal Motivation: DefaultPromiseTest has dead code which was left over from a code restructure. Shared code between 2 tests was moved into a common method, but some code which was not cleaned up in each of these methods after the code was moved. Modifications: - Delete dead code in Defa...
netty_netty
train
java
1a811f3e8e7a736a7feba4a3e8712034e74ab759
diff --git a/code/plugins/system/koowa.php b/code/plugins/system/koowa.php index <HASH>..<HASH> 100644 --- a/code/plugins/system/koowa.php +++ b/code/plugins/system/koowa.php @@ -37,9 +37,10 @@ class plgSystemKoowa extends JPlugin JLoader::import('libraries.koowa.koowa', JPATH_ROOT); JLoader::import('libraries.k...
re #<I> : KRequest is now a singleton. Added instanciate call.
joomlatools_joomlatools-framework
train
php
89455f850be2404a1edac1e1eb17fb5edda5305c
diff --git a/src/Application.php b/src/Application.php index <HASH>..<HASH> 100644 --- a/src/Application.php +++ b/src/Application.php @@ -262,7 +262,7 @@ class Application extends Container implements ApplicationContract, HttpKernelIn $this->loadedProviders[$providerName] = true; $provider->registe...
Call providers boot method via IoC.
orchestral_lumen
train
php
1f1c5c18dc512fe81c22eee5a17b98e9b0a97e4c
diff --git a/api/backups/restore.go b/api/backups/restore.go index <HASH>..<HASH> 100644 --- a/api/backups/restore.go +++ b/api/backups/restore.go @@ -126,9 +126,6 @@ func (c *Client) restore(backupId string, newClient ClientConnection) error { return errors.Annotatef(err, "cannot perform restore: %v", remoteError)...
Removed erroneous check
juju_juju
train
go
1ac0b5d169ce7a6a232631dfaf326747c84a4d20
diff --git a/src/Conductors/Concerns/ConductsAbilities.php b/src/Conductors/Concerns/ConductsAbilities.php index <HASH>..<HASH> 100644 --- a/src/Conductors/Concerns/ConductsAbilities.php +++ b/src/Conductors/Concerns/ConductsAbilities.php @@ -86,10 +86,8 @@ trait ConductsAbilities // In an ideal world, we'd ...
Use "array_filter" instead of "contains" The order of the arguments passed to the "contains" callback has changed between versions of Laravel making it impossible to use in Bouncer.......
JosephSilber_bouncer
train
php
9ba31d15e0157e13ae610631dab4567d876baf04
diff --git a/findbugs/src/java/edu/umd/cs/findbugs/BugInstance.java b/findbugs/src/java/edu/umd/cs/findbugs/BugInstance.java index <HASH>..<HASH> 100644 --- a/findbugs/src/java/edu/umd/cs/findbugs/BugInstance.java +++ b/findbugs/src/java/edu/umd/cs/findbugs/BugInstance.java @@ -169,6 +169,9 @@ public class BugInstance ...
OK, web cloud tests use both MISSING and FOUND as bug types... sigh.... Accomodate both git-svn-id: <URL>
spotbugs_spotbugs
train
java
ad706c9526c02477f9463123a0661ecc5dfd12ee
diff --git a/lib/instance/executable_sequence_proxy.rb b/lib/instance/executable_sequence_proxy.rb index <HASH>..<HASH> 100644 --- a/lib/instance/executable_sequence_proxy.rb +++ b/lib/instance/executable_sequence_proxy.rb @@ -68,7 +68,7 @@ module RightScale AuditCookStub.instance.setup_audit_forwarding(@thread_...
acu<I> do not run boot bundle if it is empty This prevent server without any RightScript or recipe from stranding when repose is down
rightscale_right_link
train
rb
adc0437cb7067946bdd4ca0303ef055f12e1594c
diff --git a/src/main/java/uk/ac/bolton/spaws/model/impl/Ratings.java b/src/main/java/uk/ac/bolton/spaws/model/impl/Ratings.java index <HASH>..<HASH> 100644 --- a/src/main/java/uk/ac/bolton/spaws/model/impl/Ratings.java +++ b/src/main/java/uk/ac/bolton/spaws/model/impl/Ratings.java @@ -24,7 +24,7 @@ public class Rating...
Set initial sample size for a set of ratings to 0
scottbw_spaws
train
java
6393269fadcbe64b6e6534c849c3cb660d49376a
diff --git a/salt/modules/useradd.py b/salt/modules/useradd.py index <HASH>..<HASH> 100644 --- a/salt/modules/useradd.py +++ b/salt/modules/useradd.py @@ -391,9 +391,6 @@ def _format_info(data): ''' # Put GECOS info into a list gecos_field = data.pw_gecos.split(',', 3) - # Assign empty strings for any...
Making the gecos stuff easier to read
saltstack_salt
train
py
206496f06c8aa60609aff4ffa20d55f83a1e8b16
diff --git a/indra/assemblers/pybel/assembler.py b/indra/assemblers/pybel/assembler.py index <HASH>..<HASH> 100644 --- a/indra/assemblers/pybel/assembler.py +++ b/indra/assemblers/pybel/assembler.py @@ -400,7 +400,7 @@ def belgraph_to_signed_graph( rel = edge_data.get('relation') pos_edge = \ ...
Fix creation of annotation propogated pybeledge Since this v will always be an instance of a dictionary where the keys are the annotations, just directly tuple(v) to get the tuple of all values for that annotation
sorgerlab_indra
train
py
1cccb29a3b9008a40ebea695079f8f45d65c45e8
diff --git a/lib/OpenLayers/Util.js b/lib/OpenLayers/Util.js index <HASH>..<HASH> 100644 --- a/lib/OpenLayers/Util.js +++ b/lib/OpenLayers/Util.js @@ -879,6 +879,7 @@ OpenLayers.Util.createUniqueID = function(prefix) { /** * Constant: INCHES_PER_UNIT * {Object} Constant inches per unit -- borrowed from MapServer m...
add yards and nautical miles to OpenLayers units. (Closes #<I>) git-svn-id: <URL>
openlayers_openlayers
train
js
faccc560ca9712affcb07fa1369b4c9b1096633b
diff --git a/src/modules/getAnimationPromises.js b/src/modules/getAnimationPromises.js index <HASH>..<HASH> 100644 --- a/src/modules/getAnimationPromises.js +++ b/src/modules/getAnimationPromises.js @@ -3,7 +3,7 @@ import { transitionEnd } from '../helpers'; const getAnimationPromises = function() { const promises...
Scope animated elements selector to body
gmrchk_swup
train
js
4d99f117853e3826de90793f927d9a2b57ded787
diff --git a/linebot/event.go b/linebot/event.go index <HASH>..<HASH> 100644 --- a/linebot/event.go +++ b/linebot/event.go @@ -230,9 +230,10 @@ func (e *Event) UnmarshalJSON(body []byte) (err error) { case EventTypePostback: e.Postback = rawEvent.Postback case EventTypeBeacon: - deviceMessage, err := hex.Decode...
Update return statement of EventTypeBeacon
line_line-bot-sdk-go
train
go
d9a1cf5caead024e2348d147dc10f1cf2b2f48cd
diff --git a/lib/db/services.php b/lib/db/services.php index <HASH>..<HASH> 100644 --- a/lib/db/services.php +++ b/lib/db/services.php @@ -946,7 +946,6 @@ $services = array( 'core_webservice_get_site_info', 'core_notes_create_notes', 'core_user_get_course_user_profiles', - ...
MDL-<I> webservices: Deleted duplicated function in mobile service
moodle_moodle
train
php
6b3414f03bb80d8c56da30a983e615d0681f7a16
diff --git a/lib/specinfra/command/base/service.rb b/lib/specinfra/command/base/service.rb index <HASH>..<HASH> 100644 --- a/lib/specinfra/command/base/service.rb +++ b/lib/specinfra/command/base/service.rb @@ -12,6 +12,10 @@ class Specinfra::Command::Base::Service < Specinfra::Command::Base "initctl status #{es...
Support daemontools Support daemontools (djb-ware) for checking service.
mizzy_specinfra
train
rb
d9d5892f8353ef7a724f1bfe735d1aa249c14ffa
diff --git a/src/HasTags.php b/src/HasTags.php index <HASH>..<HASH> 100644 --- a/src/HasTags.php +++ b/src/HasTags.php @@ -100,11 +100,11 @@ trait HasTags $tags = $className::findOrCreate($tags); - collect($tags)->each(function (Tag $tag) { - if (! $this->tags()->get()->contains('id', $ta...
Use syncWithoutDetaching instead of conditionally attaching tags
spatie_laravel-tags
train
php
ac81e185081c32a1924ae8079fa762d730a18ee3
diff --git a/src/Nucleus/Binder/Bounding.php b/src/Nucleus/Binder/Bounding.php index <HASH>..<HASH> 100644 --- a/src/Nucleus/Binder/Bounding.php +++ b/src/Nucleus/Binder/Bounding.php @@ -1,17 +1,17 @@ <?php -namespace Nucleus\Binder\Bound; +namespace Nucleus\Binder; /** * @Annotation - * + * * @Target({"PROP...
[b] wrong namespace for the Bounding class
mpoiriert_binder
train
php
f8851f403ca71ba3b5f6f07a592f37e950c63fdd
diff --git a/src/org/zaproxy/zap/extension/bruteforce/BruteForcePanel.java b/src/org/zaproxy/zap/extension/bruteforce/BruteForcePanel.java index <HASH>..<HASH> 100644 --- a/src/org/zaproxy/zap/extension/bruteforce/BruteForcePanel.java +++ b/src/org/zaproxy/zap/extension/bruteforce/BruteForcePanel.java @@ -146,7 +146,7 ...
Issue <I> - Forced Browse footer status label still uses spanner icon Changed to use the hammer icon.
zaproxy_zaproxy
train
java
218dc20ffb9fa2c2ceec0fc9640b4b656e232702
diff --git a/www/src/Lib/_struct.py b/www/src/Lib/_struct.py index <HASH>..<HASH> 100644 --- a/www/src/Lib/_struct.py +++ b/www/src/Lib/_struct.py @@ -439,6 +439,23 @@ def _clearcache(): "Clear the internal cache." # No cache in this implementation +class Struct: + + def __init__(self, fmt): + ...
Fixes issue #<I> : "struct" module is missing the "Struct" class
brython-dev_brython
train
py
7f43c25beaca0d8c23e886691f1bbfec9ac7a819
diff --git a/tests/unit/test_handler.py b/tests/unit/test_handler.py index <HASH>..<HASH> 100644 --- a/tests/unit/test_handler.py +++ b/tests/unit/test_handler.py @@ -190,4 +190,4 @@ def test_invalid_client_certs(): incorrect arguments specifying client cert/key verification""" with pytest.raises(ValueError):...
changing keyfile to valid file for test
severb_graypy
train
py
f6e3bc4e6637e257e1fa7390ea95c2d2b30ee343
diff --git a/app/xmpp/msg-processors/room-info.js b/app/xmpp/msg-processors/room-info.js index <HASH>..<HASH> 100644 --- a/app/xmpp/msg-processors/room-info.js +++ b/app/xmpp/msg-processors/room-info.js @@ -45,6 +45,10 @@ module.exports = MessageProcessor.extend({ }); query.c('feature', { + ...
Improved XMPP room info
sdelements_lets-chat
train
js
9ddc5d4001ac19ee99f4c21a539a0cb247be5564
diff --git a/framework/db/ar/CActiveRecord.php b/framework/db/ar/CActiveRecord.php index <HASH>..<HASH> 100644 --- a/framework/db/ar/CActiveRecord.php +++ b/framework/db/ar/CActiveRecord.php @@ -66,6 +66,8 @@ abstract class CActiveRecord extends CModel /** * Constructor. * @param string $scenario scenario name....
Note about overriding "CActiveRecord::__construct()" has been added.
yiisoft_yii
train
php
5bcc08bfaff4e04ea686aeed1910b11999632e59
diff --git a/python/herald/transports/xmpp/utils.py b/python/herald/transports/xmpp/utils.py index <HASH>..<HASH> 100644 --- a/python/herald/transports/xmpp/utils.py +++ b/python/herald/transports/xmpp/utils.py @@ -137,7 +137,7 @@ class RoomCreator(object): self.__lock = threading.Lock() def create_room...
Support for forced room JID in XMPP RoomCreator
cohorte_cohorte-herald
train
py
9e2eced5e8f5fd9037b6309985d6b19086b05555
diff --git a/vel/rl/commands/record_movie_command.py b/vel/rl/commands/record_movie_command.py index <HASH>..<HASH> 100644 --- a/vel/rl/commands/record_movie_command.py +++ b/vel/rl/commands/record_movie_command.py @@ -76,7 +76,7 @@ class RecordMovieCommand: video = cv2.VideoWriter(takename, fourcc, self.fps, ...
Fixing colorspace in movie recording code.
MillionIntegrals_vel
train
py
56937e2224943cbab35f3cea88af2dad78ee0356
diff --git a/web/concrete/elements/custom_style.php b/web/concrete/elements/custom_style.php index <HASH>..<HASH> 100644 --- a/web/concrete/elements/custom_style.php +++ b/web/concrete/elements/custom_style.php @@ -82,9 +82,8 @@ $alignmentOptions = array( ); -$customClassesSelect = array( - '' => t('None') -); ...
Convert custom block class selection into a select2 tag selection field to support custom and multiple classes. Former-commit-id: <I>d<I>e<I>debf<I>aad0fff8bc<I>e<I>
concrete5_concrete5
train
php
74c1e483d886cba481e965b43cd1d3a2b96c6e0e
diff --git a/lib/datagrid/drivers/array.rb b/lib/datagrid/drivers/array.rb index <HASH>..<HASH> 100644 --- a/lib/datagrid/drivers/array.rb +++ b/lib/datagrid/drivers/array.rb @@ -3,7 +3,7 @@ module Datagrid class Array < AbstractDriver #:nodoc: def self.match?(scope) - !Datagrid::Drivers::ActiveRec...
Ability to use enumerator as array driver
bogdan_datagrid
train
rb,rb
aa6524424bdb6b1a3ed76c1fbc4c877efd742a73
diff --git a/addict/__init__.py b/addict/__init__.py index <HASH>..<HASH> 100644 --- a/addict/__init__.py +++ b/addict/__init__.py @@ -2,7 +2,7 @@ from .addict import Dict __title__ = 'addict' -__version__ = '1.0.0' +__version__ = '1.1.0' __author__ = 'Mats Julian Olsen' __license__ = 'MIT' __copyright__ = 'Cop...
<I> Added __add__ and bugfix to __init__.
mewwts_addict
train
py
6eed28158ffacb5d79528e6d75a1c5ba929097d0
diff --git a/src/Assets/js/wasabi.js b/src/Assets/js/wasabi.js index <HASH>..<HASH> 100644 --- a/src/Assets/js/wasabi.js +++ b/src/Assets/js/wasabi.js @@ -67,6 +67,20 @@ var WS = (function() { return this.modules[name]; } console.debug('module "' + name + " is not registered."); + }, + + cr...
add createView and createViews helper methods to initialize a single or multiple backbone views for the given element(s)
wasabi-cms_core
train
js
20e2a7b26992cb41b395578f2ab8f5c2e5efdfc3
diff --git a/client/api/story.js b/client/api/story.js index <HASH>..<HASH> 100644 --- a/client/api/story.js +++ b/client/api/story.js @@ -39,14 +39,14 @@ Story.prototype.setHash = function(name, hash) { return this; }; -Story.prototype.getData = function(name) { +Story.prototype.getData = (name) => { cons...
chore(story) lint
cloudcmd_deepword
train
js
17da0a4f98ef70e4a3f52609a75c2486532c86d1
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -7,6 +7,9 @@ function furkotTrip() { var form, stops; function plan(data) { + if (!form) { + form = createForm(); + } stops.value = JSON.stringify(data); return form.submit(); } @@ -16,13 +19,19...
fix form submission on Firefox Firefox does not submit forms unless they are added to document body
furkot_furkot-trip
train
js
6f8c12356b153f50b0821944fc1d147b14a7bfcb
diff --git a/lib/moped/node.rb b/lib/moped/node.rb index <HASH>..<HASH> 100644 --- a/lib/moped/node.rb +++ b/lib/moped/node.rb @@ -502,7 +502,7 @@ module Moped instrument_start = (logger = Moped.logger) && logger.debug? && Time.new yield ensure - log_operations(logger, operations, Time.new - ins...
Log even if end of file reached.
mongoid_moped
train
rb
d583fbf4541df0a034aaba4f81938a51f89b3962
diff --git a/config/webpack/build.webpack.config.js b/config/webpack/build.webpack.config.js index <HASH>..<HASH> 100644 --- a/config/webpack/build.webpack.config.js +++ b/config/webpack/build.webpack.config.js @@ -37,10 +37,11 @@ const SaveStats = function () { * @name SaveMetadata */ const SaveMetadata = functio...
Waiting until done to write metadata file
blackbaud_skyux-builder
train
js
fddb9b4144509be0ac84ff4ec67fd3a59c0b0f1c
diff --git a/client/state/login/reducer.js b/client/state/login/reducer.js index <HASH>..<HASH> 100644 --- a/client/state/login/reducer.js +++ b/client/state/login/reducer.js @@ -253,17 +253,17 @@ export const socialAccountLink = createReducer( ); export default combineReducers( { + isFormDisabled, isRequesting, ...
Login: Order exports in reducer alphabetically
Automattic_wp-calypso
train
js
e841c7c3f375246a1e8778005e972db30ad51e2f
diff --git a/src/main/java/org/asteriskjava/manager/action/OriginateAction.java b/src/main/java/org/asteriskjava/manager/action/OriginateAction.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/asteriskjava/manager/action/OriginateAction.java +++ b/src/main/java/org/asteriskjava/manager/action/OriginateAction.ja...
Fixed callingPres property (Boolean -> Integer) and its documentation
asterisk-java_asterisk-java
train
java
892126c4bc2f6dee16fb9d525baa1b43a361ad85
diff --git a/bin/whistle.js b/bin/whistle.js index <HASH>..<HASH> 100755 --- a/bin/whistle.js +++ b/bin/whistle.js @@ -1,6 +1,6 @@ #! /usr/bin/env node -var program = require('../../starting'); +var program = require('starting'); var path = require('path'); var os = require('os'); var config = require('../lib/con...
refactor: show plugins debug info
avwo_whistle
train
js
c013371a43d30b5b54407f3fea2f2fd76bbe5934
diff --git a/hvac/api/secrets_engines/aws.py b/hvac/api/secrets_engines/aws.py index <HASH>..<HASH> 100644 --- a/hvac/api/secrets_engines/aws.py +++ b/hvac/api/secrets_engines/aws.py @@ -326,8 +326,8 @@ class Aws(VaultApiBase): name=name, ) - response = self._adapter.post( + respon...
Change AWS `generate_credentials` request method to GET (#<I>) * Change AWS `generate_credentials` request method to GET * Update aws.py
hvac_hvac
train
py,py
57974ea2b5b757d0145ceb8f7f2c39962278988c
diff --git a/lib/docker-json-client.js b/lib/docker-json-client.js index <HASH>..<HASH> 100644 --- a/lib/docker-json-client.js +++ b/lib/docker-json-client.js @@ -199,7 +199,7 @@ DockerJsonClient.prototype.parse = function parse(req, callback) { res.on('data', function onData(chunk) { if (conten...
encode content as utf-8 for content-md5 checking Somewhat inferred from <URL>
joyent_node-docker-registry-client
train
js
ef7bc3bd1830690fbcb29fac2d67f8eb149586d1
diff --git a/Form/Type/DateRangeType.php b/Form/Type/DateRangeType.php index <HASH>..<HASH> 100644 --- a/Form/Type/DateRangeType.php +++ b/Form/Type/DateRangeType.php @@ -20,6 +20,9 @@ class DateRangeType extends AbstractType { unset($options['years']); + $options['from']['required'] =...
Pass the required to from & to
symfony2admingenerator_AdmingeneratorGeneratorBundle
train
php
260b177fe3f0ec897a4a4d71f2c2247e50b9fbd3
diff --git a/common/compiler/solidity.go b/common/compiler/solidity.go index <HASH>..<HASH> 100644 --- a/common/compiler/solidity.go +++ b/common/compiler/solidity.go @@ -48,6 +48,7 @@ func (s *Solidity) makeArgs() []string { p := []string{ "--combined-json", "bin,bin-runtime,srcmap,srcmap-runtime,abi,userdoc,devd...
common/compiler: support relative import paths (#<I>)
ethereum_go-ethereum
train
go
3763ea8907ddb43aa89c65eb9e77c2b74918fadc
diff --git a/test/fog/xml/connection_test.rb b/test/fog/xml/connection_test.rb index <HASH>..<HASH> 100644 --- a/test/fog/xml/connection_test.rb +++ b/test/fog/xml/connection_test.rb @@ -2,7 +2,7 @@ require "minitest/autorun" require "fog" # Note this is going to be part of fog-xml eventually -class TestFogXMLConne...
Rename testing class to fit filename `TestFogXMLConnection` didn't really match with the file name of `test/fog/xml/connection_test.rb` due to the namespacing and placement of "Test"
fog_fog
train
rb
0fb9f4d221529fbc4b0515cbf4b8179c7c9ce679
diff --git a/test/load_brocfile_test.js b/test/load_brocfile_test.js index <HASH>..<HASH> 100644 --- a/test/load_brocfile_test.js +++ b/test/load_brocfile_test.js @@ -51,7 +51,7 @@ describe('loadBrocfile', function() { }); context('with invalid Brocfile.ts', function() { - this.slow(2000); + this.slow(800...
Increase TS load timeout to avoid appveyor timeout (#<I>)
broccolijs_broccoli
train
js
39558a3d69f4d297258e8035e0f9c17801c726d7
diff --git a/library/src/com/nostra13/universalimageloader/core/DisplayImageOptions.java b/library/src/com/nostra13/universalimageloader/core/DisplayImageOptions.java index <HASH>..<HASH> 100644 --- a/library/src/com/nostra13/universalimageloader/core/DisplayImageOptions.java +++ b/library/src/com/nostra13/universalima...
Issue #<I> - cloneFrom does not clone pre/postprocessor
nostra13_Android-Universal-Image-Loader
train
java
522f9aff1cdf8308bbdf9add62671ad63309943a
diff --git a/addon/components/ui-dropdown.js b/addon/components/ui-dropdown.js index <HASH>..<HASH> 100644 --- a/addon/components/ui-dropdown.js +++ b/addon/components/ui-dropdown.js @@ -44,7 +44,7 @@ export default Ember.Select.extend(Base, DataAttributes, { // Without this, Dropdown Items will not be clickable i...
Switch to using get rather than accessing properties directly
Semantic-Org_Semantic-UI-Ember
train
js
65165c6f60282f1433e7ac9d2ab7c8f3d9541896
diff --git a/actor-apps/app-web/src/app/index.js b/actor-apps/app-web/src/app/index.js index <HASH>..<HASH> 100644 --- a/actor-apps/app-web/src/app/index.js +++ b/actor-apps/app-web/src/app/index.js @@ -35,7 +35,11 @@ const initReact = () => { crosstab.broadcast(ActorInitEvent, {}); } - window.messenge...
feat(web): detect local version and set proper endpoint
actorapp_actor-platform
train
js
14aa9aa6919e4b70c59cd20722ac113c0ffeb45b
diff --git a/src/Unirest/Request.php b/src/Unirest/Request.php index <HASH>..<HASH> 100755 --- a/src/Unirest/Request.php +++ b/src/Unirest/Request.php @@ -399,6 +399,9 @@ class Request if ($method === Method::POST) { curl_setopt(self::$handle, CURLOPT_POST, true); } else { + if ($method ===...
feat(HEAD): CURLOPT_NOBODY option for HEAD requests * When using HEAD requests set the appropriate curl header to not wait for a response body. See <URL>
Kong_unirest-php
train
php,php