hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
cb6ecb0e303ee9eb33f9b26b49a973a2d74f5ad4 | diff --git a/test/e2e/lib/pages/signup/pick-a-plan-page.js b/test/e2e/lib/pages/signup/pick-a-plan-page.js
index <HASH>..<HASH> 100644
--- a/test/e2e/lib/pages/signup/pick-a-plan-page.js
+++ b/test/e2e/lib/pages/signup/pick-a-plan-page.js
@@ -68,6 +68,13 @@ export default class PickAPlanPage extends AsyncBaseContainer ... | Fix Signup canary (#<I>)
* Try toggling cart summary to fix canary issues.
* Revert "Try toggling cart summary to fix canary issues."
This reverts commit 8c<I>e<I>c<I>f2cd<I>d<I>d9a<I>c6fe7b2c<I>.
* Try toggling cart to fix canary
* make sure we're on the right view before we click | Automattic_wp-calypso | train |
7cf3b482ce667435690fb01ed0cc30a8cfcec84f | diff --git a/geotweet/mapreduce/state_county_wordcount.py b/geotweet/mapreduce/state_county_wordcount.py
index <HASH>..<HASH> 100644
--- a/geotweet/mapreduce/state_county_wordcount.py
+++ b/geotweet/mapreduce/state_county_wordcount.py
@@ -6,8 +6,7 @@ import json
from mrjob.job import MRJob
from mrjob.step import MR... | output data as tab-delimited instead of json | meyersj_geotweet | train |
ca7a07902636757102409278f8ae69f0019b0ec3 | diff --git a/lib/Redmine/Api/Issue.php b/lib/Redmine/Api/Issue.php
index <HASH>..<HASH> 100644
--- a/lib/Redmine/Api/Issue.php
+++ b/lib/Redmine/Api/Issue.php
@@ -91,14 +91,10 @@ class Issue extends AbstractApi
$upload_item->addChild($upload_k, $upload_v);
}
... | Escape all text values for any XML element (not just description) properly. | kbsali_php-redmine-api | train |
690c39bbe2c9022748417ff2928dc9bdace2ed4e | diff --git a/lib/puppet/parser/functions/md5.rb b/lib/puppet/parser/functions/md5.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/parser/functions/md5.rb
+++ b/lib/puppet/parser/functions/md5.rb
@@ -1,4 +1,4 @@
-require 'md5'
+require 'digest/md5'
Puppet::Parser::Functions::newfunction(:md5, :type => :rvalue, :doc =... | (Maint) Require the right file for md5
md5 doesn't exist on <I>. It seems to have been an alias in previous
versions of ruby for digest/md5. Requiring the other file directly
allows this to work on all supported rubies.
Reviewed-by: Patrick Carlisle | puppetlabs_puppet | train |
027f1a7a7c7f749e99f1be490b09bda36396210c | diff --git a/ara/cli/host.py b/ara/cli/host.py
index <HASH>..<HASH> 100644
--- a/ara/cli/host.py
+++ b/ara/cli/host.py
@@ -40,7 +40,7 @@ class HostList(Lister):
metavar="<order>",
default="-updated",
help=(
- "Orders results by a field ('id', 'created', 'updated', '... | CLI: Disambiguate which kind of resource is ordered with --order
"results" might come off as task results instead of "results" from the
query.
Change-Id: I<I>d4f3ec<I>cdd8f<I>edc<I>d<I> | ansible-community_ara | train |
91d14de6eec8156702a2cc5f6155df6593614a9f | diff --git a/pointer/link.go b/pointer/link.go
index <HASH>..<HASH> 100644
--- a/pointer/link.go
+++ b/pointer/link.go
@@ -54,6 +54,8 @@ func (p *Pointer) CreateLink(filename string) error {
file.Close()
+ os.Remove(linkFile) // Remove the link file if it already existed
+
return os.Rename(linkLock, linkFile)
... | Remove the original file before mv'ing to it, Windows errors if the file exists | git-lfs_git-lfs | train |
7234a3c825748474f06ff3fe26ab820b179446de | diff --git a/framework/db/CDbCommand.php b/framework/db/CDbCommand.php
index <HASH>..<HASH> 100644
--- a/framework/db/CDbCommand.php
+++ b/framework/db/CDbCommand.php
@@ -283,7 +283,7 @@ class CDbCommand extends CComponent
* you cannot bind parameters or values using {@link bindParam} or {@link bindValue}, and vice ... | (Fixes issue <I>) | yiisoft_yii | train |
2056cc3bd7a6ef10e26b190cb64c35e68c618f69 | diff --git a/slim/Route.php b/slim/Route.php
index <HASH>..<HASH> 100644
--- a/slim/Route.php
+++ b/slim/Route.php
@@ -39,24 +39,14 @@
class Route {
/**
- * @var bool Does this route match the current HTTP request?
- */
- private $matched;
-
- /**
* @var string The route pattern (ie. "/books/:id")
*/
p... | Refactoring Route constructor to remove all dependency on the Request object
Adding Route::matches so that a Route may be compared to a Request resource URI when necessary | slimphp_Slim | train |
7aff0f28b673601e27d4e1c887566eb9a270c9bb | diff --git a/exchanges.js b/exchanges.js
index <HASH>..<HASH> 100644
--- a/exchanges.js
+++ b/exchanges.js
@@ -157,6 +157,10 @@ var Exchanges = function(options) {
* routingKeyBuilder: function() {...} // Return routing key from arguments
* }
*
+ * Remark, it is only possible to have one routing key entry that ... | Addtional requirement that routing keys can't have two multiword keys | taskcluster_pulse-publisher | train |
1ed6ced74d530b2e5eee8d3c789369958a417d68 | diff --git a/lib/puppet-lint/tasks/puppet-lint.rb b/lib/puppet-lint/tasks/puppet-lint.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet-lint/tasks/puppet-lint.rb
+++ b/lib/puppet-lint/tasks/puppet-lint.rb
@@ -79,7 +79,7 @@ class PuppetLint
linter.run
linter.print_problems
- if Puppe... | Do not perform automatic fixing when there is a syntax error | rodjek_puppet-lint | train |
5483f2dd2cf8dc71fe6ea725ab04d9b37a5a8ae6 | diff --git a/server/app/services/cloud/rpc/server_api.rb b/server/app/services/cloud/rpc/server_api.rb
index <HASH>..<HASH> 100644
--- a/server/app/services/cloud/rpc/server_api.rb
+++ b/server/app/services/cloud/rpc/server_api.rb
@@ -69,9 +69,6 @@ module Cloud
headers: headers,
body: body.join
... | Log cloud RPC error messages (#<I>)
* return server api response as it is (instead of rpc error)
* log rpc error messages | kontena_kontena | train |
9bdf9098964d380e758a084f58f1c45b5131cae3 | diff --git a/Tests/LocaleTest.php b/Tests/LocaleTest.php
index <HASH>..<HASH> 100644
--- a/Tests/LocaleTest.php
+++ b/Tests/LocaleTest.php
@@ -11,7 +11,6 @@
namespace Symfony\Component\Locale\Tests;
-use Symfony\Component\Intl\Intl;
use Symfony\Component\Intl\Util\IntlTestHelper;
use Symfony\Component\Locale\Loc... | Fix phpdoc and coding standards
This removes the unused use statements which were not catched by
PHP-CS-Fixer because of string occurences. It also fixes some invalid
phpdoc (scalar is not recognized as a valid type for instance). | symfony_locale | train |
7e2cb9fe101a62e97eddd4654a2b9e75c7ab4add | diff --git a/src/Providers/JWT/NamshiAdapter.php b/src/Providers/JWT/NamshiAdapter.php
index <HASH>..<HASH> 100644
--- a/src/Providers/JWT/NamshiAdapter.php
+++ b/src/Providers/JWT/NamshiAdapter.php
@@ -23,7 +23,7 @@ class NamshiAdapter extends JWTProvider implements JWTInterface
{
parent::__construct($se... | fixed way JWS construct method is called | tymondesigns_jwt-auth | train |
2740d05707f2229835ab5d5e73ec6282ce9dde85 | diff --git a/azurerm/common_hdinsight.go b/azurerm/common_hdinsight.go
index <HASH>..<HASH> 100644
--- a/azurerm/common_hdinsight.go
+++ b/azurerm/common_hdinsight.go
@@ -10,7 +10,7 @@ import (
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/utils"
)
-func hdinsightClusterUpdate(clusterKind stri... | r/hdinsights: addressing comments from PR review | terraform-providers_terraform-provider-azurerm | train |
ac519ea8007cbfd063f195b24d310d8cffc3af54 | diff --git a/connection.go b/connection.go
index <HASH>..<HASH> 100644
--- a/connection.go
+++ b/connection.go
@@ -6,6 +6,7 @@ import (
"github.com/jmoiron/sqlx"
"github.com/markbates/going/defaults"
+ "github.com/markbates/going/randx"
)
// Connections contains all of the available connections
@@ -14,6 +15,7... | add an id to pop connections | gobuffalo_pop | train |
c5b6f1eed8da28a35eefabc406e2394d6e422074 | diff --git a/examples/createQuery.js b/examples/createQuery.js
index <HASH>..<HASH> 100755
--- a/examples/createQuery.js
+++ b/examples/createQuery.js
@@ -18,7 +18,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
//
-// last saved: <2019-December-04 19:53:... | allow createQuery to request csv output | DinoChiesa_apigee-edge-js | train |
82509832bef63fe20197cdf20aa1b196bc42341e | diff --git a/devices/tuya.js b/devices/tuya.js
index <HASH>..<HASH> 100644
--- a/devices/tuya.js
+++ b/devices/tuya.js
@@ -109,7 +109,9 @@ module.exports = [
{modelID: 'TS0505B', manufacturerName: '_TZ3000_x2fqbdun'},
{modelID: 'TS0505B', manufacturerName: '_TZ3000_589kq4ul'},
{mo... | Add _TZ<I>_cmaky9gq and _TZ<I>_tza2vjxx to TS<I>B (#<I>) | Koenkk_zigbee-shepherd-converters | train |
cc5a0ef6a998f8f603520ec1918a845c26832f90 | diff --git a/pmagpy/pmagplotlib.py b/pmagpy/pmagplotlib.py
index <HASH>..<HASH> 100644
--- a/pmagpy/pmagplotlib.py
+++ b/pmagpy/pmagplotlib.py
@@ -1599,7 +1599,7 @@ def save_plots(Figs, filenames, **kwargs):
fname = filenames[key]
if not isServer: # remove illegal ':' character for windows
... | in windows, figs must be saved to current directory | PmagPy_PmagPy | train |
aeb2efab4035dcdaab4afb3bfd9e9cef39fdd120 | diff --git a/src/platforms/weex/runtime/node-ops.js b/src/platforms/weex/runtime/node-ops.js
index <HASH>..<HASH> 100755
--- a/src/platforms/weex/runtime/node-ops.js
+++ b/src/platforms/weex/runtime/node-ops.js
@@ -34,8 +34,8 @@ export function insertBefore (node, target, before) {
}
export function removeChild (no... | [weex] fix the removeChild logic for text node (#<I>) | IOriens_wxml-transpiler | train |
b674e0206db005906db28c575270f25ed6baba04 | diff --git a/test/javascript/public/test/utilities.js b/test/javascript/public/test/utilities.js
index <HASH>..<HASH> 100644
--- a/test/javascript/public/test/utilities.js
+++ b/test/javascript/public/test/utilities.js
@@ -2,7 +2,7 @@ module('Utilities');
test('Remote Validator Url without setting', function() {
... | Fixed test
Kudos to qunit for the excellent error reporting of it | DavyJonesLocker_client_side_validations | train |
3644c14337f5cc6d07d47576b37086f17abebb8e | diff --git a/src/CSPBuilder.php b/src/CSPBuilder.php
index <HASH>..<HASH> 100644
--- a/src/CSPBuilder.php
+++ b/src/CSPBuilder.php
@@ -114,10 +114,13 @@ class CSPBuilder
if (!\is_string($this->policies['report-uri'])) {
throw new \TypeError('report-uri policy somehow not a string');
... | Break out the report-to directive from report-uri. | paragonie_csp-builder | train |
0594740498e2924ea33a0fec16f72b6b22403784 | diff --git a/app/controllers/renalware/deaths_controller.rb b/app/controllers/renalware/deaths_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/renalware/deaths_controller.rb
+++ b/app/controllers/renalware/deaths_controller.rb
@@ -7,7 +7,7 @@ module Renalware
def index
query = Patients::De... | Display previous modality in deceased patients
Add a previous_modality scope to Patient and display
this in the deceased patients list | airslie_renalware-core | train |
aea70f2207df3d612dafbb5e2148787df000eabe | diff --git a/subscribe.go b/subscribe.go
index <HASH>..<HASH> 100644
--- a/subscribe.go
+++ b/subscribe.go
@@ -106,27 +106,25 @@ func (c *Connection) establishSubscription(h Headers) (*subscription, error, Hea
lam = ham // Reset (possible) used ack mode
}
+ sd.md = make(chan MessageData, c.scc) // Make subscript... | Help stomp <I> users that subscribe without a sub ID. | gmallard_stompngo | train |
3ca6d11fc9868ff8417a9a4663346b1830ac0435 | diff --git a/pkg/cmd/openshift-kube-apiserver/openshiftkubeapiserver/patch_authenticator.go b/pkg/cmd/openshift-kube-apiserver/openshiftkubeapiserver/patch_authenticator.go
index <HASH>..<HASH> 100644
--- a/pkg/cmd/openshift-kube-apiserver/openshiftkubeapiserver/patch_authenticator.go
+++ b/pkg/cmd/openshift-kube-apise... | Always honor OAuth tokens
Regardless of external configuration, OAuth tokens should always
work.
This prevents issues where multiple masters exist but only some will
honor OAuth tokens due to differences in configuration.
Bug <I> | openshift_origin | train |
64261ebd06965c9cc3de6d9129b6d8c6da02b8bf | diff --git a/src/main/python/jpyutil.py b/src/main/python/jpyutil.py
index <HASH>..<HASH> 100644
--- a/src/main/python/jpyutil.py
+++ b/src/main/python/jpyutil.py
@@ -26,7 +26,7 @@ PYTHON_LIB_DIR_CONFIG_VAR_NAMES = ('LDLIBRARYDIR', 'srcdir',
'BINDIR', 'DESTLIB', 'DESTSHARED',
... | Removed 'LDLIBRARY' var from shared lib name list, as it returns an '*.a' file on Ubuntu <I> | bcdev_jpy | train |
0b7e1ffdf17d6d4a7a08c0aeb287a74d6b322e3d | diff --git a/docroot/modules/custom/personify_mindbody_sync/src/PersonifyMindbodySyncPusher.php b/docroot/modules/custom/personify_mindbody_sync/src/PersonifyMindbodySyncPusher.php
index <HASH>..<HASH> 100644
--- a/docroot/modules/custom/personify_mindbody_sync/src/PersonifyMindbodySyncPusher.php
+++ b/docroot/modules/... | No need for adding a dollar. | ymcatwincities_openy | train |
03a58bc7b425bbe3678b870e72f9afe047487f5c | diff --git a/src/com/robrua/orianna/type/core/staticdata/BasicDataStats.java b/src/com/robrua/orianna/type/core/staticdata/BasicDataStats.java
index <HASH>..<HASH> 100644
--- a/src/com/robrua/orianna/type/core/staticdata/BasicDataStats.java
+++ b/src/com/robrua/orianna/type/core/staticdata/BasicDataStats.java
@@ -4,7 +... | Fix for crashes on percent ability power item description parsing | meraki-analytics_orianna | train |
98ec0c1848d2b9ced7c6e0319a035b11fa01a6c5 | diff --git a/src/reducers/form-reducer.js b/src/reducers/form-reducer.js
index <HASH>..<HASH> 100644
--- a/src/reducers/form-reducer.js
+++ b/src/reducers/form-reducer.js
@@ -102,8 +102,9 @@ function createInitialFormState(model, initialState) {
function _createFormReducer(model, initialState) {
const modelPath =... | Adding validation reset for all fields if form is reset | davidkpiano_react-redux-form | train |
eb6063bcfd392a5e6e27273bf30d3cdf4cb07a34 | diff --git a/src/virtualdom/items/shared/Resolvers/ReferenceExpressionResolver.js b/src/virtualdom/items/shared/Resolvers/ReferenceExpressionResolver.js
index <HASH>..<HASH> 100644
--- a/src/virtualdom/items/shared/Resolvers/ReferenceExpressionResolver.js
+++ b/src/virtualdom/items/shared/Resolvers/ReferenceExpressionR... | fix ReferenceExpressionResolver rebinding | ractivejs_ractive | train |
86d6cd8ff3587930b1cfbfdc526d0bd146ed1d91 | diff --git a/Task/Testing/CollectTesting7.php b/Task/Testing/CollectTesting7.php
index <HASH>..<HASH> 100644
--- a/Task/Testing/CollectTesting7.php
+++ b/Task/Testing/CollectTesting7.php
@@ -7,7 +7,7 @@
namespace DrupalCodeBuilder\Task\Testing;
-use DrupalCodeBuilder\Task\Collect7;
+use DrupalCodeBuilder\Task\Coll... | Fixed parent class of Drupal 7 test hooks collector. | drupal-code-builder_drupal-code-builder | train |
13437f72c1ea2bb51626e48047830ec69fa556d2 | diff --git a/test/attribute_sanitization_test.rb b/test/attribute_sanitization_test.rb
index <HASH>..<HASH> 100644
--- a/test/attribute_sanitization_test.rb
+++ b/test/attribute_sanitization_test.rb
@@ -301,6 +301,8 @@ class MassAssignmentSecurityDeprecatedFindersTest < ActiveRecord::TestCase
end
def teardown
+... | Remove all the records before run the tests for deprecated finders | rails_protected_attributes | train |
f93628398c7e3f61d2b37e990a685105c0b703c4 | diff --git a/src/test/java/com/googlecode/mp4parser/boxes/BoxWriteReadBase.java b/src/test/java/com/googlecode/mp4parser/boxes/BoxWriteReadBase.java
index <HASH>..<HASH> 100644
--- a/src/test/java/com/googlecode/mp4parser/boxes/BoxWriteReadBase.java
+++ b/src/test/java/com/googlecode/mp4parser/boxes/BoxWriteReadBase.ja... | added improved testbase taking arrays into account
git-svn-id: <URL> | sannies_mp4parser | train |
4ede7389dce750b0e88cee50ce91f83fd25b431a | diff --git a/lib/pact/mock_service/request_handlers/options.rb b/lib/pact/mock_service/request_handlers/options.rb
index <HASH>..<HASH> 100644
--- a/lib/pact/mock_service/request_handlers/options.rb
+++ b/lib/pact/mock_service/request_handlers/options.rb
@@ -13,6 +13,8 @@ module Pact
ACCESS_CONTROL_ALLOW_ORIGI... | Only set 'Access-Control-Allow-Credentials' if required for preflight to succeed | pact-foundation_pact-mock_service | train |
b896ba016a7cadc891dcc8a2deeab56fa3eeed4e | diff --git a/lib/yao/resources/tenant.rb b/lib/yao/resources/tenant.rb
index <HASH>..<HASH> 100644
--- a/lib/yao/resources/tenant.rb
+++ b/lib/yao/resources/tenant.rb
@@ -25,11 +25,6 @@ module Yao::Resources
end
class << self
- def get_by_name(name)
- self.list(name: name)
- end
- alia... | Delete duplicate method Yao::Resource::Tenant.get_by_name | yaocloud_yao | train |
97c1b959c3e2c0e6e8cf0686d75777f12171ec1a | diff --git a/sonar-core/src/test/java/org/sonar/core/persistence/BatchSessionTest.java b/sonar-core/src/test/java/org/sonar/core/persistence/BatchSessionTest.java
index <HASH>..<HASH> 100644
--- a/sonar-core/src/test/java/org/sonar/core/persistence/BatchSessionTest.java
+++ b/sonar-core/src/test/java/org/sonar/core/per... | added assertion for enqueue without commit in BatchSession | SonarSource_sonarqube | train |
d7ad438c5d958cb5ab8957aa82f5634fdd0c01f1 | diff --git a/src/jsonToXml.js b/src/jsonToXml.js
index <HASH>..<HASH> 100644
--- a/src/jsonToXml.js
+++ b/src/jsonToXml.js
@@ -2,7 +2,7 @@ const convertAttributes = (obj) => {
var xml = ''
if (obj.$) {
for (var attrKey in obj.$) {
- xml += ` ${attrKey}="${obj.$[attrKey]}"`
+ xml += ` ${attrKey}="${... | add escaping of entities to attributes #<I> | jsreport_jsreport-xlsx | train |
8af3f5b87444786ae213ede1d13638bbeeffd88a | diff --git a/salt/client/__init__.py b/salt/client/__init__.py
index <HASH>..<HASH> 100644
--- a/salt/client/__init__.py
+++ b/salt/client/__init__.py
@@ -473,6 +473,7 @@ class LocalClient(object):
sub=3,
cli=False,
progress=False,
+ full_return=False,
**kw... | GH-<I>: add proper handling of full_return in cmd_subset
as noted in the original issue, full_return wasnt being handled properly. This
rectifies that. | saltstack_salt | train |
71b12e9d90522cf854bb72d53891392f04ea3a9d | diff --git a/src/main/java/org/plumelib/bcelutil/StackTypes.java b/src/main/java/org/plumelib/bcelutil/StackTypes.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/plumelib/bcelutil/StackTypes.java
+++ b/src/main/java/org/plumelib/bcelutil/StackTypes.java
@@ -68,7 +68,7 @@ public final class StackTypes {
re... | Change "all:" to "allcheckers:" | plume-lib_bcel-util | train |
7c7a2a741c8bd13304f393df36fca5e9ac896260 | diff --git a/bakery/management/commands/buildserver.py b/bakery/management/commands/buildserver.py
index <HASH>..<HASH> 100644
--- a/bakery/management/commands/buildserver.py
+++ b/bakery/management/commands/buildserver.py
@@ -1,5 +1,5 @@
from django.conf import settings, urls
-from django.conf.urls.defaults import pa... | Introduced unittests for management commands | datadesk_django-bakery | train |
b0bd4e47e155bd9d11f7540ecc4c18af8b708d7e | diff --git a/examples/comment/reply_to_media_comments.py b/examples/comment/reply_to_media_comments.py
index <HASH>..<HASH> 100644
--- a/examples/comment/reply_to_media_comments.py
+++ b/examples/comment/reply_to_media_comments.py
@@ -67,8 +67,8 @@ for comment in tqdm(comments):
if replied:
continue
... | fixed space after , in <I> and <I> | instagrambot_instabot | train |
a972dc032c3b25319415cc59971b49178fa4128f | diff --git a/js/hollaex.js b/js/hollaex.js
index <HASH>..<HASH> 100644
--- a/js/hollaex.js
+++ b/js/hollaex.js
@@ -254,6 +254,8 @@ module.exports = class hollaex extends Exchange {
'info': currency,
'name': name,
'active': active,
+ 'deposit': undefined,... | hollaex: add deposit/withdraw flag in currencies ccxt/ccxt#<I> | ccxt_ccxt | train |
fbf6bd8089e65176c81ad18aa97ae9a8ffabbe9d | diff --git a/mgrs.js b/mgrs.js
index <HASH>..<HASH> 100644
--- a/mgrs.js
+++ b/mgrs.js
@@ -34,11 +34,11 @@ const Z = 90; // Z
* @param {object} ll Object literal with lat and lon properties on a
* WGS84 ellipsoid.
* @param {int} accuracy Accuracy in digits (5 for 1 m, 4 for 10 m, 3 for
- * 100 m, 2 for 1... | added support for <I> KM accuracy | proj4js_mgrs | train |
d2a6e39d4ee795ccba0b1ccf0ad7afcd3f942134 | diff --git a/autopython/ipython.py b/autopython/ipython.py
index <HASH>..<HASH> 100644
--- a/autopython/ipython.py
+++ b/autopython/ipython.py
@@ -131,3 +131,4 @@ class PresenterShell(object):
def end(self):
self._stop_shell_thread()
+ print() | Cosmetic change: print an empty line after quiting | gosella_autopython | train |
ea7588c28dbb8c3faa0ec1ddc9c0c73d513b995a | diff --git a/esgfpid/rabbit/nodemanager.py b/esgfpid/rabbit/nodemanager.py
index <HASH>..<HASH> 100644
--- a/esgfpid/rabbit/nodemanager.py
+++ b/esgfpid/rabbit/nodemanager.py
@@ -147,7 +147,7 @@ class NodeManager(object):
node_info_dict['password']
)
node_info_dict['credentials'] = creds
... | Fixed bug in rabbit priorities (they were not passed on to rabbit module). | IS-ENES-Data_esgf-pid | train |
26d44b2b4bbe97fbbee77a297b4d10a632f3a886 | diff --git a/src/pybel/resources/document.py b/src/pybel/resources/document.py
index <HASH>..<HASH> 100644
--- a/src/pybel/resources/document.py
+++ b/src/pybel/resources/document.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
-from __future__ import print_function
+from __future__ import absolute_import, print_function... | Make sure unicode string literals are used | pybel_pybel | train |
faf0b9840d1d7521b916e7e5d9109586a121fe1a | diff --git a/nbinteract/util.py b/nbinteract/util.py
index <HASH>..<HASH> 100644
--- a/nbinteract/util.py
+++ b/nbinteract/util.py
@@ -5,6 +5,9 @@ Utility functions that aren't publicly exposed.
import inspect
import toolz
+# Parameter type for *args and **kwargs
+VAR_ARGS = {inspect.Parameter.VAR_POSITIONAL, inspe... | Ensure that args and kwargs aren't required | SamLau95_nbinteract | train |
887c6a5a7e5aa6c55e14d1135ade138648b28fd9 | diff --git a/core/codegen/src/main/java/org/overture/codegen/transform/TransformationAssistantCG.java b/core/codegen/src/main/java/org/overture/codegen/transform/TransformationAssistantCG.java
index <HASH>..<HASH> 100644
--- a/core/codegen/src/main/java/org/overture/codegen/transform/TransformationAssistantCG.java
+++ ... | Cleanup in the tranformation assistant | overturetool_overture | train |
5b07b5305884b74594464ffeaaf5b2ed7bae674c | diff --git a/doc/source/whatsnew/v1.4.1.rst b/doc/source/whatsnew/v1.4.1.rst
index <HASH>..<HASH> 100644
--- a/doc/source/whatsnew/v1.4.1.rst
+++ b/doc/source/whatsnew/v1.4.1.rst
@@ -14,7 +14,7 @@ including other versions of pandas.
Fixed regressions
~~~~~~~~~~~~~~~~~
--
+- Regression in :meth:`Series.mask` with ``... | REGR: changed behavior in series[period].mask(foo, bar, inplace=True) (#<I>) | pandas-dev_pandas | train |
aaacf36ad9c9ea91fcc2e21a2e1a918ade0186f8 | diff --git a/steemtools/base.py b/steemtools/base.py
index <HASH>..<HASH> 100644
--- a/steemtools/base.py
+++ b/steemtools/base.py
@@ -6,9 +6,12 @@ import dateutil
import numpy as np
import piston
from dateutil import parser
-from steemtools.helpers import read_asset, parse_payout, time_diff
+from steemtools.helpers... | implemented a simple-cache decorator | Netherdrake_steemtools | train |
16670ecdbe0d1c161cfbecdc34fb7041809bd727 | diff --git a/gary/util.py b/gary/util.py
index <HASH>..<HASH> 100644
--- a/gary/util.py
+++ b/gary/util.py
@@ -15,7 +15,7 @@ import multiprocessing
# Third-party
import numpy as np
-__all__ = ['get_pool', 'rolling_window']
+__all__ = ['get_pool', 'rolling_window', 'atleast_2d']
# Create logger
logger = logging.... | actually name it atleast_2d | adrn_gala | train |
cdb9196fd6f8bbe2c9837bfd20e68e57cf6a5f21 | diff --git a/demos/classes/BrokenDialog.js b/demos/classes/BrokenDialog.js
index <HASH>..<HASH> 100644
--- a/demos/classes/BrokenDialog.js
+++ b/demos/classes/BrokenDialog.js
@@ -56,6 +56,5 @@ Demo.BrokenDialog.prototype.getActionProcess = function ( action ) {
// so that it remains in "pending" state while closin... | BrokenDialog: Remove superfluous and broken second parent call
The parent method is already called at the top of the method. Calling it
a second time is unnecessary, and also incorrect because an
OO.ui.Process is not a legal return value for a step function.
Change-Id: I9f9cadd<I>c4c<I>c1cb3c<I>a<I>d<I>be9d<I>a | wikimedia_oojs-ui | train |
fdad5f7cada577da67c340f83ee77e2383f12979 | diff --git a/searx/engines/__init__.py b/searx/engines/__init__.py
index <HASH>..<HASH> 100644
--- a/searx/engines/__init__.py
+++ b/searx/engines/__init__.py
@@ -142,16 +142,28 @@ def get_engines_stats():
})
for engine in pageloads:
- engine['percentage'] = int(engine['avg'] / max_pageload * 100... | fix float division by zero bug in score calculation | asciimoo_searx | train |
66dc154bc1421ba7e07036177735cf7d4411991b | diff --git a/src/main/java/com/woonoz/proxy/servlet/ProxyServlet.java b/src/main/java/com/woonoz/proxy/servlet/ProxyServlet.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/woonoz/proxy/servlet/ProxyServlet.java
+++ b/src/main/java/com/woonoz/proxy/servlet/ProxyServlet.java
@@ -91,6 +91,11 @@ public class Proxy... | added handling PUT on servlet level | mbaechler_proxy-servlet | train |
8d1da237d31fbe9b24d6e491f03ebcb90b24da80 | diff --git a/classes/Boom/Controller/Cms/Page/Settings/Save.php b/classes/Boom/Controller/Cms/Page/Settings/Save.php
index <HASH>..<HASH> 100644
--- a/classes/Boom/Controller/Cms/Page/Settings/Save.php
+++ b/classes/Boom/Controller/Cms/Page/Settings/Save.php
@@ -34,7 +34,6 @@ class Boom_Controller_Cms_Page_Settings_Sav... | Bugfix: update template of child pages not working | boomcms_boom-core | train |
568d2c31c59fe68fc67ffad1c357da04faa3349c | diff --git a/lib/smoke/transformers/xml.rb b/lib/smoke/transformers/xml.rb
index <HASH>..<HASH> 100644
--- a/lib/smoke/transformers/xml.rb
+++ b/lib/smoke/transformers/xml.rb
@@ -8,10 +8,10 @@ module Smoke
xml.items {
items.each do |item|
xml.item {
- %w(id type cla... | Fork is a magical nokogiri method that isn't documented | benschwarz_smoke | train |
e426fbb93a5fd9c76be6e16926949befa01eceda | diff --git a/tests/unit/test_engine.py b/tests/unit/test_engine.py
index <HASH>..<HASH> 100644
--- a/tests/unit/test_engine.py
+++ b/tests/unit/test_engine.py
@@ -8,6 +8,7 @@ from bloop.engine import Engine, dump_key
from bloop.exceptions import (
InvalidModel,
InvalidStream,
+ InvalidTemplate,
Missi... | Unit tests for table_name_template, #<I> | numberoverzero_bloop | train |
d36b377ae6d1257f4faa28f28b2d3cc5957be0ae | diff --git a/js/CW/Test/TestUnitTest.js b/js/CW/Test/TestUnitTest.js
index <HASH>..<HASH> 100644
--- a/js/CW/Test/TestUnitTest.js
+++ b/js/CW/Test/TestUnitTest.js
@@ -480,8 +480,12 @@ CW.UnitTest.TestCase.subclass(CW.Test.TestUnitTest, 'TestCaseTest').methods(
// check the error
self.assertIdentical(self.result... | verify that errors thrown in setUp or tearDown methods cause CW.Defer.Failure objects to be preserved in TestResult (previous incorrect behavior was to preserve Errors) | ludiosarchive_Coreweb | train |
ef05beb4e7fe15799031d0c3a129cd5e21296500 | diff --git a/options.go b/options.go
index <HASH>..<HASH> 100644
--- a/options.go
+++ b/options.go
@@ -206,17 +206,17 @@ func(r *ReplyMarkup) Text(unique,text string) Btn {
return Btn{Unique: unique, Text: text}
}
-func(r *ReplyMarkup) URL(unique,url string) Btn {
- return Btn{Unique: unique, URL: url}
+func(r *R... | keyboards: fixed url and query constructors | tucnak_telebot | train |
e882df4a39a780e32207a4999ea4b1795e0a846e | diff --git a/lib/active_record/turntable/active_record_ext/connection_handler_extension.rb b/lib/active_record/turntable/active_record_ext/connection_handler_extension.rb
index <HASH>..<HASH> 100644
--- a/lib/active_record/turntable/active_record_ext/connection_handler_extension.rb
+++ b/lib/active_record/turntable/act... | Update ConnectionHandler extension to follow <I> changes | drecom_activerecord-turntable | train |
ac1a8d340a56f24a7195bf6b5f9036aea5d8fe85 | diff --git a/src/ruby/spec/pb/health/checker_spec.rb b/src/ruby/spec/pb/health/checker_spec.rb
index <HASH>..<HASH> 100644
--- a/src/ruby/spec/pb/health/checker_spec.rb
+++ b/src/ruby/spec/pb/health/checker_spec.rb
@@ -30,6 +30,54 @@
require 'grpc'
require 'grpc/health/v1alpha/health'
require 'grpc/health/checker'
+... | Adds a test for ruby code generation. | grpc_grpc | train |
c7b4f8049ce5b4c21abcce9ddda5cc32eaf76554 | diff --git a/sharepoint/lists/__init__.py b/sharepoint/lists/__init__.py
index <HASH>..<HASH> 100644
--- a/sharepoint/lists/__init__.py
+++ b/sharepoint/lists/__init__.py
@@ -174,8 +174,8 @@ class SharePointList(object):
for row in list(response[0][0][0]):
attrib = attribs[row.attrib['ows_... | Fixed indentation error from last commit. | ox-it_python-sharepoint | train |
96bf5a8293964e43a05be04476515016242e29d9 | diff --git a/hawkbit-ui/src/main/java/org/eclipse/hawkbit/ui/management/dstable/DistributionAddUpdateWindowLayout.java b/hawkbit-ui/src/main/java/org/eclipse/hawkbit/ui/management/dstable/DistributionAddUpdateWindowLayout.java
index <HASH>..<HASH> 100644
--- a/hawkbit-ui/src/main/java/org/eclipse/hawkbit/ui/management/... | fixing newly created bug by trying to simplify if-statement with commit
a4e1ae7ac<I>f1a4ce<I>ffbaee5fc<I>d8 | eclipse_hawkbit | train |
bdd4d0f079fdaa3d8ad3bd5ffa57243a01967710 | diff --git a/core/src/main/java/org/vial/terminal/WrappedUnixTerminal.java b/core/src/main/java/org/vial/terminal/WrappedUnixTerminal.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/vial/terminal/WrappedUnixTerminal.java
+++ b/core/src/main/java/org/vial/terminal/WrappedUnixTerminal.java
@@ -26,7 +26,6 @@... | Fixed a problem with the WrappedUnixTerminal. | jledit_jledit | train |
da8e5749844979dd6bbd089393b56b62c351c78b | diff --git a/src/main/java/com/marklogic/client/admin/ExtensionMetadata.java b/src/main/java/com/marklogic/client/admin/ExtensionMetadata.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/marklogic/client/admin/ExtensionMetadata.java
+++ b/src/main/java/com/marklogic/client/admin/ExtensionMetadata.java
@@ -23,10... | add ScriptLanguage to allow for javascript resource extensions in addition to xquery | marklogic_java-client-api | train |
12c7c63224a2188555990833e0dd71272cc16337 | diff --git a/test/system/test_client.py b/test/system/test_client.py
index <HASH>..<HASH> 100644
--- a/test/system/test_client.py
+++ b/test/system/test_client.py
@@ -142,6 +142,25 @@ class TestClient(unittest.TestCase):
txtstr = api.get_block('interface Ethernet1', config='config')
self.asser... | Added version dependent system test for autocomplete feature. | arista-eosplus_pyeapi | train |
75c5483c079d0c21b762efc6de5833226c26dcc3 | diff --git a/contrib/externs/w3c_speech.js b/contrib/externs/w3c_speech.js
index <HASH>..<HASH> 100644
--- a/contrib/externs/w3c_speech.js
+++ b/contrib/externs/w3c_speech.js
@@ -279,7 +279,7 @@ function webkitSpeechRecognition() {}
* @type {SpeechSynthesis}
* @see https://dvcs.w3.org/hg/speech-api/raw-file/tip/spe... | Get rid of unnecessary "window.foo" aliases for "foo"
These are created automatically by the DeclaredGlobalExternsOnWindow pass.
-------------
Created by MOE: <URL> | google_closure-compiler | train |
f6c82d30ef6529e9c76eadb02be83e51613b939d | diff --git a/api/database/mongodb.js b/api/database/mongodb.js
index <HASH>..<HASH> 100644
--- a/api/database/mongodb.js
+++ b/api/database/mongodb.js
@@ -57,6 +57,11 @@ var MongoDbDatabaseUtility = createUtility({
},
_getPermissionQuery: function (collection, principal, action) {
+ if (IRootPrin... | Only pass ownpropertis to API | jhsware_protoncms-core | train |
0063164becad0bd2d5fe1c69ce02079fdeac6ae7 | diff --git a/java/src/main/java/com/google/appengine/tools/mapreduce/MapSettings.java b/java/src/main/java/com/google/appengine/tools/mapreduce/MapSettings.java
index <HASH>..<HASH> 100644
--- a/java/src/main/java/com/google/appengine/tools/mapreduce/MapSettings.java
+++ b/java/src/main/java/com/google/appengine/tools/... | Automated g4 rollback of changelist <I>.
*** Reason for rollback ***
Should not be needed after CL/<I>
*** Original change description ***
Changing the slice time to be below the query iterator timeout (can be as low as <I> seconds).
Otherwise long job/mappers currently keep failing.
***
R=irwin
DELTA=5 (0 added... | GoogleCloudPlatform_appengine-mapreduce | train |
3e06374edd95cb76a4a5f9b5b5cd5edb0a40b3eb | diff --git a/lib/elastic_apm/config.rb b/lib/elastic_apm/config.rb
index <HASH>..<HASH> 100644
--- a/lib/elastic_apm/config.rb
+++ b/lib/elastic_apm/config.rb
@@ -326,7 +326,7 @@ module ElasticAPM
self.logger ||= ::Rails.logger
self.__root_path = ::Rails.root.to_s
- self.__view_paths = ::ActionCont... | Revert #<I> (#<I>) | elastic_apm-agent-ruby | train |
8f1f4d913b824644d326f7e58d3b094390f985f7 | diff --git a/poke.io.js b/poke.io.js
index <HASH>..<HASH> 100644
--- a/poke.io.js
+++ b/poke.io.js
@@ -13,7 +13,7 @@ var login_oauth = 'https://sso.pokemon.com/sso/oauth2.0/accessToken'
var ProtoBuf = require("protobufjs");
var builder = ProtoBuf.loadProtoFile('pokemon.proto')
-if(builder == null) {
+if (builder ==... | Fix operator and object key-value spacing | Armax_Pokemon-GO-node-api | train |
0d2d8e423ac6eeb346399644cbe91deb065ffdc7 | diff --git a/libkbfs/repeated_wait_group.go b/libkbfs/repeated_wait_group.go
index <HASH>..<HASH> 100644
--- a/libkbfs/repeated_wait_group.go
+++ b/libkbfs/repeated_wait_group.go
@@ -42,7 +42,7 @@ func (rwg *RepeatedWaitGroup) Add(delta int) {
}
// Wait blocks until either the underlying task count goes to 0, or
-/... | repeated_wait_group: fix comment type found by @akalin-keybase
Issue: #<I> | keybase_client | train |
b577bebafe638a893bf3412c39ab391e5d964e5b | diff --git a/actionpack/lib/action_dispatch/journey/path/pattern.rb b/actionpack/lib/action_dispatch/journey/path/pattern.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_dispatch/journey/path/pattern.rb
+++ b/actionpack/lib/action_dispatch/journey/path/pattern.rb
@@ -165,6 +165,10 @@ module ActionDispatch
... | Use Path::Pattern#match? that uses Regexp#match? where MatchData is not in need | rails_rails | train |
dbda62221f196dad472e48b59003f79ef1cafb98 | diff --git a/src/js/SelectionControls/RadioGroup.js b/src/js/SelectionControls/RadioGroup.js
index <HASH>..<HASH> 100644
--- a/src/js/SelectionControls/RadioGroup.js
+++ b/src/js/SelectionControls/RadioGroup.js
@@ -2,6 +2,8 @@ import React, { Component, PropTypes } from 'react';
import PureRenderMixin from 'react-addo... | Updated radio group to inject the same name to all children | mlaursen_react-md | train |
f3b3b27aa9c8236ae6243ce1c09250082584c84f | diff --git a/tests/unit/views/accountnewsletterTest.php b/tests/unit/views/accountnewsletterTest.php
index <HASH>..<HASH> 100644
--- a/tests/unit/views/accountnewsletterTest.php
+++ b/tests/unit/views/accountnewsletterTest.php
@@ -47,6 +47,11 @@ class Unit_Views_accountNewsletterTest extends OxidTestCase
*/
... | ESDEV-<I> Added CSRF tests for Unit_Views_accountNewsletterTest::testSubscribe* | OXID-eSales_oxideshop_ce | train |
98f5f47c6d3a0321158b23d19b809634d523a210 | diff --git a/nsqd/protocol_v2.go b/nsqd/protocol_v2.go
index <HASH>..<HASH> 100644
--- a/nsqd/protocol_v2.go
+++ b/nsqd/protocol_v2.go
@@ -47,7 +47,7 @@ func (p *ProtocolV2) IOLoop(conn net.Conn) error {
// trim the '\n'
line = line[:len(line)-1]
// optionally trim the '\r'
- if line[len(line)-1] == '\r' {
+ ... | nsqd: protocol_v2 add index check for reader command slice
* add a length check to prevent 'index out of range' panic when nsqd
receives a malformed command ("\n"), leaving len()-1 out of bounds. | nsqio_nsq | train |
151032c18defda4670cf6442374342466f2ed94a | diff --git a/src/Http/Response.php b/src/Http/Response.php
index <HASH>..<HASH> 100644
--- a/src/Http/Response.php
+++ b/src/Http/Response.php
@@ -154,6 +154,14 @@ class Response implements ResponseInterface
}
/**
+ * @return array
+ */
+ public function getNativeErrors(): array
+ {
+ r... | Allow to get errors array with original exceptions | railt_railt | train |
159c9d3d759259006b2ddab75d4c28ec7689003a | diff --git a/org.openwms.common/org.openwms.common.comm/src/main/java/org/openwms/common/comm/app/DriverConfig.java b/org.openwms.common/org.openwms.common.comm/src/main/java/org/openwms/common/comm/app/DriverConfig.java
index <HASH>..<HASH> 100644
--- a/org.openwms.common/org.openwms.common.comm/src/main/java/org/open... | added procfile for tms-routing-service | openwms_org.openwms | train |
057f64b99aa4775c0824c79a7ba692601198dd37 | diff --git a/lib/gcli/cli.js b/lib/gcli/cli.js
index <HASH>..<HASH> 100644
--- a/lib/gcli/cli.js
+++ b/lib/gcli/cli.js
@@ -657,6 +657,13 @@ Requisition.prototype.complete = function(cursor, predictionChoice) {
var conversion = assignment.param.type.parse(arg);
assignment.setConversion(conversion);
+ // I... | Bug <I> (noopts): Insert both args into _args properly
- Both times we mess with an argument we need to make sure its there
- Also minor doc tweak | joewalker_gcli | train |
e11973b22720e6e3e89cc415f9c7b2ac71e0c156 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -2,7 +2,7 @@ var parseUrl = require('url').parse;
var isSecure = function(req) {
if (req.secure) {
return true;
- } else if (req.get('X-Forwarded-Proto') === 'https') {
+ } else if (req.get('X-Forwarded-Proto').toLo... | lower case forwarded protocol before comparing to 'https' | battlejj_express-force-ssl | train |
ea96195cc3aa62018a88a301bf8c2b5b636cf119 | diff --git a/pgmpy/Factor/Factor.py b/pgmpy/Factor/Factor.py
index <HASH>..<HASH> 100644
--- a/pgmpy/Factor/Factor.py
+++ b/pgmpy/Factor/Factor.py
@@ -495,5 +495,5 @@ def factor_divide(phi1, phi2):
factor_product
"""
if not isinstance(phi1, Factor) or not isinstance(phi2, Factor):
- raise ValueErr... | Minor change in exception raising in factor divide and adds tests for many functions | pgmpy_pgmpy | train |
aec1553a0b1e05d7166c896bde9eba0bbad01516 | diff --git a/biojava3-structure/src/main/java/org/biojava/bio/structure/scop/BerkeleyScopInstallation.java b/biojava3-structure/src/main/java/org/biojava/bio/structure/scop/BerkeleyScopInstallation.java
index <HASH>..<HASH> 100644
--- a/biojava3-structure/src/main/java/org/biojava/bio/structure/scop/BerkeleyScopInstall... | Fixed a serious caching bug in the recent modifications to
BerkeleyScopInstallation. | biojava_biojava | train |
f571a52b55f635632c37f0996762c1a5a637c708 | diff --git a/src/Config/Config.php b/src/Config/Config.php
index <HASH>..<HASH> 100644
--- a/src/Config/Config.php
+++ b/src/Config/Config.php
@@ -188,7 +188,7 @@ class Config extends ArrayObject implements ConfigInterface {
private static function search( array $array, $key, $default = null ) {
if ( \is_int($ke... | Added casting for stdClass obj in search method | ItalyStrap_config | train |
d0a43bc8b997a0902d00163df0a68b4b9fd835ca | diff --git a/aws/resource_aws_directory_service_directory.go b/aws/resource_aws_directory_service_directory.go
index <HASH>..<HASH> 100644
--- a/aws/resource_aws_directory_service_directory.go
+++ b/aws/resource_aws_directory_service_directory.go
@@ -41,6 +41,7 @@ func resourceAwsDirectoryServiceDirectory() *schema.Res... | provider/aws: Fix Service Directory acc tests | terraform-providers_terraform-provider-aws | train |
3092f0b3db1cee03776e6b71f37cab9ebb2b99f7 | diff --git a/ui/plugins/pinboard.js b/ui/plugins/pinboard.js
index <HASH>..<HASH> 100644
--- a/ui/plugins/pinboard.js
+++ b/ui/plugins/pinboard.js
@@ -126,6 +126,11 @@ treeherder.controller('PinboardCtrl', [
};
$scope.canSaveClassifications = function() {
+ if ($scope.enteringBugNumber) {... | Bug <I> - Save whatever's typed into the bug field before seeing if we can save the classification (#<I>) r=camd | mozilla_treeherder | train |
f43d71bf3ceffaca47b210cee28162cbdf7595b0 | diff --git a/mousetrap.js b/mousetrap.js
index <HASH>..<HASH> 100644
--- a/mousetrap.js
+++ b/mousetrap.js
@@ -403,7 +403,7 @@
function _handleCharacter(character, e) {
// if this event should not happen stop here
- if (Mousetrap.stopCallback(e)) {
+ if (Mousetrap.stopCallback(e, e.target ... | Pass element into stopCallback method | ccampbell_mousetrap | train |
0ba4aac3ebfd62270d8763741a6a70dd19be4229 | diff --git a/src/Output/QRImage.php b/src/Output/QRImage.php
index <HASH>..<HASH> 100644
--- a/src/Output/QRImage.php
+++ b/src/Output/QRImage.php
@@ -37,7 +37,7 @@ class QRImage extends QROutputAbstract{
public function __construct(SettingsContainerInterface $options, QRMatrix $matrix){
if(!extension_loaded('gd... | :shower: don't cover the extension check exceptions | chillerlan_php-qrcode | train |
6d28ee931cf9e0f6fc310f340f59438cbe15e44d | diff --git a/builder/googlecompute/step_create_instance.go b/builder/googlecompute/step_create_instance.go
index <HASH>..<HASH> 100644
--- a/builder/googlecompute/step_create_instance.go
+++ b/builder/googlecompute/step_create_instance.go
@@ -125,6 +125,29 @@ func (s *StepCreateInstance) Cleanup(state multistep.StateBa... | Delete GCE disk on SIGINT. | hashicorp_packer | train |
7ba9f086cf4912f6f5672387fd969f76c8b3c107 | diff --git a/lib/ffaker/time.rb b/lib/ffaker/time.rb
index <HASH>..<HASH> 100644
--- a/lib/ffaker/time.rb
+++ b/lib/ffaker/time.rb
@@ -31,7 +31,7 @@ module FFaker
def datetime(params = {})
hours = params[:hours] || (rand * 12).ceil
- minutes = params[:minutes] || (rand * 60).ceil
+ minutes = par... | Prevent time generator to generate time with minutes == <I> | ffaker_ffaker | train |
4f582e028d0ce6037d803d5612ff89a5aa72d31b | diff --git a/core/src/main/resources/META-INF/resources/primefaces-extensions/sheet/1-sheet.js b/core/src/main/resources/META-INF/resources/primefaces-extensions/sheet/1-sheet.js
index <HASH>..<HASH> 100644
--- a/core/src/main/resources/META-INF/resources/primefaces-extensions/sheet/1-sheet.js
+++ b/core/src/main/resou... | Fix #<I>: Sheet numeric cells were blocking navigation with TAB or ARROW | primefaces-extensions_core | train |
54d7503e738a653fb717ce440b7c42a160651027 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -95,6 +95,9 @@ browserslist.aliases = {
firefoxandroid: 'and_ff'
};
+// Aliases ot work with joined versions like `ios_saf 7.0-7.1`
+browserslist.versionAliases = { };
+
// Get browser data by alias or case insensitiv... | Better work with joined versions from Can I Use | browserslist_browserslist | train |
724d89f6e84900ec2103422d169fd68473bf1d39 | diff --git a/server/src/main/java/com/orientechnologies/orient/server/OServer.java b/server/src/main/java/com/orientechnologies/orient/server/OServer.java
index <HASH>..<HASH> 100755
--- a/server/src/main/java/com/orientechnologies/orient/server/OServer.java
+++ b/server/src/main/java/com/orientechnologies/orient/serve... | add correct url parsing on server configurated storages | orientechnologies_orientdb | train |
e563b45fb392e89b4f7f53ee4bf654258199a880 | diff --git a/tests/Integration/Suites/CurrentVersionApiTest.php b/tests/Integration/Suites/CurrentVersionApiTest.php
index <HASH>..<HASH> 100644
--- a/tests/Integration/Suites/CurrentVersionApiTest.php
+++ b/tests/Integration/Suites/CurrentVersionApiTest.php
@@ -16,16 +16,15 @@ class CurrentVersionApiTest extends Abstr... | Issue #<I>: Reformat integration test code | lizards-and-pumpkins_catalog | train |
b6d0cc023669578510edca0888a22c61fed20d6e | diff --git a/lib/manageiq/password/password_mixin.rb b/lib/manageiq/password/password_mixin.rb
index <HASH>..<HASH> 100644
--- a/lib/manageiq/password/password_mixin.rb
+++ b/lib/manageiq/password/password_mixin.rb
@@ -1,3 +1,5 @@
+require "manageiq-password"
+
module ManageIQ
class Password
module PasswordMix... | Fix issue where PasswordMixin needs the core required | ManageIQ_manageiq-password | train |
0e0a60aa87165c8a4068088e75ff51524a6629fe | diff --git a/spec/LdapTools/Security/GUIDSpec.php b/spec/LdapTools/Security/GUIDSpec.php
index <HASH>..<HASH> 100644
--- a/spec/LdapTools/Security/GUIDSpec.php
+++ b/spec/LdapTools/Security/GUIDSpec.php
@@ -39,4 +39,9 @@ class GUIDSpec extends ObjectBehavior
{
$this->toBinary()->shouldBeEqualTo(hex2bin('d... | Check the GUID structure after decoding it. | ldaptools_ldaptools | train |
4401185a703d16ca1533204465ca69bac795070e | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -50,7 +50,7 @@ history = open('HISTORY.rst').read().replace('.. :changelog:', '')
setup(
name='drf-compound-fields',
- version='1.0.0',
+ version='1.0.1',
description='Django-REST-framework serializer fields... | Update version to <I> for future | estebistec_drf-compound-fields | train |
10694155817fe2d7caaac8aae870d7ddd93711c4 | diff --git a/lib/fortitude/rails/railtie.rb b/lib/fortitude/rails/railtie.rb
index <HASH>..<HASH> 100644
--- a/lib/fortitude/rails/railtie.rb
+++ b/lib/fortitude/rails/railtie.rb
@@ -145,10 +145,19 @@ module Fortitude
end
if found_subpath
- [ ".html.rb", ".rb" ].each do |extensi... | A much better way of supporting widgets living in files with extensions beyond just ".rb" (e.g., ".html.rb", etc.). | ageweke_fortitude | train |
be809f218d11156e7f59f16ff015bc813d4b45b8 | diff --git a/src/bezier/_implicitization.py b/src/bezier/_implicitization.py
index <HASH>..<HASH> 100644
--- a/src/bezier/_implicitization.py
+++ b/src/bezier/_implicitization.py
@@ -524,8 +524,8 @@ def roots_in_unit_interval(coeffs):
all_roots = polynomial.polyroots(coeffs)
# Only keep roots inside or very n... | Checking only real component in `roots_in_unit_interval()`. | dhermes_bezier | train |
2d06093e350fe83c66cbebb4d8d90cf83ad17e05 | diff --git a/raven/base.py b/raven/base.py
index <HASH>..<HASH> 100644
--- a/raven/base.py
+++ b/raven/base.py
@@ -282,10 +282,13 @@ class Client(object):
if culprit:
data['culprit'] = culprit
- checksum = hashlib.md5()
- for bit in handler.get_hash(data):
- checksum.upd... | Allow checksums to be passed into the client and adjust logging behavior so it uses the stacktrace checksum, rather than the message value. | elastic_apm-agent-python | train |
2c9eded20335307985cc55a9e227f809f055422a | diff --git a/src/main/java/com/googlecode/objectify/impl/Round.java b/src/main/java/com/googlecode/objectify/impl/Round.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/googlecode/objectify/impl/Round.java
+++ b/src/main/java/com/googlecode/objectify/impl/Round.java
@@ -137,12 +137,12 @@ class Round {
Resul... | Don't materialize async on first round
Prior solution was incorrectly forcing sync for all rounds. We only
want rounds after the first to be synchronous. | objectify_objectify | train |
f1e161abda5801e2f3cc72983942466725625a26 | diff --git a/client/jsonapi/src/Client/JsonApi/Base.php b/client/jsonapi/src/Client/JsonApi/Base.php
index <HASH>..<HASH> 100644
--- a/client/jsonapi/src/Client/JsonApi/Base.php
+++ b/client/jsonapi/src/Client/JsonApi/Base.php
@@ -225,7 +225,7 @@ abstract class Base
$details['detail'] = $e->getTraceAsString();
}... | Always return lists of error objects to comply to jsonapi.org | aimeos_ai-client-jsonapi | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.