hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
df3cf6679be00a837b904f846c313918758889d3
diff --git a/commands/ping.py b/commands/ping.py index <HASH>..<HASH> 100755 --- a/commands/ping.py +++ b/commands/ping.py @@ -20,7 +20,7 @@ from helpers.misc import recordping from helpers.command import Command -@Command('ping', ['handler', 'target', 'config']) +@Command('ping', ['handler', 'target', 'config', '...
make ping do more ctcp
tjcsl_cslbot
train
d160e92cae5177b5f0fc79a5f13bfcf17315b8dc
diff --git a/lib/client.js b/lib/client.js index <HASH>..<HASH> 100644 --- a/lib/client.js +++ b/lib/client.js @@ -618,22 +618,22 @@ var ace, exec, load, io, join, daffy, restafary, loadRemote; function loadFiles(callback) { exec.series([ function(callback) { - ...
feature(client) speed up: load join.js and load.js in parallel only when they need
cloudcmd_edward
train
15955e62a695a10327455d1b8bb7c6afe07fb282
diff --git a/lib/logger-events/index.js b/lib/logger-events/index.js index <HASH>..<HASH> 100644 --- a/lib/logger-events/index.js +++ b/lib/logger-events/index.js @@ -2,6 +2,8 @@ var Emitter = require('component-emitter'); var utils = require('./utils'); +var Mode = require('./mode'); +var Modifier = require('./mod...
use classes when creating instances for modes and modifiers
jonschlinkert_verbalize
train
47e0e02297d6a43f8e9cb062e041802f93e4b09b
diff --git a/compiler/util.py b/compiler/util.py index <HASH>..<HASH> 100644 --- a/compiler/util.py +++ b/compiler/util.py @@ -22,7 +22,7 @@ import string import textwrap -_SIMPLE_CHARS = set(string.digits + string.letters + string.punctuation) +_SIMPLE_CHARS = set(string.digits + string.letters + string.punctuati...
make strings with spaces easier to read (#<I>)
google_grumpy
train
83990cd63c6b3963dd69632eb3baf6c276d6c67e
diff --git a/modules/activiti-webapp/src/main/webapp/js/activiti-widget.js b/modules/activiti-webapp/src/main/webapp/js/activiti-widget.js index <HASH>..<HASH> 100644 --- a/modules/activiti-webapp/src/main/webapp/js/activiti-widget.js +++ b/modules/activiti-webapp/src/main/webapp/js/activiti-widget.js @@ -134,7 +134,7 ...
Made sure large images are scrollable as well, I assume they suffer from the same problem as in ACT-<I> & ACT-<I>
Activiti_Activiti
train
49a7671d553ea427d10d5995e94e9d753e7dabc2
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -29,6 +29,7 @@ module.exports = function(grunt) { all: { src: [ 'tasks/**/*.js', + 'src/**/*.js', 'Gruntfile.js' ] } diff --git a/src/Job.js b/src/...
Added the src directory to the coding style checking. Fixed the coding style errors.
axemclion_grunt-saucelabs
train
6529f30cb5bbef7ddb407939cd5d4feb58b51bb2
diff --git a/bundles/org.eclipse.orion.client.git/web/orion/git/gitCommands.js b/bundles/org.eclipse.orion.client.git/web/orion/git/gitCommands.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.git/web/orion/git/gitCommands.js +++ b/bundles/org.eclipse.orion.client.git/web/orion/git/gitCommands.js @...
Bug <I> - Pull does not display known hosts error
eclipse_orion.client
train
0c5f3bc6daf8e41f98d1baf0a7d2843c6741fa75
diff --git a/lib/natto.rb b/lib/natto.rb index <HASH>..<HASH> 100644 --- a/lib/natto.rb +++ b/lib/natto.rb @@ -117,7 +117,9 @@ module Natto # @return parsing result from <tt>mecab</tt> # @raise [MeCabError] if the <tt>mecab</tt> parser cannot parse the given string <tt>str</tt> def parse(str) - self...
On-going development to support nbest option. user: buruzaemon <<EMAIL>> branch 'default' changed lib/natto.rb changed lib/natto/binding.rb changed test/natto/tc_binding.rb
buruzaemon_natto
train
ceeebb24473e9f8109cf82ad3a22ef31ca006e8a
diff --git a/fenixedu/__init__.py b/fenixedu/__init__.py index <HASH>..<HASH> 100644 --- a/fenixedu/__init__.py +++ b/fenixedu/__init__.py @@ -153,11 +153,11 @@ class FenixEduClient(object): else: params = None - r = self._api_public_request(endpoints.DEGREE, {'id': id}) + r = self._api_public_request(endpoi...
Fixed some not working endpoints and changed module name to just fenixedu
samfcmc_fenixedu-python-sdk
train
d5f06c508a03d403f1663859d76b61ebb1aded47
diff --git a/lib/client-sessions.js b/lib/client-sessions.js index <HASH>..<HASH> 100644 --- a/lib/client-sessions.js +++ b/lib/client-sessions.js @@ -287,7 +287,7 @@ var cookieSession = function(opts) { raw_session = new Session(req, res, cookies, opts); } catch (x) { // this happens only if there's...
improve error message when secure cookies are run on an insecure socket - also surpress this error from getting printed to stderr when tests are being run - closes #<I>
mozilla_node-client-sessions
train
7d8dcd2aae2547f8a0407618b60cba1ece8b8236
diff --git a/src/collection.js b/src/collection.js index <HASH>..<HASH> 100644 --- a/src/collection.js +++ b/src/collection.js @@ -50,6 +50,7 @@ internals.find = function (collection, modelData) { }; Collection.prototype.merge = function (models, options) { + if (!models) return this; if (!Array.isArray(models)...
collection#merge is a noop with falsy input
bendrucker_consumr
train
f03fd2db27a273a40fa63b8c672e67a9f8df5b39
diff --git a/library/src/main/java/com/github/ksoichiro/android/observablescrollview/CacheFragmentStatePagerAdapter.java b/library/src/main/java/com/github/ksoichiro/android/observablescrollview/CacheFragmentStatePagerAdapter.java index <HASH>..<HASH> 100644 --- a/library/src/main/java/com/github/ksoichiro/android/obse...
Fix some warnings by Android Studio. - Removed redundant type parameter. - Added SuppressWarnings annotation for intentional usage of deprecated method.
ksoichiro_Android-ObservableScrollView
train
9e6dc4a50834cf96e52d16e016dd4381dd9fb1a2
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -120,7 +120,7 @@ function sailsGenerate(opts) { - descriptor.paths[path] = {}; + descriptor.paths[path] = descriptor.paths[path] || {}; descriptor.paths[path][route.method] = ...
fix: there can be many methods per endpoints
jasancheg_sails-custom-swagger-hook
train
835578cf298f9e643e7210aaa902a537d53db7e3
diff --git a/tests/test_ldlf.py b/tests/test_ldlf.py index <HASH>..<HASH> 100644 --- a/tests/test_ldlf.py +++ b/tests/test_ldlf.py @@ -349,6 +349,29 @@ class TestToAutomaton: assert dfa.accepts([i_a, i_b]) assert not dfa.accepts([i_a, i_a]) + def test_convertible_atomics(self): + parser = ...
New test: LDLf atomics to automaton.
MarcoFavorito_flloat
train
840f7e7d88f1dc2e21941ec3d5e110b423087b6a
diff --git a/src/Symfony/Component/Validator/Constraints/Length.php b/src/Symfony/Component/Validator/Constraints/Length.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Validator/Constraints/Length.php +++ b/src/Symfony/Component/Validator/Constraints/Length.php @@ -57,13 +57,6 @@ class Length extends Const...
[Validator] Set Length::$allowEmptyString to false when a NotBlank contraint is defined
symfony_symfony
train
26d30f3d1a8c0caca854f7040d07555c6f794b0f
diff --git a/mwparserfromhell/parser/tokenizer.py b/mwparserfromhell/parser/tokenizer.py index <HASH>..<HASH> 100644 --- a/mwparserfromhell/parser/tokenizer.py +++ b/mwparserfromhell/parser/tokenizer.py @@ -461,7 +461,7 @@ class Tokenizer(object): return padding def _actually_handle_chunk(self, chunks, ...
Seems to be working for quoted attributes now.
earwig_mwparserfromhell
train
dd046161430d7105a4a7c4dd15ed5229eeb02927
diff --git a/tests/test_reqparse.py b/tests/test_reqparse.py index <HASH>..<HASH> 100644 --- a/tests/test_reqparse.py +++ b/tests/test_reqparse.py @@ -26,7 +26,7 @@ class ReqParseTestCase(unittest.TestCase): req = Mock(['values']) req.values = MultiDict([('foo', 'three')]) parser....
Fixed tests to reflect the changes in error bundling/jsonifying
flask-restful_flask-restful
train
fa36dcbe098ad6f491507213223dc278ccc0d24f
diff --git a/examples/exception_monitoring.py b/examples/exception_monitoring.py index <HASH>..<HASH> 100644 --- a/examples/exception_monitoring.py +++ b/examples/exception_monitoring.py @@ -23,7 +23,7 @@ class CustomHandler(Handler): # and can do anything with it (log, send to external service, etc) ...
Use ``isinstance(`` instead of ``issubclass(type(`` When we already have an `instance` it's less typing and faster to use `isinstance`.
huge-success_sanic
train
5977f63d4193af6dd8528db008d915fd2190c932
diff --git a/influxdb/_dataframe_client.py b/influxdb/_dataframe_client.py index <HASH>..<HASH> 100644 --- a/influxdb/_dataframe_client.py +++ b/influxdb/_dataframe_client.py @@ -87,7 +87,7 @@ class DataFrameClient(InfluxDBClient): def _to_dataframe(self, json_result, time_precision): dataframe = pd.DataF...
Pythonic: `x in dict.keys()` => `x in dict`
influxdata_influxdb-python
train
21d18138486776a3f3f33fcbfdd5486670cd2645
diff --git a/lib/codemirror.js b/lib/codemirror.js index <HASH>..<HASH> 100644 --- a/lib/codemirror.js +++ b/lib/codemirror.js @@ -1581,6 +1581,21 @@ window.CodeMirror = (function() { else if (dy == null) dy = e.wheelDelta; var scroll = cm.display.scroller; + // On some browsers, horizontal scrolling wil...
Handle horizontal scroll directly, if ratio known, on browsers where needed Issue #<I>
codemirror_CodeMirror
train
0c49c675de62c722248a414e0339e77e4a56d9fe
diff --git a/src/symbolfunctions/modifier.js b/src/symbolfunctions/modifier.js index <HASH>..<HASH> 100644 --- a/src/symbolfunctions/modifier.js +++ b/src/symbolfunctions/modifier.js @@ -4,6 +4,9 @@ export default function modifier() { var drawArray1 = []; var drawArray2 = []; var bbox = new ms.BBox(this.metad...
Fix handling of frame color override
spatialillusions_milsymbol
train
cc1cd22471f39f9c3c56d105486feebd336a1fb9
diff --git a/salt/states/dockerio.py b/salt/states/dockerio.py index <HASH>..<HASH> 100644 --- a/salt/states/dockerio.py +++ b/salt/states/dockerio.py @@ -961,17 +961,40 @@ def running(name, create = __salt__['docker.create_container'] image_name = _get_image_name(image, tag) iinfos = ins_image(image_nam...
improve detection of changes of docker.running If a container is running with an outdated image, then we stop it and destroy it, before create and start a new one with the same name.
saltstack_salt
train
73fb9500e3d565c94bc53e80fe3fbf09ea8d25e6
diff --git a/photutils/segmentation/properties.py b/photutils/segmentation/properties.py index <HASH>..<HASH> 100644 --- a/photutils/segmentation/properties.py +++ b/photutils/segmentation/properties.py @@ -1045,19 +1045,18 @@ class SourceProperties: determined using bilinear interpolation. """ - ...
Add background_at_centroid SourceCatalog method for performance
astropy_photutils
train
54bce9bdedac1532d540631629c0c6461457ce3a
diff --git a/github_release.py b/github_release.py index <HASH>..<HASH> 100755 --- a/github_release.py +++ b/github_release.py @@ -99,7 +99,16 @@ def patch_release(repo_name, current_tag_name, **values): "draft": release["draft"], "prerelease": release["prerelease"] } + + updated = [] + for...
style: Update "gh_release_edit" to print summary of changes
j0057_github-release
train
e28cd40d7b4ac1e98a370cc6dcacedec6ef1d5b0
diff --git a/modules/activiti-engine/src/main/java/org/activiti/engine/impl/bpmn/parser/handler/EventBasedGatewayParseHandler.java b/modules/activiti-engine/src/main/java/org/activiti/engine/impl/bpmn/parser/handler/EventBasedGatewayParseHandler.java index <HASH>..<HASH> 100644 --- a/modules/activiti-engine/src/main/ja...
Exclusive and event based gateway can be async as well
Activiti_Activiti
train
c398e226a76135904d42c5816d982c8df2f0e9e4
diff --git a/janome/fst.py b/janome/fst.py index <HASH>..<HASH> 100644 --- a/janome/fst.py +++ b/janome/fst.py @@ -336,26 +336,6 @@ def compileFST(fst): return b''.join(arcs) -class Arc(object): - u""" - Arc class - """ - def __init__(self): - self.flag = 0 - self.label = 0 - s...
Use tuple instead of Arc() object to reduce object creation cost.
mocobeta_janome
train
5037f87003488a12efc047e3b15c56b24e718f31
diff --git a/nodeconductor/iaas/log.py b/nodeconductor/iaas/log.py index <HASH>..<HASH> 100644 --- a/nodeconductor/iaas/log.py +++ b/nodeconductor/iaas/log.py @@ -133,6 +133,10 @@ class AggregateAlertFilter(BaseExternalFilter): """ def filter(self, request, queryset, view): + # Don't apply filter if ...
Make services loggable (NC-<I>)
opennode_waldur-core
train
8c44fada4fa020b38a62e141ab611997452fc122
diff --git a/pymagicc/api.py b/pymagicc/api.py index <HASH>..<HASH> 100644 --- a/pymagicc/api.py +++ b/pymagicc/api.py @@ -324,6 +324,91 @@ class MAGICCBase(object): stepsperyear=12, ) + def set_output_variables(self, write_ascii=True, write_binary=False, **kwargs): + """ + Writ...
Added function to limit the variables MAGICC writes
openclimatedata_pymagicc
train
45659ed56616fc07d3f4b9a7b3897323039d74c1
diff --git a/src/Async.spec.js b/src/Async.spec.js index <HASH>..<HASH> 100644 --- a/src/Async.spec.js +++ b/src/Async.spec.js @@ -1,7 +1,7 @@ import "jest-dom/extend-expect" import React from "react" import { render, fireEvent, cleanup, waitForElement } from "react-testing-library" -import Async, { createInstance }...
Import from the index to make sure it exports things correctly.
ghengeveld_react-async
train
905f3363ef17b042d064c598125216eed0eda8fb
diff --git a/parsers/mysql/mysql.go b/parsers/mysql/mysql.go index <HASH>..<HASH> 100644 --- a/parsers/mysql/mysql.go +++ b/parsers/mysql/mysql.go @@ -66,6 +66,7 @@ const ( normalizedQueryKey = "normalized_query" statementKey = "statement" tablesKey = "tables" + commentsKey = "comments" //...
[mysql] send comments as another event field
honeycombio_honeytail
train
104c06ac9d2aa2a403480a078b59278a4b1d2e06
diff --git a/mod/forum/locallib.php b/mod/forum/locallib.php index <HASH>..<HASH> 100644 --- a/mod/forum/locallib.php +++ b/mod/forum/locallib.php @@ -296,8 +296,8 @@ class forum_portfolio_caller extends portfolio_module_caller_base { $options = new stdClass(); $options->para = true; $format ...
Incorrect order of content processing during forum post portfolio export During the portfolio export, portfolio_rewrite_pluginfile_urls() must be called before format_text(). Otherwise some filters can interfere with internal raw record syntax. For example, the Algebra Notation uses @@ for its own purposes and it used...
moodle_moodle
train
86aeacfdbdcb664440a216a55ab1b485a445100b
diff --git a/apio/commands/build.py b/apio/commands/build.py index <HASH>..<HASH> 100644 --- a/apio/commands/build.py +++ b/apio/commands/build.py @@ -15,6 +15,7 @@ if sys.version_info > (3, 0): unicode = str +# pylint: disable=W0622 @click.command("build") @click.pass_context @click.option( diff --git a/ap...
lint: "redefined-builtin" Errors fixed
FPGAwars_apio
train
91c58dd3ef36e9959741cadcd3b13934ca94310e
diff --git a/src/test/org/openscience/cdk/qsar/descriptors/molecular/WienerNumbersDescriptorTest.java b/src/test/org/openscience/cdk/qsar/descriptors/molecular/WienerNumbersDescriptorTest.java index <HASH>..<HASH> 100644 --- a/src/test/org/openscience/cdk/qsar/descriptors/molecular/WienerNumbersDescriptorTest.java +++ ...
Added two further unit tests: one to see if the descriptor properly 'ignores' hydrogens; a second to reproduce the numbers in the original Wiener paper from <I>
cdk_cdk
train
8d88fbe71df8d7d1a3e2f6beb85a9cf0ebc8c870
diff --git a/src/org/parosproxy/paros/view/FindDialog.java b/src/org/parosproxy/paros/view/FindDialog.java index <HASH>..<HASH> 100644 --- a/src/org/parosproxy/paros/view/FindDialog.java +++ b/src/org/parosproxy/paros/view/FindDialog.java @@ -124,6 +124,13 @@ public class FindDialog extends AbstractDialog { Stri...
Feature: - Find (CTRL-F) now does Wrap Search Note: - User has to click first into text window to use find. This is a little usability problem.
zaproxy_zaproxy
train
d5dd4a92a373d562114201565da249cb218fbfd3
diff --git a/src/DataPool/SearchEngine/IntegrationTestSearchEngineAbstract.php b/src/DataPool/SearchEngine/IntegrationTestSearchEngineAbstract.php index <HASH>..<HASH> 100644 --- a/src/DataPool/SearchEngine/IntegrationTestSearchEngineAbstract.php +++ b/src/DataPool/SearchEngine/IntegrationTestSearchEngineAbstract.php @...
Issue #<I>: Rename test utility method
lizards-and-pumpkins_catalog
train
96ad71347369b21cf8cd4926c0240a3950c2bbb8
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ +# 0.9.1 +- Don't require aws keys for Stemcell::Launcher to allow for launching via iam role -# next release +# 0.9.0 - ... # 0.8.1 diff --git a/lib/stemcell/launcher.rb b/lib/stemcell/launc...
Don't require AWS keys to launch instances This will let machines launch using IAM roles
airbnb_stemcell
train
a1d9c7e8cd95f84af9372a74922e3643ee30d2ce
diff --git a/src/Wave/Framework/External/Phroute/RouteResolver.php b/src/Wave/Framework/External/Phroute/RouteResolver.php index <HASH>..<HASH> 100644 --- a/src/Wave/Framework/External/Phroute/RouteResolver.php +++ b/src/Wave/Framework/External/Phroute/RouteResolver.php @@ -23,7 +23,7 @@ class RouteResolver implements ...
Fixed typo for the method call 'reolve' -> 'resolve'
DaGhostman_codewave
train
35f65bde4068adb828521eb495d5cb7d9e743252
diff --git a/tests/base.py b/tests/base.py index <HASH>..<HASH> 100644 --- a/tests/base.py +++ b/tests/base.py @@ -33,7 +33,10 @@ def new_user(model): return self.user def __exit__(self, type, value, traceback): - self.user.delete() + try: + self.user.delete(...
test exception for not_saved_model.delete()
tevino_mongu
train
94cd43db5d2051b81a608a9337be90f7507c0033
diff --git a/nion/swift/ProjectPanel.py b/nion/swift/ProjectPanel.py index <HASH>..<HASH> 100644 --- a/nion/swift/ProjectPanel.py +++ b/nion/swift/ProjectPanel.py @@ -476,7 +476,7 @@ class ProjectTreeCanvasItemDelegate(Widgets.ListCanvasItemDelegate): class ProjectTreeWidget(Widgets.CompositeWidgetBase): def __...
Remove unneeded stylesheet from project panel column widgets.
nion-software_nionswift
train
f9a4f2d3e9899ca012206abba00e52f3b36ffc19
diff --git a/src/main/java/com/j256/ormlite/dao/BaseDaoImpl.java b/src/main/java/com/j256/ormlite/dao/BaseDaoImpl.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/j256/ormlite/dao/BaseDaoImpl.java +++ b/src/main/java/com/j256/ormlite/dao/BaseDaoImpl.java @@ -669,6 +669,7 @@ public abstract class BaseDaoImpl<T, ...
Added missing check for init.
j256_ormlite-core
train
bdaf4773ba6ac16b7119c511ba9a3926f14d4d41
diff --git a/examples/ptpython_config/config.py b/examples/ptpython_config/config.py index <HASH>..<HASH> 100644 --- a/examples/ptpython_config/config.py +++ b/examples/ptpython_config/config.py @@ -4,8 +4,11 @@ Configuration example for ``ptpython``. Copy this file to ~/.ptpython/config.py """ from __future__ impor...
Added example of binding jj to escape in config.py example.
prompt-toolkit_ptpython
train
7a552b1817cdec34f74c2537d58dbbcbdc295e97
diff --git a/Kwf/Util/Build/Types/Assets.php b/Kwf/Util/Build/Types/Assets.php index <HASH>..<HASH> 100644 --- a/Kwf/Util/Build/Types/Assets.php +++ b/Kwf/Util/Build/Types/Assets.php @@ -73,7 +73,7 @@ class Kwf_Util_Build_Types_Assets extends Kwf_Util_Build_Types_Abstract } } if (Kwf_Comp...
Build Assets: generate urls after generating package contents If we do that before too early scss files have to be compiled in the first step
koala-framework_koala-framework
train
0c68f45daeb34e257f47fdcaf684d47e105cb07c
diff --git a/stubs/GEOSGeometry.php b/stubs/GEOSGeometry.php index <HASH>..<HASH> 100644 --- a/stubs/GEOSGeometry.php +++ b/stubs/GEOSGeometry.php @@ -27,7 +27,7 @@ class GEOSGeometry * * @return float|null Returns NULL on error. */ - public function project(GEOSGeometry $other, $normalized) {} + ...
Fixed GEOSGeometry stubs
brick_geo
train
10c81932e556f040b5ff6851bcf201354476df15
diff --git a/itools.py b/itools.py index <HASH>..<HASH> 100644 --- a/itools.py +++ b/itools.py @@ -151,3 +151,14 @@ def chunkGenerator( seq, size ): result = tuple( itertools.islice( seq, size ) ) if not result: break yield result + +def adjacentPairs( i ): + """Yield adjacent pairs of a single iterable a...
Added adjacentPairs method (for seasearcher).
jaraco_jaraco.itertools
train
fcb06a126aae91e65ea9e050c8ad8d0c6f5be06e
diff --git a/lib/chef/resource/cron/cron_d.rb b/lib/chef/resource/cron/cron_d.rb index <HASH>..<HASH> 100644 --- a/lib/chef/resource/cron/cron_d.rb +++ b/lib/chef/resource/cron/cron_d.rb @@ -160,6 +160,7 @@ class Chef source ::File.expand_path("../support/cron.d.erb", __dir__) local true ...
Fixed cron_d resource ignoring sensitive property
chef_chef
train
4e82a1131199e101ff9f42810f64c00f83391a13
diff --git a/core/src/main/java/io/grpc/Channel.java b/core/src/main/java/io/grpc/Channel.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/io/grpc/Channel.java +++ b/core/src/main/java/io/grpc/Channel.java @@ -41,11 +41,11 @@ import javax.annotation.concurrent.ThreadSafe; * * <p>Applications can add common...
Make Channel/Server abstract classes Abstract classes allow us greater ability to change them over time. They previously were interfaces to allow us to use Guava's AbstractService.
grpc_grpc-java
train
9ff44e38d6e656e978cdbb3e0861168b0a26f86a
diff --git a/kubernetes/tracker/images/runner.py b/kubernetes/tracker/images/runner.py index <HASH>..<HASH> 100644 --- a/kubernetes/tracker/images/runner.py +++ b/kubernetes/tracker/images/runner.py @@ -29,6 +29,7 @@ logging.config.dictConfig({ # Setup Application from pyhadoopapi.apps.tracker.service import create...
added ServiceError exception trapping for service
alexmilowski_pyox
train
31e380c841c57ae0435a3aec454370c7c4ed7287
diff --git a/lib/fluent/plugin_helper/event_loop.rb b/lib/fluent/plugin_helper/event_loop.rb index <HASH>..<HASH> 100644 --- a/lib/fluent/plugin_helper/event_loop.rb +++ b/lib/fluent/plugin_helper/event_loop.rb @@ -40,7 +40,11 @@ module Fluent end def event_loop_wait_until_start - ::Thread.pass u...
fix to wait start/stop of plugin helpers before/after tests
fluent_fluentd
train
73764c5b60abeea6d88a907f41e0f7b2a2a856b1
diff --git a/datadog_checks_dev/datadog_checks/dev/tooling/e2e/docker.py b/datadog_checks_dev/datadog_checks/dev/tooling/e2e/docker.py index <HASH>..<HASH> 100644 --- a/datadog_checks_dev/datadog_checks/dev/tooling/e2e/docker.py +++ b/datadog_checks_dev/datadog_checks/dev/tooling/e2e/docker.py @@ -52,9 +52,10 @@ class ...
Use the new split images (#<I>)
DataDog_integrations-core
train
5456a4dc4735435951179846fa8e04a6d28f65c9
diff --git a/src/module.js b/src/module.js index <HASH>..<HASH> 100644 --- a/src/module.js +++ b/src/module.js @@ -23,7 +23,7 @@ const executeAndReturn = (command) => { const executeAndCapture = (command, log) => { const chunks = []; const tokens = command.split(/\s/); - const shell = spawn(tokens.shift()...
use spawn-args for all commands
chrisguttandin_karma-virtualbox-edge-launcher
train
7e0a240b762c766c5454f85f077baff473db46e8
diff --git a/public/source/staging.js b/public/source/staging.js index <HASH>..<HASH> 100644 --- a/public/source/staging.js +++ b/public/source/staging.js @@ -253,6 +253,10 @@ var ImageDiffViewModel = function(ancestor) { this.ancestor = ancestor; this.templateName = 'imageFileDiff'; this.diffs = ko.observable();...
Moving more object to ImagDiffVM
FredrikNoren_ungit
train
e19d391a62a78614c9e156e7303557d2467d2f86
diff --git a/Swat/SwatTableViewRowColumn.php b/Swat/SwatTableViewRowColumn.php index <HASH>..<HASH> 100644 --- a/Swat/SwatTableViewRowColumn.php +++ b/Swat/SwatTableViewRowColumn.php @@ -22,26 +22,35 @@ class SwatTableViewRowColumn extends SwatTableViewColumn public $offset = 0; // }}} - // {{{ protected function...
Don't mangle the column visible property. svn commit r<I>
silverorange_swat
train
17110f4170644bd7679a8a486fce5e23bfa0841e
diff --git a/lxd/events.go b/lxd/events.go index <HASH>..<HASH> 100644 --- a/lxd/events.go +++ b/lxd/events.go @@ -11,7 +11,6 @@ import ( "github.com/lxc/lxd/lxd/rbac" "github.com/lxc/lxd/lxd/response" "github.com/lxc/lxd/shared" - "github.com/lxc/lxd/shared/logger" ) var eventTypes = []string{"logging", "ope...
lxd/events: Removes duplicate event connection logging
lxc_lxd
train
081c35526cfbfff6f6393a4f6f67efff89306b14
diff --git a/lib/server/console.js b/lib/server/console.js index <HASH>..<HASH> 100644 --- a/lib/server/console.js +++ b/lib/server/console.js @@ -13,8 +13,6 @@ win = require('win32'), socket = require(DIR_SERVER + 'socket'), - equalPart = Util.isContainS...
feature(console) cd: works with ";, &&; ||" add command
cloudcmd_console-io
train
8eb3cd7699a91c9272447b4cc81e2c06dd9e4e07
diff --git a/lib/cocoapods_plugin.rb b/lib/cocoapods_plugin.rb index <HASH>..<HASH> 100644 --- a/lib/cocoapods_plugin.rb +++ b/lib/cocoapods_plugin.rb @@ -1,5 +1,4 @@ require 'cocoapods' -require 'pod/src/configuration' require 'pod/src/rewriter' module Pod
don't require things that don't exist
brianmichel_cocoapods-git_url_rewriter
train
11fef95f4e5c2f36357899a0ce8fd032abc6bc6a
diff --git a/Controller/HelperController.php b/Controller/HelperController.php index <HASH>..<HASH> 100644 --- a/Controller/HelperController.php +++ b/Controller/HelperController.php @@ -153,6 +153,7 @@ class HelperController $formBuilder = $admin->getFormBuilder(); $form = $formBuilder->getForm(); ...
Setting subject data form on retrieve form field element (#<I>) * Setting subject data form on retrieve form field element AdminInterface::getFormBuilder signature doesn't accept any parameter currently (it do nothing with $subject) so, before that, the form does not have a binded data ($subject) i.e their childre...
sonata-project_SonataAdminBundle
train
0591d92f53e91f9aec88e561634da9e437f793ad
diff --git a/lib/devise.rb b/lib/devise.rb index <HASH>..<HASH> 100755 --- a/lib/devise.rb +++ b/lib/devise.rb @@ -290,6 +290,10 @@ module Devise mattr_accessor :token_generator @@token_generator = nil + def self.rails51? # :nodoc: + Rails.gem_version >= Gem::Version.new("5.1.x") + end + # Default way t...
Move the version check to the lib folder Closes #<I>. Fixes #<I>.
plataformatec_devise
train
12f2fbd5eabc4cc5d85386bfd4aa92a3b3a12797
diff --git a/provider.go b/provider.go index <HASH>..<HASH> 100644 --- a/provider.go +++ b/provider.go @@ -96,14 +96,15 @@ func createTokenPair(token string, p *policy) (string, error) { } permTokenOpts := struct { - Ttl string `json:"ttl,omitempty"` - Policies []string `json:"policies"...
provider: make the perm token renewable
nemosupremo_vault-gatekeeper
train
fd614bc0887844336a3fd81798ff28f8f7481979
diff --git a/core/amplify.core.js b/core/amplify.core.js index <HASH>..<HASH> 100644 --- a/core/amplify.core.js +++ b/core/amplify.core.js @@ -7,12 +7,18 @@ * * http://amplifyjs.com */ -(function( $, undefined ) { +(function( undefined ) { -var slice = [].slice, +var $ = ( this.jQuery || this.AMPLIFY ), + slic...
Removed jQuery dependency for core and store.
nodeGame_shelf.js
train
e3b80fdb9e373f7f352f5d168c497fe32d66a007
diff --git a/peewee.py b/peewee.py index <HASH>..<HASH> 100644 --- a/peewee.py +++ b/peewee.py @@ -18,6 +18,7 @@ import uuid from collections import deque from collections import namedtuple from copy import deepcopy +from functools import wraps from inspect import isclass __all__ = [ @@ -2094,6 +2095,7 @@ class ...
Use wraps decorator so we don't lose the identity of the decorated function
coleifer_peewee
train
2c43a3bcd09b72630d2ce8981bf41afd6499735e
diff --git a/src/Composer/DependencyResolver/Rule.php b/src/Composer/DependencyResolver/Rule.php index <HASH>..<HASH> 100644 --- a/src/Composer/DependencyResolver/Rule.php +++ b/src/Composer/DependencyResolver/Rule.php @@ -30,7 +30,7 @@ class Rule const RULE_PACKAGE_ALIAS = 13; /** - * The literals this...
Improve docblocks of public properties
mothership-ec_composer
train
d1c325438e8e14318bda1689006927349c6a0fcd
diff --git a/examples/google.py b/examples/google.py index <HASH>..<HASH> 100644 --- a/examples/google.py +++ b/examples/google.py @@ -2,6 +2,14 @@ from rauth.service import OAuth2Service # Get a real consumer key & secret from: # https://code.google.com/apis/console/ +# +# When creating a client id choose: +# - ...
Fix redirect URI. This special URI tells Google to display a code with along instructions to copy-paste it. Added some instructional comments to help configure the Google API project properly. Also simplified the prompt for code (parameter).
litl_rauth
train
01bfad54566a308c9768a6fc28b124ac6b352300
diff --git a/dolo/compiler/compiler_matlab.py b/dolo/compiler/compiler_matlab.py index <HASH>..<HASH> 100644 --- a/dolo/compiler/compiler_matlab.py +++ b/dolo/compiler/compiler_matlab.py @@ -38,8 +38,8 @@ class CompilerMatlab(object): states = model.symbols_s['states'] parameters = model.sym...
Add default values for equation compilation to suppress the writting of infinite bounds
EconForge_dolo
train
86c214e57856b0f12a3e5a83d23d2249f0816453
diff --git a/doc/source/v0.15.0.txt b/doc/source/v0.15.0.txt index <HASH>..<HASH> 100644 --- a/doc/source/v0.15.0.txt +++ b/doc/source/v0.15.0.txt @@ -794,6 +794,6 @@ needed interpolating (:issue:`7173`). (:issue:`8230`). - Bug with ``DatetimeIndex.asof`` incorrectly matching partial strings and returning the wron...
BUG: plot methods modified rcParams
pandas-dev_pandas
train
16e218edb02a0c63f61ab0ab3c5de49e75e226b4
diff --git a/ipyleaflet/leaflet.py b/ipyleaflet/leaflet.py index <HASH>..<HASH> 100644 --- a/ipyleaflet/leaflet.py +++ b/ipyleaflet/leaflet.py @@ -919,7 +919,6 @@ class Map(DOMWidget, InteractMixin): def __init__(self, **kwargs): super(Map, self).__init__(**kwargs) - self.on_displayed(self._fire_...
Remove on_displayed event listener
jupyter-widgets_ipyleaflet
train
a0c5d76e9fa9582b1c70a3cc34a112a522ac9fb3
diff --git a/TodoBase.py b/TodoBase.py index <HASH>..<HASH> 100644 --- a/TodoBase.py +++ b/TodoBase.py @@ -114,6 +114,14 @@ class TodoBase(object): """ Returns the todo text with tags stripped off. """ return self.text + def projects(self): + """ Returns a list of projects associated with ...
Add two accessors for projects and contexts.
bram85_topydo
train
890ca99e177519cf330895e1e9b3eed010c7dcc7
diff --git a/src/capture.js b/src/capture.js index <HASH>..<HASH> 100644 --- a/src/capture.js +++ b/src/capture.js @@ -2,7 +2,7 @@ var Capture = module.exports = function (robot) { this.robot = robot; - this.captured = {}; + this.captured = []; this.completeCallback = function () {}; }; @@ -35,17 +35,17 @...
Use indices to identity captured output
smashwilson_hubot-pipe
train
61c18fa3d024ddc9143ac21f14ac160fb68722a1
diff --git a/py25/bacpypes/npdu.py b/py25/bacpypes/npdu.py index <HASH>..<HASH> 100755 --- a/py25/bacpypes/npdu.py +++ b/py25/bacpypes/npdu.py @@ -744,6 +744,11 @@ class WhatIsNetworkNumber(NPDU): messageType = 0x12 + def __init__(self, *args, **kwargs): + super(WhatIsNetworkNumber, self).__init__(*a...
fix WhatIsNetworkNumber and NetworkNumberIs encoding/decoding
JoelBender_bacpypes
train
55123c50234993157b5f85774e8b00307830fe4a
diff --git a/pcapkit/protocols/protocol.py b/pcapkit/protocols/protocol.py index <HASH>..<HASH> 100644 --- a/pcapkit/protocols/protocol.py +++ b/pcapkit/protocols/protocol.py @@ -30,7 +30,8 @@ from pcapkit.corekit.protochain import ProtoChain from pcapkit.protocols.data.protocol import Packet as DataType_Packet from ...
revised protocol base cls (get packet in case when header length not supported)
JarryShaw_PyPCAPKit
train
4c3bcaf1cc418008ccf39cdd4658e85c36adff53
diff --git a/examples/webapi2/sample.py b/examples/webapi2/sample.py index <HASH>..<HASH> 100644 --- a/examples/webapi2/sample.py +++ b/examples/webapi2/sample.py @@ -13,20 +13,16 @@ CALLBACK_URL = "http://localhost:%d/callback" % PORT MAIN_PAGE_HTML = """\ <html> <body> - <script src="https://cdn.auth0.com/w2/...
Migration Auth0Widget -> Auth0Lock
auth0_auth0-python
train
33ef46524cb90c79853870d76ea1c8eaf01d5ce3
diff --git a/lib/poolparty/core/kernel.rb b/lib/poolparty/core/kernel.rb index <HASH>..<HASH> 100644 --- a/lib/poolparty/core/kernel.rb +++ b/lib/poolparty/core/kernel.rb @@ -24,14 +24,21 @@ module Kernel ensure $-v = saved_verbosity end + + #redirect stdout and stderr to /dev/null and reopen after block ...
redirect stdout and stderr to /dev/null and reopen after block for hide_output method
auser_poolparty
train
8898eba97380b376129098afc2ad7f9a64ead9c9
diff --git a/jarn/mkrelease/tests/test_setuptools.py b/jarn/mkrelease/tests/test_setuptools.py index <HASH>..<HASH> 100644 --- a/jarn/mkrelease/tests/test_setuptools.py +++ b/jarn/mkrelease/tests/test_setuptools.py @@ -40,20 +40,20 @@ class SubversionTests(SubversionSetup): def testSubversionSdistPy(self): ...
Don't need the quiet arg here.
Jarn_jarn.mkrelease
train
726d94c8e9f44986b58053e65ff52cdeb779eadd
diff --git a/callbacks.go b/callbacks.go index <HASH>..<HASH> 100644 --- a/callbacks.go +++ b/callbacks.go @@ -34,12 +34,12 @@ func BasicAuthorizer(credentials map[string]string) *Callback { }) } -// TimestampValidator will set timestamp fields on create and update operations. +// TimestampModifier will set timest...
renanmed to timestamp modifier
256dpi_fire
train
fa0c3ce1e6bb7d7fcbc1928a58f0253a879d051b
diff --git a/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb b/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb index <HASH>..<HASH> 100644 --- a/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb +++ b/kitchen-tests/cookbooks/end_to_end/recipes/windows.rb @@ -47,6 +47,30 @@ windows_firewall_profile "Publ...
fix for the windows_audit_policy resource and added some tests for it into the windows end-to-end kitchen testing.
chef_chef
train
0d0bc02950f75c8cc43d6b4f3af02c872ff42629
diff --git a/wolframalpha/__init__.py b/wolframalpha/__init__.py index <HASH>..<HASH> 100644 --- a/wolframalpha/__init__.py +++ b/wolframalpha/__init__.py @@ -113,8 +113,8 @@ class Client: resp = urllib.request.urlopen(url) assert resp.headers.get_content_type() == 'text/xml' assert resp.head...
Process Document subclasses during the XML parsing.
jaraco_wolframalpha
train
6f952718643cd13c72a2b9fbfa8a79198d2a1bb6
diff --git a/src/com/google/javascript/jscomp/CheckRequiresForConstructors.java b/src/com/google/javascript/jscomp/CheckRequiresForConstructors.java index <HASH>..<HASH> 100644 --- a/src/com/google/javascript/jscomp/CheckRequiresForConstructors.java +++ b/src/com/google/javascript/jscomp/CheckRequiresForConstructors.ja...
Treat "goog" as a Closurized namespace unconditionally. ------------- Created by MOE: <URL>
google_closure-compiler
train
367eb1f80c6dc7f6fbcbbef48a51bc95259514a3
diff --git a/lib/rest_pki/authentication.rb b/lib/rest_pki/authentication.rb index <HASH>..<HASH> 100755 --- a/lib/rest_pki/authentication.rb +++ b/lib/rest_pki/authentication.rb @@ -13,12 +13,12 @@ module RestPki def start_with_webpki(security_context_id) request = {securityContextId: security_...
Fixed request method calls and nil values;
LacunaSoftware_RestPkiRubyClient
train
dcd68633bc41fd7582bc327323a446c072d0a3a6
diff --git a/scripts/importer/mtasks/snfactory.py b/scripts/importer/mtasks/snfactory.py index <HASH>..<HASH> 100644 --- a/scripts/importer/mtasks/snfactory.py +++ b/scripts/importer/mtasks/snfactory.py @@ -7,18 +7,19 @@ from glob import glob import os from scripts import PATH -from . constants import TRAVIS_QUERY_...
MAINT: added missing OSC constants.
astrocatalogs_astrocats
train
f0cbace3536a7a4e8eea4944635f002a9501640f
diff --git a/lime/submodular_pick.py b/lime/submodular_pick.py index <HASH>..<HASH> 100644 --- a/lime/submodular_pick.py +++ b/lime/submodular_pick.py @@ -122,3 +122,4 @@ class SubmodularPick(object): remaining_indices -= {best_ind} self.sp_explanations = [self.explanations[i] for i in V...
saves picked indices close issue #<I>
marcotcr_lime
train
f71c078c289b7f89d00f0538cb8b3fcd1e743955
diff --git a/bigtable-grpc-interface/src/main/java/com/google/cloud/bigtable/grpc/ReconnectingChannel.java b/bigtable-grpc-interface/src/main/java/com/google/cloud/bigtable/grpc/ReconnectingChannel.java index <HASH>..<HASH> 100644 --- a/bigtable-grpc-interface/src/main/java/com/google/cloud/bigtable/grpc/ReconnectingCh...
Fixing the logger in ReconnectingChannel.
googleapis_cloud-bigtable-client
train
fd76b87ab8e2ffca83eb4affae63a1b72a455688
diff --git a/worker/uniter/storage/source.go b/worker/uniter/storage/source.go index <HASH>..<HASH> 100644 --- a/worker/uniter/storage/source.go +++ b/worker/uniter/storage/source.go @@ -210,7 +210,6 @@ func (s *storageHookQueue) Update(attachment params.StorageAttachment) error { if attachment.Life == params.Alive {...
worker/uniter/storage: remove TODO
juju_juju
train
c0efc5dc20952601722095cafb24a8152342e4ff
diff --git a/salt/modules/virt.py b/salt/modules/virt.py index <HASH>..<HASH> 100644 --- a/salt/modules/virt.py +++ b/salt/modules/virt.py @@ -867,6 +867,7 @@ def purge(vm_, dirs=False): if dirs: for dir_ in directories: shutil.rmtree(dir_) + undefine(vm_) return True diff --git a...
Add vm_info and destroy to the virt runner
saltstack_salt
train
b9aec349a7127e74b49578a9187143f2f0fda9ae
diff --git a/src/main/java/com/wiley/autotest/selenium/elements/upgrade/DefaultTeasyElementFactory.java b/src/main/java/com/wiley/autotest/selenium/elements/upgrade/DefaultTeasyElementFactory.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/wiley/autotest/selenium/elements/upgrade/DefaultTeasyElementFactory.jav...
made constructor package-private as per suggestion in review
WileyLabs_teasy
train
28300467a81a23f6e488d8c82bcd64c94f7fe028
diff --git a/src/Model/MessagePerson.php b/src/Model/MessagePerson.php index <HASH>..<HASH> 100644 --- a/src/Model/MessagePerson.php +++ b/src/Model/MessagePerson.php @@ -83,6 +83,14 @@ class MessagePerson implements MessagePersonInterface /** * {@inheritdoc} */ + public function setNotRead() + {...
Add setNotRead() method in MessagePerson
FriendsOfSymfony_FOSMessage
train
a468edd1646ba76a19221e43173dd4fb8677ee03
diff --git a/library/CM/Dom/NodeList.php b/library/CM/Dom/NodeList.php index <HASH>..<HASH> 100644 --- a/library/CM/Dom/NodeList.php +++ b/library/CM/Dom/NodeList.php @@ -138,7 +138,7 @@ class CM_Dom_NodeList implements Iterator, Countable { $xpath = preg_replace('/\[([\w-]+)\]/', '[@$1]', $xpath); $xpath = s...
Fixed callback in CM_Dom_NodeList
cargomedia_cm
train
e6d83459a37fc4f5f086311399a2f8beb41c6505
diff --git a/src/Krucas/Counter/Counter.php b/src/Krucas/Counter/Counter.php index <HASH>..<HASH> 100644 --- a/src/Krucas/Counter/Counter.php +++ b/src/Krucas/Counter/Counter.php @@ -155,6 +155,8 @@ class Counter return $values; } + + return new Exists(false); } /**
When not found any ranges return false
edvinaskrucas_counter
train
0144fce918fa755447557a218cbf70f71d46030a
diff --git a/main.js b/main.js index <HASH>..<HASH> 100755 --- a/main.js +++ b/main.js @@ -619,26 +619,28 @@ define(function (require, exports, module) { return; } var current_string_from_start_to_cursor = current_line.substr(0, cursor_position.ch); + var variable_name; + va...
added empty check for "go to declaration" command
yacut_brackets-nodejs-integration
train
6eb949701890fef8d0d81b9aa8ef908c02d471cb
diff --git a/gshell-assembly/src/main/java/org/apache/gshell/Main.java b/gshell-assembly/src/main/java/org/apache/gshell/Main.java index <HASH>..<HASH> 100644 --- a/gshell-assembly/src/main/java/org/apache/gshell/Main.java +++ b/gshell-assembly/src/main/java/org/apache/gshell/Main.java @@ -28,6 +28,7 @@ import org.apac...
Tidy, add better tokens for main --help, move ansi muck to Main for now
jdillon_gshell
train
aa0af0e8bf4e29fefa6bf074533fff266c38d566
diff --git a/src/main/java/io/github/classgraph/ClassInfo.java b/src/main/java/io/github/classgraph/ClassInfo.java index <HASH>..<HASH> 100644 --- a/src/main/java/io/github/classgraph/ClassInfo.java +++ b/src/main/java/io/github/classgraph/ClassInfo.java @@ -142,7 +142,7 @@ public class ClassInfo extends ScanResultObje...
Solve JSON serialization exception (#<I>)
classgraph_classgraph
train
35cfd6991391de1876902290cf12d7646ce62289
diff --git a/qpth/qp.py b/qpth/qp.py index <HASH>..<HASH> 100755 --- a/qpth/qp.py +++ b/qpth/qp.py @@ -74,6 +74,14 @@ class QPFunction(Function): Returns: \hat z: a (nBatch, nz) Tensor. """ + if not np.all([x.is_cuda for x in [Q_,p_,G_,h_,A_,b_]]): + raise RuntimeError(""" +Error: ...
Add RuntimeError if CUDA is not being used.
locuslab_qpth
train
da259a8ec77caa424d14d7e2f4f86b5a666cff50
diff --git a/gcloud/pubsub/_gax.py b/gcloud/pubsub/_gax.py index <HASH>..<HASH> 100644 --- a/gcloud/pubsub/_gax.py +++ b/gcloud/pubsub/_gax.py @@ -162,22 +162,16 @@ class _PublisherAPI(object): :raises: :exc:`gcloud.exceptions.NotFound` if the topic does not exist """ - opt...
Remove CallOptions and missed commented code.
googleapis_google-cloud-python
train
1f6591feb2bbbae660e03b4e0a5973e9e26ef08e
diff --git a/src/test/java/org/jboss/netty/bootstrap/AbstractSocketClientBootstrapTest.java b/src/test/java/org/jboss/netty/bootstrap/AbstractSocketClientBootstrapTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/jboss/netty/bootstrap/AbstractSocketClientBootstrapTest.java +++ b/src/test/java/org/jboss/nett...
Suppressed error log which occurs only in Windows on connection attempt failure, because it can mislead the developer to think there's a bug in the test / impl
netty_netty
train
2e80498c71b3f46c629df7a77b82c0b116976a88
diff --git a/bench.py b/bench.py index <HASH>..<HASH> 100755 --- a/bench.py +++ b/bench.py @@ -770,8 +770,7 @@ if __name__ == '__main__': train_args['d'] = args.cover_d # Always use all available threads in optimize mode. - if args.cover_k or args.cover_d: - train_args['threads...
bench: always use all threads when building dictionary
indygreg_python-zstandard
train
769b6bf86e7727dc1c41669d95a5468241d69d49
diff --git a/src/gitgraph.js b/src/gitgraph.js index <HASH>..<HASH> 100644 --- a/src/gitgraph.js +++ b/src/gitgraph.js @@ -390,7 +390,8 @@ author: commit.author, message: commit.message, date: commit.date, - sha1: commit.sha1 + sha1: commit.sha1, + commit: commit }...
Add commit object to the mouseEventOptions object This will allow users to work with the full commit object during mouse over and mouse out events
nicoespeon_gitgraph.js
train
601b2031c80df10ba3aa60544205222be622c397
diff --git a/lib/round/account.rb b/lib/round/account.rb index <HASH>..<HASH> 100644 --- a/lib/round/account.rb +++ b/lib/round/account.rb @@ -19,12 +19,17 @@ module Round ) end - def pay(payees, confirmations, redirect_uri = nil) + def pay(payees, confirmations, redirect_uri = nil, mfa_token: nil) ...
Auto set mfa_token in app payments Sometimes, the mfa_token doesn't get used until after it has expired. So you can still send it if you want, but if not it will calculate it at the correct time.
GemHQ_round-rb
train
9f1ac360989b74f982812de3e401b9a74ba29435
diff --git a/parsl/dataflow/config_defaults.py b/parsl/dataflow/config_defaults.py index <HASH>..<HASH> 100644 --- a/parsl/dataflow/config_defaults.py +++ b/parsl/dataflow/config_defaults.py @@ -60,7 +60,7 @@ def update_config(config, rundir): config_base = {"sites": [], "globals": { - ...
We now use lazyErrors in the config as well as DFK. This is not perfect, but it is consistent.
Parsl_parsl
train
b18099124080a77129ce50d03cf0dac1fd4fbf13
diff --git a/src/bootstrap.js b/src/bootstrap.js index <HASH>..<HASH> 100644 --- a/src/bootstrap.js +++ b/src/bootstrap.js @@ -53,23 +53,31 @@ return; } - let NODE_MODULES_PATH = appRoot ? path.join(appRoot, 'node_modules') : undefined; - if (!NODE_MODULES_PATH) { - NODE_MODULES_PATH = path.join(__dirname,...
asar - introduce alternative path to circumvent drive letter casing issues (#<I>) * asar - introduce alternative path to circumvent drive letter casing issues (#<I>) * Insert at most one additional lookup path
Microsoft_vscode
train
0de28ded2cd53d98bfe8cb08a2820d21075aa3e9
diff --git a/src/MetaModels/DcGeneral/Events/MetaModel/DuplicateModel.php b/src/MetaModels/DcGeneral/Events/MetaModel/DuplicateModel.php index <HASH>..<HASH> 100644 --- a/src/MetaModels/DcGeneral/Events/MetaModel/DuplicateModel.php +++ b/src/MetaModels/DcGeneral/Events/MetaModel/DuplicateModel.php @@ -23,6 +23,7 @@ na...
Change the handling of the copy mode of variants.
MetaModels_core
train
90cddeecef813e591dfb15abea7691aca3f997e2
diff --git a/RELEASE.rst b/RELEASE.rst index <HASH>..<HASH> 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -235,6 +235,7 @@ pandas 0.10.0 - DataFrame.combine_first will always result in the union of the index and columns, even if one DataFrame is length-zero (GH2525_) - Fix several DataFrame.icol/irow with du...
BUG: use Series name attributes for colnames in concat with axis=1. close #<I>
pandas-dev_pandas
train
87a683f65e7bdebf8a5401a27580dbf7388b6c8a
diff --git a/src/Cygnite/Http/Requests/Request.php b/src/Cygnite/Http/Requests/Request.php index <HASH>..<HASH> 100644 --- a/src/Cygnite/Http/Requests/Request.php +++ b/src/Cygnite/Http/Requests/Request.php @@ -9,8 +9,8 @@ */ namespace Cygnite\Http\Requests; -use Cygnite\Foundation\Collection; use Cygnite\Http\He...
Updated code to PHP7 and added postArrayHas() method.
cygnite_framework
train