hash
stringlengths
40
40
diff
stringlengths
131
26.7k
message
stringlengths
7
694
project
stringlengths
5
67
split
stringclasses
1 value
diff_languages
stringlengths
2
24
030985d8ad3c99fd06910ff94af5815d6716cf73
diff --git a/Minimal-J/src/main/java/org/minimalj/util/DateUtils.java b/Minimal-J/src/main/java/org/minimalj/util/DateUtils.java index <HASH>..<HASH> 100644 --- a/Minimal-J/src/main/java/org/minimalj/util/DateUtils.java +++ b/Minimal-J/src/main/java/org/minimalj/util/DateUtils.java @@ -1,6 +1,5 @@ package org.minimalj...
DateUtils: removed dead constant
BrunoEberhard_minimal-j
train
java
d8770a5d16ca657a1b0af3f414b36168b8786b17
diff --git a/falafel/mappers/ntp_conf.py b/falafel/mappers/ntp_conf.py index <HASH>..<HASH> 100644 --- a/falafel/mappers/ntp_conf.py +++ b/falafel/mappers/ntp_conf.py @@ -20,8 +20,8 @@ class NTP_conf(Mapper): def parse_content(self, content): config = {} + # get_active_lines strips content ...
'value' doesn't need to be declared
RedHatInsights_insights-core
train
py
2b4b7f9485608cf760b8c078a6b948a45567fea0
diff --git a/myfitnesspal/client.py b/myfitnesspal/client.py index <HASH>..<HASH> 100644 --- a/myfitnesspal/client.py +++ b/myfitnesspal/client.py @@ -578,6 +578,9 @@ class Client(MFPBase): # gather the IDs for all measurement types measurement_ids = self._get_measurement_ids(document) + # ge...
Included PR#<I> fixed measurement saving #<I>
coddingtonbear_python-myfitnesspal
train
py
5b14cbc32fe681cb38b50ca9b5e5b82694d4e556
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,6 @@ requires = [ 'sqlalchemy', 'Flask-SQLAlchemy', 'Flask-Script==0.5.3', - 'Flask-Alembic', ] if sys.version_info[0:2] < (2, 7): @@ -59,7 +58,4 @@ setup(name='coaster', zip_safe=True,...
Don't depend on Flask-Alembic here.
hasgeek_coaster
train
py
6a433ee5ba375e6f33fba4d17f8198ff9b7647f0
diff --git a/test/e2e/storage/drivers/in_tree.go b/test/e2e/storage/drivers/in_tree.go index <HASH>..<HASH> 100644 --- a/test/e2e/storage/drivers/in_tree.go +++ b/test/e2e/storage/drivers/in_tree.go @@ -988,6 +988,7 @@ func InitCinderDriver() testsuites.TestDriver { testsuites.CapPersistence: true, testsuites...
Enable block tests for Cinder Cinder volume plugin has implemented block mode a long while ago.
kubernetes_kubernetes
train
go
540b6599a8083d3c63138fb5999cac70450bddff
diff --git a/wandb/summary.py b/wandb/summary.py index <HASH>..<HASH> 100644 --- a/wandb/summary.py +++ b/wandb/summary.py @@ -354,7 +354,8 @@ class FileSummary(Summary): def load(self): try: - self._json_dict = json.load(open(self._fname)) + with open(self._fname) as f: + ...
Fix ResourceWarning (#<I>)
wandb_client
train
py
ec32df43ec21f9d6b65d88adebbd96aff5ea97a0
diff --git a/lib/stanza/pubsub.js b/lib/stanza/pubsub.js index <HASH>..<HASH> 100644 --- a/lib/stanza/pubsub.js +++ b/lib/stanza/pubsub.js @@ -174,6 +174,7 @@ module.exports = function (stanza) { stanza.withDataForm(function (DataForm) { stanza.extend(SubscriptionOptions, DataForm); + stanza.extend(Item...
Support for data form payload in published items As required by FDP (XEP-<I>)
legastero_stanza.io
train
js
5a716e99258341b56f51bb97e345da6e62205c41
diff --git a/superset/viz.py b/superset/viz.py index <HASH>..<HASH> 100644 --- a/superset/viz.py +++ b/superset/viz.py @@ -721,14 +721,13 @@ class WordCloudViz(BaseViz): def query_obj(self): d = super(WordCloudViz, self).query_obj() - - d['metrics'] = [self.form_data.get('metric')] d['gr...
[bugfix] get word_cloud to support complex metrics (#<I>)
apache_incubator-superset
train
py
34e7355c58dc1c89f5f490623f73028eb7d30980
diff --git a/framework/core/migrations/2018_01_11_095000_change_api_keys_b8_columns.php b/framework/core/migrations/2018_01_11_095000_change_api_keys_b8_columns.php index <HASH>..<HASH> 100644 --- a/framework/core/migrations/2018_01_11_095000_change_api_keys_b8_columns.php +++ b/framework/core/migrations/2018_01_11_095...
fixed another foreign key drop with incorrect name
flarum_core
train
php
5ad0bb82f177aed7f2fb909d5a0c6c5b078f36c9
diff --git a/lib/form/button.php b/lib/form/button.php index <HASH>..<HASH> 100644 --- a/lib/form/button.php +++ b/lib/form/button.php @@ -27,6 +27,7 @@ require_once("HTML/QuickForm/button.php"); require_once(__DIR__ . '/../outputcomponents.php'); +require_once('templatable_form_element.php'); /** * HTML class...
MDL-<I> forms: Added missing include for button element.
moodle_moodle
train
php
099b9b3bea54d3177850a178a96e87df3f4f3cc1
diff --git a/timepiece/migrations/0035_billable_to_develop.py b/timepiece/migrations/0035_billable_to_develop.py index <HASH>..<HASH> 100644 --- a/timepiece/migrations/0035_billable_to_develop.py +++ b/timepiece/migrations/0035_billable_to_develop.py @@ -7,6 +7,7 @@ from django.db import models class Migration(DataMig...
updated data migration so that all other activities are non-billable --HG-- branch : feature/billable
caktus_django-timepiece
train
py,py
ec6e7d963baa72aec959cc4c62e74ee6a6204662
diff --git a/website/src/data/config.js b/website/src/data/config.js index <HASH>..<HASH> 100644 --- a/website/src/data/config.js +++ b/website/src/data/config.js @@ -1,9 +1,9 @@ export default { // local - // nivoApiUrl: 'http://localhost:3030', + // nivoApiUrl: 'http://localhost:3030/nivo', // storyb...
feat(website): update the API url to match the new path
plouc_nivo
train
js
d667827a14b14e10c28e00ddf5f7ab40eee59a38
diff --git a/bosh_cli/lib/cli/versions_index.rb b/bosh_cli/lib/cli/versions_index.rb index <HASH>..<HASH> 100644 --- a/bosh_cli/lib/cli/versions_index.rb +++ b/bosh_cli/lib/cli/versions_index.rb @@ -69,7 +69,7 @@ module Bosh::Cli end @data["builds"].each_pair do |fp, build| - if version_cmp(build...
WIP: Improve version comparisons for fingerprint versions
cloudfoundry_bosh
train
rb
8dfd2789402b73fc0c5960e810254b084fecc3aa
diff --git a/src/Entities/Payment.php b/src/Entities/Payment.php index <HASH>..<HASH> 100644 --- a/src/Entities/Payment.php +++ b/src/Entities/Payment.php @@ -63,6 +63,7 @@ final class Payment extends Entity } /** + * @deprecated * @return string */ public function getState() @@ -73,6 +...
payment resource update: add status and result getters, and mark state as deprecated
Rebilly_rebilly-php
train
php
8a6af16f29740f5513f22e4eae937f0b240565ab
diff --git a/lib/puppet/util/monkey_patches.rb b/lib/puppet/util/monkey_patches.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/util/monkey_patches.rb +++ b/lib/puppet/util/monkey_patches.rb @@ -2,8 +2,12 @@ require 'puppet/util' module Puppet::Util::MonkeyPatches end -unless defined? JRUBY_VERSION +begin Proces...
Recover better when `maxgroups` is not implemented. Puppet tries to bump up the maximum number of supplementary groups for the process, which works only on Unix-like platform, in C-like implementations of Ruby. Previously there was a blacklist of platforms where this didn't work, which means that as new platforms com...
puppetlabs_puppet
train
rb
a590811a8b9c78a8d937451c2814e8ab4bbbdec5
diff --git a/project/library/CM/Wowza.php b/project/library/CM/Wowza.php index <HASH>..<HASH> 100644 --- a/project/library/CM/Wowza.php +++ b/project/library/CM/Wowza.php @@ -8,7 +8,7 @@ class CM_Wowza extends CM_Class_Abstract { * @return string */ public function fetchStatus() { - return CM_Util::getContents...
t<I>: minor refactoring and doc
cargomedia_cm
train
php
4bb404085113b92221da84c37dac3cd7d6f7ec69
diff --git a/lib/Cake/Model/Model.php b/lib/Cake/Model/Model.php index <HASH>..<HASH> 100644 --- a/lib/Cake/Model/Model.php +++ b/lib/Cake/Model/Model.php @@ -2589,6 +2589,10 @@ class Model extends Object { protected function _findCount($state, $query, $results = array()) { if ($state === 'before') { $db = $th...
Check method existence before calling. Datasource does not implemente calculate() or expression(). Only call them if they exist. Fixes #<I>
cakephp_cakephp
train
php
47a2ebe7a282ef96c23575c7661ed239f1369376
diff --git a/lib/related/version.rb b/lib/related/version.rb index <HASH>..<HASH> 100644 --- a/lib/related/version.rb +++ b/lib/related/version.rb @@ -1,3 +1,3 @@ module Related - Version = VERSION = '0.6.3' + Version = VERSION = '0.6.4' end \ No newline at end of file
Updated version to <I>.
niho_related
train
rb
2271a419404504b570d4d7dbe818629bbb659934
diff --git a/lib/vagrant/actions/vm/boot.rb b/lib/vagrant/actions/vm/boot.rb index <HASH>..<HASH> 100644 --- a/lib/vagrant/actions/vm/boot.rb +++ b/lib/vagrant/actions/vm/boot.rb @@ -21,7 +21,7 @@ module Vagrant def boot logger.info "Booting VM..." - @runner.vm.start(:headless, true) + ...
Boot uses new VM#start method which only takes 1 arg
hashicorp_vagrant
train
rb,rb
7c708107dfde760cbe886766c20410506292f7bf
diff --git a/lib/dispatcher.php b/lib/dispatcher.php index <HASH>..<HASH> 100644 --- a/lib/dispatcher.php +++ b/lib/dispatcher.php @@ -162,7 +162,7 @@ class Dispatcher // We register the dispatcher's autoloader spl_autoload_register(array($this, 'autoload')); - $runner = new \Atlatl\Core($this->prefix, $server...
Adapted code to reorganised atlatl.
Etenil_assegai
train
php,php
6c93778a64a24e4d2abe10eefed91dafd5ddb45b
diff --git a/models/classes/runner/config/QtiRunnerConfig.php b/models/classes/runner/config/QtiRunnerConfig.php index <HASH>..<HASH> 100644 --- a/models/classes/runner/config/QtiRunnerConfig.php +++ b/models/classes/runner/config/QtiRunnerConfig.php @@ -159,7 +159,7 @@ class QtiRunnerConfig extends ConfigurableService...
Refactoring: put categories retrieval in an overridable method.
oat-sa_extension-tao-testqti
train
php
7dd546a667ad1459baba591ce3c6c4fb1125ad16
diff --git a/multiqc/modules/hops/hops.py b/multiqc/modules/hops/hops.py index <HASH>..<HASH> 100644 --- a/multiqc/modules/hops/hops.py +++ b/multiqc/modules/hops/hops.py @@ -75,7 +75,7 @@ class MultiqcModule(BaseMultiqcModule): # As all samples always have same taxa, will take from the first sample t...
HOPS: Nicer taxa names
ewels_MultiQC
train
py
b6dea1c1b2c23030466bfe72a668437e69f3252b
diff --git a/js/bootstrap-select.js b/js/bootstrap-select.js index <HASH>..<HASH> 100644 --- a/js/bootstrap-select.js +++ b/js/bootstrap-select.js @@ -402,7 +402,7 @@ var that = this, _li = [], optID = 0, - titleOption = '<option class="bs-title-option" value="" selected></option>'...
fix single select title functionality. improve speed Don't select the blank title option of the select if there is already an option that has the "selected" attribute. Previously, if a single select had a title, it would override the option with the "selected" attribute and select the blank title option. Also, slight...
snapappointments_bootstrap-select
train
js
ca4debd92ee0789a42117e70c770b9a25bd20357
diff --git a/src/types.js b/src/types.js index <HASH>..<HASH> 100644 --- a/src/types.js +++ b/src/types.js @@ -3,7 +3,7 @@ var ecurve = require('ecurve') var typeforce = require('typeforce') function nBuffer (value, n) { - if (!Buffer.isBuffer(value)) return false + typeforce(types.Buffer, value) if (value.len...
types: Expected Buffer, length to follow
BitGo_bitgo-utxo-lib
train
js
95dfcc4f3c4bda74efe220e6dd5a11f58f29a501
diff --git a/activesupport/lib/active_support/core_ext/try.rb b/activesupport/lib/active_support/core_ext/try.rb index <HASH>..<HASH> 100644 --- a/activesupport/lib/active_support/core_ext/try.rb +++ b/activesupport/lib/active_support/core_ext/try.rb @@ -25,6 +25,7 @@ class Object def try(method, *args, &block) ...
Remove dummy Object#try before aliasing it
rails_rails
train
rb
201c9b6006478ea20e07423f52599d4d54e48f94
diff --git a/qtawesome/iconic_font.py b/qtawesome/iconic_font.py index <HASH>..<HASH> 100644 --- a/qtawesome/iconic_font.py +++ b/qtawesome/iconic_font.py @@ -234,7 +234,15 @@ class IconicFont(QObject): def hook(obj): result = {} for key in obj: - result[key] = unichr(i...
Ignore unsupported character code on Python <I> <I>bit
spyder-ide_qtawesome
train
py
1f0f6d0ac626507b4f51e8cdfc77113567114f6c
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,7 @@ from setuptools import setup, find_packages +from distutils.core import setup +from distutils.extension import Extension +from Cython.Distutils import build_ext try: # this import fixes strange issues wit...
[FIX] fixed missing dependency on sklearn in setup.py
PyProphet_pyprophet
train
py
f0c5335ca639c336a028db78efdab27931657e63
diff --git a/tests/integration/misc.js b/tests/integration/misc.js index <HASH>..<HASH> 100644 --- a/tests/integration/misc.js +++ b/tests/integration/misc.js @@ -833,7 +833,7 @@ module.exports = function (session) { return A.query(session.knex) .eagerAlgorithm(Model.JoinEagerAlgorithm) .eager(...
remove ES<I> code from a test
Vincit_objection.js
train
js
418190d55c19b19bd2f1153a4367f04263557aee
diff --git a/activesupport/lib/active_support/core_ext/hash/conversions.rb b/activesupport/lib/active_support/core_ext/hash/conversions.rb index <HASH>..<HASH> 100644 --- a/activesupport/lib/active_support/core_ext/hash/conversions.rb +++ b/activesupport/lib/active_support/core_ext/hash/conversions.rb @@ -114,10 +114,7...
Refactor inject use in hash conversions.
rails_rails
train
rb
34b4ea286897e428c16765ffab7da47c16505805
diff --git a/lib/turn/reporter.rb b/lib/turn/reporter.rb index <HASH>..<HASH> 100644 --- a/lib/turn/reporter.rb +++ b/lib/turn/reporter.rb @@ -119,7 +119,7 @@ module Turn # def ticktock t = Time.now - @time - h, t = t.divmod(60) + h, t = t.divmod(360) m, t = t.divmod(60) s = t.t...
Fixing time output format Fixed output where minutes appeared in the hours slot, leaving minutes to be zero all the time.
turn-project_turn
train
rb
345f2f9ce7bf935b07fc34a42c40945c23582207
diff --git a/glassdoor/gd.py b/glassdoor/gd.py index <HASH>..<HASH> 100644 --- a/glassdoor/gd.py +++ b/glassdoor/gd.py @@ -33,7 +33,7 @@ def parse_satisfaction(soup): if _soups: _soup = _soups[0] _data['reviews'] = tryelse(lambda: intify(soup.findAll('span', {'itemprop': 'reviewCount'})[0].text),...
fixed bug, extra comma
hackerlist_glassdoor
train
py
80d7ddb12a82a303599ed6b0425caf1cc1a51526
diff --git a/javascript/webdriver/testing/asserts.js b/javascript/webdriver/testing/asserts.js index <HASH>..<HASH> 100644 --- a/javascript/webdriver/testing/asserts.js +++ b/javascript/webdriver/testing/asserts.js @@ -195,7 +195,7 @@ webdriver.testing.asserts.not = function(matcher) { */ webdriver.testing.asserts.e...
JasonLeyba: Oops, missed a variable rename in r<I>. r<I>
SeleniumHQ_selenium
train
js
e978f14bf79f7e037bbcd0d69ed4c461210131b9
diff --git a/fireplace/managers.py b/fireplace/managers.py index <HASH>..<HASH> 100644 --- a/fireplace/managers.py +++ b/fireplace/managers.py @@ -31,9 +31,16 @@ class GameManager(Manager): GameTag.TURN: "turn", } + def __init__(self, *args): + super().__init__(*args) + self.id = 1 + self.counter = self.id + ...
Add a counter to keep track of entity IDs
jleclanche_fireplace
train
py
f4e1f3b834b6f5fe3e5b1ade5149b49b25a05171
diff --git a/src/main/java/com/ecwid/consul/v1/agent/AgentConsulClient.java b/src/main/java/com/ecwid/consul/v1/agent/AgentConsulClient.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/ecwid/consul/v1/agent/AgentConsulClient.java +++ b/src/main/java/com/ecwid/consul/v1/agent/AgentConsulClient.java @@ -172,7 +17...
fixed check/deregister request method error
Ecwid_consul-api
train
java
d3934a4ffe537293526659457b52474fa05e457d
diff --git a/mod/glossary/index.php b/mod/glossary/index.php index <HASH>..<HASH> 100644 --- a/mod/glossary/index.php +++ b/mod/glossary/index.php @@ -60,16 +60,16 @@ $table = new html_table(); if ($usesections) { $strsectionname = get_string('sectionname', 'format_'.$course->format); $table->head = array (...
MDL-<I> mod_glossary: fix RTL alignment of table Tablelib has a specific 'hook' to allow alignment to be corrected for RTL languages, but needs to be specified direction in lowercase.
moodle_moodle
train
php
8c2b7de9c7dcf1f25fa4bf3f2b334994cf3e453f
diff --git a/dramatiq/brokers/__init__.py b/dramatiq/brokers/__init__.py index <HASH>..<HASH> 100644 --- a/dramatiq/brokers/__init__.py +++ b/dramatiq/brokers/__init__.py @@ -1,2 +1,11 @@ -from .rabbitmq import RabbitmqBroker # noqa +import warnings + from .stub import StubBroker # noqa + +try: + from .rabbitmq i...
refactor: fail gracefully if rabbitmq support isn't vailable
Bogdanp_dramatiq
train
py
6a17514509db3090729af1d45b98ed4028f07959
diff --git a/lib/communist/server.rb b/lib/communist/server.rb index <HASH>..<HASH> 100644 --- a/lib/communist/server.rb +++ b/lib/communist/server.rb @@ -67,7 +67,6 @@ module Communist @server_thread = Thread.new do Communist.run_default_server(Identify.new(app), port) do |server| Comm...
Remvoe trapping of init signals.
piotrmurach_communist
train
rb
113b5e7f134187526a8e9556ef25a4998b8a2ef2
diff --git a/ConnectionManager/Extra/Multiple/ConnectionManagerSelective.php b/ConnectionManager/Extra/Multiple/ConnectionManagerSelective.php index <HASH>..<HASH> 100644 --- a/ConnectionManager/Extra/Multiple/ConnectionManagerSelective.php +++ b/ConnectionManager/Extra/Multiple/ConnectionManagerSelective.php @@ -31,12...
Add entry IDs and removeConnectionManagerEntry($id)
clue_reactphp-connection-manager-extra
train
php
62e88d0236209c1c5e884dfc687571c75fe24fc4
diff --git a/packages/csv-parse/samples/recipe.file.js b/packages/csv-parse/samples/recipe.file.js index <HASH>..<HASH> 100644 --- a/packages/csv-parse/samples/recipe.file.js +++ b/packages/csv-parse/samples/recipe.file.js @@ -1,6 +1,6 @@ import assert from 'assert'; -import fs from 'fs/promises'; +import {promises ...
docs(csv-parse): file sample compatible with node <I>
adaltas_node-csv
train
js,js
6cb39fa0df6e62e45a2e4bc632dd37e698f16fe4
diff --git a/SECEdgar/tests/test_client.py b/SECEdgar/tests/test_client.py index <HASH>..<HASH> 100644 --- a/SECEdgar/tests/test_client.py +++ b/SECEdgar/tests/test_client.py @@ -15,7 +15,7 @@ def datapath(*args): """Get the path to a data file. Returns: - path including ``SECEdgar/tests``. + ...
DOC: Fix docstring for datapath
coyo8_sec-edgar
train
py
c68a64abd36f4c0bd040cb8c68a83f6897518376
diff --git a/test/dummy/config/routes.rb b/test/dummy/config/routes.rb index <HASH>..<HASH> 100644 --- a/test/dummy/config/routes.rb +++ b/test/dummy/config/routes.rb @@ -54,5 +54,5 @@ Dummy::Application.routes.draw do # This is a legacy wild controller route that's not recommended for RESTful applications. # N...
Add POST to routes for dummy rails app. * Controller tests don't test routing, just the action name. A separate routing spec/test would be needed for the HTTP verb checking. * Closes #<I>.
assaf_vanity
train
rb
61dae94a8f06b230908c6ef371aba2fa857cb5f2
diff --git a/public/js/editors/panel.js b/public/js/editors/panel.js index <HASH>..<HASH> 100644 --- a/public/js/editors/panel.js +++ b/public/js/editors/panel.js @@ -583,7 +583,9 @@ function populateEditor(editor, panel) { editor.setCode(template[panel]); } - editor.editor.clearHistory(); + if (edi...
fix: JS error in mobile view
jsbin_jsbin
train
js
ea03e918aea0b64aad2e3ff2b96a7b401338fab7
diff --git a/MEA_package/ProgramFiles/regression_tests.py b/MEA_package/ProgramFiles/regression_tests.py index <HASH>..<HASH> 100755 --- a/MEA_package/ProgramFiles/regression_tests.py +++ b/MEA_package/ProgramFiles/regression_tests.py @@ -267,7 +267,7 @@ def main(): for i, test in enumerate(tests_to_run): ...
added the runtime to regression tests standard printing
theosysbio_means
train
py
4a5a9f3a7563c5d75381ca771e8c40a621a75ef6
diff --git a/library/CM/Generator/Cli.php b/library/CM/Generator/Cli.php index <HASH>..<HASH> 100644 --- a/library/CM/Generator/Cli.php +++ b/library/CM/Generator/Cli.php @@ -35,7 +35,7 @@ class CM_Generator_Cli extends CM_Cli_Runnable_Abstract { } public function createJavascriptFiles() { - $viewClasses = CM_Vi...
Consider abstract classes when creating JS files
cargomedia_cm
train
php
31231de7abc1056edd58a816ff4d6f9f91371222
diff --git a/resources/views/receipt.blade.php b/resources/views/receipt.blade.php index <HASH>..<HASH> 100644 --- a/resources/views/receipt.blade.php +++ b/resources/views/receipt.blade.php @@ -300,7 +300,7 @@ </tr> <!-- Applied Balance --> - @if ($invoice...
Update receipt.blade.php (#<I>)
laravel_cashier
train
php
93a702c6fea4dd5a821e3fe1825aabb9a7d3db2c
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -3,6 +3,14 @@ __author__ = 'kulakov.ilya@gmail.com' from setuptools import setup +from sys import platform + + +REQUIREMENTS = [] + + +if platform.startswith('darwin'): + REQUIREMENTS.append('pyobjc == 2.3') setup(...
Ensure requirement of PyObjC is enabled only on darwin.
Kentzo_Power
train
py
fce336984c9b922259c3f55ee69303bd845ae44b
diff --git a/Grid/Mapping/Metadata/Manager.php b/Grid/Mapping/Metadata/Manager.php index <HASH>..<HASH> 100644 --- a/Grid/Mapping/Metadata/Manager.php +++ b/Grid/Mapping/Metadata/Manager.php @@ -76,7 +76,7 @@ class Manager $fieldsMetadata[] = $driver->getFieldsMetadata($className, $group); $gr...
generate exception if no metadata found from all drivers
APY_APYDataGridBundle
train
php
d866744a1c51fd3bf1efe07c7831a221504836b4
diff --git a/dodotable/schema.py b/dodotable/schema.py index <HASH>..<HASH> 100644 --- a/dodotable/schema.py +++ b/dodotable/schema.py @@ -250,7 +250,7 @@ class Pager(Schema, Renderable): @property def pages(self): page_count = int(math.ceil(self.count / float(self.limit))) - current_page_coun...
Fix pager by making page.number and page.offset not to be float.
spoqa_dodotable
train
py
8473ffbae52d38041888df61688bb0354783b3c1
diff --git a/php/commands/term.php b/php/commands/term.php index <HASH>..<HASH> 100644 --- a/php/commands/term.php +++ b/php/commands/term.php @@ -320,6 +320,32 @@ class Term_Command extends WP_CLI_Command { $notify->finish(); } + /** + * Get term url + * + * ## OPTIONS + * + * <taxonomy> + * : Taxonomy o...
Sneak in `wp term url`, which I need for testing
wp-cli_export-command
train
php
16f1224f02abaed0608061592b7e28e032dd1f12
diff --git a/library/Rediska/Serializer/Adapter/Json.php b/library/Rediska/Serializer/Adapter/Json.php index <HASH>..<HASH> 100644 --- a/library/Rediska/Serializer/Adapter/Json.php +++ b/library/Rediska/Serializer/Adapter/Json.php @@ -93,6 +93,6 @@ class Rediska_Serializer_Adapter_Json extends Rediska_Options implement...
Fixing issue with Rediska_Serializer_Adapter_Json::unserialize method not return unserialized value
shumkov_rediska
train
php
1e5c3acf2eaf573d98bddfa48143f25ed222d5f9
diff --git a/dist/hermes.js b/dist/hermes.js index <HASH>..<HASH> 100644 --- a/dist/hermes.js +++ b/dist/hermes.js @@ -943,7 +943,7 @@ module.exports = boot; * * If you are using browserify, you may want to call this function at some point... * - * ``` + * ```javascript * var hermes = require('hermes-slider'); ...
+ added missing language annotation in codeblock (Github Markdown)
mchalapuk_hyper-text-slider
train
js,md,js
2d66387ffab17052890f5c85cb3a1d438fff2656
diff --git a/lib/commands/build.js b/lib/commands/build.js index <HASH>..<HASH> 100644 --- a/lib/commands/build.js +++ b/lib/commands/build.js @@ -102,7 +102,7 @@ module.exports = Command.extend({ outputPath: options.cordovaOutputPath }); - var cordovaOpts = parseCordovaOpts(platform, platform); + v...
fix(build-command): pass options to cordova opt parser
isleofcode_ember-cordova
train
js
ce9ac8ea101610f35b039ca14fcd663fa3a5dae4
diff --git a/core/dbt/events/functions.py b/core/dbt/events/functions.py index <HASH>..<HASH> 100644 --- a/core/dbt/events/functions.py +++ b/core/dbt/events/functions.py @@ -82,7 +82,12 @@ def setup_event_logger(log_path, level_override=None): file_passthrough_formatter = logging.Formatter(fmt=FORMAT) - fi...
Rollover + backup for dbt.log (#<I>)
fishtown-analytics_dbt
train
py
75af8a7882fdda577ea3d9c815597da845efa605
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ except (IOError, ImportError, RuntimeError): long_description = 'Tools for manipulating and parsing vcf files' setup(name='vcftoolbox', - version='1.2.2', + version='1.3', description='Tools f...
Bumped version to <I>. fix #4
moonso_vcftoolbox
train
py
1ba76cc91e8d0f42663394254e1ccf6d16fe89c4
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index <HASH>..<HASH> 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,6 +1,7 @@ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) -require 'coveralls' require 'pp' +require "codeclimate-test-reporter" +CodeClimate::TestReporter.start d...
Updated spec helper to use codeclimate
seanedwards_cfer
train
rb
62786648407e3c6e8fed4631d8f825cffe4ef04a
diff --git a/src/Nayjest/Grids/Components/TotalsRow.php b/src/Nayjest/Grids/Components/TotalsRow.php index <HASH>..<HASH> 100644 --- a/src/Nayjest/Grids/Components/TotalsRow.php +++ b/src/Nayjest/Grids/Components/TotalsRow.php @@ -85,7 +85,10 @@ class TotalsRow extends ArrayDataRow implements IRenderableComponent ...
totals row: avg operation, rounding values
Nayjest_Grids
train
php
bfbb9201c4c59f8398cfcde452c89fdf6a2e8d49
diff --git a/builtin/providers/google/resource_compute_instance.go b/builtin/providers/google/resource_compute_instance.go index <HASH>..<HASH> 100644 --- a/builtin/providers/google/resource_compute_instance.go +++ b/builtin/providers/google/resource_compute_instance.go @@ -321,6 +321,9 @@ func resourceComputeInstanceR...
providers/google: partial updates with compute_instance
hashicorp_terraform
train
go
7850494851936ef764f80f2aaf0aa8f78094d84f
diff --git a/demosys/core/finders.py b/demosys/core/finders.py index <HASH>..<HASH> 100644 --- a/demosys/core/finders.py +++ b/demosys/core/finders.py @@ -17,8 +17,8 @@ class BaseFileSystemFinder: def __init__(self): if not hasattr(settings, self.settings_attr): raise ImproperlyConfigured( - ...
Bug: Base finder reports hardcoded name
Contraz_demosys-py
train
py
1bba920c6937c181bcf986efa6e22d7db89f24b1
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -38,17 +38,17 @@ master_doc = 'index' # General information about the project. project = u'django-authority' -copyright = u'2009, Jannis Leidel' +copyright = u'2009, The django-authority team' # The vers...
Docs: Updated to version <I>. Removed Jannis from the copyright line.
jazzband_django-authority
train
py
d1f64ea79332fdff062a04e4d900307c6ed8e09c
diff --git a/soccer/leagueids.py b/soccer/leagueids.py index <HASH>..<HASH> 100644 --- a/soccer/leagueids.py +++ b/soccer/leagueids.py @@ -1,15 +1,15 @@ LEAGUE_IDS = { - "BL": 394, - "BL2": 395, - "BL3": 403, - "FL": 396, - "FL2": 397, - "EPL": 398, - "EL1": 425, - "LLIGA": 399, - "SD": 400,...
Update leagueids.py updated ids to <I> season
architv_soccer-cli
train
py
802b32e0ec27636f3e60f83a8157a62d364f334e
diff --git a/version.go b/version.go index <HASH>..<HASH> 100644 --- a/version.go +++ b/version.go @@ -19,4 +19,4 @@ package grpc // Version is the current grpc version. -const Version = "1.49.0-dev" +const Version = "1.50.0-dev"
Change version to <I>-dev (#<I>)
grpc_grpc-go
train
go
e59ba671de236d98a812894dd4d215bc04753fbd
diff --git a/core/common/src/main/java/alluxio/AbstractClient.java b/core/common/src/main/java/alluxio/AbstractClient.java index <HASH>..<HASH> 100644 --- a/core/common/src/main/java/alluxio/AbstractClient.java +++ b/core/common/src/main/java/alluxio/AbstractClient.java @@ -414,8 +414,8 @@ public abstract class Abstrac...
Fix behavior change Rectifies the behavior change that was introduced [here](<URL>
Alluxio_alluxio
train
java
97a8d900f67217dfcbad63fa77d8475a90486946
diff --git a/plugins/CoreAdminHome/Tasks.php b/plugins/CoreAdminHome/Tasks.php index <HASH>..<HASH> 100644 --- a/plugins/CoreAdminHome/Tasks.php +++ b/plugins/CoreAdminHome/Tasks.php @@ -277,6 +277,12 @@ class Tasks extends \Piwik\Plugin\Tasks if (empty($purgedDates[$yesterdayStr])) { $this->archi...
Purge from year table as well. (#<I>)
matomo-org_matomo
train
php
f63586b84619776a47d9243deaacc7362f1b04dd
diff --git a/lib/haml/util.rb b/lib/haml/util.rb index <HASH>..<HASH> 100644 --- a/lib/haml/util.rb +++ b/lib/haml/util.rb @@ -3,8 +3,7 @@ require 'set' require 'enumerator' require 'stringio' require 'haml/root' - -require 'haml/util/subset_heap' +require 'haml/util/subset_map' module Haml # A module containi...
[Sass] Require subset_map, not subset_heap.
sass_ruby-sass
train
rb
0551f451d080f113f7862f3e7d2b631ad42cebcd
diff --git a/Tone/core/Buffer.js b/Tone/core/Buffer.js index <HASH>..<HASH> 100644 --- a/Tone/core/Buffer.js +++ b/Tone/core/Buffer.js @@ -24,9 +24,10 @@ define(["Tone/core/Tone"], function(Tone){ this._buffer = null; /** - * the url of the buffer. - * `undefined` if it was constructed with a buffer + ...
getter/setter and new dispose
Tonejs_Tone.js
train
js
b104571ec5e8869f25e99844b368a89a4906e20f
diff --git a/lib/resque/tasks.rb b/lib/resque/tasks.rb index <HASH>..<HASH> 100644 --- a/lib/resque/tasks.rb +++ b/lib/resque/tasks.rb @@ -40,7 +40,7 @@ namespace :resque do # Preload app files if this is Rails task :preload => :setup do if defined?(Rails) - if Rails::VERSION::MAJOR > 3 + if Rails:...
Only run eager_load! if config.eager_load is true
resque_resque
train
rb
b49928bd8405e6b3d119ee236b142cf06f10446b
diff --git a/lib/Parser.php b/lib/Parser.php index <HASH>..<HASH> 100644 --- a/lib/Parser.php +++ b/lib/Parser.php @@ -43,7 +43,7 @@ class Parser public function __construct( ?Kernel $kernel = null, - ?Environment $environment = null + Environment $environment ) { if ($kernel...
Forgotten from earlier - making Parser more explicit
doctrine_rst-parser
train
php
f601897bb32686449eb74ad7454cb0c90c51ed1a
diff --git a/owslib/coverage/wcs100.py b/owslib/coverage/wcs100.py index <HASH>..<HASH> 100644 --- a/owslib/coverage/wcs100.py +++ b/owslib/coverage/wcs100.py @@ -88,7 +88,7 @@ class WebCoverageService_1_0_0(WCSBase): sval=repr(value) else: sval = value - return value + ...
Replacing value with sval (as was intended - last check in was a mistake) git-svn-id: <URL>
geopython_OWSLib
train
py
1e8df789deac8d9454913b7dac6e76a7512b2c78
diff --git a/manage/sawtooth_manage/subproc.py b/manage/sawtooth_manage/subproc.py index <HASH>..<HASH> 100644 --- a/manage/sawtooth_manage/subproc.py +++ b/manage/sawtooth_manage/subproc.py @@ -59,7 +59,7 @@ class SubprocessNodeController(NodeController): commands = ['validator'] + state['Processors'] ...
Change reference to sawtooth-<I> to sawtooth manage/subprocess referenced command 'sawtoooth-<I>'. Changed to reference 'sawtooth,' since sawtooth-<I> was moved to sawtooth (and sawtooth was move to sawtooth-legacy).
hyperledger_sawtooth-core
train
py
820f4b7655c24004775cb925bdc12bf435b2164c
diff --git a/tests/Integration/ChangesTest.php b/tests/Integration/ChangesTest.php index <HASH>..<HASH> 100644 --- a/tests/Integration/ChangesTest.php +++ b/tests/Integration/ChangesTest.php @@ -108,7 +108,12 @@ class ChangesTest extends TestCase */ public function testNoAdmin() { + // Verify no ...
Add test that admin changes aren’t occuring
BKWLD_decoy
train
php
aa9050ec90e85dcbe5460275ae91856fbda0dbdb
diff --git a/tests/src/test/java/alluxio/underfs/gcs/GCSUnderStorageCluster.java b/tests/src/test/java/alluxio/underfs/gcs/GCSUnderStorageCluster.java index <HASH>..<HASH> 100644 --- a/tests/src/test/java/alluxio/underfs/gcs/GCSUnderStorageCluster.java +++ b/tests/src/test/java/alluxio/underfs/gcs/GCSUnderStorageCluste...
[SMALLFIX] Fix a minor comment.
Alluxio_alluxio
train
java
579cf4676945d0f89e6b19166b6a366a92be09a8
diff --git a/promise/schedulers/asyncio.py b/promise/schedulers/asyncio.py index <HASH>..<HASH> 100644 --- a/promise/schedulers/asyncio.py +++ b/promise/schedulers/asyncio.py @@ -1,6 +1,6 @@ from __future__ import absolute_import -from asyncio import get_event_loop +from asyncio import get_event_loop, Event cla...
Improved asyncio scheduler
syrusakbary_promise
train
py
8a8895331917b198ca4789e90b06bb22101d2a25
diff --git a/graph.js b/graph.js index <HASH>..<HASH> 100644 --- a/graph.js +++ b/graph.js @@ -191,6 +191,12 @@ var edge = s.edges[i]; var node = edge.target; + // If the node is already in the stack and we've + // already visited it, we skip it to avoid cyclic + // lo...
Avoiding cyclic loops in the Stacked iterator
HQarroum_directed-graph
train
js
190d9e6443ecd06b48b7a48a14f51297bd3fb25f
diff --git a/template/_footer.js b/template/_footer.js index <HASH>..<HASH> 100644 --- a/template/_footer.js +++ b/template/_footer.js @@ -3,7 +3,7 @@ window.Raven = Raven; // AMD if (typeof define === 'function' && define.amd) { - define('raven', [], function() { return Raven.noConflict(); }); + define('rave...
Don't call noConflict by default when loaded via AMD. Calling noConflict() makes it a pain to load the plugins, which depend on the global variable (which is why jQuery's AMD handler, for example, doesn't do that). For those that want noConflict(), that can be done with a wrapper (see <URL>)
getsentry_sentry-javascript
train
js
f58702a71bb81582a2d7c942adfcdd62b3eb76e5
diff --git a/mapping/util.py b/mapping/util.py index <HASH>..<HASH> 100644 --- a/mapping/util.py +++ b/mapping/util.py @@ -213,10 +213,15 @@ def calc_rets(returns, weights): # in later indexing of rets even when ret has weight of 0 gnrc_wts = gnrc_wts.loc[gnrc_wts != 0] root_rets ...
Improve KeyError description When KeyError is raised include the missing keys in the error message.
matthewgilbert_mapping
train
py
d24eafb4f350f2d27932bf2fe98e3d6b8b932f4c
diff --git a/flink-table/flink-table-common/src/main/java/org/apache/flink/table/catalog/CatalogView.java b/flink-table/flink-table-common/src/main/java/org/apache/flink/table/catalog/CatalogView.java index <HASH>..<HASH> 100644 --- a/flink-table/flink-table-common/src/main/java/org/apache/flink/table/catalog/CatalogVi...
[hotfix][javadoc] Correct the wrong spelling 'perserves' to 'preserves'.
apache_flink
train
java
c2b4fc261c9e2f0e547fa4a37a1d1f3928a3999a
diff --git a/MTS/ValidateInstall.php b/MTS/ValidateInstall.php index <HASH>..<HASH> 100644 --- a/MTS/ValidateInstall.php +++ b/MTS/ValidateInstall.php @@ -121,11 +121,13 @@ class ValidateInstall "Edit /etc/sudoers in the following way:", "", "1) A word of warning, giving Sudo access to the web...
made a mistake in the error return for Debian. requiretty If set, sudo will only run when the user is logged in to a real tty. When this flag is set, sudo can only be run from a login session and not via other means such as cron(8) or cgi-bin scripts. This flag is off by default.
merlinthemagic_MTS
train
php
0dc9ce34ec05e4ee371967ec4c6cf6b72bf410fd
diff --git a/lib/spork/diagnoser.rb b/lib/spork/diagnoser.rb index <HASH>..<HASH> 100644 --- a/lib/spork/diagnoser.rb +++ b/lib/spork/diagnoser.rb @@ -48,7 +48,7 @@ class Spork::Diagnoser # Uninstall the hook. Generally useful only for testing the Diagnoser. def remove_hook! - return unless Kernel....
fixes spec issue Spork.remove_hook! failed because Kernel.private_instance_methods returns symbols rather than strings in <I>
sporkrb_spork
train
rb
65cfd5f76008fe84cef38e0c2a55ccf83f86dde0
diff --git a/tracer/tracer.py b/tracer/tracer.py index <HASH>..<HASH> 100644 --- a/tracer/tracer.py +++ b/tracer/tracer.py @@ -650,8 +650,11 @@ class Tracer(object): state = cache_path.state l.warning("caching state to %s", self._cache_file) - with open(self._cache_file, 'w') as f: - ...
Flag page variable is cached and catch RuntimeErrors during pickling to avoid it ruining tracer runs
angr_angr
train
py
bc5a63fa091ea87f8c6bf470dc6fb6494c67ec32
diff --git a/src/main/java/org/graylog2/restclient/lib/DateTools.java b/src/main/java/org/graylog2/restclient/lib/DateTools.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/graylog2/restclient/lib/DateTools.java +++ b/src/main/java/org/graylog2/restclient/lib/DateTools.java @@ -38,6 +38,7 @@ public class DateTo...
Addd short date format including TZ
Graylog2_graylog2-server
train
java
7f06896b6bb9807c828d440a3bff0a19b8dc07a1
diff --git a/go/vt/tabletserver/cache_pool.go b/go/vt/tabletserver/cache_pool.go index <HASH>..<HASH> 100644 --- a/go/vt/tabletserver/cache_pool.go +++ b/go/vt/tabletserver/cache_pool.go @@ -142,11 +142,11 @@ func (cp *CachePool) startCacheService() { } attempts := 0 for { - time.Sleep(100 * time.Millisecond) ...
sleep <I> millis for the second attempt CachePool launches a memcache process, if failed, it will sleep <I> millis before the next attempt. This slows down the unit test since a fake memcache service is guaranteed to succeed.
vitessio_vitess
train
go
418889d3b1049f1f0d77063516fbcf1f8e7a3477
diff --git a/pyfolio/utils.py b/pyfolio/utils.py index <HASH>..<HASH> 100644 --- a/pyfolio/utils.py +++ b/pyfolio/utils.py @@ -109,6 +109,7 @@ def default_returns_func(symbol, start=None, end=None): px = pd.DataFrame.rename(px, columns={'Adj Close': 'adj_close'}) px.columns.name = symbol rets...
[BUG] Make Benchmark tz-aware This is a one line change that makes get_data_from_yahoo return a timezone aware series (UTC). Once the benchmark file gets overwritten the h5 file will have the timezone so this should fix any benchmark timezone issues for people using pyfolio locally.
quantopian_pyfolio
train
py
a91f9c57c06c986ee405887f7b080bfe93d34370
diff --git a/framework/helpers/BaseHtml.php b/framework/helpers/BaseHtml.php index <HASH>..<HASH> 100644 --- a/framework/helpers/BaseHtml.php +++ b/framework/helpers/BaseHtml.php @@ -244,7 +244,7 @@ class BaseHtml $method = 'post'; } if ($request->enableCsrfValidation && !strcasecmp($method, 'post')) { - ...
Update BaseHtml.php
yiisoft_yii-core
train
php
82b18c61f3f1bdc0770edc2af5d8a1cbe50a1f5e
diff --git a/src/packet/trust.js b/src/packet/trust.js index <HASH>..<HASH> 100644 --- a/src/packet/trust.js +++ b/src/packet/trust.js @@ -13,3 +13,12 @@ var enums = require('../enums.js'); function Trust() { this.tag = enums.packet.trust; } + +/** + * Parsing function for a trust packet (tag 12). + * Currently em...
Add empty read method to trust packet. Otherwise import of key with a trust packet will fail. Trust packets are ignored and filtered out by the Key class.
openpgpjs_openpgpjs
train
js
2e7dbb6b71cbb7c194eb62928e99cbd09d9bdd8f
diff --git a/hydpy/cythons/__init__.py b/hydpy/cythons/__init__.py index <HASH>..<HASH> 100644 --- a/hydpy/cythons/__init__.py +++ b/hydpy/cythons/__init__.py @@ -10,3 +10,4 @@ _modulenames = ('pointerutils', for modulename in _modulenames: module = importlib.import_module('hydpy.cythons.autogen.'+modulename) ...
Try to fix commit #b9c<I>a for Python <I> and Python <I>.
hydpy-dev_hydpy
train
py
57a252a470655e0c42b63e63a5e24f4ed8525b51
diff --git a/lib/deliver/deliverer.rb b/lib/deliver/deliverer.rb index <HASH>..<HASH> 100644 --- a/lib/deliver/deliverer.rb +++ b/lib/deliver/deliverer.rb @@ -96,7 +96,7 @@ module Deliver end if @deliver_process.deploy_information[key] - Helper.log.warn("You already set a value for key '#{key}'. ...
Fixed wording when overwriting a value which was already given
fastlane_fastlane
train
rb
b5a4d4a3ab43246d89c6fbea8f04863932347f4c
diff --git a/examples/websockets/echo.js b/examples/websockets/echo.js index <HASH>..<HASH> 100644 --- a/examples/websockets/echo.js +++ b/examples/websockets/echo.js @@ -28,7 +28,7 @@ var expected = args.messages; var listeners = {}; var WebSocketServer = require('ws').Server; -var server = WebSocketServer({'port'...
FIX: echo.js in websocket examples ~~ Due to new ws version, constructor of WebSocketServer must be called with new. ~~
amqp_rhea
train
js
16df8a46cb84d7a484885082b4a1dd29e4f9d1d1
diff --git a/pandas/tests/indexing/test_partial.py b/pandas/tests/indexing/test_partial.py index <HASH>..<HASH> 100644 --- a/pandas/tests/indexing/test_partial.py +++ b/pandas/tests/indexing/test_partial.py @@ -680,3 +680,4 @@ class TestPartialSetting: expected = pd.DataFrame( {"series": [1.23] * ...
TST: add missing assert (#<I>)
pandas-dev_pandas
train
py
4d2f7923f9012d22d9a63936476f0f22e092d53d
diff --git a/grade/edit/tree/lib.php b/grade/edit/tree/lib.php index <HASH>..<HASH> 100755 --- a/grade/edit/tree/lib.php +++ b/grade/edit/tree/lib.php @@ -399,6 +399,7 @@ class grade_edit_tree { $object->set_parent($parent->id); $object->move_after_sortorder($sortorder); + $sortor...
MDL-<I> Fixed reverse ordering of bulk-moved grade items. Merged from MOODLE_<I>_STABLE
moodle_moodle
train
php
b98f780a76939a222f9cc6a10d9244639e7d0f06
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -65,7 +65,8 @@ setup( cmdclass={'test': PyTest}, entry_points={ 'console_scripts': [ - 'ncbi-genome-download=ncbi_genome_download.__main__:main' + 'ncbi-genome-download=ncbi_genome_down...
setup: Also add short alias 'ngd' for the CLI script
kblin_ncbi-genome-download
train
py
f928ab8f5b7f88df472dc3053edcb767764fe3da
diff --git a/lib/lambda_wrap/lambda_manager.rb b/lib/lambda_wrap/lambda_manager.rb index <HASH>..<HASH> 100644 --- a/lib/lambda_wrap/lambda_manager.rb +++ b/lib/lambda_wrap/lambda_manager.rb @@ -91,7 +91,7 @@ module LambdaWrap func_version = func_config.version raise 'Error while publishing existing lambda f...
Changes the runtime to NodeJS <I>. Starting on October <I>, lambda functions will no longer be able to use NodeJS <I>. See<URL>
Cimpress-MCP_LambdaWrap
train
rb
d6b759417f8f676fbdda5c00cad0c8d800ca6e70
diff --git a/test/com/google/javascript/jscomp/CompilerTestCase.java b/test/com/google/javascript/jscomp/CompilerTestCase.java index <HASH>..<HASH> 100644 --- a/test/com/google/javascript/jscomp/CompilerTestCase.java +++ b/test/com/google/javascript/jscomp/CompilerTestCase.java @@ -224,6 +224,7 @@ public abstract class...
Set the languageOut in getOptions so that it happens for all tests. Some of the test() overloads weren't calling it before even if setLanguageOut was called. ------------- Created by MOE: <URL>
google_closure-compiler
train
java
c08178978a52b396314a232090e9e1aab3710658
diff --git a/src/Symfony/Component/Filesystem/Filesystem.php b/src/Symfony/Component/Filesystem/Filesystem.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Filesystem/Filesystem.php +++ b/src/Symfony/Component/Filesystem/Filesystem.php @@ -198,7 +198,7 @@ class Filesystem public function chmod($files, $...
[Filesystem] fix test on PHP 8
symfony_symfony
train
php
0bde6c368607aeabab2682fa64522fe521ba3616
diff --git a/lib/rails_admin/config/model.rb b/lib/rails_admin/config/model.rb index <HASH>..<HASH> 100644 --- a/lib/rails_admin/config/model.rb +++ b/lib/rails_admin/config/model.rb @@ -60,7 +60,7 @@ module RailsAdmin end register_instance_option :label_plural do - (@label_plural ||= {})[::I18n....
Model plural label fix Count must be 'other' to apply :other key with every locale.
sferik_rails_admin
train
rb
91808387d46054b00598fae773a093050d4c0d58
diff --git a/util/uuid.js b/util/uuid.js index <HASH>..<HASH> 100644 --- a/util/uuid.js +++ b/util/uuid.js @@ -1,3 +1,5 @@ +import substanceGlobals from './substanceGlobals' + /*! Math.uuid.js (v1.4) http://www.broofa.com @@ -6,6 +8,8 @@ Copyright (c) 2010 Robert Kieffer Dual licensed under the MIT and GPL licenses...
Allow for determinstic uuid() for debugging.
substance_substance
train
js
3dfc7d0225763e9429a64543bccf53d4c9039d71
diff --git a/tests/Unit/DatabaseTest.php b/tests/Unit/DatabaseTest.php index <HASH>..<HASH> 100644 --- a/tests/Unit/DatabaseTest.php +++ b/tests/Unit/DatabaseTest.php @@ -80,15 +80,4 @@ class DatabaseTest extends UnitTestCase $this->assertEquals($expected, $ruleSet->getRules()); } - - public function...
Remove strict unit test covered by integration tests
kreait_firebase-php
train
php
b9f8c44bd3142ac4634cc4c8240091c059a79326
diff --git a/wafer/pages/migrations/0001_initial.py b/wafer/pages/migrations/0001_initial.py index <HASH>..<HASH> 100644 --- a/wafer/pages/migrations/0001_initial.py +++ b/wafer/pages/migrations/0001_initial.py @@ -17,7 +17,7 @@ class Migration(migrations.Migration): ('id', models.AutoField(verbose_nam...
Apply noop migrations to the initial wafer.pages migration
CTPUG_wafer
train
py
b27266612e6a3eaf649b972250eaf580bf1aebde
diff --git a/googlesamples/assistant/__main__.py b/googlesamples/assistant/__main__.py index <HASH>..<HASH> 100644 --- a/googlesamples/assistant/__main__.py +++ b/googlesamples/assistant/__main__.py @@ -21,7 +21,7 @@ import click from google.assistant.embedded.v1alpha1 import embedded_assistant_pb2 from google.rpc im...
google-assistant-sdk-python: use absolute import for __main__ So that it's also document the import path when being browsed from the documation. Note: this doesn't need part of the <I> artefact, we can simply update the `master` branch on github after we tag the <I> release. Change-Id: I<I>cb5e<I>a6bab<I>dff<I>a6e5d...
googlesamples_assistant-sdk-python
train
py
a3ffdff9df7f4b6ca336dc0258809652cdc7e226
diff --git a/status.js b/status.js index <HASH>..<HASH> 100644 --- a/status.js +++ b/status.js @@ -239,12 +239,23 @@ exports.addItem = (name, options) => { var rebuildPattern = () => { defaultPattern = Object.keys(items).reduce((memo, item) => { - return `${memo}${PADDING}{${item}.label} {${item}}${PADDING}|`;...
change default pattern to use item name instead of label, removeItem should accept an instance or a key, and updated the usage of the pattern
derrickpelletier_node-status
train
js
cdd4b27dcb55ca0e8203a2fab9a62588ad829eb8
diff --git a/nanostat/version.py b/nanostat/version.py index <HASH>..<HASH> 100644 --- a/nanostat/version.py +++ b/nanostat/version.py @@ -1 +1 @@ -__version__ = "0.6.0" +__version__ = "0.6.1" diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup( ], ...
making script dependent on latest version of submodules
wdecoster_nanostat
train
py,py