hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
aad1ebf7ccf2fd95c65629f9dd703f1af6d3399e
diff --git a/WordPress/Sniffs/VIP/RestrictedFunctionsSniff.php b/WordPress/Sniffs/VIP/RestrictedFunctionsSniff.php index <HASH>..<HASH> 100644 --- a/WordPress/Sniffs/VIP/RestrictedFunctionsSniff.php +++ b/WordPress/Sniffs/VIP/RestrictedFunctionsSniff.php @@ -174,13 +174,6 @@ class WordPress_Sniffs_VIP_RestrictedFunctio...
Merge `get_children` group with `get_posts` group No need to have a separate group as `get_children()` is a wrapper for `get_posts()`
WordPress-Coding-Standards_WordPress-Coding-Standards
train
9092a8d70691415b95d38b693a0033ab20fc2908
diff --git a/lib/opentok/archive.rb b/lib/opentok/archive.rb index <HASH>..<HASH> 100644 --- a/lib/opentok/archive.rb +++ b/lib/opentok/archive.rb @@ -136,10 +136,34 @@ module OpenTok @json = @interface.layout(@json['id'], opts) end + # Adds a stream to currently running composed archive that was start...
Adding comments for Archive#add_stream and Archive#remove_stream
opentok_OpenTok-Ruby-SDK
train
ba6f06590aaf2d276a745d56e89820008abbbe80
diff --git a/lib/guard/dsl_describer.rb b/lib/guard/dsl_describer.rb index <HASH>..<HASH> 100644 --- a/lib/guard/dsl_describer.rb +++ b/lib/guard/dsl_describer.rb @@ -2,7 +2,7 @@ require 'guard/dsl' module Guard - autoload :UI, 'guard/ui' + autoload :UI, 'guard/ui' # The DslDescriber overrides methods to...
Misc changes (mostly whitespaces & typo)
guard_guard
train
81bedb6ea5b8c42cb685a6103eb64909a4582898
diff --git a/shell/src/test/java/tachyon/shell/TFsShellTest.java b/shell/src/test/java/tachyon/shell/TFsShellTest.java index <HASH>..<HASH> 100644 --- a/shell/src/test/java/tachyon/shell/TFsShellTest.java +++ b/shell/src/test/java/tachyon/shell/TFsShellTest.java @@ -45,6 +45,7 @@ import tachyon.thrift.ClientBlockInfo; ...
[TACHYON-<I>] @apc<I> fix a few problems (using utils for path concatenation and add a test case)
Alluxio_alluxio
train
ab5c98fb6344cd0e27e4f69c7c40f0a6c9eea5ec
diff --git a/moco-core/src/test/java/com/github/dreamhead/moco/MocoGlobalResponseTest.java b/moco-core/src/test/java/com/github/dreamhead/moco/MocoGlobalResponseTest.java index <HASH>..<HASH> 100644 --- a/moco-core/src/test/java/com/github/dreamhead/moco/MocoGlobalResponseTest.java +++ b/moco-core/src/test/java/com/git...
fixed import in moco global response test
dreamhead_moco
train
345e14ddb0a3c711e79602d5942bfab3ab76c253
diff --git a/src/promise.js b/src/promise.js index <HASH>..<HASH> 100644 --- a/src/promise.js +++ b/src/promise.js @@ -28,9 +28,9 @@ define(["src/async"], function (Async) { /** * Small Promise */ - function Promise(target, options) { + function Promise(resolver, options) { // Make sure we have a targ...
Added resolver function as an argument to Promise and removed the old target object. This allowed me to remove the factory interface.
MiguelCastillo_spromise
train
79c1d53693a2acd0f04e3593989c8596178d7999
diff --git a/resources/assets/js/components/filemanager.js b/resources/assets/js/components/filemanager.js index <HASH>..<HASH> 100644 --- a/resources/assets/js/components/filemanager.js +++ b/resources/assets/js/components/filemanager.js @@ -20,40 +20,44 @@ document.addEventListener('turbolinks:load', function() { ...
Apply fixes from StyleCI (#<I>) [ci skip] [skip ci]
orchidsoftware_platform
train
501bdee4cdd9ecb87e2a048925421f088bd21720
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -12,7 +12,12 @@ export default function serve (fn, { onError = null } = {}) { export async function run (req, res, fn, onError) { try { - await fn(req, res) + const val = await fn(req, res) + + /...
send returned values with <I>
diorahman_ysera
train
ef516822e8c9ef26f54edac0e2fcc9a067bb72b2
diff --git a/mpop/satin/viirs_sdr.py b/mpop/satin/viirs_sdr.py index <HASH>..<HASH> 100644 --- a/mpop/satin/viirs_sdr.py +++ b/mpop/satin/viirs_sdr.py @@ -163,8 +163,7 @@ class ViirsMbandData(object): def get_lonlat(filename): """Read lon,lat from hdf5 file""" import h5py - - print("File = " + filenam...
Fixing for re-projection.
pytroll_satpy
train
87e5af6291de3f8c62edf3117ce276bdb69729d2
diff --git a/go/vt/vtgate/executor.go b/go/vt/vtgate/executor.go index <HASH>..<HASH> 100644 --- a/go/vt/vtgate/executor.go +++ b/go/vt/vtgate/executor.go @@ -152,7 +152,7 @@ func (exr *Executor) shardExec(ctx context.Context, session *vtgatepb.Session, s f := func(keyspace string) (string, []string, error) { retu...
v3: address code review comments.
vitessio_vitess
train
30cef79a34d6cf03c4b1d101e177844041e2bdf7
diff --git a/tests/Integration/core/Database/DoctrineTest.php b/tests/Integration/core/Database/DoctrineTest.php index <HASH>..<HASH> 100644 --- a/tests/Integration/core/Database/DoctrineTest.php +++ b/tests/Integration/core/Database/DoctrineTest.php @@ -212,17 +212,17 @@ class DoctrineTest extends UnitTestCase ...
ESDEV-<I> Fix tests, cause last commit fixed a default behaviour bug. Some tests had to be changed after the default fetch mode behaviour of the doctrine database was adjusted to the adodblite behaviour. (cherry picked from commit <I>de4)
OXID-eSales_oxideshop_ce
train
899fd4fe924e3b8612c6c53541f070e7c3a3d368
diff --git a/src/datatypes/utils.js b/src/datatypes/utils.js index <HASH>..<HASH> 100644 --- a/src/datatypes/utils.js +++ b/src/datatypes/utils.js @@ -8,7 +8,8 @@ module.exports = { 'string': [readString, writeString, sizeOfString], 'buffer': [readBuffer, writeBuffer, sizeOfBuffer], 'void': [readVoid, writeVoi...
add back cstring from old Protocols
ProtoDef-io_node-protodef
train
9ea64f42dacd256d4becca117af93bac67337311
diff --git a/lib/config/definitions.js b/lib/config/definitions.js index <HASH>..<HASH> 100644 --- a/lib/config/definitions.js +++ b/lib/config/definitions.js @@ -818,7 +818,6 @@ const options = [ schedule: [], masterIssueApproval: false, rangeStrategy: 'update-lockfile', - branchTopic: '{{{ma...
refactor(github): hardcode vulnerability branchTopic
renovatebot_renovate
train
19fe38b00886a2b3b1b66861ea970c1931351bde
diff --git a/quality/src/test/java/com/tdunning/tdigest/quality/SinglePassTest.java b/quality/src/test/java/com/tdunning/tdigest/quality/SinglePassTest.java index <HASH>..<HASH> 100644 --- a/quality/src/test/java/com/tdunning/tdigest/quality/SinglePassTest.java +++ b/quality/src/test/java/com/tdunning/tdigest/quality/S...
Added single pass test to verify quality of interpolation without incremental digest building.
tdunning_t-digest
train
969a06e27c36ea52848bbd32109a147ac1308c33
diff --git a/clients/unshaded/src/main/java/tachyon/client/BlockInStream.java b/clients/unshaded/src/main/java/tachyon/client/BlockInStream.java index <HASH>..<HASH> 100644 --- a/clients/unshaded/src/main/java/tachyon/client/BlockInStream.java +++ b/clients/unshaded/src/main/java/tachyon/client/BlockInStream.java @@ -6...
[TACHYON-<I>] Update BlockInStream and BlockOutStream and AbstractTFS to use new TachyonConf.getBoolean
Alluxio_alluxio
train
a463382463e10be34db4357c95142b546d331c42
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -203,7 +203,8 @@ function sniffReadmeContents(contents) { function findTextAfterHeader(contents, header) { var elements = markdown.markdown.parse(contents); - for (var i = 0; i < elements.length && e...
Ignore headers that aren't for license
mwilliamson_node-license-sniffer
train
53443887587ac64e05d69062d742d2e050f7a44f
diff --git a/tests/TestHelper.php b/tests/TestHelper.php index <HASH>..<HASH> 100644 --- a/tests/TestHelper.php +++ b/tests/TestHelper.php @@ -25,15 +25,16 @@ class TestHelper /** * Helper function to create a view. * + * @param \Carbon\Carbon $viewedAt * @return \CyrildeWit\EloquentViewabl...
refactor: apply src changes to tests
cyrildewit_eloquent-viewable
train
65cadf966733ecf5ac791911119c45a052bd1a7c
diff --git a/django_webtest/pytest_plugin.py b/django_webtest/pytest_plugin.py index <HASH>..<HASH> 100644 --- a/django_webtest/pytest_plugin.py +++ b/django_webtest/pytest_plugin.py @@ -3,9 +3,21 @@ from django_webtest import WebTestMixin import pytest +class MixinWithInstanceVariables(WebTestMixin): + """ + ...
avoid sharing settings between tests in pytest `WebTestMixin` stores `extra_environ`, `csrf_checks` and `setup_auth` as class variables, but the pytest plugin doesn't instantiate a separate instance of `WebTestMixin` per tests - so these variables are effectively accidental globals that are shared across tests. Creat...
django-webtest_django-webtest
train
fdf7845205c39d64fb983562a1e90f9e5fb34f42
diff --git a/pages/lib/generators/refinery/pages/pages_generator.rb b/pages/lib/generators/refinery/pages/pages_generator.rb index <HASH>..<HASH> 100644 --- a/pages/lib/generators/refinery/pages/pages_generator.rb +++ b/pages/lib/generators/refinery/pages/pages_generator.rb @@ -5,6 +5,17 @@ module Refinery def gen...
Use rails way to load seed data from pages engine
refinery_refinerycms
train
94a57df9c26cb81c5c0c1beb9222e2b56647798d
diff --git a/src/main/java/org/primefaces/component/datepicker/DatePickerRenderer.java b/src/main/java/org/primefaces/component/datepicker/DatePickerRenderer.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/primefaces/component/datepicker/DatePickerRenderer.java +++ b/src/main/java/org/primefaces/component/date...
Fix #<I>: DatePicker improved range splitting (#<I>) * Improved datePicker range splitting * Don't need end index * Use token in exception * Test exception
primefaces_primefaces
train
89b85dd0b5fa95b760cdea4d204ca9ba7bab6a55
diff --git a/photutils/detection/core.py b/photutils/detection/core.py index <HASH>..<HASH> 100644 --- a/photutils/detection/core.py +++ b/photutils/detection/core.py @@ -8,6 +8,7 @@ from astropy.stats import sigma_clipped_stats from astropy.table import Table from astropy.utils.exceptions import (AstropyDeprecationW...
Update detection to support SigmaClip for both new/old API
astropy_photutils
train
b529fe0481486f99c9ed8015b9f534a40a19d4a2
diff --git a/primitive/src/main/java/io/atomix/primitive/DistributedPrimitiveBuilder.java b/primitive/src/main/java/io/atomix/primitive/DistributedPrimitiveBuilder.java index <HASH>..<HASH> 100644 --- a/primitive/src/main/java/io/atomix/primitive/DistributedPrimitiveBuilder.java +++ b/primitive/src/main/java/io/atomix/...
Default primitive protocol only when one partition group is provided.
atomix_atomix
train
33e7da9b2532a5bf4654273065b852fc96ca503b
diff --git a/delphi/icm_api/icm_api_skeleton_generator.py b/delphi/icm_api/icm_api_skeleton_generator.py index <HASH>..<HASH> 100644 --- a/delphi/icm_api/icm_api_skeleton_generator.py +++ b/delphi/icm_api/icm_api_skeleton_generator.py @@ -88,19 +88,8 @@ for url, metadata in paths.items(): lines.append( ...
Added support for multiple parameters (#<I>)
ml4ai_delphi
train
38bc1b1a310dbf5650192ea556fb909a9033dc9b
diff --git a/client/fingerprint/cgroup.go b/client/fingerprint/cgroup.go index <HASH>..<HASH> 100644 --- a/client/fingerprint/cgroup.go +++ b/client/fingerprint/cgroup.go @@ -3,6 +3,8 @@ package fingerprint import ( "time" + "github.com/hashicorp/nomad/client/lib/cgutil" + log "github.com/hashicorp/go-hclog" ) ...
client/fingerprint: move existing cgroup concerns to cgutil
hashicorp_nomad
train
73143872c1698ce8b85564fa5cda05e4dab56cc0
diff --git a/app.js b/app.js index <HASH>..<HASH> 100644 --- a/app.js +++ b/app.js @@ -6,13 +6,11 @@ import path from 'path'; let windows = []; -// Quit when all windows are closed. app.on('window-all-closed', () => { - // On OS X it is common for applications and their menu bar - // to stay active until the us...
Problem: Closing behavior didn't match OS X Solution: Don't destroy app after windows closed on OS X
nteract_nteract
train
73319aa365a52969305694c9f793b2ba6f7780b9
diff --git a/fault/system_verilog_target.py b/fault/system_verilog_target.py index <HASH>..<HASH> 100644 --- a/fault/system_verilog_target.py +++ b/fault/system_verilog_target.py @@ -11,6 +11,7 @@ from fault.wrapper import PortWrapper import fault import fault.expression as expression import os +import shlex sr...
provide escaping via shlex as necessary
leonardt_fault
train
d027ba7320d430743992d613e52596b0182ca854
diff --git a/codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2FrameWriter.java b/codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2FrameWriter.java index <HASH>..<HASH> 100644 --- a/codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2FrameWriter.java +++ b/codec-http2/s...
[HTTP2] Fix memory leak while writing empty data frame with padding (#<I>) Motivation: There is a memory leak while writing empty data frame with padding. The empty data frame was occurred because we are running a proxy server built by netty, and found that google services always sent data frames followed by...
netty_netty
train
5f6f9abeb6877c57826c873f671dc59816851fbb
diff --git a/django_deployer/providers.py b/django_deployer/providers.py index <HASH>..<HASH> 100644 --- a/django_deployer/providers.py +++ b/django_deployer/providers.py @@ -199,7 +199,7 @@ class AppEngine(PaaSProvider): # install requirements for deployment local("mkdir -p require_lib") # d...
Use oauth2 for authentication (doesn't require re-entering username and password)
natea_django-deployer
train
9fa5382e0efa447c9fc49a647950b5dd8d919d8f
diff --git a/test/test_dag.py b/test/test_dag.py index <HASH>..<HASH> 100644 --- a/test/test_dag.py +++ b/test/test_dag.py @@ -1226,6 +1226,8 @@ B; A_1 -> A_2; A_2 -> B; }''') + if os.path.isfile('a.txt'): + os.remove('a.txt') script = SoS_Script(''' [A_1] [A_2]
Fix test on DAG of compound workflow
vatlab_SoS
train
b62721a4d9a530f71f9be1d3c29b453f39e00d95
diff --git a/db/db_api.py b/db/db_api.py index <HASH>..<HASH> 100644 --- a/db/db_api.py +++ b/db/db_api.py @@ -2,29 +2,55 @@ import psycopg2 as pg conn = None +def get_connection(): + global conn + if conn is None: + aws_host = 'indradb.cwcetxbvbgrf.us-east-1.rds.amazonaws.com' + conn = pg.conn...
Add tables for db, agents, stmts
sorgerlab_indra
train
27f072d50920f2bfc1ab4a4bdc28dd1136e89d76
diff --git a/lib/unparser.rb b/lib/unparser.rb index <HASH>..<HASH> 100644 --- a/lib/unparser.rb +++ b/lib/unparser.rb @@ -7,11 +7,19 @@ module Unparser EMPTY_STRING = ''.freeze + UNARY_OPERATORS = %w( + ! + ~ + -@ + +@ + ).map(&:to_sym).to_set.freeze + + BINARY_OPERATORS = %w( + - * / & | ...
Handle unary operators implemented as methods correctly
mbj_unparser
train
2297bae0e07e87719f1744d55c5f0247d6040931
diff --git a/tests/DatastoreTest.php b/tests/DatastoreTest.php index <HASH>..<HASH> 100644 --- a/tests/DatastoreTest.php +++ b/tests/DatastoreTest.php @@ -207,18 +207,33 @@ class DatastoreTest extends PHPUnit_Framework_TestCase } } - sleep(10); + sleep(5); foreach ($tests as $test) { - $t2 = json_d...
Make the async fix (on saving/then querying) for DatastoreTest a little more resilient. ... It might be best to get rid of this test in the future.
pwhelan_datachore
train
d999b1942bd01bf81f2c599a15ae5303d74d7b40
diff --git a/api/contracts.go b/api/contracts.go index <HASH>..<HASH> 100644 --- a/api/contracts.go +++ b/api/contracts.go @@ -307,23 +307,32 @@ func parseVotingRights(ctx context.Context, srcsByAssetID map[bc.AssetID]*Source if src.TxHash == nil { src.TxHash = src.TxHashAsID } - if src.TxHash == nil || src....
api: do not require votingright tx_hash, index The voting right asset ID is sufficient for us to find the utxo because there's only ever a single unit of a voting right. Closes chain/chainprv#<I>. Reviewers: @kr
chain_chain
train
d0f4bcf197cc6e69ec796d191bcd9e434123b377
diff --git a/closure/goog/uri/uri.js b/closure/goog/uri/uri.js index <HASH>..<HASH> 100644 --- a/closure/goog/uri/uri.js +++ b/closure/goog/uri/uri.js @@ -1277,7 +1277,7 @@ goog.Uri.QueryData.prototype.getKeys = function() { goog.Uri.QueryData.prototype.getValues = function(opt_key) { this.ensureKeyMapInitialized_(...
Fixing query data -- asking for values for key '' is interpreted as logically false, giving all values. Rather, do an isString check on the key. Includes unit test verifying behavior. ------------- Created by MOE: <URL>
google_closure-library
train
8d8cc64151033d2f0367dfb3014475489610b57a
diff --git a/test/tracing/asyncAwait_test.js b/test/tracing/asyncAwait_test.js index <HASH>..<HASH> 100644 --- a/test/tracing/asyncAwait_test.js +++ b/test/tracing/asyncAwait_test.js @@ -6,7 +6,7 @@ var semver = require('semver'); var config = require('../config'); var utils = require('../utils'); -describe.only('t...
fix(test): Execute all the tests
instana_nodejs-sensor
train
9d2323e1ba7cacbadd593831f5c9871b8627c372
diff --git a/nodeshot/scripts/read_olsr_topology.py b/nodeshot/scripts/read_olsr_topology.py index <HASH>..<HASH> 100755 --- a/nodeshot/scripts/read_olsr_topology.py +++ b/nodeshot/scripts/read_olsr_topology.py @@ -8,6 +8,7 @@ parent = os.path.abspath(os.path.join(directory, os.path.pardir, os.path.pardir) sys.path.ap...
Added IS_CRON to scripts.
ninuxorg_nodeshot
train
553e260d43479d51f6d9c24477810423ca716efe
diff --git a/cwr/table_value.py b/cwr/table_value.py index <HASH>..<HASH> 100644 --- a/cwr/table_value.py +++ b/cwr/table_value.py @@ -17,10 +17,10 @@ class MediaTypeValue(object): Represents a BIEM/CISAC Media Type table value. """ - def __init__(self, code, name, type, duration_max, works_max, fragment...
Updated PyPi config file.
weso_CWR-DataApi
train
5b832d92eabc59ed3ec59a034dab0c73af5c2b7a
diff --git a/dash/stories/models.py b/dash/stories/models.py index <HASH>..<HASH> 100644 --- a/dash/stories/models.py +++ b/dash/stories/models.py @@ -89,6 +89,14 @@ class Story(SmartModel): return self.teaser(self.summary, 40) return self.teaser(self.content, 40) + def get_written_by(self): ...
Add method get_written_by on story
rapidpro_dash
train
59f80590a742a6461d5a3535f25853a34aae13c8
diff --git a/cmd2.py b/cmd2.py index <HASH>..<HASH> 100755 --- a/cmd2.py +++ b/cmd2.py @@ -62,15 +62,6 @@ from six.moves import zip # noinspection PyUnresolvedReferences from six.moves.urllib.request import urlopen -# Prefer statically linked gnureadline if available (for Mac OS X compatibility due to issues with l...
Reverting change which prefers gnureadline if available The current version of gnureadline available in pip and conda has a malloc error, at least on Mac OS
python-cmd2_cmd2
train
f8fef5b45976438cd2000eaefb2903014ac2b401
diff --git a/flake8_docstrings.py b/flake8_docstrings.py index <HASH>..<HASH> 100644 --- a/flake8_docstrings.py +++ b/flake8_docstrings.py @@ -10,6 +10,7 @@ import pep8 import pep257 __version__ = '0.2.4' +__all__ = ['pep257Checker'] class pep257Checker(object): @@ -29,11 +30,17 @@ class pep257Checker(object):...
Handle Environment and All Errors and convert to error code
tylertrussell_flake8-docstrings-catnado
train
fc746898b24b38ecefaabcd7c90a2dd336f3c980
diff --git a/src/AccordionItemTitle/accordion-item-title.js b/src/AccordionItemTitle/accordion-item-title.js index <HASH>..<HASH> 100644 --- a/src/AccordionItemTitle/accordion-item-title.js +++ b/src/AccordionItemTitle/accordion-item-title.js @@ -51,7 +51,6 @@ class AccordionItemTitle extends Component< .....
Removes useless condition. We do not allow custom uuid and assign them straight out from the store. So there is no way the item could not be found.
springload_react-accessible-accordion
train
699654e8c4ba467ff487da2eaf122f95e190c8bc
diff --git a/svtyper/core.py b/svtyper/core.py index <HASH>..<HASH> 100755 --- a/svtyper/core.py +++ b/svtyper/core.py @@ -8,14 +8,16 @@ from collections import Counter from argparse import RawTextHelpFormatter from functools import wraps +import svtyper.version + # -------------------------------------- # define...
+ account for author/version in main program
hall-lab_svtyper
train
4f996f3cccd24997c0c35badc62eb3f6c24770c0
diff --git a/lib/Alchemy/Phrasea/Controller/Root/AccountController.php b/lib/Alchemy/Phrasea/Controller/Root/AccountController.php index <HASH>..<HASH> 100644 --- a/lib/Alchemy/Phrasea/Controller/Root/AccountController.php +++ b/lib/Alchemy/Phrasea/Controller/Root/AccountController.php @@ -215,15 +215,23 @@ class Accou...
masquing some native Api application in user porfil -> Application tab
alchemy-fr_Phraseanet
train
370e0becb27fdecd79f962a2c3001e5029fb9c7c
diff --git a/pkg/api/validation/validation.go b/pkg/api/validation/validation.go index <HASH>..<HASH> 100644 --- a/pkg/api/validation/validation.go +++ b/pkg/api/validation/validation.go @@ -3527,6 +3527,10 @@ func validateLimitRangeTypeName(value string, fldPath *field.Path) field.ErrorLi // Validate limit range reso...
Add feature gate and validate test for local storage limitrange
kubernetes_kubernetes
train
0000523039df17a2bd9b7c3e877253ccc268a6ae
diff --git a/templates/common/_Gruntfile.js b/templates/common/_Gruntfile.js index <HASH>..<HASH> 100644 --- a/templates/common/_Gruntfile.js +++ b/templates/common/_Gruntfile.js @@ -399,7 +399,7 @@ module.exports = function (grunt) { }, continuous: { browsers: ['PhantomJS'], - singleRun: ...
Karma Continuous Bug Fix This was causing the karma:continuous failure.
diegonetto_generator-ionic
train
d2d2b05d17e2aa75a8153f275aee13a9385248f5
diff --git a/squad/frontend/queries.py b/squad/frontend/queries.py index <HASH>..<HASH> 100644 --- a/squad/frontend/queries.py +++ b/squad/frontend/queries.py @@ -1,16 +1,22 @@ from django.utils.translation import ugettext as _ -from squad.core.models import Metric -from squad.core.utils import join_name +from squad.c...
frontend: reduce query time fetching metric names
Linaro_squad
train
c55e891a505b50d9821874d25b43e39105fafe5a
diff --git a/lib/Doctrine/DBAL/Driver/Mysqli/MysqliConnection.php b/lib/Doctrine/DBAL/Driver/Mysqli/MysqliConnection.php index <HASH>..<HASH> 100644 --- a/lib/Doctrine/DBAL/Driver/Mysqli/MysqliConnection.php +++ b/lib/Doctrine/DBAL/Driver/Mysqli/MysqliConnection.php @@ -29,14 +29,14 @@ use Doctrine\DBAL\Driver\Pingable...
Mysqli driver flags option: replaced private property to class constant
doctrine_dbal
train
66bc771b2df4018b7d4016a5ca32fc01aa1101f3
diff --git a/lib/irc.js b/lib/irc.js index <HASH>..<HASH> 100644 --- a/lib/irc.js +++ b/lib/irc.js @@ -236,8 +236,14 @@ function Client(server, nick, opt) { var adding = true; var modeArgs = message.args.slice(2); modeList.forEach(function(mode) { - ...
fix(lint): Fix 'Missing newline after/before curly braces' error. Multi-line if statements can't be on a single line.
martynsmith_node-irc
train
611e93e9cb185b292d93dfa8b4be5b81e59be5cc
diff --git a/pyvista/_vtk.py b/pyvista/_vtk.py index <HASH>..<HASH> 100644 --- a/pyvista/_vtk.py +++ b/pyvista/_vtk.py @@ -473,6 +473,12 @@ if VTK9: return vtkSegYReader() + def lazy_vtkHDFReader(): + """Lazy import of the vtkHDFReader.""" + from vtkmodules.vtkIOHDF import vtkHDFReader + +...
Add support for vtkHDFReader (#<I>) * add support for vtkHDFReader * include hdf tests
vtkiorg_vtki
train
0a538f2f28166fe3a4b6a763a2bb8c646fddc00f
diff --git a/pom.xml b/pom.xml index <HASH>..<HASH> 100644 --- a/pom.xml +++ b/pom.xml @@ -46,7 +46,7 @@ <lombok.version>1.16.16</lombok.version> <junit.version>4.12</junit.version> <faker.version>0.13</faker.version> - <assertj.version>3.7.0</assertj.version> + <assertj.version...
update assertj version to <I>
j-easy_easy-random
train
db0ffca1e9fee029a665a22283643728119d57fa
diff --git a/ui/app/routes/vault/cluster.js b/ui/app/routes/vault/cluster.js index <HASH>..<HASH> 100644 --- a/ui/app/routes/vault/cluster.js +++ b/ui/app/routes/vault/cluster.js @@ -40,7 +40,7 @@ export default Route.extend(ModelBoundaryRoute, ClusterRoute, { const currentTokenName = this.auth.get('currentTokenNa...
UI/ Fix version check typo (#<I>) * make oss all caps
hashicorp_vault
train
99e6ebf82469b237440a073d86e4a9031d4f8574
diff --git a/config/jeweler.rb b/config/jeweler.rb index <HASH>..<HASH> 100644 --- a/config/jeweler.rb +++ b/config/jeweler.rb @@ -2,6 +2,13 @@ # Info at http://github.com/guides/tell-git-your-user-name-and-email-address begin +class Array + def one_of_regex + option_list = join "|" + Regexp.new "(#{option_l...
added a list of excludes for gemspec. Excludes "vendor/gems", "lib/erlang" from the gemspec
auser_poolparty
train
72b781ec9238f70b90abae42b42f6406cab8c7c8
diff --git a/Helper/Order.php b/Helper/Order.php index <HASH>..<HASH> 100644 --- a/Helper/Order.php +++ b/Helper/Order.php @@ -808,6 +808,18 @@ class Order extends AbstractHelper ]; $payment->setAdditionalInformation(array_merge((array)$payment->getAdditionalInformation(), $paymentData)); ...
Save token alias into payment info object if processor is Adyen (#<I>)
BoltApp_bolt-magento2
train
d66a8b275f2822b72ce8023e18a9bc774b48b07c
diff --git a/script/wee.history.js b/script/wee.history.js index <HASH>..<HASH> 100644 --- a/script/wee.history.js +++ b/script/wee.history.js @@ -42,7 +42,8 @@ conf || {}, { path: path, - push: false + push: false, + pop: true } )); }, { @@ -270,10 +271,15 @@ ...
Add additional callback methods for pushstate, popstate, and callback generically Ensure that the querystring gets pushed if applicable
weepower_wee-core
train
8ee6f0fab5b0c017bea37e6cf271e5d92668c4ba
diff --git a/go/vt/proto/query/query.pb.go b/go/vt/proto/query/query.pb.go index <HASH>..<HASH> 100644 --- a/go/vt/proto/query/query.pb.go +++ b/go/vt/proto/query/query.pb.go @@ -1173,7 +1173,9 @@ type ExecuteOptions struct { // if the user has created temp tables, Vitess will not reuse plans created for this session...
Small doc and error handling in vttablet server improvements
vitessio_vitess
train
b2a6bf0f9b525a71fcc5588e59d7530a765230fb
diff --git a/test/composition-test.js b/test/composition-test.js index <HASH>..<HASH> 100644 --- a/test/composition-test.js +++ b/test/composition-test.js @@ -3,88 +3,15 @@ var tape = require("tape"), d3 = Object.assign(require("../"), require("d3-selection")), post = require("./nesting-test").post; -//// R...
Reinstate recursive exit test
curran_d3-component
train
6e9b36fa079bda3f0b24f29fc330cf8ff6f1f083
diff --git a/lib/winrm/wsmv/create_shell_message.rb b/lib/winrm/wsmv/create_shell_message.rb index <HASH>..<HASH> 100644 --- a/lib/winrm/wsmv/create_shell_message.rb +++ b/lib/winrm/wsmv/create_shell_message.rb @@ -40,7 +40,7 @@ module WinRM @codepage = opt_or_default(shell_opts, :codepage, UTF8_CODE_PAGE) ...
Use same open shell options as old winrm open_shell method
WinRb_WinRM
train
c46676d91ed66444981fb44d16849d51204d347f
diff --git a/invenio_records_files/api.py b/invenio_records_files/api.py index <HASH>..<HASH> 100644 --- a/invenio_records_files/api.py +++ b/invenio_records_files/api.py @@ -98,11 +98,12 @@ def _writable(method): class FilesIterator(object): """Iterator for files.""" - def __init__(self, record, bucket): + ...
api: iterator class customization * Allow records subclasses to easily override the iterator and file object to customize e.g. file dumping behavior.
inveniosoftware_invenio-records-files
train
6e67822cb3d375131c0e4446cef641c32c018c7f
diff --git a/delphi/program_analysis/ProgramAnalysisGraph.py b/delphi/program_analysis/ProgramAnalysisGraph.py index <HASH>..<HASH> 100644 --- a/delphi/program_analysis/ProgramAnalysisGraph.py +++ b/delphi/program_analysis/ProgramAnalysisGraph.py @@ -32,7 +32,7 @@ class ProgramAnalysisGraph(nx.DiGraph): output...
Added FuncVariableNode type nodes to add as variable nodes, in addition to LoopVariableNodes
ml4ai_delphi
train
4fc65b35e9dea45d674e9e3fd333739ce51a70ea
diff --git a/pyeda/boolalg/bfarray.py b/pyeda/boolalg/bfarray.py index <HASH>..<HASH> 100644 --- a/pyeda/boolalg/bfarray.py +++ b/pyeda/boolalg/bfarray.py @@ -565,16 +565,23 @@ class farray: The *other* argument may be a Function or farray. """ if other in {0, 1}: - return self.__c...
Enhance farray concatenate/repeat for MDAs Fixes issue #<I>
cjdrake_pyeda
train
624230cdbd069f01f14e9d907a0de17ba8f016f0
diff --git a/cephfs/file.go b/cephfs/file.go index <HASH>..<HASH> 100644 --- a/cephfs/file.go +++ b/cephfs/file.go @@ -25,6 +25,17 @@ const ( SeekEnd = int(C.SEEK_END) ) +// SyncChoice is used to control how metadata and/or data is sync'ed to +// the file system. +type SyncChoice int + +const ( + // SyncAll will s...
cephfs: add Fsync and Sync calls for open files Add wrappers for ceph_fsync. The Fsync call directly wraps ceph_fsync which provides options to behave more like fsync or more like fdatasync. Add Sync, a simpler wrapper over Fsync, to match any interfaces that make use of `File.Sync` from Go's os package.
ceph_go-ceph
train
1c343195f53711d87b6972747d3471abe7f44bcf
diff --git a/Access/Gate.php b/Access/Gate.php index <HASH>..<HASH> 100644 --- a/Access/Gate.php +++ b/Access/Gate.php @@ -111,14 +111,22 @@ class Gate implements GateContract /** * Define abilities for a resource. * - * @param string $base - * @param string $class + * @param string $na...
allow abilities to be customizable - by default we will use the ‘view’, ‘create’, ‘update’, and ‘delete’, but the user can override it if desired. - also renamed ‘base’ to ‘name’ to keep it consistent with resource routes.
illuminate_auth
train
caac2327584836edd6d0639dd6528b09f6b3c617
diff --git a/examples/example1.py b/examples/example1.py index <HASH>..<HASH> 100644 --- a/examples/example1.py +++ b/examples/example1.py @@ -4,12 +4,12 @@ import numpy as np # All units are relative. [um] were chosen in this case. -x_step = 0.02 -y_step = 0.02 +x_step = 0.008 +y_step = 0.008 wg_height = 0.4 w...
Updated structure.update() function to allow for RidgedWaveguide structures to also be updateable.
jtambasco_modesolverpy
train
0f0aa0ea31b7b00d1dd539afb4992ab7332ee625
diff --git a/lib/middleware/initialize.js b/lib/middleware/initialize.js index <HASH>..<HASH> 100644 --- a/lib/middleware/initialize.js +++ b/lib/middleware/initialize.js @@ -59,9 +59,6 @@ module.exports = function initialize(passport, options) { if (options.userProperty) { req._userProperty = options.userP...
Don't set _passport property on request in initialize middleware.
jaredhanson_passport
train
2c3fbfe947e22f4dc1f9d70bcc671da05fe1fa93
diff --git a/views/js/qtiCreator/widgets/interactions/helpers/shapeEditor.js b/views/js/qtiCreator/widgets/interactions/helpers/shapeEditor.js index <HASH>..<HASH> 100644 --- a/views/js/qtiCreator/widgets/interactions/helpers/shapeEditor.js +++ b/views/js/qtiCreator/widgets/interactions/helpers/shapeEditor.js @@ -253,6...
TAO-<I>: Graphic Gap Match points are too small
oat-sa_extension-tao-itemqti
train
9dd0cd9fb35ba82728346759c68974ea09df7d91
diff --git a/json-path/src/main/java/com/jayway/jsonpath/InvalidJsonException.java b/json-path/src/main/java/com/jayway/jsonpath/InvalidJsonException.java index <HASH>..<HASH> 100644 --- a/json-path/src/main/java/com/jayway/jsonpath/InvalidJsonException.java +++ b/json-path/src/main/java/com/jayway/jsonpath/InvalidJson...
Provide a constructor that captures the JSON Rather than "debug" the JSON which does not allow further processing for the exception capture and put it inside the exception data.
json-path_JsonPath
train
4945740ac79a3d3296e31e59b93717dac02af401
diff --git a/packages/next/build/webpack.js b/packages/next/build/webpack.js index <HASH>..<HASH> 100644 --- a/packages/next/build/webpack.js +++ b/packages/next/build/webpack.js @@ -173,7 +173,7 @@ export default async function getBaseWebpackConfig (dir: string, {dev = false, i } } - console.log('RESOLVE_CO...
Add dir and distDir to resolve log
zeit_next.js
train
7fd526a7643db90e734d1850b9a537f6c9f7276a
diff --git a/credentials_manager/lib/credentials_manager.rb b/credentials_manager/lib/credentials_manager.rb index <HASH>..<HASH> 100644 --- a/credentials_manager/lib/credentials_manager.rb +++ b/credentials_manager/lib/credentials_manager.rb @@ -4,7 +4,7 @@ require 'credentials_manager/cli' require 'credentials_manag...
Switch from unmaintained colored to maintained colored2 (#<I>)
fastlane_fastlane
train
4cc1f509acff8d6ff51b9b893d890822665050c1
diff --git a/core/server/data/import/utils.js b/core/server/data/import/utils.js index <HASH>..<HASH> 100644 --- a/core/server/data/import/utils.js +++ b/core/server/data/import/utils.js @@ -265,7 +265,10 @@ utils = { }); ops.push(models.Settings.edit(tableData, _.extend(internal, {transacting: tran...
Ignore unknown setting keys on import fixes #<I> - Ignore NotFound setting keys
TryGhost_Ghost
train
b8c2dd2f976afa946aa78dc6c797d6b0e70f3f20
diff --git a/spec/public/controller/controllers/authentication.rb b/spec/public/controller/controllers/authentication.rb index <HASH>..<HASH> 100644 --- a/spec/public/controller/controllers/authentication.rb +++ b/spec/public/controller/controllers/authentication.rb @@ -1,47 +1,45 @@ module Merb::Test::Fixtures::Contr...
More sweet empty lines management in controller fixtures.
wycats_merb
train
34cfcdf973527ec0f3149d868e55d6600802bf9d
diff --git a/src/main/java/com/squareup/javapoet/TypeName.java b/src/main/java/com/squareup/javapoet/TypeName.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/squareup/javapoet/TypeName.java +++ b/src/main/java/com/squareup/javapoet/TypeName.java @@ -30,6 +30,7 @@ import javax.lang.model.element.TypeElement; i...
Treat ErrorType like a regular DeclaredType in TypeName.get()
square_javapoet
train
f1a25762f46233bf2439785f79f1a3aefd342499
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -57,11 +57,14 @@ class CustomBuildExtCommand(build_ext): extra_compile_args = ['-w', '-std=c++11', '-O3'] extra_link_args = [] +# Mac compilation: flags are for the llvm compilers included with recent +# versions of Xcode ...
Adding compiler compatibility notes to setup.py
UDST_pandana
train
e3f161aae5ca943b9bfd954a05b7c32a555c3657
diff --git a/elifetools/parseJATS.py b/elifetools/parseJATS.py index <HASH>..<HASH> 100644 --- a/elifetools/parseJATS.py +++ b/elifetools/parseJATS.py @@ -1716,7 +1716,7 @@ def body_block_content_render(tag): tag_content_content = [] # Collect the content of the tag but only for some tags - if tag.name n...
Body json content in media should be ignored, instead of from video (which is not an XML tag name).
elifesciences_elife-tools
train
19e1d9bcb8e524d4a68c87bdc6472ab22bb1f9e0
diff --git a/sample/src/main/java/fr/tvbarthel/cheerleader/sampleapp/ArtistActivity.java b/sample/src/main/java/fr/tvbarthel/cheerleader/sampleapp/ArtistActivity.java index <HASH>..<HASH> 100644 --- a/sample/src/main/java/fr/tvbarthel/cheerleader/sampleapp/ArtistActivity.java +++ b/sample/src/main/java/fr/tvbarthel/che...
[Sample] tweak linked to last rx android version
tvbarthel_Cheerleader
train
087059863d2bff2c23818e1e80b9372d22a5ef11
diff --git a/Generator/ConfigEntityType.php b/Generator/ConfigEntityType.php index <HASH>..<HASH> 100644 --- a/Generator/ConfigEntityType.php +++ b/Generator/ConfigEntityType.php @@ -3,6 +3,7 @@ namespace DrupalCodeBuilder\Generator; use DrupalCodeBuilder\Generator\FormattingTrait\AnnotationTrait; +use CaseConverte...
Changed calls to snakeToTitle() to use CaseConverter.
drupal-code-builder_drupal-code-builder
train
0e270ea26e0a4f619de2ae1b616a69c163e6d7f3
diff --git a/src/View/FilterStrategies/AbstractFilterStrategy.php b/src/View/FilterStrategies/AbstractFilterStrategy.php index <HASH>..<HASH> 100644 --- a/src/View/FilterStrategies/AbstractFilterStrategy.php +++ b/src/View/FilterStrategies/AbstractFilterStrategy.php @@ -253,7 +253,9 @@ abstract class AbstractFilterStra...
Updated test & coverage for string filter strategies
czim_laravel-cms-models
train
112e78300fd8ce0b81b7ffc105d78c86fe53d4c5
diff --git a/Moss/Http/Request/Request.php b/Moss/Http/Request/Request.php index <HASH>..<HASH> 100644 --- a/Moss/Http/Request/Request.php +++ b/Moss/Http/Request/Request.php @@ -71,7 +71,21 @@ class Request implements RequestInterface $this->session = & $session; $this->cookie = & $cookie; - ...
can initialize from arrays, more REST methods
mossphp_moss-framework
train
9832fd2ae46b1bc4de64b937a9e60440c66392c5
diff --git a/trunk/languagetool/testsuite.py b/trunk/languagetool/testsuite.py index <HASH>..<HASH> 100755 --- a/trunk/languagetool/testsuite.py +++ b/trunk/languagetool/testsuite.py @@ -25,12 +25,17 @@ import ChunkerTest import RulesTest import TaggerTest import EnglishTest +import GermanTest +import HungarianTest ...
Added German and Hungarian auto tests
languagetool-org_languagetool
train
ed15021fa0e5709b446d85f1347d0051fb670654
diff --git a/question/type/calculated/questiontype.php b/question/type/calculated/questiontype.php index <HASH>..<HASH> 100644 --- a/question/type/calculated/questiontype.php +++ b/question/type/calculated/questiontype.php @@ -1592,8 +1592,13 @@ class question_calculated_qtype extends default_questiontype { ...
MDL-<I> setting correctly the number of dataitem when duplicating a calculated, calculatedsimple, calculatedmulti question
moodle_moodle
train
14ba6aa3b0b4407744bcff7fe89c8d5ff1977f01
diff --git a/spec/models/annotation_spec.rb b/spec/models/annotation_spec.rb index <HASH>..<HASH> 100644 --- a/spec/models/annotation_spec.rb +++ b/spec/models/annotation_spec.rb @@ -51,7 +51,7 @@ describe ActiveAnnotations::Annotation do it "annotated_at" do subject.annotated_at = annotated_at - ...
Serialized time tests are harder than they should be.
avalonmediasystem_active_annotations
train
03733caa738e0a2cdd1b8c711e0113a0d24704d6
diff --git a/byte-buddy-dep/src/main/java/net/bytebuddy/dynamic/scaffold/TypeWriter.java b/byte-buddy-dep/src/main/java/net/bytebuddy/dynamic/scaffold/TypeWriter.java index <HASH>..<HASH> 100644 --- a/byte-buddy-dep/src/main/java/net/bytebuddy/dynamic/scaffold/TypeWriter.java +++ b/byte-buddy-dep/src/main/java/net/byte...
Added interface check to super flag.
raphw_byte-buddy
train
d77d8f0b583e4308f8349ddaa7e3e9ed08858afb
diff --git a/lxc/utils/progress.go b/lxc/utils/progress.go index <HASH>..<HASH> 100644 --- a/lxc/utils/progress.go +++ b/lxc/utils/progress.go @@ -58,14 +58,14 @@ func (p *ProgressRenderer) Done(msg string) { msg = "" } + // Truncate msg to terminal length + msg = p.truncate(msg) + // If we're not printing a c...
lxc/progress: Don't print empty lines
lxc_lxd
train
41f66d64f21c145567468d2f3edf3f8fb2bad759
diff --git a/test/plugin_helper/test_service_discovery.rb b/test/plugin_helper/test_service_discovery.rb index <HASH>..<HASH> 100644 --- a/test/plugin_helper/test_service_discovery.rb +++ b/test/plugin_helper/test_service_discovery.rb @@ -27,6 +27,7 @@ class ServiceDiscoveryHelper < Test::Unit::TestCase if @d ...
test: make sure that service_discovery exits without errors
fluent_fluentd
train
5efb3dac56b1dceef009027973b0ef2f80036970
diff --git a/tests/Common/BranchComponentTest.php b/tests/Common/BranchComponentTest.php index <HASH>..<HASH> 100644 --- a/tests/Common/BranchComponentTest.php +++ b/tests/Common/BranchComponentTest.php @@ -254,5 +254,46 @@ class BranchComponentTest extends StorageApiTestCase $branchComponents->updateConfigura...
Add testing list components for dev branch
keboola_storage-api-php-client
train
4bf360a49bd0bbf11475da7105f9a69378b7278c
diff --git a/lib/skittles/client/venue.rb b/lib/skittles/client/venue.rb index <HASH>..<HASH> 100644 --- a/lib/skittles/client/venue.rb +++ b/lib/skittles/client/venue.rb @@ -75,18 +75,6 @@ module Skittles get("venues/#{id}/herenow", options).hereNow end - # Allows a user to mark a venue to-do, with op...
Renamed marktodo to venue_marktodo to eliminate conflicts with tips.
anthonator_skittles
train
dc7707f8fb8cd1a66565a11052b6ba91df91bf29
diff --git a/src/formatters.js b/src/formatters.js index <HASH>..<HASH> 100644 --- a/src/formatters.js +++ b/src/formatters.js @@ -1,10 +1,4 @@ export class MessageFormatterBase { - constructor() { - this.pingMessage = null; - this.pingRequest = null; - this.handlePing = null; - this.han...
Reverted properties on MessageFormatterBase to be on the prototype
fanout_websockhop
train
400ea089d585a7a1e81b7fa26f6862b61f36f954
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ setup(name = "paramiko", description = "SSH2 protocol library", author = "Jeff Forcier", author_email = "jeff@bitprophet.org", - url = "http://www.lag.net/paramiko/", + url = "http...
add the url to github in the setup.py for pypi (cherry picked from commit abfefc2f<I>c<I>cc<I>d9b0b<I>c8cdd<I>f<I>c8) Conflicts: setup.py
paramiko_paramiko
train
cab04a2e1f61d7e1d40dd3db7f826aa347d34af0
diff --git a/lib/resource/Account.js b/lib/resource/Account.js index <HASH>..<HASH> 100644 --- a/lib/resource/Account.js +++ b/lib/resource/Account.js @@ -242,7 +242,7 @@ Account.prototype.createApiKey = function createApiKey(options, callback) { }; /** -* Create a {@link Factor} for this account, which can be used...
Two-factor -> Multi-factor
stormpath_stormpath-sdk-node
train
4a9ec222de6c36f21151c3ecf5d65e27447de505
diff --git a/search.go b/search.go index <HASH>..<HASH> 100644 --- a/search.go +++ b/search.go @@ -641,20 +641,20 @@ func (s *SearchService) Do(ctx context.Context) (*SearchResult, error) { // SearchResult is the result of a search in Elasticsearch. type SearchResult struct { - Header http.Header ...
Fix "_clusters" response in search result The `_clusters` field in the search response is an object, not an array. Close #<I>
olivere_elastic
train
1b82bf22169bacec8d168e5ae19208018d8a7a8b
diff --git a/app/controllers/koudoku/subscriptions_controller.rb b/app/controllers/koudoku/subscriptions_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/koudoku/subscriptions_controller.rb +++ b/app/controllers/koudoku/subscriptions_controller.rb @@ -6,7 +6,7 @@ module Koudoku before_filter :load_p...
Hotfix: hotfix: Don't load the plans two times in Subscription#index
andrewculver_koudoku
train
8e04c38ebfcf2df39926eda707bee1bf78b9d9f7
diff --git a/hclwrite/parser.go b/hclwrite/parser.go index <HASH>..<HASH> 100644 --- a/hclwrite/parser.go +++ b/hclwrite/parser.go @@ -88,6 +88,16 @@ func (it inputTokens) PartitionType(ty hclsyntax.TokenType) (before, within, aft panic(fmt.Sprintf("didn't find any token of type %s", ty)) } +func (it inputTokens) ...
hclwrite: handle legacy dot access of numeric indexes
hashicorp_hcl
train
9a8e5044c3e8bb3993f638e5e51a24fa11ec9f32
diff --git a/Base.php b/Base.php index <HASH>..<HASH> 100644 --- a/Base.php +++ b/Base.php @@ -12,7 +12,7 @@ use Joomla\Input\Input; use Joomla\Application; /** - * Joomla Platform Base Controller Class + * Joomla Framework Base Controller Class * * @since 1.0 */ diff --git a/ControllerInterface.php b/Contro...
Rename Platform to Framework in DocBlocks and Documentation
joomla-framework_controller
train
e9f9da6c04d3e21e32e991b87d2fd18834faebd5
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -14,5 +14,5 @@ setup(name='picopt', author_email='aj@slater.net', url='http://github.com/ajslater/picopt/', py_modules=['picopt'], - requires=required + install_requires=required )
use install_requires instead of requires in setup.py"
ajslater_picopt
train
4d3e64f26994c7ffc206028ec5d85f12bcf2b5a6
diff --git a/lib/bootstrapper.js b/lib/bootstrapper.js index <HASH>..<HASH> 100644 --- a/lib/bootstrapper.js +++ b/lib/bootstrapper.js @@ -210,6 +210,7 @@ Bootstrapper.prototype._initExpress = function () { app.use(bodyParser.json({ limit: "2mb" })); + app.use(require("connect-multiparty")()); ...
fixing usecases when doing report from url or submiting excel
jsreport_jsreport-core
train
1becd92b126a368d6e7d93aa8eea209414ce4aa2
diff --git a/tests/rules/test_open.py b/tests/rules/test_open.py index <HASH>..<HASH> 100644 --- a/tests/rules/test_open.py +++ b/tests/rules/test_open.py @@ -9,7 +9,10 @@ from tests.utils import Command Command(script='open foo.org'), Command(script='open foo.net'), Command(script='open foo.se'), - C...
Fix the open rule It was simply wrong with `xdg-`, `gnome-` and `kde-open`.
nvbn_thefuck
train
4d7be0741286ebe5f241b5311e8b9dcf612f0da9
diff --git a/lib/lita/adapters/shell.rb b/lib/lita/adapters/shell.rb index <HASH>..<HASH> 100644 --- a/lib/lita/adapters/shell.rb +++ b/lib/lita/adapters/shell.rb @@ -11,12 +11,13 @@ module Lita input = $stdin.gets.chomp.strip break if input == "exit" || input == "quit" message = Messag...
Send incoming message to the robot in a thread in the shell adapter.
litaio_lita
train
876be41fc7c594a6948e83259a0bbe80068324c8
diff --git a/johnny/cache.py b/johnny/cache.py index <HASH>..<HASH> 100644 --- a/johnny/cache.py +++ b/johnny/cache.py @@ -34,8 +34,7 @@ def invalidate(*tables, **kwargs): """Invalidate the current generation for one or more tables. The arguments can be either strings representing database table names or mod...
fix very subtle but that mostly will affect unit tests; when QueryCacheBackend was instantiated multiple times with a cache_backend argument, the keygen would have an outdated version of the cache backend; this wouldn't matter except when transactions came into play, because its outdated transaction manager would hav...
jmoiron_johnny-cache
train
6b634fb2c46ff408012122a41c4c3e03904e76ea
diff --git a/sherlock/transient_classifier.py b/sherlock/transient_classifier.py index <HASH>..<HASH> 100644 --- a/sherlock/transient_classifier.py +++ b/sherlock/transient_classifier.py @@ -1565,6 +1565,20 @@ END""" % locals()) self.log.info( "Could not create table (`%(crossmatchTable)s`...
don't create triggers on database if they already exist
thespacedoctor_sherlock
train
41bba4374c3d6fc96d6eded638e4a21cdd7ddc83
diff --git a/rinoh/frontend/rst/__init__.py b/rinoh/frontend/rst/__init__.py index <HASH>..<HASH> 100644 --- a/rinoh/frontend/rst/__init__.py +++ b/rinoh/frontend/rst/__init__.py @@ -58,11 +58,9 @@ class ReStructuredTextNode(TreeNode): return self.node[name] def process_content(self, style=None): - ...
rST: seems there's no need to consider xml:space
brechtm_rinohtype
train
ab1079e8607d733315e052e5f7ffcc0fa89effa9
diff --git a/client/lib/plans/constants.js b/client/lib/plans/constants.js index <HASH>..<HASH> 100644 --- a/client/lib/plans/constants.js +++ b/client/lib/plans/constants.js @@ -515,7 +515,7 @@ const getPlanEcommerceDetails = () => ( { FEATURE_ALL_BUSINESS_FEATURES, ], // Features not displayed but used for che...
Add Upload themes / plugins feature to hidden eComm feature
Automattic_wp-calypso
train