hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
146a8e34c166d2c57e3ddd9e4d1d8f816edd1081
diff --git a/lib/trackfinder.js b/lib/trackfinder.js index <HASH>..<HASH> 100644 --- a/lib/trackfinder.js +++ b/lib/trackfinder.js @@ -50,14 +50,16 @@ TrackFinder.prototype.logger = console; TrackFinder.prototype.find = function() { var files = []; var route, name; + //TODO: Figure out how to handle rel...
LIB: Add support for targetting file instead of directory.
goliatone_trackfinder
train
114ae204bd9705a22a426619aea820cb0dbbc614
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 @@ -21,7 +21,7 @@ Interface Functions: int2exprs int2tts - cat + fcat Classes: farray @@ -238,7 +238,7 @@ def int2tts(num, length=None): ...
Replace 'cat' with 'fcat' Avoids conflicting with IPython's builtin 'cat' alias.
cjdrake_pyeda
train
73fd31c807813cabd8e8146ad6b65e64d642833f
diff --git a/spec/signore/signature_spec.rb b/spec/signore/signature_spec.rb index <HASH>..<HASH> 100644 --- a/spec/signore/signature_spec.rb +++ b/spec/signore/signature_spec.rb @@ -5,18 +5,18 @@ require_relative '../spec_helper' module Signore describe Signature do before do - Database.load 'spec/fixtures/si...
Signature spec: decouple from Database
chastell_signore
train
c9e1d0a482ee02b18c80843a62bd94f19545c227
diff --git a/acme/client_test.go b/acme/client_test.go index <HASH>..<HASH> 100644 --- a/acme/client_test.go +++ b/acme/client_test.go @@ -43,7 +43,7 @@ func TestNewClient(t *testing.T) { } if client.keyType != keyType { - t.Errorf("Expected keyBits to be %d but was %d", keyType, client.keyType) + t.Errorf("Exp...
Remove keyBits from tests, use keyType instead.
go-acme_lego
train
7091db96c35967c9457bfcef9aaa8baeeb66102f
diff --git a/spec/templates/blast_spec.rb b/spec/templates/blast_spec.rb index <HASH>..<HASH> 100644 --- a/spec/templates/blast_spec.rb +++ b/spec/templates/blast_spec.rb @@ -1,7 +1,7 @@ require 'spec_helper' require File.expand_path("../../dummy/quorum/lib/search_tools/blast", __FILE__) -describe "Quorum::SearchTo...
Removed :focus from blast_spec.
ncgr_quorum
train
4b6d26b3e9fd482d714ff1af3fd1068c7222370a
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -180,7 +180,7 @@ function isStartTag(currentText) { if (currentText === userOptions.startTag) { result = true; - } else { + } else if (modules !== null) { for (i = 0; i < modules.length; i++) { currentModule = mo...
fixed a bug where not providing modules to the split handler causes a null reference error
mrnocreativity_postcss-critical-split
train
77593758f7a3e8749efc83241ef5605b9a180419
diff --git a/pyghmi/ipmi/command.py b/pyghmi/ipmi/command.py index <HASH>..<HASH> 100644 --- a/pyghmi/ipmi/command.py +++ b/pyghmi/ipmi/command.py @@ -705,7 +705,7 @@ class Command(object): 'no_access': 0x0F, } data = [b, uid & 0b00111111, - privilege_levels[privilege_level...
Try setting optional byte in set user acess Set the user session limit explicitly to lift any restrictions an implementation may default to. Some systems consider this byte mandatory though the specification says optional (From Steve Weber) Change-Id: I<I>f<I>ded<I>a<I>be<I>c<I>f<I>bd<I>
openstack_pyghmi
train
87873c219f42b49f6935a65bd0ff935cdd3cf244
diff --git a/RoboFile.php b/RoboFile.php index <HASH>..<HASH> 100644 --- a/RoboFile.php +++ b/RoboFile.php @@ -9,7 +9,9 @@ use Robo\Tasks; * * @see http://robo.li/ */ -class RoboFile extends Tasks { +class RoboFile extends Tasks implements \Psr\Log\LoggerAwareInterface { + + use \Psr\Log\LoggerAwareTrait; p...
Adding issue limit for release log generator.
acquia_blt
train
55951bc201bddc19eb61fb6d685354fd3c29b4f2
diff --git a/src/test/java/redis/clients/jedis/commands/jedis/FailoverCommandsTest.java b/src/test/java/redis/clients/jedis/commands/jedis/FailoverCommandsTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/redis/clients/jedis/commands/jedis/FailoverCommandsTest.java +++ b/src/test/java/redis/clients/jedis/comman...
Modify FAILOVER tests to reduce flakyness (#<I>)
xetorthio_jedis
train
bf507c1dda63613b27bfcf98e53a3de382a24d2b
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 @@ -27,7 +27,7 @@ VCR.configure do |c| match_requests_on: [:method, :path, :query, :body] } c.ignore_request do |req...
Delete Event VCR filter from spec helper
3scale_pisoni
train
a5616e9ad747a05296317d332a3b80c81a837996
diff --git a/bcbio/structural/validate.py b/bcbio/structural/validate.py index <HASH>..<HASH> 100644 --- a/bcbio/structural/validate.py +++ b/bcbio/structural/validate.py @@ -107,12 +107,16 @@ def _to_csv(truth_stats, stats, sample, svcaller): def _calculate_comparison_stats(truth_vcf): """Identify calls to valid...
SV validate: improve selection of merge sizes Avoid having no overlap when truth set contains lots of small regions, like the GiaB NA<I> validation set
bcbio_bcbio-nextgen
train
b0f40a0723d11a70e3ad6064cd834e07ddbc469d
diff --git a/state/export_test.go b/state/export_test.go index <HASH>..<HASH> 100644 --- a/state/export_test.go +++ b/state/export_test.go @@ -596,15 +596,15 @@ func ResourceStoragePath(c *gc.C, st *State, id string) string { func IsBlobStored(c *gc.C, st *State, storagePath string) bool { stor := storage.NewStorage...
state: Clearer structure for IsBlobStored
juju_juju
train
7a45c967b0d5acb7b9748e39bf8d72042db61500
diff --git a/Extendable.php b/Extendable.php index <HASH>..<HASH> 100644 --- a/Extendable.php +++ b/Extendable.php @@ -2,7 +2,9 @@ namespace Modulus\Support; +use Error; use Closure; +use Modulus\Support\Errors\ExtendableArgumentError; use Modulus\Support\Exceptions\CannotAddMethodException; use Modulus\Support...
feat: if there's an error, throw a new ExtendableArgumentError map everything to the caller functions
modulusphp_support
train
8a39c1dd25134e14e90f6daccdc4faad12856078
diff --git a/test/unit/cmap/connection_pool.test.js b/test/unit/cmap/connection_pool.test.js index <HASH>..<HASH> 100644 --- a/test/unit/cmap/connection_pool.test.js +++ b/test/unit/cmap/connection_pool.test.js @@ -441,12 +441,10 @@ describe('Connection Pool', function() { const actualEvents = poolEvents.f...
test: no longer look for `type` in cmap spec test runner The CMAP spec test runner was assuming a particular shape of error reported, which included a `type` field which is only useful for testing. In order to preserve an order that would actually be useful for users, we only compare error messages now.
mongodb_node-mongodb-native
train
2cc446657313bf88f7ee1aaa697645b6944eb1b2
diff --git a/drivers/shared/executor/utils.go b/drivers/shared/executor/utils.go index <HASH>..<HASH> 100644 --- a/drivers/shared/executor/utils.go +++ b/drivers/shared/executor/utils.go @@ -37,9 +37,14 @@ func CreateExecutor(logger hclog.Logger, driverConfig *base.ClientDriverConfig, return nil, nil, fmt.Errorf("un...
propogate logs to executor plugin
hashicorp_nomad
train
621a9f25e9ae969566c0fdda5bfa0cc801a52176
diff --git a/core/src/com/google/zxing/qrcode/detector/FinderPatternFinder.java b/core/src/com/google/zxing/qrcode/detector/FinderPatternFinder.java index <HASH>..<HASH> 100755 --- a/core/src/com/google/zxing/qrcode/detector/FinderPatternFinder.java +++ b/core/src/com/google/zxing/qrcode/detector/FinderPatternFinder.ja...
Switch to integer math in a critical QR Code detector method for speed and tweak a few things before I start investigating this method and the infamous "<I> issue" git-svn-id: <URL>
zxing_zxing
train
7383fd2057750051314875d0f3e72674243491e6
diff --git a/tabulator/iterator.py b/tabulator/iterator.py index <HASH>..<HASH> 100644 --- a/tabulator/iterator.py +++ b/tabulator/iterator.py @@ -14,8 +14,8 @@ class Iterator(object): def __init__(self, parser, processors): self.__parser = parser self.__processors = processors - self.__in...
[#<I>] renamed Iterator.index_* to index, count
frictionlessdata_tabulator-py
train
5f0e5819d958f8f502afd0dcfe0644bcab2cc7da
diff --git a/trunk/JLanguageTool/src/java/de/danielnaber/languagetool/AnalyzedTokenReadings.java b/trunk/JLanguageTool/src/java/de/danielnaber/languagetool/AnalyzedTokenReadings.java index <HASH>..<HASH> 100644 --- a/trunk/JLanguageTool/src/java/de/danielnaber/languagetool/AnalyzedTokenReadings.java +++ b/trunk/JLangua...
fix a special case where line break followed by tab was detected as an error
languagetool-org_languagetool
train
310d5feab5cb4a477386d84eebad9f70fa8f40dd
diff --git a/menu.js b/menu.js index <HASH>..<HASH> 100644 --- a/menu.js +++ b/menu.js @@ -59,7 +59,7 @@ class MenuItem { if (spec.css) dom.style.cssText += spec.css if (!disabled) dom.addEventListener(spec.execEvent || "mousedown", e => { e.preventDefault(); e.stopPropagation() - pm.signal("inter...
Move to a more static event system Make emitters concrete objects. Marked ranges are no longer emitters, but just take an onRemove callback option.
ProseMirror_prosemirror-menu
train
44c9241a951cde55ae0665054bda888e46f77d11
diff --git a/src/TQ/Git/Cli/Binary.php b/src/TQ/Git/Cli/Binary.php index <HASH>..<HASH> 100644 --- a/src/TQ/Git/Cli/Binary.php +++ b/src/TQ/Git/Cli/Binary.php @@ -165,18 +165,25 @@ class Binary )); } $path = array_shift($arguments); + $args = array(); + $stdIn = null; ...
Git\Binary now supports calls with stdIn as third parameter to overloaded method calls (argument 1 is the repository path, argument 2 is an array of arguments and argument 3 is the stdIn)
teqneers_PHP-Stream-Wrapper-for-Git
train
78ecc75f0681d654179aea646b5188f7c33428e9
diff --git a/niworkflows/__about__.py b/niworkflows/__about__.py index <HASH>..<HASH> 100644 --- a/niworkflows/__about__.py +++ b/niworkflows/__about__.py @@ -15,7 +15,7 @@ import runpy nipype_info = runpy.run_path(op.join(op.abspath(op.dirname(__file__)), 'nipype', 'info.py')) ...
<I>-dev version bump after release [skip ci]
poldracklab_niworkflows
train
ca00fb3e2665e952b1f5a74e124d9ac4eca4a545
diff --git a/dist/js/multiselect.js b/dist/js/multiselect.js index <HASH>..<HASH> 100755 --- a/dist/js/multiselect.js +++ b/dist/js/multiselect.js @@ -470,15 +470,17 @@ if (typeof jQuery === 'undefined') { * @attribute $right jQuery object **/ startUp: function( $left, $right ...
Fix bug = startUp function startUp function deletes all options in groups, where their values are the same. I fixed it and now removes only the selected options in groups.
crlcu_multiselect
train
bce3201868ba672e9abe97ffb7d21f58ea34a92e
diff --git a/molo/core/templatetags/core_tags.py b/molo/core/templatetags/core_tags.py index <HASH>..<HASH> 100644 --- a/molo/core/templatetags/core_tags.py +++ b/molo/core/templatetags/core_tags.py @@ -47,7 +47,7 @@ def get_pages(context, qs, locale): pages = [] for a in qs: ...
only return translation if it is live
praekeltfoundation_molo
train
954989d5068979cc3466103c13cb3278ca2480f7
diff --git a/core/client/fs/src/main/java/alluxio/client/file/FileInStream.java b/core/client/fs/src/main/java/alluxio/client/file/FileInStream.java index <HASH>..<HASH> 100644 --- a/core/client/fs/src/main/java/alluxio/client/file/FileInStream.java +++ b/core/client/fs/src/main/java/alluxio/client/file/FileInStream.ja...
restructured logic to simplify the partial caching hanlding
Alluxio_alluxio
train
62dbd1a6e4c604f50ca419b5b8b5da999b686c80
diff --git a/packages/components/bolt-toc/src/toc.js b/packages/components/bolt-toc/src/toc.js index <HASH>..<HASH> 100644 --- a/packages/components/bolt-toc/src/toc.js +++ b/packages/components/bolt-toc/src/toc.js @@ -147,7 +147,7 @@ class BoltToc extends withContext(BoltElement) { const marker = document.createE...
fix: turn off pointer events on waypoint debugger, just a bug while debugging
bolt-design-system_bolt
train
21ef971304a296e3df084dc6c5a6f695ccaaee04
diff --git a/public/js/admin.js b/public/js/admin.js index <HASH>..<HASH> 100644 --- a/public/js/admin.js +++ b/public/js/admin.js @@ -82,7 +82,7 @@ $(function() { ]; // max hits that ES should return on a search. - var MAX_SIZE = 100; + var MAX_SIZE = 1000; var options = { autoEdit: false,
Fix Bug <I> - Increase limit for make editor to <I>
mozilla_MakeAPI
train
8abfcd26d148eb060278e265355b094a54267715
diff --git a/assets/js/zaa.js b/assets/js/zaa.js index <HASH>..<HASH> 100644 --- a/assets/js/zaa.js +++ b/assets/js/zaa.js @@ -256,7 +256,7 @@ var registerEvent = function(name, cb) { var activeWindowRegisterForm = function(form, callback, cb) { $(form).submit(function(event) { event.preventDefault(); - var ac...
Updated wrong word - Leftover of the old naming
luyadev_luya-module-admin
train
f7af21d64fe3427257a65d0545063a0c6aff71e3
diff --git a/src/ManiaLib/Manialink/Node.php b/src/ManiaLib/Manialink/Node.php index <HASH>..<HASH> 100644 --- a/src/ManiaLib/Manialink/Node.php +++ b/src/ManiaLib/Manialink/Node.php @@ -210,6 +210,16 @@ abstract class Node } $this->callbacks[$event][] = $callback; } + + function prependCallback($event, $callb...
Added function to prepend (instead of append) callback
maniaplanet_manialib-manialink
train
5d615f806acfc4d0e329aed28f4f1a90a036958e
diff --git a/proso/func.py b/proso/func.py index <HASH>..<HASH> 100644 --- a/proso/func.py +++ b/proso/func.py @@ -1,3 +1,38 @@ +LAMBDA = lambda: 0 + + +def is_lambda(fun): + """ + Check whether the given function is a lambda function. + + .. testsetup:: + + from proso.func import is_lambda + + .. te...
function for detection of lambdas issues: #<I>
adaptive-learning_proso-apps
train
a73cbadf1bec7d092af3801b24db69ab35f18cde
diff --git a/lib/api-versions/middleware.rb b/lib/api-versions/middleware.rb index <HASH>..<HASH> 100644 --- a/lib/api-versions/middleware.rb +++ b/lib/api-versions/middleware.rb @@ -6,6 +6,7 @@ module ApiVersions def call(env) return @app.call(env) unless env['HTTP_ACCEPT'] + env['HTTP_ACCEPT'] += "...
Allow for requests without headers to default to V1
EDMC_api-versions
train
efbe422eab3e2eb224ee493a900ee57ef4740492
diff --git a/quilt/db.py b/quilt/db.py index <HASH>..<HASH> 100644 --- a/quilt/db.py +++ b/quilt/db.py @@ -240,6 +240,12 @@ class PatchSeries(object): return [line.get_patch() for line in self._patchlines_before(patch) \ if line.get_patch()] + def patch_before(self, patch): + patch...
Add db patch_before function Implement a patch_before function as like the patch_after function.
bjoernricks_python-quilt
train
31a377b5256de7e6155085c9b846fbcdfae9850b
diff --git a/bosh_agent/lib/bosh_agent/infrastructure/vsphere/settings.rb b/bosh_agent/lib/bosh_agent/infrastructure/vsphere/settings.rb index <HASH>..<HASH> 100644 --- a/bosh_agent/lib/bosh_agent/infrastructure/vsphere/settings.rb +++ b/bosh_agent/lib/bosh_agent/infrastructure/vsphere/settings.rb @@ -17,7 +17,7 @@ mod...
Add some changes to pull request #<I>
cloudfoundry_bosh
train
fea3f054a0d8c4357ac2b0acf9ad730ffcee06d3
diff --git a/dom/attr/attr-test.js b/dom/attr/attr-test.js index <HASH>..<HASH> 100644 --- a/dom/attr/attr-test.js +++ b/dom/attr/attr-test.js @@ -614,20 +614,19 @@ test("attr.special.focused calls after previous events", function(){ equal(domAttr.get(input, "focused"), false, "not focused yet"); }); -test("attr.s...
Use dom-mutate in inserted event test for IE9/<I>
canjs_can-util
train
64852534f662f470919b86081d9dfca1d19b43f0
diff --git a/mp3-parser.js b/mp3-parser.js index <HASH>..<HASH> 100644 --- a/mp3-parser.js +++ b/mp3-parser.js @@ -435,7 +435,7 @@ // content descriptor // // * Encoding: xx (0: ISO-8859-1, 1: 16-bit unicode 2.0 (ISO/IEC 10646-1:1993, UCS-2)) - // * Language: xx xx xx + /...
Note that lang is ISO-<I>-2 in ID3v2 COMM frames
biril_mp3-parser
train
c329441a80ab44abf19fab6a6d61ec125ee0b185
diff --git a/joomla/form/fields/editor.php b/joomla/form/fields/editor.php index <HASH>..<HASH> 100644 --- a/joomla/form/fields/editor.php +++ b/joomla/form/fields/editor.php @@ -53,9 +53,9 @@ class JFormFieldEditor extends JFormField // Build the buttons array. $buttons = (string) $this->element['buttons']; - ...
Fixed [#<I>] creating an editor with buttons=true does not show any buttons --HG-- extra : convert_revision : svn%3A6f6e1ebd-4c2b-<I>-<I>f-f<I>bde<I>bce9/development/trunk/libraries%<I>
joomla_joomla-framework
train
dee154a9954660579dd74b9bb3bfe7d0fb2b1f7f
diff --git a/nightwatch-globals.js b/nightwatch-globals.js index <HASH>..<HASH> 100644 --- a/nightwatch-globals.js +++ b/nightwatch-globals.js @@ -1,8 +1,9 @@ const { handleNightwatchResults } = require('./scripts/nightwatch-sauce'); -const testingUrl = process.env.NOW_URL - ? `https://${process.env.NOW_URL}` - : ...
Update nightwatch-globals.js
bolt-design-system_bolt
train
961406c4fa189a8c91adb26246d7fdcdaf1ea327
diff --git a/shinken/daemons/schedulerdaemon.py b/shinken/daemons/schedulerdaemon.py index <HASH>..<HASH> 100644 --- a/shinken/daemons/schedulerdaemon.py +++ b/shinken/daemons/schedulerdaemon.py @@ -180,8 +180,9 @@ class Shinken(BaseSatellite): t_to_go = c.t_to_go ref = c.ref ...
Fix : (reported by : H4wkmoon) time change compensation lead to a scheduler crash when objets don't got check perdios or notification periods.
Alignak-monitoring_alignak
train
5d64770eb4e8065d66e6231218a0d91871c30033
diff --git a/closure/goog/net/xhrio.js b/closure/goog/net/xhrio.js index <HASH>..<HASH> 100644 --- a/closure/goog/net/xhrio.js +++ b/closure/goog/net/xhrio.js @@ -93,7 +93,7 @@ goog.net.XhrIo = function(opt_xmlHttpFactory) { /** * The XMLHttpRequest object that is being used for the transfer. - * @private {g...
Remove a superfluous goog.log.warning from XhrIO. It has no effect while the document is unloading. Without that line the compiler will hopefully detect that formatMsg_ has no side effects and remove it when goog.log.ENABLED==false. ------------- Created by MOE: <URL>
google_closure-library
train
144862196e09080ce9ba5f40c243919898d064a1
diff --git a/Tests/Unit/Task/BaseTaskTest.php b/Tests/Unit/Task/BaseTaskTest.php index <HASH>..<HASH> 100644 --- a/Tests/Unit/Task/BaseTaskTest.php +++ b/Tests/Unit/Task/BaseTaskTest.php @@ -51,10 +51,8 @@ abstract class BaseTaskTest extends \PHPUnit_Framework_TestCase * This sets up a stubbed shell command servi...
[TASK] Make setUp protected method like it should be
TYPO3_Surf
train
050b2502d9b2d934ee189b707dbf75de70fe6ac7
diff --git a/package.json b/package.json index <HASH>..<HASH> 100644 --- a/package.json +++ b/package.json @@ -51,18 +51,18 @@ }, "dependencies": { "can-compute": "^3.0.0-pre.8", - "can-observation": "^3.0.0-pre.5", + "can-observation": "^3.0.0-pre.7", "can-route": "^3.0.0-pre.13", "can-util"...
upgrading to can-observation which has necessary fixes
canjs_can-stache
train
30a46eebd063a3d80020ca28b4befdcc726f1d72
diff --git a/lib/util.js b/lib/util.js index <HASH>..<HASH> 100644 --- a/lib/util.js +++ b/lib/util.js @@ -7,13 +7,17 @@ const YAML = require('js-yaml'); const debug = require('debug')('util'); const _ = require('lodash'); +const engineUtil = require('../core/lib/engine_util'); +const renderVariables = engineUtil._...
refactor: Export renderVariables from artillery/util
artilleryio_artillery
train
83c487263b7aa560d58a5e838f5e3593eec300fc
diff --git a/src/Sulu/Bundle/AdminBundle/Resources/js/containers/List/tests/adapters/TableAdapter.test.js b/src/Sulu/Bundle/AdminBundle/Resources/js/containers/List/tests/adapters/TableAdapter.test.js index <HASH>..<HASH> 100644 --- a/src/Sulu/Bundle/AdminBundle/Resources/js/containers/List/tests/adapters/TableAdapter....
Fix javascript test warnings (#<I>)
sulu_sulu
train
7321a8fdb05782efa0fa798e0650bbc9d97ee224
diff --git a/mwoauth/flask.py b/mwoauth/flask.py index <HASH>..<HASH> 100644 --- a/mwoauth/flask.py +++ b/mwoauth/flask.py @@ -102,9 +102,7 @@ class MWOAuth: @self.bp.route("/mwoauth/initiate/") def mwoauth_initiate(): - """ - Start an OAuth handshake. - """ + ...
Make one-line docstrings actually fit on one line as per PEP <I> <URL>
mediawiki-utilities_python-mwoauth
train
a0357f48ece4043b812726cdb732fb2e71029300
diff --git a/packages/neos-ui/src/localStorageMiddleware.js b/packages/neos-ui/src/localStorageMiddleware.js index <HASH>..<HASH> 100644 --- a/packages/neos-ui/src/localStorageMiddleware.js +++ b/packages/neos-ui/src/localStorageMiddleware.js @@ -8,7 +8,7 @@ import {$get} from 'plow-js'; // const localStorageMiddlewa...
TASK: decrease debounce timeout 2s is a bit too much...
neos_neos-ui
train
f3f1e569e29c72d6eb673f3b4666e0d6dd7915a4
diff --git a/km3pipe/io/hdf5.py b/km3pipe/io/hdf5.py index <HASH>..<HASH> 100644 --- a/km3pipe/io/hdf5.py +++ b/km3pipe/io/hdf5.py @@ -107,8 +107,16 @@ class HDF5Sink(Module): return blob def finish(self): - for tab in self._tables.values(): - tab.cols.event_id.create_index() + ...
Fixing indexing bug. I am not crazy
tamasgal_km3pipe
train
0c55178862318bedc9d492dabf6b0c343d24732f
diff --git a/tests/test-timber.php b/tests/test-timber.php index <HASH>..<HASH> 100644 --- a/tests/test-timber.php +++ b/tests/test-timber.php @@ -99,6 +99,12 @@ class TimberTest extends WP_UnitTestCase { $this->assertTrue(arrays_are_similar($pids, $pidz)); } + function testQueryPostsInContext(){ + $conte...
Added simple unit test to make sure that TimberQueryIterator is present in the default context
timber_timber
train
ed7974fc15f20eff0211bab78d171da078720da2
diff --git a/src/main/java/org/aludratest/scheduler/impl/ExecutionPlan.java b/src/main/java/org/aludratest/scheduler/impl/ExecutionPlan.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/aludratest/scheduler/impl/ExecutionPlan.java +++ b/src/main/java/org/aludratest/scheduler/impl/ExecutionPlan.java @@ -208,8 +20...
More bugfixes regarding empty groups and Sequential handling
AludraTest_aludratest
train
272273ad3c8b621ede7bb5166978c9aa17c98464
diff --git a/openquake/calculators/classical.py b/openquake/calculators/classical.py index <HASH>..<HASH> 100644 --- a/openquake/calculators/classical.py +++ b/openquake/calculators/classical.py @@ -380,15 +380,14 @@ def build_hcurves_and_stats(pmap_by_grp, sids, pstats, rlzs_assoc, monitor): return {} rl...
Small refactoring of combine_pmaps Former-commit-id: <I>da<I>bd<I>c2b7e<I>b<I>f<I>acbf<I>e<I>e0
gem_oq-engine
train
766dce94fbc6de4afa8215ed631328d48546c1f0
diff --git a/src/main/java/com/cloudbees/jenkins/support/impl/AboutJenkins.java b/src/main/java/com/cloudbees/jenkins/support/impl/AboutJenkins.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/cloudbees/jenkins/support/impl/AboutJenkins.java +++ b/src/main/java/com/cloudbees/jenkins/support/impl/AboutJenkins.ja...
[JENKINS-<I>] Add pinned status for plugins.
jenkinsci_support-core-plugin
train
9e99649e7e525b6ee1d4901c89711c0b0693fe4f
diff --git a/railties/lib/rails/api/task.rb b/railties/lib/rails/api/task.rb index <HASH>..<HASH> 100644 --- a/railties/lib/rails/api/task.rb +++ b/railties/lib/rails/api/task.rb @@ -121,6 +121,19 @@ module Rails rdoc_files.exclude("#{cdr}/#{pattern}") end end + + # Only generate...
Speed up RDoc generation when it's already been done once Only include files that contain changes since the last generation of the API documentation. Thus, only modified files are re-generated instead of the whole API. The `created.rid` file won't contain the whole list of files anymore if we generate several times ...
rails_rails
train
f3be0f704d7e27510a9586bee7e930829c98c2ba
diff --git a/h1/models.py b/h1/models.py index <HASH>..<HASH> 100644 --- a/h1/models.py +++ b/h1/models.py @@ -256,8 +256,22 @@ class Report(HackerOneResource): self._make_attribute("disclosed_at", self._hydrate_datetime) self._make_attribute("title", self._hydrate_verbatim) self._make_attrib...
Add some more optional fields to `Report` `issue_tracker_reference_id` and `issue_tracker_reference_url`
uber-archive_h1-python
train
4eeec03e2c8050c9492720a68de7cfc547be529d
diff --git a/src/chorddb.py b/src/chorddb.py index <HASH>..<HASH> 100644 --- a/src/chorddb.py +++ b/src/chorddb.py @@ -6,6 +6,7 @@ import os from colors import CursesColors from tab import Tablature, TerminalRenderer from window import CursesRenderer +from instrument import UKELELE, Instrument def _get_arg_pars...
Drawing chords fingering in chord pad
pignacio_chorddb
train
c0c63da42306353373df64c0d48aff8a46859d82
diff --git a/frontend/components/ResultsLoader.js b/frontend/components/ResultsLoader.js index <HASH>..<HASH> 100644 --- a/frontend/components/ResultsLoader.js +++ b/frontend/components/ResultsLoader.js @@ -8,6 +8,9 @@ import EmployeePanel from './EmployeePanel'; import ClassPanel from './ClassPanel'; import css from...
fixed bug and perf bug in results loader, all it does now is render stuff from home.js
ryanhugh_searchneu
train
c02d9d17754144cc2c10f8a58c319b6e5d6bf5bf
diff --git a/xds/internal/balancer/lrs/lrs.go b/xds/internal/balancer/lrs/lrs.go index <HASH>..<HASH> 100644 --- a/xds/internal/balancer/lrs/lrs.go +++ b/xds/internal/balancer/lrs/lrs.go @@ -332,12 +332,19 @@ func (ls *lrsStore) ReportTo(ctx context.Context, cc *grpc.ClientConn, clusterNa grpclog.Warningf("lrs: fai...
xds: LRS handle response contains multiple cluster names (#<I>) - The LRS client will find known clusters from the response, and send the loads - The LRS client support only one cluster now, will be extended to support multiple
grpc_grpc-go
train
390abc6c77de67501e7e869b3b7b6691b48c354b
diff --git a/src/test/java/com/cronutils/model/field/expression/EveryTest.java b/src/test/java/com/cronutils/model/field/expression/EveryTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/com/cronutils/model/field/expression/EveryTest.java +++ b/src/test/java/com/cronutils/model/field/expression/EveryTest.java @...
Comment failing tests for issue #<I>
jmrozanec_cron-utils
train
aa7b11271e2d06e0a31b7941319256b940195af5
diff --git a/client/js/app/components/explorer/index.js b/client/js/app/components/explorer/index.js index <HASH>..<HASH> 100644 --- a/client/js/app/components/explorer/index.js +++ b/client/js/app/components/explorer/index.js @@ -257,7 +257,7 @@ var Explorer = React.createClass({ ...
Do not show CacheToggle for funnel queries.
keen_explorer
train
c07cc2986cede7abc519a046520d7f41de41c7b0
diff --git a/activesupport/lib/active_support/core_ext/object/duplicable.rb b/activesupport/lib/active_support/core_ext/object/duplicable.rb index <HASH>..<HASH> 100644 --- a/activesupport/lib/active_support/core_ext/object/duplicable.rb +++ b/activesupport/lib/active_support/core_ext/object/duplicable.rb @@ -128,7 +12...
Remove unnecessary ruby version comments [ci skip]
rails_rails
train
b8b426c4c3ca3a74fb10f268f0902ff3b39c4ef5
diff --git a/lib/boom/storage.rb b/lib/boom/storage.rb index <HASH>..<HASH> 100644 --- a/lib/boom/storage.rb +++ b/lib/boom/storage.rb @@ -2,13 +2,20 @@ module Boom class Storage JSON_FILE = "#{ENV['HOME']}/.boom" - + + # Public: the path to the JSON file used by boom. + # + # Returns the Strin...
permit json file to be stubbed
holman_boom
train
6fd1cf05b03834f0b9ec84941bb0f1ba383830dc
diff --git a/lib/phpunit/classes/util.php b/lib/phpunit/classes/util.php index <HASH>..<HASH> 100644 --- a/lib/phpunit/classes/util.php +++ b/lib/phpunit/classes/util.php @@ -612,8 +612,11 @@ class phpunit_util { get_string_manager()->reset_caches(); events_get_handlers('reset'); textlib::res...
MDL-<I> reset repository static cache between unit tests
moodle_moodle
train
38855b5b330ec39878217f667d552928d1fca86f
diff --git a/src/lib/stack.js b/src/lib/stack.js index <HASH>..<HASH> 100644 --- a/src/lib/stack.js +++ b/src/lib/stack.js @@ -204,7 +204,7 @@ async function initializeRealtime({ if (parsedURL) { realtimeConfig.url = url } else { - realtimeConfig.url = `${ssl ? 'https:' : 'http:'}${url}` + realtimeConf...
Fix protocol used for websockets (#<I>)
cozy_cozy-bar
train
cb8c434dcf028b97bf2ea38ae2e26b6b8ad364c0
diff --git a/nat/nat.go b/nat/nat.go index <HASH>..<HASH> 100644 --- a/nat/nat.go +++ b/nat/nat.go @@ -42,44 +42,37 @@ func ParsePort(rawPort string) (int, error) { } func (p Port) Proto() string { - parts := strings.Split(string(p), "/") - if len(parts) == 1 { - return "tcp" - } - return parts[1] + proto, _ := Sp...
adding support for port ranges on --expose Closes #<I>
docker_go-connections
train
447d2558656aa376b16920a5c388d1ff2dc6f4e6
diff --git a/Form/Type/Dropzone/DropzoneType.php b/Form/Type/Dropzone/DropzoneType.php index <HASH>..<HASH> 100644 --- a/Form/Type/Dropzone/DropzoneType.php +++ b/Form/Type/Dropzone/DropzoneType.php @@ -120,7 +120,7 @@ class DropzoneType extends AbstractType $uploadableField = $this->getUploadableField($optio...
Check if image size describer is injected into Dropzone form type.
DarvinStudio_DarvinAdminBundle
train
e097267d82e35bc49e8a66fc41103dbec48145ca
diff --git a/playhouse/dataset.py b/playhouse/dataset.py index <HASH>..<HASH> 100644 --- a/playhouse/dataset.py +++ b/playhouse/dataset.py @@ -61,12 +61,14 @@ class DataSet(object): def get_export_formats(self): return { 'csv': CSVExporter, - 'json': JSONExporter} + 'jso...
Add support for item APIs to dataset tables.
coleifer_peewee
train
23b0085f453454462542ae6e0fd67915b760ee4e
diff --git a/core/src/main/java/hudson/model/AbstractCIBase.java b/core/src/main/java/hudson/model/AbstractCIBase.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/hudson/model/AbstractCIBase.java +++ b/core/src/main/java/hudson/model/AbstractCIBase.java @@ -36,6 +36,7 @@ import org.kohsuke.stapler.StaplerProxy...
[FIXED JENKINS-<I>] Catch and log RuntimeException in setNode Also make sure we don't mark the Computer as used so that we kill any executors that may be related to it somehow.
jenkinsci_jenkins
train
b97bd89b04c7f5a83fac458e3d6f23b0707ef5a6
diff --git a/genson/__init__.py b/genson/__init__.py index <HASH>..<HASH> 100644 --- a/genson/__init__.py +++ b/genson/__init__.py @@ -1,2 +1,2 @@ -from .generator import Schema -__all__ = ['Schema'] +from .generator import SchemaNode +__all__ = ['SchemaNode'] diff --git a/genson/generator.py b/genson/generator.py inde...
rename Schema => SchemaNode
wolverdude_GenSON
train
5e72b7536957157f21ebae89ee9c3424d7ba6e2a
diff --git a/src/Routing/Router.php b/src/Routing/Router.php index <HASH>..<HASH> 100644 --- a/src/Routing/Router.php +++ b/src/Routing/Router.php @@ -18,7 +18,6 @@ use Cake\Core\App; use Cake\Core\Configure; use Cake\Error; use Cake\Network\Request; -use Cake\Routing\RouteCollection; use Cake\Routing\ScopedRouteCo...
Fix failing tests and issue where / would be incorrectly handled.
cakephp_cakephp
train
da1a1d70b8a3668a59de863d32132db6eaffadb6
diff --git a/astroid/brain/brain_subprocess.py b/astroid/brain/brain_subprocess.py index <HASH>..<HASH> 100644 --- a/astroid/brain/brain_subprocess.py +++ b/astroid/brain/brain_subprocess.py @@ -67,7 +67,7 @@ def _subprocess_transform(): encoding=None, errors=None, universal_newlines=False, -...
Remove extraneous comma
PyCQA_astroid
train
f52413f96d3d6ac466668d67708d22d4b15963e4
diff --git a/progressbar/utils.py b/progressbar/utils.py index <HASH>..<HASH> 100644 --- a/progressbar/utils.py +++ b/progressbar/utils.py @@ -386,7 +386,7 @@ def format_time(tval, precision=datetime.timedelta(seconds=1)): if isinstance(tval, six.string_types + six.integer_types + (float, )): try: - ...
Used simpler castfunc = six.integer_types[-1] as suggested by @WoLpH
WoLpH_python-progressbar
train
08af260763e0ad523fb9da736ad1ebd33b5afa19
diff --git a/components/view.js b/components/view.js index <HASH>..<HASH> 100644 --- a/components/view.js +++ b/components/view.js @@ -41,6 +41,7 @@ var render_states = exports.RENDER_STATES = { RENDER_STARTED : 2, RENDER_COMPLETE : 3, RENDER_FAILED : 4, + RENDER_CANCELLED : 5 }; /** @@ -255,6 +256,11 @@ View...
attempt to stop all child elements on a force render, completes #<I>
Dashron_roads
train
b2462ed13fdca73ae47bf19257703e6802997d96
diff --git a/webapps/client/scripts/tasklist/directives/cam-tasklist-tasks.js b/webapps/client/scripts/tasklist/directives/cam-tasklist-tasks.js index <HASH>..<HASH> 100644 --- a/webapps/client/scripts/tasklist/directives/cam-tasklist-tasks.js +++ b/webapps/client/scripts/tasklist/directives/cam-tasklist-tasks.js @@ -1...
chore(code): add lost code
camunda_camunda-bpm-platform
train
ca7126cef6f281e46317cc6e3d5fc5358263b694
diff --git a/test/acts_as_approvable_model_test.rb b/test/acts_as_approvable_model_test.rb index <HASH>..<HASH> 100644 --- a/test/acts_as_approvable_model_test.rb +++ b/test/acts_as_approvable_model_test.rb @@ -3,6 +3,12 @@ require 'test_helper' class ActsAsApprovableModelTest < Test::Unit::TestCase load_schema +...
Remove all records between tests and test #options_for_type
Tapjoy_acts_as_approvable
train
f933fd666bdd8366323f31e01ee6612115f760c6
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -8,11 +8,16 @@ setup( author='Adam Coddington', author_email='me@adamcoddington.net', classifiers=[ + 'Framework :: Django', 'Intended Audience :: Developers', 'License :: OSI Approved :...
Updating trove classifiers.
coddingtonbear_django-mailbox
train
7c00857787777bea9ba4acd809f30b61bf62361d
diff --git a/lib/models/upgrade/from0to1.js b/lib/models/upgrade/from0to1.js index <HASH>..<HASH> 100644 --- a/lib/models/upgrade/from0to1.js +++ b/lib/models/upgrade/from0to1.js @@ -191,7 +191,7 @@ function makeProvider(name, repo, user) { // TODO: how do I know if it's not github? var parts = name.split('/') ...
project url needs to be case-sensitive, so use display_url
Strider-CD_strider
train
693368950921ee97dc4b8626e79c0c1768809caa
diff --git a/devices.js b/devices.js index <HASH>..<HASH> 100755 --- a/devices.js +++ b/devices.js @@ -1301,6 +1301,7 @@ const devices = [ {modelID: 'TS0601', manufacturerName: '_TZE200_wunufsil'}, {modelID: 'TS0601', manufacturerName: '_TZE200_vhy3iakz'}, {modelID: 'TS0601', manu...
Update devices.js (#<I>) Extent vendors/product list for TuYa TS<I>_switch
Koenkk_zigbee-shepherd-converters
train
e653e1d7f0a7467f74778e330d769f14b3df1d76
diff --git a/lib/coral.js b/lib/coral.js index <HASH>..<HASH> 100644 --- a/lib/coral.js +++ b/lib/coral.js @@ -19,8 +19,26 @@ var Coral = function(app) { router.create(path, model); router.update(path + '/:id', model); router.remove(path + '/:id', model); - } + } else { + + if ( !! ~meth...
Added functionality to create routes for specific methods
prathamesh7pute_coral
train
8c638d0fc394c76916df7fc012b3078e41afd691
diff --git a/lib/pkgforge/components/source.rb b/lib/pkgforge/components/source.rb index <HASH>..<HASH> 100644 --- a/lib/pkgforge/components/source.rb +++ b/lib/pkgforge/components/source.rb @@ -32,6 +32,7 @@ module PkgForge dest_file = tmpfile(:source_tar) File.open(dest_file, 'wb') do |fh| open...
support checksumming for tar source, fixes #<I>
akerl_pkgforge
train
61eae12a238344c043a67c6b23cd584935156ae3
diff --git a/app/Resources/Elasticsearch/mapping_template.json b/app/Resources/Elasticsearch/mapping_template.json index <HASH>..<HASH> 100644 --- a/app/Resources/Elasticsearch/mapping_template.json +++ b/app/Resources/Elasticsearch/mapping_template.json @@ -166,8 +166,12 @@ } }, ...
feat: added protocol version v2 to job
keboola_syrup
train
a056619b1965e1bb349007041b3e9ef2dfa11817
diff --git a/grimoire_elk/ocean/elastic.py b/grimoire_elk/ocean/elastic.py index <HASH>..<HASH> 100644 --- a/grimoire_elk/ocean/elastic.py +++ b/grimoire_elk/ocean/elastic.py @@ -108,6 +108,11 @@ class ElasticOcean(object): """ Get the perceval params given a URL for the data source """ return [url] ...
[ocean] Add new method get_arthur_params_from_url to get the perceval backend parms in the format arthur expects it.
chaoss_grimoirelab-elk
train
25407e9095a6f33190ac4cbf10877765c6784d0d
diff --git a/fsdb/Fsdb.py b/fsdb/Fsdb.py index <HASH>..<HASH> 100644 --- a/fsdb/Fsdb.py +++ b/fsdb/Fsdb.py @@ -57,7 +57,7 @@ class Fsdb(object): if Fsdb.configExists(fsdbRoot): # warn user about config ignoring and load config from file - self.logger.warn("fsdb config file found. Runt...
log level and file transfer optimization - skipping transfer of an already stored file - log level from warning to debug for 'runtime parameters will be ignored'
ael-code_pyFsdb
train
d74d0c1070af01b03728af90f41278c1d3f7f4ec
diff --git a/library/CM/Params.php b/library/CM/Params.php index <HASH>..<HASH> 100644 --- a/library/CM/Params.php +++ b/library/CM/Params.php @@ -11,7 +11,7 @@ class CM_Params extends CM_Class_Abstract implements CM_Debug_DebugInfoInterface * @throws CM_Exception_Invalid */ public function __construct...
merge decoded and encoded params-objects in merge-test don't create a new empty array when passing an empty array to CM_Params constructor added some tests about encoded/decoded parameter instantiation
cargomedia_cm
train
3f57e27019238aac159f0a5ec72c495088b61a9a
diff --git a/lib/stemcell.rb b/lib/stemcell.rb index <HASH>..<HASH> 100644 --- a/lib/stemcell.rb +++ b/lib/stemcell.rb @@ -101,17 +101,36 @@ module Stemcell @log.info "all instances in running state" end - def do_launch(opts={}) - options = { - :image_id => @image, - :security_groups...
allow launch params to be passed in method instead of initializer
airbnb_stemcell
train
395495be1cde34ea3ed8bc8c36d46be52ced0e29
diff --git a/src/main/java/com/michelin/cio/hudson/plugins/maskpasswords/MaskPasswordsBuildWrapper.java b/src/main/java/com/michelin/cio/hudson/plugins/maskpasswords/MaskPasswordsBuildWrapper.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/michelin/cio/hudson/plugins/maskpasswords/MaskPasswordsBuildWrapper.jav...
Added TODO regarding the decorateLogger() call
jenkinsci_mask-passwords-plugin
train
f28208731ecc0eed3c9c50f274f2cb6919cba966
diff --git a/lib/consulService.js b/lib/consulService.js index <HASH>..<HASH> 100755 --- a/lib/consulService.js +++ b/lib/consulService.js @@ -37,10 +37,14 @@ exports.registerWithManager = function (manager) { return "kronos"; }, + get serviceId() { + return this.serviceName; + }, + serviceDefinition() ...
feat(logging): show service definition durin startup
Kronos-Integration_kronos-service-consul
train
707d2288d91f84317e6a1339875ddf3eb0701c51
diff --git a/modules/activiti-engine/pom.xml b/modules/activiti-engine/pom.xml index <HASH>..<HASH> 100644 --- a/modules/activiti-engine/pom.xml +++ b/modules/activiti-engine/pom.xml @@ -94,7 +94,6 @@ <exclude>**/*TestCase.java</exclude> <exclude>**/HistoricDataServiceImplTest.java</exclude> ...
ACT-<I> removed last sub process test exclude
Activiti_Activiti
train
9c435fe5e7c738c1e9732b10cbe08d6329908996
diff --git a/client/java-armeria/src/main/java/com/linecorp/centraldogma/client/armeria/AbstractArmeriaCentralDogmaBuilder.java b/client/java-armeria/src/main/java/com/linecorp/centraldogma/client/armeria/AbstractArmeriaCentralDogmaBuilder.java index <HASH>..<HASH> 100644 --- a/client/java-armeria/src/main/java/com/lin...
Make client-side health check interval configurable / Increase the default health check interval (#<I>) Motivation: The default client-side health check interval of `3` seconds is so short that the number of health check requests overwhelmn others. Modifications: - Increased the default health check interval...
line_centraldogma
train
34e4c18b3bb54b1020b123bd4b1975eccc13ee40
diff --git a/blockstack_cli_0.14.1/blockstack_registrar/registrar/rpc_daemon.py b/blockstack_cli_0.14.1/blockstack_registrar/registrar/rpc_daemon.py index <HASH>..<HASH> 100644 --- a/blockstack_cli_0.14.1/blockstack_registrar/registrar/rpc_daemon.py +++ b/blockstack_cli_0.14.1/blockstack_registrar/registrar/rpc_daemon....
wait for rpc daemon to initialize
blockstack_blockstack-core
train
4de057da6067a6e91265d4b80a4aa47693b2c868
diff --git a/src/Entity/ClientEntity.php b/src/Entity/ClientEntity.php index <HASH>..<HASH> 100644 --- a/src/Entity/ClientEntity.php +++ b/src/Entity/ClientEntity.php @@ -4,5 +4,13 @@ namespace Phisch90\OAuth\Server\Entity; interface ClientEntity { + /** + * @return array + */ + public function getGra...
client entities should expose grant types and secret so it can be validated inside this library instead of a repository
phisch_oauth-server
train
ac8c25b22e0558230e80008f8b1cfc2d89d8396e
diff --git a/lib/features/keyboard/Keyboard.js b/lib/features/keyboard/Keyboard.js index <HASH>..<HASH> 100644 --- a/lib/features/keyboard/Keyboard.js +++ b/lib/features/keyboard/Keyboard.js @@ -88,6 +88,9 @@ module.exports = Keyboard; Keyboard.prototype.bind = function(node) { + // make sure that the keyboard is...
fix(keyboard): unbind before bind
bpmn-io_diagram-js
train
91e56f7b6b6ce4400bb38845770d62a58e40c010
diff --git a/cmd/corectl/main.go b/cmd/corectl/main.go index <HASH>..<HASH> 100644 --- a/cmd/corectl/main.go +++ b/cmd/corectl/main.go @@ -12,7 +12,6 @@ import ( "chain/core/generator" "chain/crypto/ed25519" - "chain/database/pg" "chain/database/sql" "chain/env" "chain/log" @@ -40,8 +39,7 @@ var commands = ...
database/pg: remove SchemaDriver There is no need for the SchemaDriver anymore, since no postgres functions are loaded at runtime. Closes chain/chainprv#<I>. Reviewers: @jbowens
chain_chain
train
917a8e015bf703295f5ffe4a616203199d070691
diff --git a/skrebate/_version.py b/skrebate/_version.py index <HASH>..<HASH> 100644 --- a/skrebate/_version.py +++ b/skrebate/_version.py @@ -19,4 +19,4 @@ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ -__version__ = '0.3...
Apply fixes from <I> release
EpistasisLab_scikit-rebate
train
6b25a23a3d93479635736aadad87649c92946028
diff --git a/redisson/src/main/java/org/redisson/codec/CustomObjectInputStream.java b/redisson/src/main/java/org/redisson/codec/CustomObjectInputStream.java index <HASH>..<HASH> 100644 --- a/redisson/src/main/java/org/redisson/codec/CustomObjectInputStream.java +++ b/redisson/src/main/java/org/redisson/codec/CustomObje...
Fixed - SerializationCodec doesn't support proxied classes. #<I>
redisson_redisson
train
dfed333e1b1c36afa6e74b7a62c332057bbdb7ac
diff --git a/system/src/Grav/Common/Twig/Twig.php b/system/src/Grav/Common/Twig/Twig.php index <HASH>..<HASH> 100644 --- a/system/src/Grav/Common/Twig/Twig.php +++ b/system/src/Grav/Common/Twig/Twig.php @@ -238,7 +238,7 @@ class Twig // Process Modular Twig if ($item->modularTwig()) { ...
Set `html` in admin not in here…
getgrav_grav
train
bb33725fff8f275cb6bffe8219843c03d2096ebc
diff --git a/examples/basic.php b/examples/basic.php index <HASH>..<HASH> 100644 --- a/examples/basic.php +++ b/examples/basic.php @@ -1,6 +1,6 @@ <?php -require_once __DIR__ . '/../src/bootstrap.php'; +require_once __DIR__ . '/../vendor/autoload.php'; // Using a plain data array source for simplicity use Camspi...
Typo fix in examples bootstrap path
camspiers_statistical-classifier
train
0826d66e8b1462e3a52fa7fbda66254364395fe4
diff --git a/src/electron-child.js b/src/electron-child.js index <HASH>..<HASH> 100644 --- a/src/electron-child.js +++ b/src/electron-child.js @@ -82,26 +82,6 @@ const _consumeInput = () => { case 'initialize': { const {url, width: initialWidth, height: initialHeight, devicePixelRatio, inline, trans...
Remove electron resize event emits
exokitxr_exokit
train
23f2a17004a837405f52563c0ad55954b2644854
diff --git a/pyecoregen/cli.py b/pyecoregen/cli.py index <HASH>..<HASH> 100644 --- a/pyecoregen/cli.py +++ b/pyecoregen/cli.py @@ -33,7 +33,6 @@ def generate_from_cli(args): ) parser.add_argument( '--auto-register-package', - '-a', help="Generate package auto-registration for the PyEc...
Change the dict argument to a named argument
pyecore_pyecoregen
train
34045a45c8d383a0477d32164bf6eaa7d052737c
diff --git a/src/compatibility/timeout.js b/src/compatibility/timeout.js index <HASH>..<HASH> 100644 --- a/src/compatibility/timeout.js +++ b/src/compatibility/timeout.js @@ -64,6 +64,7 @@ function _gpfHandleTimeout () { while (queue.length) { timeoutItem = queue.shift(); now = new Date(); + ...
Skip uncovered code (with explanations)
ArnaudBuchholz_gpf-js
train
422a30112da31039ac455edfba47028a5ec276d1
diff --git a/fast/atomic_structure.py b/fast/atomic_structure.py index <HASH>..<HASH> 100644 --- a/fast/atomic_structure.py +++ b/fast/atomic_structure.py @@ -104,7 +104,11 @@ class Atom(object): The mass of the atom (in kilograms) >>> print atom.mass 1.40999341816e-25 - + ...
Added atomic radius as an Atom attribute.
oscarlazoarjona_fast
train
e18ea0636edc55593fba845677adaf5fe39012d5
diff --git a/packages/react-icons/scripts/writeIcons.js b/packages/react-icons/scripts/writeIcons.js index <HASH>..<HASH> 100644 --- a/packages/react-icons/scripts/writeIcons.js +++ b/packages/react-icons/scripts/writeIcons.js @@ -84,12 +84,12 @@ function writeIcons(icons) { writeCJSExport(fname, jsName, icon); ...
fix(icons,tokens): no star reexport (#<I>)
patternfly_patternfly-react
train
eee74ab2beb9de5ece7fe1cbee37f6fdea238f5c
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,9 @@ from distutils.core import setup +# TODO: Make sure that we are using Python >= 2.7. This needs to be required +# since we are using the new(er) argparse module we need to enforce this +# requirement. See super...
Adding a TODO about Python version check
JensRantil_rewind
train
9584caeb2f6de4634e0bc0521b50d1d97cf61975
diff --git a/Code/Version1.0/cannon1_train_model.py b/Code/Version1.0/cannon1_train_model.py index <HASH>..<HASH> 100644 --- a/Code/Version1.0/cannon1_train_model.py +++ b/Code/Version1.0/cannon1_train_model.py @@ -3,7 +3,7 @@ # Currently, this is a bit sketchy...there were sections of the original code that I didn'...
make cannon1_train_model compatible with Dataset object
annayqho_TheCannon
train