hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
9e89dab0b30f9726e5a512d88de1c5a9995c9075 | diff --git a/rtv/page.py b/rtv/page.py
index <HASH>..<HASH> 100644
--- a/rtv/page.py
+++ b/rtv/page.py
@@ -314,9 +314,6 @@ class Page(object):
Loop through submissions and fill up the content page.
"""
- # TODO: If only one comment, add (Not enough space to display)
- # TODO: Jumps up ... | Show (not enough space to display) for single comments that are too large. | michael-lazar_rtv | train |
4d067f4d6d027e9be9b40f8a02819d7fedcdadfb | diff --git a/helper/schema/resource_data.go b/helper/schema/resource_data.go
index <HASH>..<HASH> 100644
--- a/helper/schema/resource_data.go
+++ b/helper/schema/resource_data.go
@@ -84,8 +84,7 @@ func (d *ResourceData) GetChange(key string) (interface{}, interface{}) {
}
// GetOk returns the data for the given key... | helper/schema: don't put things into the state that don't exist or are
computed [GH-<I>] | hashicorp_terraform | train |
e4103b6a59e058c6822148e4654f58d7b68d924c | diff --git a/user/index.php b/user/index.php
index <HASH>..<HASH> 100644
--- a/user/index.php
+++ b/user/index.php
@@ -84,7 +84,7 @@
}
// Should use this variable so that we don't break stuff every time a variable is added or changed.
- $baseurl = $CFG->wwwroot.'/user/index.php?id='.$course->id.'&gro... | & instead of & in participants list base url (from last commit - make participants list searchable) | moodle_moodle | train |
576c19dd01de3000fc7b6eeff4520815efe68662 | diff --git a/includes/modules/export/odt/class-pb-odt.php b/includes/modules/export/odt/class-pb-odt.php
index <HASH>..<HASH> 100755
--- a/includes/modules/export/odt/class-pb-odt.php
+++ b/includes/modules/export/odt/class-pb-odt.php
@@ -38,6 +38,14 @@ class Odt extends Export {
/**
+ * Compress images?
+ ... | Fix for LaTex import (closes #<I>). | pressbooks_pressbooks | train |
662f5b634267adec9ab24b0d1ba8deb4bc0a820d | diff --git a/database-tools/impl/src/main/java/org/jboss/forge/addon/database/tools/connections/AbstractConnectionProfileDetailsPage.java b/database-tools/impl/src/main/java/org/jboss/forge/addon/database/tools/connections/AbstractConnectionProfileDetailsPage.java
index <HASH>..<HASH> 100644
--- a/database-tools/impl/s... | JBIDE-<I>: Fix NPE in ConnectionProfile setup | forge_core | train |
5d3afeea214c20dca73f940dc7ae00de072b6c07 | diff --git a/coordinate/config.go b/coordinate/config.go
index <HASH>..<HASH> 100644
--- a/coordinate/config.go
+++ b/coordinate/config.go
@@ -1,8 +1,10 @@
package coordinate
// Config is used to set the parameters of the Vivaldi-based coordinate mapping
-// algorithm. The following references are called out at var... | Runs `go fmt` and cleans up some comments. | hashicorp_serf | train |
f48daa4779d1a022bc9ef0d0d35df042ca9cc878 | diff --git a/goatools/wr_tbl.py b/goatools/wr_tbl.py
index <HASH>..<HASH> 100755
--- a/goatools/wr_tbl.py
+++ b/goatools/wr_tbl.py
@@ -17,6 +17,9 @@
to control the order of the print fields
'fld2col_widths: A dictionary of column widths used when writing xlsx files.
'fld2fmt': Us... | Added comment for upcoming new keyword args | tanghaibao_goatools | train |
69b97e37d9dee2cd454714dcb10b82deb33e14c2 | diff --git a/java/client/test/org/openqa/selenium/testing/drivers/DefaultDriverSupplier.java b/java/client/test/org/openqa/selenium/testing/drivers/DefaultDriverSupplier.java
index <HASH>..<HASH> 100644
--- a/java/client/test/org/openqa/selenium/testing/drivers/DefaultDriverSupplier.java
+++ b/java/client/test/org/open... | Fix potential problems creating a test driver
* Ensure we never pass `null` to the `HtmlUnitDriver`
constructor.
* Avoid casting `capabilities` to `FirefoxOptions`. We
could have done a check, but since this driver is now
only tested in the CI builds, I've chosen to skip
this code path. | SeleniumHQ_selenium | train |
77b2c26cf07883976d308c45d306ae9f12fe8fff | diff --git a/adapter/mocha.src.js b/adapter/mocha.src.js
index <HASH>..<HASH> 100644
--- a/adapter/mocha.src.js
+++ b/adapter/mocha.src.js
@@ -43,7 +43,12 @@ var createMochaReporterConstructor = function(tc) {
});
runner.on('fail', function(test, error) {
- test.$errors.push(formatError(error));
+ ... | Mocha: add ability to fail during beforeEach/afterEach hooks | karma-runner_karma | train |
3174697383d2877b03ace6e29c1dfa31ff20ac16 | diff --git a/src/main/java/net/fortuna/ical4j/model/Recur.java b/src/main/java/net/fortuna/ical4j/model/Recur.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/fortuna/ical4j/model/Recur.java
+++ b/src/main/java/net/fortuna/ical4j/model/Recur.java
@@ -696,10 +696,7 @@ public class Recur implements Serializable {... | Remove currently useless smartIncrement
It was superseded by implicit rule in getCandidates(..) | ical4j_ical4j | train |
6bc238f516b42363596fb4f183057c97a039c629 | diff --git a/pinax/ratings/models.py b/pinax/ratings/models.py
index <HASH>..<HASH> 100644
--- a/pinax/ratings/models.py
+++ b/pinax/ratings/models.py
@@ -8,9 +8,9 @@ from django.utils.encoding import python_2_unicode_compatible
from django.contrib.auth.models import User
try:
- from django.contrib.contenttypes.... | reverse try/except to avoid deprecation warning
This reverses the order of the try/except statement so that the deprecation warning doesn't appear. | pinax_pinax-ratings | train |
b2abe3b04d5a8adbf340193038d803fbb44ed50a | diff --git a/test/dom/DOMElement.test.js b/test/dom/DOMElement.test.js
index <HASH>..<HASH> 100644
--- a/test/dom/DOMElement.test.js
+++ b/test/dom/DOMElement.test.js
@@ -128,4 +128,35 @@ function testDOMElement(impl) {
t.equal(el.outerHTML, '<foo><link>foo</link></foo>')
t.end()
})
+
+ test("find via tag... | Added some DOMElement tests. | substance_substance | train |
04024c39f04d65adf78492dfbb0537015a357fc7 | diff --git a/src/class/method.js b/src/class/method.js
index <HASH>..<HASH> 100644
--- a/src/class/method.js
+++ b/src/class/method.js
@@ -3,6 +3,8 @@ define(
"../meta",
"../type",
"../function/overload",
+ "../function/abstract",
+ "../function/get-name",
"../function/validate-return-type"
],
functio... | passing the class name to the abstract implementation so the error messages are more descriptive | bob-gray_solv | train |
0353e0766f96f76bb71c411507a3a677d461e5ba | diff --git a/app/models/spree/adyen/hpp_source.rb b/app/models/spree/adyen/hpp_source.rb
index <HASH>..<HASH> 100644
--- a/app/models/spree/adyen/hpp_source.rb
+++ b/app/models/spree/adyen/hpp_source.rb
@@ -54,8 +54,18 @@ class Spree::Adyen::HppSource < ActiveRecord::Base
[PENDING, AUTHORISED].include? auth_result... | Don't show actions on in-flight payments and voids | StemboltHQ_solidus-adyen | train |
a9e9ab59e1ead272272b16385f5bf34c5fc5fae7 | diff --git a/src/cr/cube/collator.py b/src/cr/cube/collator.py
index <HASH>..<HASH> 100644
--- a/src/cr/cube/collator.py
+++ b/src/cr/cube/collator.py
@@ -17,7 +17,11 @@ from cr.cube.util import lazyproperty
class _BaseCollator(object):
- """Base class for all collator objects, providing shared properties."""
+... | doc: improve docstrings
A couple small other adjustments while we're in there. | Crunch-io_crunch-cube | train |
d229fdc6d8f06a3c0de1bae93eeab7c9c9daadba | diff --git a/packages/react-swipeable-views/src/SwipeableViews.js b/packages/react-swipeable-views/src/SwipeableViews.js
index <HASH>..<HASH> 100644
--- a/packages/react-swipeable-views/src/SwipeableViews.js
+++ b/packages/react-swipeable-views/src/SwipeableViews.js
@@ -49,8 +49,7 @@ const styles = {
container: {
... | [performance] Add willChange property (#<I>) | oliviertassinari_react-swipeable-views | train |
61fb4bd9941e5075a9a0f01e687ad0fc3936df95 | diff --git a/bolt/spark/chunk.py b/bolt/spark/chunk.py
index <HASH>..<HASH> 100644
--- a/bolt/spark/chunk.py
+++ b/bolt/spark/chunk.py
@@ -3,7 +3,7 @@ from numpy import zeros, ones, asarray, r_, concatenate, arange, ceil, prod, \
from itertools import product
-from bolt.utils import tuplesort, tupleize, allstack
+... | Support dropped axes in map on chunked array | bolt-project_bolt | train |
7d191e682c12fc093e4f7abea3a12835098611c8 | diff --git a/nifstd/nifstd_tools/ontree.py b/nifstd/nifstd_tools/ontree.py
index <HASH>..<HASH> 100755
--- a/nifstd/nifstd_tools/ontree.py
+++ b/nifstd/nifstd_tools/ontree.py
@@ -24,6 +24,7 @@ import os
import re
import asyncio
import subprocess
+from copy import deepcopy
from pprint import pprint
from pathlib imp... | ontree cleanBads
creatTree has a big problem with cycles and memory usage so for now
add special cases to prevent cycles from destroying everything | tgbugs_pyontutils | train |
b8ce787a1770f52c6cf44d4f8be6b09db1fd7d07 | diff --git a/apptentive/src/com/apptentive/android/sdk/module/messagecenter/view/MessageCenterActivityContent.java b/apptentive/src/com/apptentive/android/sdk/module/messagecenter/view/MessageCenterActivityContent.java
index <HASH>..<HASH> 100644
--- a/apptentive/src/com/apptentive/android/sdk/module/messagecenter/view... | Remove duplicate messages from the message list, mainly new incoming messages. Under normal circumstance, only one thread would retrieve new messages at a given time. | apptentive_apptentive-android | train |
2cf12aa68c9b5c6f465a1d686f94b2976068e208 | diff --git a/docs/build/search.js b/docs/build/search.js
index <HASH>..<HASH> 100644
--- a/docs/build/search.js
+++ b/docs/build/search.js
@@ -20,6 +20,25 @@ const mdParse = SimpleMarkdown.defaultBlockParse
// where the markdown lives
const intro = '../src/pages'
+// bottom of the list (therefore higher index) gets... | feat(docs): optimize sort order for search results | quasarframework_quasar | train |
dd05c5e75e66bbf3411e2118b3799a4163521f17 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -9,7 +9,22 @@ function isFunction (f) {
return 'function' === typeof f
}
-module.exports = function () {
+function maxDelay(fn, delay) {
+
+ return function (a, cb) {
+ var timer = setTimeout(function () {
+ fn(... | implement timeouts with default: <I>s | dominictarr_pull-reader | train |
3f139c8863532a3922faf6c584d260f4a509ae1f | diff --git a/test/index.js b/test/index.js
index <HASH>..<HASH> 100644
--- a/test/index.js
+++ b/test/index.js
@@ -9,10 +9,7 @@ global.WEB_SOCKET_SUPPRESS_CROSS_DOMAIN_SWF_ERROR = null;
global.WEB_SOCKET_DISABLE_AUTO_INITIALIZATION = null;
global.WEB_SOCKET_SWF_LOCATION = null;
-// node only tests
-if (env.node) {
... | test: make url tests run on the browser | tsjing_socket.io-client | train |
6b449fe3e74113b2b1b91953d2e0f5cbb8eaffe3 | diff --git a/code/Heystack/Subsystem/Ecommerce/Currency/CurrencyService.php b/code/Heystack/Subsystem/Ecommerce/Currency/CurrencyService.php
index <HASH>..<HASH> 100644
--- a/code/Heystack/Subsystem/Ecommerce/Currency/CurrencyService.php
+++ b/code/Heystack/Subsystem/Ecommerce/Currency/CurrencyService.php
@@ -51,13 +51... | UPDATE: refactored currency service to use identifier instead of state-key | heyday_heystack-ecommerce-core | train |
46e916cf0dfa52714756196c231e2cb96167e1d6 | diff --git a/Pagerfanta/View/AdmingeneratorView.php b/Pagerfanta/View/AdmingeneratorView.php
index <HASH>..<HASH> 100644
--- a/Pagerfanta/View/AdmingeneratorView.php
+++ b/Pagerfanta/View/AdmingeneratorView.php
@@ -22,13 +22,14 @@ class AdmingeneratorView implements ViewInterface
public function render(PagerfantaI... | added option class to set pagination's buttons size | symfony2admingenerator_AdmingeneratorGeneratorBundle | train |
24d692c1379018d8ca1297ec7c6a2f8372fe6607 | diff --git a/lib/plugins/index.js b/lib/plugins/index.js
index <HASH>..<HASH> 100644
--- a/lib/plugins/index.js
+++ b/lib/plugins/index.js
@@ -475,6 +475,7 @@ function getRulesFromPlugins(type, req, res, callback) {
if (maxAge >= 0) {
newData = newData || {};
newData.maxAge = maxAge... | feat: Supports cache the rules of plugin | avwo_whistle | train |
aaa847816c2363d3dc55e1bef7b1b1b12cae8a0b | diff --git a/tests/test_hunter.py b/tests/test_hunter.py
index <HASH>..<HASH> 100644
--- a/tests/test_hunter.py
+++ b/tests/test_hunter.py
@@ -16,6 +16,7 @@ except ImportError:
import pytest
+import hunter
from hunter import And
from hunter import Not
from hunter import Or
@@ -493,3 +494,9 @@ def test_predicate... | Assert that is run with proper backend. | ionelmc_python-hunter | train |
1d83ff3f8eb9959ab7d0c0fbb16750b88b9fd21e | diff --git a/bees/rssbee/rssbee.go b/bees/rssbee/rssbee.go
index <HASH>..<HASH> 100644
--- a/bees/rssbee/rssbee.go
+++ b/bees/rssbee/rssbee.go
@@ -26,7 +26,7 @@ package rssbee
import (
"time"
- rss "github.com/jteeuwen/go-pkg-rss"
+ rss "github.com/muesli/go-pkg-rss"
"github.com/muesli/beehive/bees"
) | github.com/jteeuwen/go-pkg-rss is dead, changed import to github.com/muesli/go-pkg-rss | muesli_beehive | train |
9c0c39e7b2f054a030773c952665f4ccd27db6d5 | diff --git a/SweetAlert.js b/SweetAlert.js
index <HASH>..<HASH> 100644
--- a/SweetAlert.js
+++ b/SweetAlert.js
@@ -43,12 +43,22 @@ angular.module('oitozero.ngSweetAlert', [])
swal( title, message, 'warning' );
});
},
- info: function(title, message) {
+ info: function(title, message) {
$rootScop... | add support for showInputError() and close()
* closes #<I>
* expose SweetAlert.showInputError and SweetAlert.close functions (in both cases delegate them to `window.swal`, just like everything else does) | oitozero_ngSweetAlert | train |
06f7dbd0f35d1c02797bb128a60079faaeb82e79 | diff --git a/obdalib/obdalib-core/src/main/java/it/unibz/krdb/obda/model/impl/OBDAVocabulary.java b/obdalib/obdalib-core/src/main/java/it/unibz/krdb/obda/model/impl/OBDAVocabulary.java
index <HASH>..<HASH> 100644
--- a/obdalib/obdalib-core/src/main/java/it/unibz/krdb/obda/model/impl/OBDAVocabulary.java
+++ b/obdalib/ob... | Minor fix on the definition of RDFS Literal predicate. | ontop_ontop | train |
3ae3a44a72d4260281f4f800061608bb9472c2e3 | diff --git a/model-api/bpmn-model/src/main/java/org/camunda/bpm/model/bpmn/instance/MultiInstanceLoopCharacteristics.java b/model-api/bpmn-model/src/main/java/org/camunda/bpm/model/bpmn/instance/MultiInstanceLoopCharacteristics.java
index <HASH>..<HASH> 100644
--- a/model-api/bpmn-model/src/main/java/org/camunda/bpm/mo... | chore(bpmn): add setter and getter to interface
related to #CAM-<I> | camunda_camunda-bpm-platform | train |
4e4fc3b33d7b73fc755416e1bf8dabe26c8ada48 | diff --git a/turbolift/operations/getfilenames.py b/turbolift/operations/getfilenames.py
index <HASH>..<HASH> 100644
--- a/turbolift/operations/getfilenames.py
+++ b/turbolift/operations/getfilenames.py
@@ -41,8 +41,7 @@ class FileNames(object):
os.sep)
for ... | fix for encode error on file indexing
This is an intermittent issue that can happen
when indexing symbolic links and or NON-UTF8
characters. Encoding was removed in the index
method as the files will be properly encoded
upon upload. | cloudnull_turbolift | train |
4940ef276d536656ba2e27ea0c0ed58fa8212114 | diff --git a/src/main/java/com/squareup/pollexor/ThumborUrlBuilder.java b/src/main/java/com/squareup/pollexor/ThumborUrlBuilder.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/squareup/pollexor/ThumborUrlBuilder.java
+++ b/src/main/java/com/squareup/pollexor/ThumborUrlBuilder.java
@@ -30,6 +30,7 @@ public fina... | Implemented filter for image format. | square_pollexor | train |
9d3edd555f3475bdae483d4a4c2efb35e61f67d2 | diff --git a/examples/cam-conf-view-gui.py b/examples/cam-conf-view-gui.py
index <HASH>..<HASH> 100644
--- a/examples/cam-conf-view-gui.py
+++ b/examples/cam-conf-view-gui.py
@@ -18,7 +18,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# another camera config gui, with load/save setting... | cam-conf-view-gui.py clean prints, reorganized main, started adding command line arguments | jim-easterbrook_python-gphoto2 | train |
ddf7cd892d1e339419737b9043508848aea98b9b | diff --git a/src/FakerProvider.php b/src/FakerProvider.php
index <HASH>..<HASH> 100644
--- a/src/FakerProvider.php
+++ b/src/FakerProvider.php
@@ -25,7 +25,7 @@ class FakerProvider extends Lorem
}
if (self::randomDigit() > 3) {
- $parts[] = self::markdownBlockqoute();
+ ... | Update FakerProvider.php | DavidBadura_FakerMarkdownGenerator | train |
83bfbf4d402e696ce22d601431b12182f2d44056 | diff --git a/slither/core/source_mapping/source_mapping.py b/slither/core/source_mapping/source_mapping.py
index <HASH>..<HASH> 100644
--- a/slither/core/source_mapping/source_mapping.py
+++ b/slither/core/source_mapping/source_mapping.py
@@ -1,4 +1,5 @@
import re
+import os
from slither.core.context.context import C... | Improve truffle parsing
Improve source mapping print | crytic_slither | train |
4df592c663cadf9dd576f85222573fb469579a83 | diff --git a/LiSE/proxy.py b/LiSE/proxy.py
index <HASH>..<HASH> 100644
--- a/LiSE/proxy.py
+++ b/LiSE/proxy.py
@@ -414,6 +414,10 @@ class EngineHandle(object):
self._real.character[charn].stat.unlisten(a)
self._real.time_unlisten(b)
+ def listen_to_nodes(self, pairs):
+ for (char, noden) i... | EngineHandle methods for nodes listening
This way you can batch several listen commands. | LogicalDash_LiSE | train |
5102fdeacface96d35687aead5d0e82ccf6de194 | diff --git a/activesupport/lib/active_support/dependencies.rb b/activesupport/lib/active_support/dependencies.rb
index <HASH>..<HASH> 100644
--- a/activesupport/lib/active_support/dependencies.rb
+++ b/activesupport/lib/active_support/dependencies.rb
@@ -275,71 +275,6 @@ module ActiveSupport # :nodoc:
end
e... | Delete AS::Dependencies.remove_constant | rails_rails | train |
cdb9af92edd2d610dc400c8fd5e3f82bb48bc201 | diff --git a/bin/tapestry.php b/bin/tapestry.php
index <HASH>..<HASH> 100644
--- a/bin/tapestry.php
+++ b/bin/tapestry.php
@@ -32,7 +32,13 @@ $tapestry->register(\Tapestry\Providers\CompileStepsServiceProvider::class);
$tapestry->register(\Tapestry\Providers\CommandServiceProvider::class);
$tapestry->register(\Tapest... | :sparkles: Additional non Tapestry service providers can be loaded dynamically from the site configuration | tapestry-cloud_tapestry | train |
0791921c3b1cb97ba869ee1a6129ef5a7ad5fecb | diff --git a/web/static/js/controllers.js b/web/static/js/controllers.js
index <HASH>..<HASH> 100644
--- a/web/static/js/controllers.js
+++ b/web/static/js/controllers.js
@@ -795,25 +795,7 @@ function PoolsControl($scope, $routeParams, $location, $filter, $timeout, resour
$scope.clickRemovePool = function(poolID) ... | refactor removePool so it is not duplicated | control-center_serviced | train |
0ee41ebb6c647fa91df5dd7d678c96953aac90c5 | diff --git a/src/Barryvdh/Debugbar/LaravelDebugBar.php b/src/Barryvdh/Debugbar/LaravelDebugBar.php
index <HASH>..<HASH> 100644
--- a/src/Barryvdh/Debugbar/LaravelDebugBar.php
+++ b/src/Barryvdh/Debugbar/LaravelDebugBar.php
@@ -234,6 +234,15 @@ class LaravelDebugbar extends DebugBar
$renderer->setBaseUrl(asset(... | Move middleware/after to boot() | barryvdh_laravel-debugbar | train |
0be8f48bf89ab49f0bb0b36c42684683ae40d5d4 | diff --git a/src/main/java/eu/hansolo/tilesfx/weather/DarkSky.java b/src/main/java/eu/hansolo/tilesfx/weather/DarkSky.java
index <HASH>..<HASH> 100644
--- a/src/main/java/eu/hansolo/tilesfx/weather/DarkSky.java
+++ b/src/main/java/eu/hansolo/tilesfx/weather/DarkSky.java
@@ -152,6 +152,7 @@ public class DarkSky {
p... | Modifications related to remotely updating the DarkSky object with JSON data | HanSolo_tilesfx | train |
886830d8545b4062957f8291df9c36d9b8405af3 | diff --git a/src/main.js b/src/main.js
index <HASH>..<HASH> 100644
--- a/src/main.js
+++ b/src/main.js
@@ -307,8 +307,7 @@
var splitRegex = /\r\n|\r|\n/g;
// Header row and columns
- var headerRow = new Row();
- headerRow.raw = inputHeaders;
+ var headerRow = new Row(inputHeader... | Fixed raw row not included on the row object | simonbengtsson_jsPDF-AutoTable | train |
698ffd49445bbe260e5be4cd9469895e3c515166 | diff --git a/tests/integration/test.bulk_docs.js b/tests/integration/test.bulk_docs.js
index <HASH>..<HASH> 100644
--- a/tests/integration/test.bulk_docs.js
+++ b/tests/integration/test.bulk_docs.js
@@ -330,6 +330,11 @@ adapters.forEach(function (adapter) {
});
it('bulk docs update then delete then update',... | (#<I>) - Couch master test fixes
* Fix bulk docs tests against CouchDB 2.x
* Fix latest=true tests against CouchDB 2.x
In CouchDB 2.x, the order of results in response when open_revs
is passed as a parameter to GET /doc is not guaranteed. This change
removes any ordering assumption from the test. | pouchdb_pouchdb | train |
614ddb62f596d28196d3701e33cd46021f601cb2 | diff --git a/pyorbital/geoloc_instrument_definitions.py b/pyorbital/geoloc_instrument_definitions.py
index <HASH>..<HASH> 100644
--- a/pyorbital/geoloc_instrument_definitions.py
+++ b/pyorbital/geoloc_instrument_definitions.py
@@ -140,7 +140,8 @@ def avhrr_40_geom(scans_nb):
###########################################... | better presentation to make flake8 happier | pytroll_pyorbital | train |
2a8cdd31ba7f386e00136c037cea75e27b5ec9da | diff --git a/tests/TestCase/View/Helper/FormHelperTest.php b/tests/TestCase/View/Helper/FormHelperTest.php
index <HASH>..<HASH> 100755
--- a/tests/TestCase/View/Helper/FormHelperTest.php
+++ b/tests/TestCase/View/Helper/FormHelperTest.php
@@ -4148,52 +4148,6 @@ class FormHelperTest extends TestCase {
}
/**
- * tes... | Remove tests for methods that no longer exist.
domIdSuffix has been moved to Cake\View\Widget\IdGeneratorTrait. These
tests are now defunct. | cakephp_cakephp | train |
1eda5a09794998edb57091bee9ab0dc32271444b | diff --git a/bundles/org.eclipse.orion.client.javascript/web/tern/plugin/refs.js b/bundles/org.eclipse.orion.client.javascript/web/tern/plugin/refs.js
index <HASH>..<HASH> 100644
--- a/bundles/org.eclipse.orion.client.javascript/web/tern/plugin/refs.js
+++ b/bundles/org.eclipse.orion.client.javascript/web/tern/plugin/r... | Bug <I> - Investigate categories for use in references UI - root NewExpression | eclipse_orion.client | train |
2c0301d48c22df1cf1b7f3446054994fce74e35a | diff --git a/lib/celerity/element.rb b/lib/celerity/element.rb
index <HASH>..<HASH> 100644
--- a/lib/celerity/element.rb
+++ b/lib/celerity/element.rb
@@ -9,7 +9,8 @@ module Celerity
include Container
attr_reader :container
-
+ attr_writer :locator_identifier
+
# HTML 4.01 Transitional DTD
... | Improved the identifier_string for elements located via browser#element_by_xpath and browser#elements_by_xpath to show the xpath string | jarib_celerity | train |
1e802675584612ffc5d49dd4cd6322780569f78a | diff --git a/parser.go b/parser.go
index <HASH>..<HASH> 100644
--- a/parser.go
+++ b/parser.go
@@ -55,11 +55,11 @@ func (p *parser) NextExpression() bool {
return false
}
+ p.first = false
+
if p.ref.Valid() {
return true
}
-
- p.first = false
}
}
@@ -71,8 +71,6 @@ func (p *parser) Error() err... | parser: require \n after parsing integer in kv (#<I>)
Fixes #<I> | pelletier_go-toml | train |
95ddda3f2b54897223327f64102d4bfffc489aff | diff --git a/Branch-SDK/src/io/branch/referral/ServerRequest.java b/Branch-SDK/src/io/branch/referral/ServerRequest.java
index <HASH>..<HASH> 100644
--- a/Branch-SDK/src/io/branch/referral/ServerRequest.java
+++ b/Branch-SDK/src/io/branch/referral/ServerRequest.java
@@ -213,7 +213,7 @@ public abstract class ServerReque... | DEVEX-<I>-Send-GAID-With-V1 | BranchMetrics_android-branch-deep-linking | train |
c4fd60fa119ad951d0122f31d842e1fbe72341a4 | diff --git a/src/Drupal/Pages/AdminFilesPage.php b/src/Drupal/Pages/AdminFilesPage.php
index <HASH>..<HASH> 100644
--- a/src/Drupal/Pages/AdminFilesPage.php
+++ b/src/Drupal/Pages/AdminFilesPage.php
@@ -19,22 +19,41 @@ class AdminFilesPage extends Page
public static $pageTitle = 'Content';
/**
+ * URL/p... | Added selectors for more elements on the admin files page. | ixis_codeception-drupal-pages | train |
e9bf2a26e15ee148286b0c1d7766937a03830f2b | diff --git a/lib/platform/github/index.js b/lib/platform/github/index.js
index <HASH>..<HASH> 100644
--- a/lib/platform/github/index.js
+++ b/lib/platform/github/index.js
@@ -551,8 +551,18 @@ async function getPr(prNo) {
logger.debug('Could not determine commit author');
}
logger.debug(`Com... | fix: check commit message before ignoring web-flow commits (#<I>) | renovatebot_renovate | train |
e5610bde61a0d2ed62c5bf8ccd06b1caf80184a8 | diff --git a/app/models/socializer/circle.rb b/app/models/socializer/circle.rb
index <HASH>..<HASH> 100644
--- a/app/models/socializer/circle.rb
+++ b/app/models/socializer/circle.rb
@@ -47,6 +47,13 @@ module Socializer
ties.create!(contact_id: contact_id)
end
+ # Remove a contact from the circle
+ ... | add some documentation to the remove_contact method | socializer_socializer | train |
7fa7a939dd41fcee7ba3a6e049e0417eed4a8248 | diff --git a/tang/src/main/java/com/microsoft/tang/implementation/java/ConfigurationBuilderImpl.java b/tang/src/main/java/com/microsoft/tang/implementation/java/ConfigurationBuilderImpl.java
index <HASH>..<HASH> 100644
--- a/tang/src/main/java/com/microsoft/tang/implementation/java/ConfigurationBuilderImpl.java
+++ b/t... | Change boundImpls to store ClassNode instead of Class | apache_reef | train |
9e1e17b4d845beec16161c38e1e943ee095f5113 | diff --git a/httpcache4j-core/src/test/java/org/codehaus/httpcache4j/cache/HTTPCacheTest.java b/httpcache4j-core/src/test/java/org/codehaus/httpcache4j/cache/HTTPCacheTest.java
index <HASH>..<HASH> 100644
--- a/httpcache4j-core/src/test/java/org/codehaus/httpcache4j/cache/HTTPCacheTest.java
+++ b/httpcache4j-core/src/t... | - Added Status param to doGet()
git-svn-id: file:///home/projects/httpcache4j/tmp/scm-svn-tmp/trunk@<I> aeef7db8-<I>a-<I>-b<I>-bac<I>ff<I>f6 | httpcache4j_httpcache4j | train |
300faf33f271dc8f174ed39a83f3de60a674f196 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -69,12 +69,12 @@ function ngraphSvg(graph, settings) {
return api;
function dispose() {
- layout.dispose();
- api.off();
- disposed = true;
- listenToGraphEvents(false);
- //listenToDomEvents(f... | Properly releasing DOM events | anvaka_ngraph.svg | train |
462646363c68de417cdc37f6a56e40fde9f3b547 | diff --git a/src/main/java/io/fabric8/maven/docker/util/DockerFileUtil.java b/src/main/java/io/fabric8/maven/docker/util/DockerFileUtil.java
index <HASH>..<HASH> 100644
--- a/src/main/java/io/fabric8/maven/docker/util/DockerFileUtil.java
+++ b/src/main/java/io/fabric8/maven/docker/util/DockerFileUtil.java
@@ -89,7 +89,... | Fix test failure when build under Windows. | fabric8io_docker-maven-plugin | train |
beab36687f698907dbc2d6ae628a7c5f3f74bc64 | diff --git a/pynxc/pynxc.py b/pynxc/pynxc.py
index <HASH>..<HASH> 100755
--- a/pynxc/pynxc.py
+++ b/pynxc/pynxc.py
@@ -202,13 +202,4 @@ def main():
if __name__ == "__main__":
- if len(sys.argv) == 3:
- if sys.argv[1] == "ddd":
- download(sys.argv[2])
-
- if len(sys.argv) < 2: # no args giv... | fixed setup.py, removed unnecessary things from pynxc | xlcteam_pynxc | train |
82985beff0f7bfc230e49dd309caed086c47b710 | diff --git a/core/src/main/java/com/graphhopper/util/InstructionList.java b/core/src/main/java/com/graphhopper/util/InstructionList.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/graphhopper/util/InstructionList.java
+++ b/core/src/main/java/com/graphhopper/util/InstructionList.java
@@ -18,7 +18,6 @@
pa... | GPX: set timestamps default to current date | graphhopper_graphhopper | train |
9cb1cd380a52fa9fe7196a6227dd8134a1b77b59 | diff --git a/classes/phing/tasks/ext/GrowlNotifyTask.php b/classes/phing/tasks/ext/GrowlNotifyTask.php
index <HASH>..<HASH> 100644
--- a/classes/phing/tasks/ext/GrowlNotifyTask.php
+++ b/classes/phing/tasks/ext/GrowlNotifyTask.php
@@ -145,18 +145,10 @@ class GrowlNotifyTask extends Task
* @param bool $sticky (opt... | allow to use sticky option with boolean values as strings | phingofficial_phing | train |
ff22202d5824f6dc6f5d602be5f2e75b9b94aafd | diff --git a/atomic_reactor/plugins/pre_flatpak_create_dockerfile.py b/atomic_reactor/plugins/pre_flatpak_create_dockerfile.py
index <HASH>..<HASH> 100644
--- a/atomic_reactor/plugins/pre_flatpak_create_dockerfile.py
+++ b/atomic_reactor/plugins/pre_flatpak_create_dockerfile.py
@@ -144,7 +144,7 @@ class FlatpakCreateDo... | flatpak_create_dockerfile: Avoid -'s in the version label
The version label will be used for the Koji version - and Koji
versions can't have -'s. Convert - to _. (This is the same thing
that MBS does when converting streams to Koji versions.) | projectatomic_atomic-reactor | train |
11195f52bdf4ba7e07062c68a95e2a79185ca5ed | diff --git a/urwid_datatable/datatable.py b/urwid_datatable/datatable.py
index <HASH>..<HASH> 100644
--- a/urwid_datatable/datatable.py
+++ b/urwid_datatable/datatable.py
@@ -1232,28 +1232,36 @@ class DataTable(urwid.WidgetWrap, MutableSequence):
self.add_header()
- def add_column(self, column):
- ... | Avoid excessive requery on add/remove/set column. | tonycpsu_panwid | train |
3554fc0205929212fda471823c07e60b73f239f3 | diff --git a/tests/test_main.py b/tests/test_main.py
index <HASH>..<HASH> 100644
--- a/tests/test_main.py
+++ b/tests/test_main.py
@@ -22,6 +22,7 @@
import logging
import socket
+from tornado import gen
from tornado.ioloop import IOLoop
import toro
@@ -34,7 +35,6 @@ from cocaine.exceptions import ChokeEvent
fr... | [Tests] As node is not embedded now, storage service is used
to test the framework | cocaine_cocaine-framework-python | train |
9eac5b6bcf3f99c854230a68782af989ff5f9189 | diff --git a/src/module.js b/src/module.js
index <HASH>..<HASH> 100644
--- a/src/module.js
+++ b/src/module.js
@@ -22,3 +22,7 @@ export default {
registrar
};
+
+export { AudioContext };
+
+export { registrar }; | explicitly export AudioContext and registrar | chrisguttandin_standardized-audio-context-mock | train |
e2e345c8028bf0b6fed9c107568fb3f6974a1ed7 | diff --git a/lib/renderer.js b/lib/renderer.js
index <HASH>..<HASH> 100644
--- a/lib/renderer.js
+++ b/lib/renderer.js
@@ -4,16 +4,16 @@ const marked = require('marked');
const { encodeURL, slugize, stripHTML, url_for, isExternalLink } = require('hexo-util');
const MarkedRenderer = marked.Renderer;
const { sep } = r... | refactor: pass 'hexo' object via constructor | hexojs_hexo-renderer-marked | train |
7890dc5e67522f96b6e8282109d63b0174136319 | diff --git a/imgsizer.py b/imgsizer.py
index <HASH>..<HASH> 100755
--- a/imgsizer.py
+++ b/imgsizer.py
@@ -58,9 +58,8 @@ class ImgSizer(object):
if abs_path:
kwargs['v'] = encode_int(int(os.path.getmtime(abs_path)))
- sig = sign.sign(self.sig_key, local_path, add_time=Fals... | ImgSizer uses new signature methods. | mikeboers_Flask-Images | train |
e26e45cae234ff3815d9adc1165d07b257a2480a | diff --git a/fancyimpute/MICE.py b/fancyimpute/MICE.py
index <HASH>..<HASH> 100644
--- a/fancyimpute/MICE.py
+++ b/fancyimpute/MICE.py
@@ -34,7 +34,7 @@ class MICE(Solver):
impute_type='row',
model=BayesianRidgeRegression(lambda_reg=1e-5),
add_ones=True,
- approximate_b... | Changed default to not approximate in MICE | iskandr_fancyimpute | train |
e862e0f931c9a6f1456654a22b36c7af2bece281 | diff --git a/Resources/Private/JavaScript/Host/Components/Headline/index.js b/Resources/Private/JavaScript/Host/Components/Headline/index.js
index <HASH>..<HASH> 100644
--- a/Resources/Private/JavaScript/Host/Components/Headline/index.js
+++ b/Resources/Private/JavaScript/Host/Components/Headline/index.js
@@ -31,7 +31,... | [TASK] Move the AddNode Dialog to the new fallback PropType of the I<I>n Component | neos_neos-ui | train |
1a6cef6580d9000b081490bf01d2b147065ea585 | diff --git a/CImage.php b/CImage.php
index <HASH>..<HASH> 100644
--- a/CImage.php
+++ b/CImage.php
@@ -789,6 +789,37 @@ class CImage
/**
+ * Error message when failing to load somehow corrupt image.
+ *
+ * @return void
+ *
+ */
+ public function failedToLoad()
+ {
+ header... | improving error handling when opening (non)-recoverable images | mosbth_cimage | train |
bbba8da21ffce6a68fb2ab6a7b5256dc4e099e94 | diff --git a/src/main/java/skadistats/clarity/source/InputStreamSource.java b/src/main/java/skadistats/clarity/source/InputStreamSource.java
index <HASH>..<HASH> 100644
--- a/src/main/java/skadistats/clarity/source/InputStreamSource.java
+++ b/src/main/java/skadistats/clarity/source/InputStreamSource.java
@@ -8,6 +8,7 ... | make dummy seeking buffer a little larger | skadistats_clarity | train |
0261b481681790e6199802bf9d84e281f62bba5c | diff --git a/src/Symfony/Component/BrowserKit/Tests/ClientTest.php b/src/Symfony/Component/BrowserKit/Tests/ClientTest.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/BrowserKit/Tests/ClientTest.php
+++ b/src/Symfony/Component/BrowserKit/Tests/ClientTest.php
@@ -624,4 +624,24 @@ class ClientTest extends \PH... | improve BrowserKit test coverage p1
improve BrowserKit test coverage p2
improve BrowserKit test coverage p3
improve BrowserKit test coverage p4
improve BrowserKit test coverage p5 | symfony_symfony | train |
797e3126ac3df6bc99ef48730760b7e6dfbf7c76 | diff --git a/python/jsbeautifier/__init__.py b/python/jsbeautifier/__init__.py
index <HASH>..<HASH> 100644
--- a/python/jsbeautifier/__init__.py
+++ b/python/jsbeautifier/__init__.py
@@ -2153,7 +2153,7 @@ def main():
argv = sys.argv[1:]
try:
- opts, args = getopt.getopt(argv, "s:c:e:o:rdEPjabVkil:xht... | Removed accidentally added -V option | beautify-web_js-beautify | train |
feec4e82781f91b09fe8d80c6f3a60da6e03b701 | diff --git a/pharen.php b/pharen.php
index <HASH>..<HASH> 100755
--- a/pharen.php
+++ b/pharen.php
@@ -1211,11 +1211,13 @@ class UnquoteWrapper{
class SpliceWrapper extends UnquoteWrapper{
public $as_collection = False;
public $exprs;
+ public $children;
public function __construct($wrapped, $as_co... | Make an alias for SpliceWrapper's that is called , this allows other code to manipulate its exprs when they are trying to add or splice into other nodes' children. | Scriptor_pharen | train |
29054186e9502235b3e391f329590849b0366d28 | diff --git a/rapidoid-http-fast/src/main/java/org/rapidoid/http/impl/ReqImpl.java b/rapidoid-http-fast/src/main/java/org/rapidoid/http/impl/ReqImpl.java
index <HASH>..<HASH> 100644
--- a/rapidoid-http-fast/src/main/java/org/rapidoid/http/impl/ReqImpl.java
+++ b/rapidoid-http-fast/src/main/java/org/rapidoid/http/impl/Re... | Optional retrieval of the "Host" header from the request. | rapidoid_rapidoid | train |
77516fba1686925a4c07128e4b9dbf6a55aac6c2 | diff --git a/javers-core/src/main/java/org/javers/common/reflection/ReflectionUtil.java b/javers-core/src/main/java/org/javers/common/reflection/ReflectionUtil.java
index <HASH>..<HASH> 100644
--- a/javers-core/src/main/java/org/javers/common/reflection/ReflectionUtil.java
+++ b/javers-core/src/main/java/org/javers/com... | For WildcardType, use Types of upper bounds (i.e. erase wildcard) | javers_javers | train |
92a9c5cf1c2556ad50ad9af7b5343e5704a1d75f | diff --git a/pretty-swag.js b/pretty-swag.js
index <HASH>..<HASH> 100644
--- a/pretty-swag.js
+++ b/pretty-swag.js
@@ -111,9 +111,11 @@ function computeSchema(schema, def, context) {
if (context.items) {
if (context.items.enum) {
if (context.items.type === "string") {
... | feat: limit inline length to 3 | twskj_pretty-swag | train |
ee6cf28ed66b662a9b317031473ec706e7a5090c | diff --git a/object_tools/sites.py b/object_tools/sites.py
index <HASH>..<HASH> 100644
--- a/object_tools/sites.py
+++ b/object_tools/sites.py
@@ -1,6 +1,5 @@
from django.conf import settings
from django.core.exceptions import ImproperlyConfigured
-import pdb;pdb.set_trace()
try:
from django.apps import apps
... | Get <I> to work. User imports need fixing. | praekelt_django-object-tools | train |
390de6687aa7444ba8725a1c9ed22b7803e61fa4 | diff --git a/Twig/Extension/DataSourceExtension.php b/Twig/Extension/DataSourceExtension.php
index <HASH>..<HASH> 100644
--- a/Twig/Extension/DataSourceExtension.php
+++ b/Twig/Extension/DataSourceExtension.php
@@ -58,8 +58,8 @@ class DataSourceExtension extends \Twig_Extension
{
$fields = array();
... | Changes adopting to the field's view separation from field's instance | fsi-open_datasource-bundle | train |
59711c78fb7519bf6e56ff18bd3232a14cc7db3e | diff --git a/pelix/ipopo/core.py b/pelix/ipopo/core.py
index <HASH>..<HASH> 100644
--- a/pelix/ipopo/core.py
+++ b/pelix/ipopo/core.py
@@ -437,27 +437,27 @@ class _IPopoService(object):
del self.__auto_restart[bundle]
- def _fire_ipopo_event(self, kind, factory_name, component_name=None):
+ d... | iPOPO event listeners are called outside the listeners lock
The list of listeners to call is prepared inside the lock | tcalmant_ipopo | train |
2d1a7761b8fe54f1ee5bc76dcaf4955b978cde5b | diff --git a/standard/src/kg/apc/jmeter/threads/AbstractSimpleThreadGroup.java b/standard/src/kg/apc/jmeter/threads/AbstractSimpleThreadGroup.java
index <HASH>..<HASH> 100644
--- a/standard/src/kg/apc/jmeter/threads/AbstractSimpleThreadGroup.java
+++ b/standard/src/kg/apc/jmeter/threads/AbstractSimpleThreadGroup.java
@... | Make field static and rename it | undera_jmeter-plugins | train |
efd8f7aca25168e9c93a210f66524db51d8e45d9 | diff --git a/vsphere/internal/virtualdevice/virtual_machine_disk_subresource.go b/vsphere/internal/virtualdevice/virtual_machine_disk_subresource.go
index <HASH>..<HASH> 100644
--- a/vsphere/internal/virtualdevice/virtual_machine_disk_subresource.go
+++ b/vsphere/internal/virtualdevice/virtual_machine_disk_subresource.... | r/virtual_machine: Fixed vMotion attached disk error
Was still depending on the name field exclusively. | terraform-providers_terraform-provider-vsphere | train |
12cb16a74cbd9505a512cfe5b986bfd81df861af | diff --git a/pip_accel.py b/pip_accel.py
index <HASH>..<HASH> 100755
--- a/pip_accel.py
+++ b/pip_accel.py
@@ -172,8 +172,10 @@ def download_source_dists(arguments):
def find_binary_dists():
"""
- Find cached binary distributions. Returns a dictionary with (package-name,
- package-version) tuples as keys ... | Cleanup the build_binary_dists() function | paylogic_pip-accel | train |
82c97ea8f416bd99f501608b2aee8b7c4c5e78f5 | diff --git a/smmap/mman.py b/smmap/mman.py
index <HASH>..<HASH> 100644
--- a/smmap/mman.py
+++ b/smmap/mman.py
@@ -136,7 +136,7 @@ class WindowCursor(object):
:note: You can only obtain a buffer if this instance is_valid() !
:note: buffers should not be cached passed the duration of your access as it will
pr... | Some more adjustments to make it work in all python versions | gitpython-developers_smmap | train |
2b9e5aa2763c4fc5803537d8a6f406c814decf13 | diff --git a/lib/runtime.js b/lib/runtime.js
index <HASH>..<HASH> 100644
--- a/lib/runtime.js
+++ b/lib/runtime.js
@@ -38,6 +38,11 @@ Runtime.prototype.where = function(params) {
};
Runtime.prototype.expose = function(query) {
+
+ if(typeof query === 'string' && query === '*') {
+ query = new Query(query);
+ }... | Added a small if clause to wrap just providing a string in a query. | zettajs_zetta | train |
a42edecc2a907c59bbbc7a2130c5cc5b3f78e7dc | diff --git a/code/javascript/core/scripts/selenium-api.js b/code/javascript/core/scripts/selenium-api.js
index <HASH>..<HASH> 100644
--- a/code/javascript/core/scripts/selenium-api.js
+++ b/code/javascript/core/scripts/selenium-api.js
@@ -1101,6 +1101,23 @@ Selenium.prototype.getAllFields = function() {
return this... | doBreak as a function name leads to "break" being used as a Java function name in the generated code, which javac doesn't like. Change the name
r<I> | SeleniumHQ_selenium | train |
ce5d8e711793848de32799f90fc7f190440c7dc8 | diff --git a/gulp/tasks/watch.js b/gulp/tasks/watch.js
index <HASH>..<HASH> 100644
--- a/gulp/tasks/watch.js
+++ b/gulp/tasks/watch.js
@@ -63,4 +63,4 @@ gulp.task("watch-noserve", cb => {
watchTask(cb);
});
-gulp.task("watch", [html, javascript, less, staticContent, watchTask]);
\ No newline at end of file
+gul... | Tasks needs to be named - not referenced :) | Cratis_JavaScript.Pipeline | train |
62fadc30dbe1239b483fa1d586394e59d5d60909 | diff --git a/lib/version.rb b/lib/version.rb
index <HASH>..<HASH> 100755
--- a/lib/version.rb
+++ b/lib/version.rb
@@ -2,5 +2,5 @@
module DangerSwiftlint
VERSION = '0.17.4'
- SWIFTLINT_VERSION = '0.27.0'
+ SWIFTLINT_VERSION = '0.28.1'
end | Update Swiftlint version
Update Swiftlint version to support Swift <I> new opt-in rules | ashfurrow_danger-ruby-swiftlint | train |
e3ee8deaf4605d40e40d74b136308f9066e5244d | diff --git a/plugins/Admin/templates/layout/default.php b/plugins/Admin/templates/layout/default.php
index <HASH>..<HASH> 100644
--- a/plugins/Admin/templates/layout/default.php
+++ b/plugins/Admin/templates/layout/default.php
@@ -92,8 +92,8 @@ echo $this->Html->script('/node_modules/bootstrap-select/dist/js/bootstrap-... | do not use cached ckeditor file | foodcoopshop_foodcoopshop | train |
6fb4d9f11578e58c4d125991df7b76bfcccc8860 | diff --git a/config/dpkg/changelog b/config/dpkg/changelog
index <HASH>..<HASH> 100644
--- a/config/dpkg/changelog
+++ b/config/dpkg/changelog
@@ -2,4 +2,4 @@ python-plaso (1.3.1-1) unstable; urgency=low
* Auto-generated
- -- Log2Timeline <log2timeline-dev@googlegroups.com> Wed, 14 Oct 2015 20:56:57 +0200
+ -- ... | Code review: <I>: Fix for BagMRU not ignored by filter #<I> | log2timeline_plaso | train |
582981c6127c87b94101264ee6c6aabbedef077e | diff --git a/pybaseball/league_batting_stats.py b/pybaseball/league_batting_stats.py
index <HASH>..<HASH> 100644
--- a/pybaseball/league_batting_stats.py
+++ b/pybaseball/league_batting_stats.py
@@ -17,7 +17,9 @@ def get_soup(start_dt: date, end_dt: date) -> BeautifulSoup:
# return None
url = "http://www.b... | forces utf-8 encoding (#<I>) | jldbc_pybaseball | train |
1a22a283cda8dbd24ff9948efb802715a6ab3cf4 | diff --git a/molgenis-data-import/src/main/java/org/molgenis/data/importer/ImportJob.java b/molgenis-data-import/src/main/java/org/molgenis/data/importer/ImportJob.java
index <HASH>..<HASH> 100644
--- a/molgenis-data-import/src/main/java/org/molgenis/data/importer/ImportJob.java
+++ b/molgenis-data-import/src/main/java... | Fix squid:S<I>: Try-catch blocks should not be nested | molgenis_molgenis | train |
a70b65ddddc338f50cf9ababaa38c56e53b50e56 | diff --git a/core/src/main/java/cucumber/runtime/transformers/BooleanTransformer.java b/core/src/main/java/cucumber/runtime/transformers/BooleanTransformer.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/cucumber/runtime/transformers/BooleanTransformer.java
+++ b/core/src/main/java/cucumber/runtime/transforme... | Fixed bug in BooleanTransformer | cucumber_cucumber-jvm | train |
80e0c2e33962d998a5ed837444958a0ace0f811f | diff --git a/.php_cs.php b/.php_cs.php
index <HASH>..<HASH> 100644
--- a/.php_cs.php
+++ b/.php_cs.php
@@ -12,41 +12,44 @@ This file is part of the Active Collab Bootstrap project.
(c) A51 doo <info@activecollab.com>. All rights reserved.
EOF;
-return (new PhpCsFixer\Config('psr2'))->setRules([
- 'header_comment... | Allow risky during PHP CS fixing | activecollab_bootstrap | train |
0f4d232d99a152c6cabfa334d5fd2c0506a9a1f8 | diff --git a/oauth2client/appengine.py b/oauth2client/appengine.py
index <HASH>..<HASH> 100644
--- a/oauth2client/appengine.py
+++ b/oauth2client/appengine.py
@@ -192,7 +192,6 @@ class CredentialsProperty(db.Property):
# For reading from datastore.
def make_value_from_datastore(self, value):
- logging.info("... | Fixes issue #<I>. | googleapis_oauth2client | train |
9cc4a3ca7e2306a59a9ad0c8a837a35d8fc5dfc6 | diff --git a/lib/custom_fields/extensions/mongoid/relations/referenced/many.rb b/lib/custom_fields/extensions/mongoid/relations/referenced/many.rb
index <HASH>..<HASH> 100644
--- a/lib/custom_fields/extensions/mongoid/relations/referenced/many.rb
+++ b/lib/custom_fields/extensions/mongoid/relations/referenced/many.rb
@... | small issue when there were other documents without custom_fields enabled | locomotivecms_custom_fields | train |
a1c8c3fe636673593135d994b8d2fcdc0aba9df2 | diff --git a/packages/react-server/core/renderMiddleware.js b/packages/react-server/core/renderMiddleware.js
index <HASH>..<HASH> 100644
--- a/packages/react-server/core/renderMiddleware.js
+++ b/packages/react-server/core/renderMiddleware.js
@@ -755,6 +755,15 @@ function writeBody(req, res, context, start, page) {
/... | Update react-server to write server side timings/logs to the response
document.
See: <URL> | redfin_react-server | train |
0353f3a33d905f431839e93e28a92b912519aea7 | diff --git a/test/tests.es6.js b/test/tests.es6.js
index <HASH>..<HASH> 100644
--- a/test/tests.es6.js
+++ b/test/tests.es6.js
@@ -209,6 +209,39 @@ describe("try-finally generator", function() {
check(usingRaise(true), [0, 1, 4], 5);
check(usingRaise(false), [0, 1, 6], 7);
});
+
+ it("should execute final... | Add a test of try-finally blocks with uncaught exceptions.
Existing tests of try-finally constructs all had return statements in
their finally blocks, which override any pending exception, so the actual
throwing of uncaught exceptions was not being tested. | facebook_regenerator | train |
cb52f9d31a629e701e9a00f446bb3687a143c143 | diff --git a/Cake/Controller/Scaffold.php b/Cake/Controller/Scaffold.php
index <HASH>..<HASH> 100644
--- a/Cake/Controller/Scaffold.php
+++ b/Cake/Controller/Scaffold.php
@@ -119,7 +119,7 @@ class Scaffold {
$this->redirect = array('action' => 'index');
$this->modelClass = $controller->modelClass;
- $this->mod... | modelKey is only used by scaffold.
Since it only has one user confine it to there. | cakephp_cakephp | train |
3a00171e1eead9601bc1e2e646077b508e9b14bb | diff --git a/src/Address/Address.php b/src/Address/Address.php
index <HASH>..<HASH> 100644
--- a/src/Address/Address.php
+++ b/src/Address/Address.php
@@ -13,6 +13,7 @@ declare(strict_types=1);
namespace SerendipityHQ\Component\ValueObjects\Address;
+use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;... | Add attributes to embeddables. | Aerendir_PHPValueObjects | train |
de188ef9e38e7f589c67a9485b6b008e8e194909 | diff --git a/lang/en_utf8/auth.php b/lang/en_utf8/auth.php
index <HASH>..<HASH> 100644
--- a/lang/en_utf8/auth.php
+++ b/lang/en_utf8/auth.php
@@ -29,7 +29,7 @@ $string['auth_remove_suspend'] ='Suspend internal';
$string['auth_remove_delete'] ='Full delete internal';
// nologin plugin
-$string['auth_nologindescript... | MDL-<I> - lang typo, thanks to Charles Kelly
merged from MOODLE_<I>_STABLE | moodle_moodle | train |
35c99ef24d417445e591d38ca0df48f6615ba302 | diff --git a/denonavr/denonavr.py b/denonavr/denonavr.py
index <HASH>..<HASH> 100644
--- a/denonavr/denonavr.py
+++ b/denonavr/denonavr.py
@@ -519,7 +519,7 @@ class DenonAVR(object):
# Invalid source "SOURCE" needs to be deleted
non_x_sources.pop("SOURCE", None)
# Add AVR-nonX sta... | Netaudio devices for Marantz should be displayed correctly | scarface-4711_denonavr | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.