hash
stringlengths
40
40
diff
stringlengths
131
26.7k
message
stringlengths
7
694
project
stringlengths
5
67
split
stringclasses
1 value
diff_languages
stringlengths
2
24
20af440694231b6e70805a5852b3dcceb5be5ba0
diff --git a/code/forms/SiteTreeURLSegmentField.php b/code/forms/SiteTreeURLSegmentField.php index <HASH>..<HASH> 100644 --- a/code/forms/SiteTreeURLSegmentField.php +++ b/code/forms/SiteTreeURLSegmentField.php @@ -21,6 +21,10 @@ class SiteTreeURLSegmentField extends TextField { 'suggest' ); + function Value() {...
BUGFIX Decode URLSegment before showing it through SiteTreeURLSegmentField, to separate presentation from its internal url encoded value
silverstripe_silverstripe-siteconfig
train
php
6aa703733ec2d4591621977f674f2d9486371b3c
diff --git a/util/plot/save.py b/util/plot/save.py index <HASH>..<HASH> 100644 --- a/util/plot/save.py +++ b/util/plot/save.py @@ -120,7 +120,7 @@ def data(file, data, land_value=np.nan, no_data_value=np.inf, land_brightness=0, no_data_array[land_mask[t, :, :, z]] = (1 - land_brightness) / 2 ...
MAINT: util.plot.save: line: do not open unneeded figure
jor-_util
train
py
1cc58d9d7c60977fb6fc6e5a3163b8d27096ca9d
diff --git a/stacker/actions/build.py b/stacker/actions/build.py index <HASH>..<HASH> 100644 --- a/stacker/actions/build.py +++ b/stacker/actions/build.py @@ -236,7 +236,9 @@ class Action(BaseAction): plan_kwargs = {} if tail: plan_kwargs["watch_func"] = self.provider.tail_stack - ...
Pass logger type to Context and Plan
cloudtools_stacker
train
py,py
08835e4405e2f57ed5d737a143ddf355a899f93b
diff --git a/gandi/cli/commands/paas.py b/gandi/cli/commands/paas.py index <HASH>..<HASH> 100644 --- a/gandi/cli/commands/paas.py +++ b/gandi/cli/commands/paas.py @@ -122,7 +122,8 @@ def delete(gandi, background, force, resource): for item in resource: if item not in possible_resources: gandi...
Fixes paas delete and paas restart error message when providing wrong resource
Gandi_gandi.cli
train
py
f4e573e308a2b27a078159b9d7ada3bf5cd43eae
diff --git a/daemon/state_test.go b/daemon/state_test.go index <HASH>..<HASH> 100644 --- a/daemon/state_test.go +++ b/daemon/state_test.go @@ -331,6 +331,12 @@ func (ds *DaemonSuite) TestAllocateIP(c *C) { epipv6, err := addressing.NewCiliumIPv6(ipv6.String()) c.Assert(err, IsNil) + // Forcefully release possible...
daemon tests: forcefully release allocated IP addresses
cilium_cilium
train
go
6f2f006fea2658f9d81a6456b71963dcafedb2e9
diff --git a/spec/page_spec.rb b/spec/page_spec.rb index <HASH>..<HASH> 100644 --- a/spec/page_spec.rb +++ b/spec/page_spec.rb @@ -28,6 +28,21 @@ describe "Page" do subject.primary_image_attachment.should_not be_persisted end + it "sets the content type on the associated attachment" do + attach_primary_...
more specs to assert normal paperclip behavior
dpickett_polypaperclip
train
rb
bdebd288e0b2295336186fc4bef29eab5bd21e5a
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -68,9 +68,9 @@ exports.getArrayPages = function(req) { throw new Error('express-paginate: `currentPage` is not a number >= 0'); if (limit > 0) { - var start = currentPage - limit > 0 ? currentPage - limit : ...
Fixed start and end bug The new calculation of start and end tries to keep to current page in the middle of the buttons for the pages. Also, no more lower than one paginating.
expressjs_express-paginate
train
js
7e5e07c0e072de462edb03ffb2ef5222d98a9c3f
diff --git a/src/server/cmd/pachctl/shell/shell.go b/src/server/cmd/pachctl/shell/shell.go index <HASH>..<HASH> 100644 --- a/src/server/cmd/pachctl/shell/shell.go +++ b/src/server/cmd/pachctl/shell/shell.go @@ -160,6 +160,12 @@ func (s *shell) suggestor(in prompt.Document) []prompt.Suggest { return nil } +func (s ...
Adds a way to clear the shell's completion cache.
pachyderm_pachyderm
train
go
4084323e41a6a1d83871d23775752fcf66d7bd84
diff --git a/lib/adp-downloader/statement/statement.rb b/lib/adp-downloader/statement/statement.rb index <HASH>..<HASH> 100644 --- a/lib/adp-downloader/statement/statement.rb +++ b/lib/adp-downloader/statement/statement.rb @@ -21,6 +21,10 @@ module ADPDownloader [date, id, file_suffix].compact.join("-") end...
Refactor statement paths This centralizes the logic around generating full path entries for PDF and JSON files. It'll make it easier to change the full path when needed, since we only have to change one location now.
andersonvom_adp-downloader
train
rb
b7ae1b1cb1b49ee085aee7cc4213c458d4cd72bc
diff --git a/src/org/parosproxy/paros/network/HttpSender.java b/src/org/parosproxy/paros/network/HttpSender.java index <HASH>..<HASH> 100644 --- a/src/org/parosproxy/paros/network/HttpSender.java +++ b/src/org/parosproxy/paros/network/HttpSender.java @@ -65,6 +65,7 @@ // ZAP: 2017/03/27 Introduce HttpRequestConfig. ...
Add initiator constant for Token Gen requests Add a constant to HttpSender class for requests sent by the Token Generator (currently using the same ID as active scanner).
zaproxy_zaproxy
train
java
1e2bfaf335311bb406c48453164c596138f19551
diff --git a/iris-rpc.js b/iris-rpc.js index <HASH>..<HASH> 100644 --- a/iris-rpc.js +++ b/iris-rpc.js @@ -808,11 +808,24 @@ function Multiplexer(options, config, rpcTitle) { }) } - self.dispatch = function() { + self.dispatch = function(uuid, msg, callback) { var args = arguments; ...
handling steam UUID under Multiplexer.dispatch
aspectron_iris-rpc
train
js
d5ec245349d0b972f1581b15e55b6f830b7bbde6
diff --git a/satpy/readers/eps_l1b.py b/satpy/readers/eps_l1b.py index <HASH>..<HASH> 100644 --- a/satpy/readers/eps_l1b.py +++ b/satpy/readers/eps_l1b.py @@ -225,13 +225,12 @@ class EPSAVHRRFile(BaseFileHandler): from geotiepoints import metop20kmto1km # Note: interpolation asumes lat values ...
Bugfix: don't change values of solar/sat zenith angles For numpy <I> input to _get_full angles are numpy arrays. If updated; wrong vales will be used the second time values are requested. For numpy <I> input are casted/and copied from numpy arrays to dask arrays by delayed. As np.hstack() returns dask arrays for dask...
pytroll_satpy
train
py
7316bb697d8a1649530f32660b06be14ec3a1dda
diff --git a/pypif/obj/system/chemical/alloy/alloy.py b/pypif/obj/system/chemical/alloy/alloy.py index <HASH>..<HASH> 100644 --- a/pypif/obj/system/chemical/alloy/alloy.py +++ b/pypif/obj/system/chemical/alloy/alloy.py @@ -61,7 +61,7 @@ class Alloy(ChemicalSystem): self._sub_systems = [self._sub_systems, p...
check for None subsystems before adding phases
CitrineInformatics_pypif
train
py
a372f5b884f5801f054a66a360b731594fb66ee5
diff --git a/vault/acl.go b/vault/acl.go index <HASH>..<HASH> 100644 --- a/vault/acl.go +++ b/vault/acl.go @@ -270,7 +270,7 @@ CHECK: } for parameter, value := range req.Data { - // Check if parameter has explictly denied + // Check if parameter has been explictly denied if valueSlice, ok := permissions...
s/has/has been/
hashicorp_vault
train
go
b68a23f096cc50dfda719a0447c3ebf39ddbbf4f
diff --git a/src/Kunstmaan/NodeBundle/AdminList/NodeAdminListConfigurator.php b/src/Kunstmaan/NodeBundle/AdminList/NodeAdminListConfigurator.php index <HASH>..<HASH> 100644 --- a/src/Kunstmaan/NodeBundle/AdminList/NodeAdminListConfigurator.php +++ b/src/Kunstmaan/NodeBundle/AdminList/NodeAdminListConfigurator.php @@ -5...
fix for filtering on created at and updated at
Kunstmaan_KunstmaanBundlesCMS
train
php
f214cd52e019ef2fbe3557fdda8a69abc562099e
diff --git a/security/Member.php b/security/Member.php index <HASH>..<HASH> 100644 --- a/security/Member.php +++ b/security/Member.php @@ -894,7 +894,7 @@ class Member extends DataObject implements TemplateGlobalProvider { $id = Session::get("loggedInAs"); } - return is_numeric($id) ? $id : 0; + return is_nu...
Ensure currentUserID() returns an int Cast $id returned from Session as an int to ensure it's never returned as a string
silverstripe_silverstripe-framework
train
php
927edd6665097270bd2930210f37501f692bbe55
diff --git a/cmd.py b/cmd.py index <HASH>..<HASH> 100644 --- a/cmd.py +++ b/cmd.py @@ -316,8 +316,9 @@ class Command: # XXX rename to 'get_reinitialized_command()'? (should do the # same in dist.py, if so) - def reinitialize_command (self, command): - return self.distribution.reinitialize_command(...
In 'reinitialize_subcommand()', pass 'reinit_subcommands' flag on to the real implementation in Distribution.
pypa_setuptools
train
py
a601cf43ab715d2e7f00b617071d5ccc1082b4ee
diff --git a/discord/embeds.py b/discord/embeds.py index <HASH>..<HASH> 100644 --- a/discord/embeds.py +++ b/discord/embeds.py @@ -395,6 +395,21 @@ class Embed: return self + def remove_author(self): + """Clears embed's author information. + + This function returns the class instance to al...
Allow clearing the author information in embeds.
Rapptz_discord.py
train
py
b3d8d2c64810a965d2e7b52cf807330e12112ec6
diff --git a/salt/loader.py b/salt/loader.py index <HASH>..<HASH> 100644 --- a/salt/loader.py +++ b/salt/loader.py @@ -231,10 +231,12 @@ def log_handlers(opts): return load.filter_func('setup_handlers') -def ssh_wrapper(opts): +def ssh_wrapper(opts, functions=None): ''' Returns the custom logging han...
update ssh loader routines to take the wrapper as __salt__
saltstack_salt
train
py
ed368f7a9aeea3cb9346955f44b277ee12246672
diff --git a/src/discoursegraphs/readwrite/exportxml.py b/src/discoursegraphs/readwrite/exportxml.py index <HASH>..<HASH> 100644 --- a/src/discoursegraphs/readwrite/exportxml.py +++ b/src/discoursegraphs/readwrite/exportxml.py @@ -128,6 +128,7 @@ class ExportXMLDocumentGraph(DiscourseDocumentGraph): self.token...
exportxml: added missing attribute ignore_splitrelations
arne-cl_discoursegraphs
train
py
cda8f3edcf2166f1b71bf9bf144ee5277d0356be
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,6 +1,6 @@ var gulp = require('gulp'); var sourcemaps = require('gulp-sourcemaps'); -var uglify = require('gulp-uglify'); +var uglify = require('gulp-uglify-es').default; var rename = require('gulp-rename'); ...
Update gulp to use the new uglifier.
craftcms_redactor
train
js
95b18616eaab072106c49c68495b62ace9291c64
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ For more information about changelogs, check [Keep a Changelog](http://keepachangelog.com) and [Vandamme](http://tech-angels.github.io/vandamme). +## 0.26.2 - 2016-10-05 + +* [ENHANCEMENT] Add...
Add newly available traffic sources "Campaign card" and "End screen"
Fullscreen_yt
train
md,rb,rb
78050c0fe4942fd15ce79c9cafde40dfe9da8816
diff --git a/bosh-stemcell/spec/stemcells/ubuntu_trusty_spec.rb b/bosh-stemcell/spec/stemcells/ubuntu_trusty_spec.rb index <HASH>..<HASH> 100644 --- a/bosh-stemcell/spec/stemcells/ubuntu_trusty_spec.rb +++ b/bosh-stemcell/spec/stemcells/ubuntu_trusty_spec.rb @@ -6,7 +6,7 @@ describe 'Ubuntu 14.04 stemcell', stemcell_im...
Fixed Trusty grub.conf test to support <I> [#<I>]
cloudfoundry_bosh
train
rb
a226feef04c7c1bbc3751144dbbd5061ba60766a
diff --git a/Kwf/Assets/Provider/BowerBuiltFile.php b/Kwf/Assets/Provider/BowerBuiltFile.php index <HASH>..<HASH> 100644 --- a/Kwf/Assets/Provider/BowerBuiltFile.php +++ b/Kwf/Assets/Provider/BowerBuiltFile.php @@ -137,6 +137,9 @@ class Kwf_Assets_Provider_BowerBuiltFile extends Kwf_Assets_Provider_Abstract $r...
Set the matching type for Kwf_Assets_Dependency_File
koala-framework_koala-framework
train
php
2740d28fad5598ed328a6a8da4f409ae193bcc38
diff --git a/python/ray/tests/test_client_proxy.py b/python/ray/tests/test_client_proxy.py index <HASH>..<HASH> 100644 --- a/python/ray/tests/test_client_proxy.py +++ b/python/ray/tests/test_client_proxy.py @@ -338,7 +338,7 @@ def test_proxy_manager_internal_kv(shutdown_only, with_specific_server): pm.crea...
[client] Increase timeout for ProxyManager.get_channel (#<I>)
ray-project_ray
train
py,py
cbf191b14c080f9bbb904f4741223bb54484fbe8
diff --git a/admin/code/LeftAndMainDecorator.php b/admin/code/LeftAndMainDecorator.php index <HASH>..<HASH> 100644 --- a/admin/code/LeftAndMainDecorator.php +++ b/admin/code/LeftAndMainDecorator.php @@ -7,10 +7,11 @@ abstract class LeftAndMainDecorator extends LeftAndMainExtension { public function __construct() ...
MINOR Temporarily disabled deprecation notice in DataObjectDecorator and LeftAndMainDecorator, to be re-enabled once we're in beta stage (they unnecessarily break too many modules for now
silverstripe_silverstripe-framework
train
php,php
355e2350ca5ce203acfb7f71914339e289b37570
diff --git a/actionpack/test/abstract_unit.rb b/actionpack/test/abstract_unit.rb index <HASH>..<HASH> 100644 --- a/actionpack/test/abstract_unit.rb +++ b/actionpack/test/abstract_unit.rb @@ -11,8 +11,6 @@ ensure_requirable %w( rack rack/test sqlite3 ) ENV['TMPDIR'] = File.join(File.dirname(__FILE__), 'tmp') -ENV['...
All on one base, don't need this
rails_rails
train
rb
d89b35c3dc459c6ac1fc8430c27fbcb07d3e4d0e
diff --git a/resources/lang/ru-RU/cachet.php b/resources/lang/ru-RU/cachet.php index <HASH>..<HASH> 100644 --- a/resources/lang/ru-RU/cachet.php +++ b/resources/lang/ru-RU/cachet.php @@ -81,6 +81,7 @@ return [ 'manage' => [ 'no_subscriptions' => 'Вы подписаны на все изменения.', ...
New translations cachet.php (Russian)
CachetHQ_Cachet
train
php
88833c118f6a982e22af68cf9921cf720c4d4a27
diff --git a/tornado/web.py b/tornado/web.py index <HASH>..<HASH> 100644 --- a/tornado/web.py +++ b/tornado/web.py @@ -954,10 +954,12 @@ def removeslash(method): if self.request.path.endswith("/"): if self.request.method in ("GET", "HEAD"): uri = self.request.path.rstrip("/") - ...
Make @removeslash a no-op when applied to a request for '/'. This prevents a redirect loop as browsers interpret an empty redirect as a redirect to /.
tornadoweb_tornado
train
py
7c6e95825499fa95fa34b3cb4c0934a208f4d4a3
diff --git a/src/Bridge/Symfony/Routing/IriConverter.php b/src/Bridge/Symfony/Routing/IriConverter.php index <HASH>..<HASH> 100644 --- a/src/Bridge/Symfony/Routing/IriConverter.php +++ b/src/Bridge/Symfony/Routing/IriConverter.php @@ -99,9 +99,15 @@ final class IriConverter implements IriConverterInterface ...
Preserve previous exception It could be useful.
api-platform_core
train
php
0ffd71d5ab71978a3253539376ab1522252092f5
diff --git a/modules/ReduxAsyncConnect.js b/modules/ReduxAsyncConnect.js index <HASH>..<HASH> 100644 --- a/modules/ReduxAsyncConnect.js +++ b/modules/ReduxAsyncConnect.js @@ -67,21 +67,23 @@ class ReduxAsyncConnect extends React.Component { } }; + isLoaded() { + return this.context.store.getState().reduxA...
fixes Server-side rendering problem with loaded prop
makeomatic_redux-connect
train
js
1e9a9b2c064cca80d8da4abb7ed1319f2b44848b
diff --git a/src/Symfony/Component/Messenger/Command/ConsumeMessagesCommand.php b/src/Symfony/Component/Messenger/Command/ConsumeMessagesCommand.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Messenger/Command/ConsumeMessagesCommand.php +++ b/src/Symfony/Component/Messenger/Command/ConsumeMessagesCommand.p...
[FrameworkBundle] Drop unused private method
symfony_symfony
train
php
ed4bbb8d60cec3cf0fb3dba06d87a988a8ab2acb
diff --git a/cocaine/logging/__init__.py b/cocaine/logging/__init__.py index <HASH>..<HASH> 100644 --- a/cocaine/logging/__init__.py +++ b/cocaine/logging/__init__.py @@ -28,8 +28,8 @@ __all__ = ['CocaineHandler', 'log', 'core'] handler = CocaineHandler() handler.setLevel(logging.DEBUG) -core = logging.getLogger('c...
Core logger renamed. Do not rename it to `cocaine` again. - Cause it lead to the implicit patching inside `logging` module. All log handlers having root package `cocaine` will be patched to use CocaineHandler, which will lead to the infinite recursion, because `Logger` service tries to log (debug, obvious) via itself...
cocaine_cocaine-framework-python
train
py
784dce3f7e4609f611d63a38db5de98e0d51edd4
diff --git a/lib/handlers/session.js b/lib/handlers/session.js index <HASH>..<HASH> 100644 --- a/lib/handlers/session.js +++ b/lib/handlers/session.js @@ -373,6 +373,22 @@ module.exports = Observable.extend({ }, /** + * DropBox Auth + */ + + dropboxAuth: passport.authenticate('dropbox-oauth2'), + + dropbo...
Add route handlers for dropbox authentication
jsbin_jsbin
train
js
42b8542e51a411f110d56e2bfbaf642bd565a0fa
diff --git a/resolver/resolver.go b/resolver/resolver.go index <HASH>..<HASH> 100644 --- a/resolver/resolver.go +++ b/resolver/resolver.go @@ -92,11 +92,11 @@ func (res *Resolver) Serve(net string) error { func (res *Resolver) LaunchZK() <-chan error { errCh := make(chan error, 1) go func() { - var err error - d...
LaunchZK should only send error if there is one
mesosphere_mesos-dns
train
go
8a0992bfbfc1c14531605472a2594e576620b214
diff --git a/src/Two/FacebookProvider.php b/src/Two/FacebookProvider.php index <HASH>..<HASH> 100644 --- a/src/Two/FacebookProvider.php +++ b/src/Two/FacebookProvider.php @@ -17,7 +17,7 @@ class FacebookProvider extends AbstractProvider implements ProviderInterface * * @var string */ - protected $v...
Update Facebook API version to <I>
laravel_socialite
train
php
890456d188a945ee167e38fd1563e3dd18955b6b
diff --git a/lib/models/customer.js b/lib/models/customer.js index <HASH>..<HASH> 100644 --- a/lib/models/customer.js +++ b/lib/models/customer.js @@ -6,7 +6,7 @@ module.exports = Observable.extend({ this.store = store; }, setCustomer: function () { - this.store.setCustomer(/* TODO */); + //this.store....
comment out not yet implemented stor functionality
jsbin_jsbin
train
js
af3ef04fc352683c1c485e18c960ab5ca9ffa2cd
diff --git a/embedded/src/main/java/org/jboss/as/embedded/ejb3/JBossStandaloneEJBContainer.java b/embedded/src/main/java/org/jboss/as/embedded/ejb3/JBossStandaloneEJBContainer.java index <HASH>..<HASH> 100644 --- a/embedded/src/main/java/org/jboss/as/embedded/ejb3/JBossStandaloneEJBContainer.java +++ b/embedded/src/mai...
Remove temporay files on EJB container shutdown
wildfly_wildfly
train
java
d0315cde4909249231a1d87f55c191e2387589c2
diff --git a/salt/cloud/clouds/profitbricks.py b/salt/cloud/clouds/profitbricks.py index <HASH>..<HASH> 100644 --- a/salt/cloud/clouds/profitbricks.py +++ b/salt/cloud/clouds/profitbricks.py @@ -628,7 +628,7 @@ def list_nodes_full(conn=None, call=None): def reserve_ipblock(call=None, kwargs=None): ''' - + Re...
Adding a method doc comment
saltstack_salt
train
py
fd19cd3800f3ef61158813567e7bf8952858cfc3
diff --git a/oauth2client/client.py b/oauth2client/client.py index <HASH>..<HASH> 100644 --- a/oauth2client/client.py +++ b/oauth2client/client.py @@ -212,7 +212,7 @@ class OAuth2Credentials(Credentials): headers['user-agent'] = self.user_agent resp, content = request_orig(uri, method, body, headers, ...
Be more flexible in accepting a <I> triggering a token refresh.
googleapis_oauth2client
train
py
d1d147151a621bae56d4966aac58c9f3d3e9bd31
diff --git a/test/test_pipeline.py b/test/test_pipeline.py index <HASH>..<HASH> 100644 --- a/test/test_pipeline.py +++ b/test/test_pipeline.py @@ -324,8 +324,13 @@ class PipelineTest(test.SparkTest): with tf.gfile.GFile("{}/{}".format(done_dir, ctx.task_index),'w') as f: f.write("done!") - ...
add a timeout to wait loop
yahoo_TensorFlowOnSpark
train
py
828485de8f02c3c297df7f89ff8518a67ca35a66
diff --git a/flate/reader.go b/flate/reader.go index <HASH>..<HASH> 100644 --- a/flate/reader.go +++ b/flate/reader.go @@ -43,6 +43,8 @@ func (zr *Reader) Reset(r io.Reader) { rd: zr.rd, step: (*Reader).readBlockHeader, dict: zr.dict, + pd1: zr.pd1, + pd2: zr.pd2, } zr.rd.Init(r) zr.dict.Init(maxHi...
flate: preserve local prefix.Decoder between Resets
dsnet_compress
train
go
bd46ddc68f194a921c3661bbd600bb1c448b7a92
diff --git a/src/jquery.ez-plus.js b/src/jquery.ez-plus.js index <HASH>..<HASH> 100644 --- a/src/jquery.ez-plus.js +++ b/src/jquery.ez-plus.js @@ -446,12 +446,14 @@ if (typeof Object.create !== 'function') { if (self.overWindow == false) { self.setElements("show"); + ...
Fixed Transparent Image Bug. Problem: If you are using the inner zoom mode and you want to zoom a transparent PNG image. The image is always shown in the background of the zoomed image. Solution: Set the opacity of the source element to 0 while zooming. By the mouseleave callback set the opacity back to 1.
igorlino_elevatezoom-plus
train
js
9d014e8a1a54341a18c673d4ef8b5449fe3db150
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -20,9 +20,9 @@ setup( long_description=open('README.md').read(), download_url='https://github.com/PBSA/python-peerplays/tarball/' + VERSION, author='Fabian Schuh', - author_email='Fabian@chainsquad.com', + ...
[setup] update maintainer email address
peerplays-network_python-peerplays
train
py
093751460953ea2695c1de0231ea25627eb0a844
diff --git a/wandb/apis/public.py b/wandb/apis/public.py index <HASH>..<HASH> 100644 --- a/wandb/apis/public.py +++ b/wandb/apis/public.py @@ -8,8 +8,8 @@ import re import shutil import sys import tempfile -import time +from dateutil.relativedelta import relativedelta from gql import Client, gql from gql.client ...
[WB-<I>] New line after "Downloading large artifact..." (#<I>)
wandb_client
train
py
08b75e594cbe4f16ec73c3840a3981af7871066f
diff --git a/transport/src/main/java/io/netty/channel/VoidChannelPromise.java b/transport/src/main/java/io/netty/channel/VoidChannelPromise.java index <HASH>..<HASH> 100644 --- a/transport/src/main/java/io/netty/channel/VoidChannelPromise.java +++ b/transport/src/main/java/io/netty/channel/VoidChannelPromise.java @@ -1...
[#<I>] VoidChannelPromise don't fire CancellationException anymore which was incorrect
netty_netty
train
java
80da6a7da9165c2fa8168bf8cf216356d48f7dc9
diff --git a/lib/jekyll-seo-tag/drop.rb b/lib/jekyll-seo-tag/drop.rb index <HASH>..<HASH> 100644 --- a/lib/jekyll-seo-tag/drop.rb +++ b/lib/jekyll-seo-tag/drop.rb @@ -11,8 +11,11 @@ module Jekyll ].freeze HOMEPAGE_OR_ABOUT_REGEX = %r!^/(about/)?(index.html?)?$!.freeze + EMPTY_READ_ONLY_HASH = {}.fr...
Replace read-only empty hash with private constant (#<I>) Merge pull request <I>
jekyll_jekyll-seo-tag
train
rb
56ae625ac6f4f39a26e241a655000c08a372c3b7
diff --git a/test/typescript.test.js b/test/typescript.test.js index <HASH>..<HASH> 100644 --- a/test/typescript.test.js +++ b/test/typescript.test.js @@ -66,7 +66,7 @@ export class AuthService { return localStorage.getItem('username'); } - isLogged(): boolean { + isLoggedIn(): boolean { return this.ge...
Added a test wrt #<I> child range
fullstackio_cq
train
js
1112389e14824894a40a3c74500bc0c1e4f50712
diff --git a/src/Carbon/Laravel/ServiceProvider.php b/src/Carbon/Laravel/ServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/Carbon/Laravel/ServiceProvider.php +++ b/src/Carbon/Laravel/ServiceProvider.php @@ -15,7 +15,7 @@ class ServiceProvider extends \Illuminate\Support\ServiceProvider $service = $this...
Support of Laravel <I>
briannesbitt_Carbon
train
php
954b5077e495aa9fa4eb54ef4cb8ac309e9415ae
diff --git a/lib/Doctrine/ORM/UnitOfWork.php b/lib/Doctrine/ORM/UnitOfWork.php index <HASH>..<HASH> 100644 --- a/lib/Doctrine/ORM/UnitOfWork.php +++ b/lib/Doctrine/ORM/UnitOfWork.php @@ -1735,7 +1735,7 @@ class UnitOfWork implements PropertyChangedListener $managedCol->initialize(); ...
Fixed nesting recursion error in some situations. Complement to DDC-<I>.
doctrine_orm
train
php
b64cd2c061e7e8f31d3b6f36671be3a967eead80
diff --git a/lib/lifx/transport_manager/lan.rb b/lib/lifx/transport_manager/lan.rb index <HASH>..<HASH> 100644 --- a/lib/lifx/transport_manager/lan.rb +++ b/lib/lifx/transport_manager/lan.rb @@ -128,6 +128,7 @@ module LIFX end def handle_broadcast_message(message, ip, transport) + return if messa...
Ignore if message isn't parsable
LIFX_lifx-gem
train
rb
4846fb89c72fd7f50a9ff79ab7b6f16a204a80b5
diff --git a/app/controllers/spree/admin/users_controller.rb b/app/controllers/spree/admin/users_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/spree/admin/users_controller.rb +++ b/app/controllers/spree/admin/users_controller.rb @@ -14,14 +14,14 @@ module Spree end def generate_api_key...
Updated clear_api_key and generate_api_key to call the right (renamed) methods on user. Fixes #<I>
spree_spree_auth_devise
train
rb
4032ff844010764e62a3a03cc018973ccf485014
diff --git a/HARK/interpolation.py b/HARK/interpolation.py index <HASH>..<HASH> 100644 --- a/HARK/interpolation.py +++ b/HARK/interpolation.py @@ -50,7 +50,7 @@ def _check_grid_dimensions(dimension, *args): def _check_flatten(dimension, *args): if dimension == 1: - if args[0].shape != args[0].flatten().s...
fix check to accomodate lists
econ-ark_HARK
train
py
f4b74e078dd0ddee197be93a9a25f0326c56b0e5
diff --git a/core-bundle/contao/library/Contao/Database/Installer.php b/core-bundle/contao/library/Contao/Database/Installer.php index <HASH>..<HASH> 100644 --- a/core-bundle/contao/library/Contao/Database/Installer.php +++ b/core-bundle/contao/library/Contao/Database/Installer.php @@ -254,6 +254,13 @@ class Installer ...
[Core] Do not offer to drop tables or fields if the safe mode is active (see #<I>)
contao_contao
train
php
b260b356b23802a595336c554d6ea044c9be0a79
diff --git a/kafka/client.py b/kafka/client.py index <HASH>..<HASH> 100644 --- a/kafka/client.py +++ b/kafka/client.py @@ -257,6 +257,10 @@ class KafkaClient(object): self.load_metadata_for_topics(topic) except LeaderNotAvailableError: pass + except UnknownTopic...
Raise UnknownTopicOrPartitionError immediately in ensure_topic_exists -- server is not auto-creating
dpkp_kafka-python
train
py
b57ff9b56ef5c83346aba39c48517b41ae05a6dc
diff --git a/src/Shell/ImportShell.php b/src/Shell/ImportShell.php index <HASH>..<HASH> 100644 --- a/src/Shell/ImportShell.php +++ b/src/Shell/ImportShell.php @@ -12,6 +12,7 @@ namespace CsvMigrations\Shell; use AuditStash\Meta\RequestMetadata; +use CakeDC\Users\Controller\Traits\CustomUsersTableTrait; use Cake\Co...
Pass all current user info (task #<I>)
QoboLtd_cakephp-csv-migrations
train
php
5307e1808586dc3c16cda5f3f7befe56e928ddb3
diff --git a/internal/config/identity/openid/provider/keycloak.go b/internal/config/identity/openid/provider/keycloak.go index <HASH>..<HASH> 100644 --- a/internal/config/identity/openid/provider/keycloak.go +++ b/internal/config/identity/openid/provider/keycloak.go @@ -23,6 +23,7 @@ import ( "fmt" "net/http" "ne...
use keycloak_realm properly for keycloak user lookups (#<I>) In case a user-defined a value for the MINIO_IDENTITY_OPENID_KEYCLOAK_REALM environment variable, construct the path properly.
minio_minio
train
go
2327a45c73b563fd6846b59dd58b6198896dc5e6
diff --git a/repository/repository_test.go b/repository/repository_test.go index <HASH>..<HASH> 100644 --- a/repository/repository_test.go +++ b/repository/repository_test.go @@ -42,6 +42,7 @@ func TestNewBreaksOnValidationError(t *testing.T) { _, err := New("", []string{"smeagol"}, false) if err == nil { t.Erro...
repository: avoiding panic in test case
tsuru_gandalf
train
go
0cca617c78f0a6c2fbf5a164b96d56a53c4fb4da
diff --git a/redisson/src/main/java/org/redisson/spring/session/RedissonSessionRepository.java b/redisson/src/main/java/org/redisson/spring/session/RedissonSessionRepository.java index <HASH>..<HASH> 100644 --- a/redisson/src/main/java/org/redisson/spring/session/RedissonSessionRepository.java +++ b/redisson/src/main/j...
Fixed - Spring Session PRINCIPAL_NAME_INDEX_NAME session attribute has incorrect name
redisson_redisson
train
java
06a5f9687b5601f29d8ace9b04839648678b11ca
diff --git a/lib/last-cursor.js b/lib/last-cursor.js index <HASH>..<HASH> 100644 --- a/lib/last-cursor.js +++ b/lib/last-cursor.js @@ -7,14 +7,13 @@ var _cursorStorage; var _cursor; function getCursorStorage() { - if(!_cursorStorage) { - var pathCursorStorage = path.join(config.get('instanceDir'), 'last-cursor'...
Ensure cursor file exists even if cursorStorage has already been initialized
gyselroth_balloon-node-sync
train
js
353caa25b833ac1b31c7aebfc74fe68381138d0f
diff --git a/spec/unit/logging_spec.rb b/spec/unit/logging_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/logging_spec.rb +++ b/spec/unit/logging_spec.rb @@ -77,7 +77,8 @@ module WebsocketRails end it "logs the end of the event" do - Time.stub(:now).and_return(1) + time = Time...
Fix Logging spec by stubbing Time.now with a real Time object.
websocket-rails_websocket-rails
train
rb
11972c3eb7166120be3bb9746d84b27c10bc1294
diff --git a/src/components/Button.js b/src/components/Button.js index <HASH>..<HASH> 100644 --- a/src/components/Button.js +++ b/src/components/Button.js @@ -38,9 +38,9 @@ const Button = React.createClass({ return ( <div> <Spin direction='counterclockwise'> - <Icon size='20' style={...
removes some redundant naming from spinner
mxenabled_mx-react-components
train
js
9e853bcd8498a26719f0552affb37b4d8f2197ee
diff --git a/demo/cast_receiver/receiver_app.js b/demo/cast_receiver/receiver_app.js index <HASH>..<HASH> 100644 --- a/demo/cast_receiver/receiver_app.js +++ b/demo/cast_receiver/receiver_app.js @@ -137,7 +137,7 @@ ShakaReceiver.prototype.checkIdle_ = function() { this.cancelIdleTimer_(); // Set a special p...
Fix flash of audio-only poster in cast receiver The audio-only poster was showing before there was really anything loaded. Change-Id: Icc<I>e3dd<I>b<I>c<I>ccbb3d<I>a7c
google_shaka-player
train
js
fd87358d2bb53788896c977a6d674c00145ed3c6
diff --git a/src/XeroPHP/Models/Accounting/History.php b/src/XeroPHP/Models/Accounting/History.php index <HASH>..<HASH> 100644 --- a/src/XeroPHP/Models/Accounting/History.php +++ b/src/XeroPHP/Models/Accounting/History.php @@ -88,6 +88,14 @@ class History extends Model } /** + * @return \DateTimeInterfa...
Expose DateUTC with getDateUTC getter function
calcinai_xero-php
train
php
f9bef75a3425213d2f1ff3bc7fb27322617bc233
diff --git a/src/platforms/web/runtime/modules/attrs.js b/src/platforms/web/runtime/modules/attrs.js index <HASH>..<HASH> 100644 --- a/src/platforms/web/runtime/modules/attrs.js +++ b/src/platforms/web/runtime/modules/attrs.js @@ -68,6 +68,15 @@ function setAttr (el: Element, key: string, value: any) { } export def...
fix select multiple first option auto-selected in Chrome/FF (fix #<I>)
IOriens_wxml-transpiler
train
js
74c794c351635b06788c618ca7304f501c8b7656
diff --git a/app/models/system.rb b/app/models/system.rb index <HASH>..<HASH> 100644 --- a/app/models/system.rb +++ b/app/models/system.rb @@ -318,11 +318,15 @@ class System < ActiveRecord::Base private def add_pulp_consumer_group record - record.add_consumers([self.uuid]) + if AppConfig.use_pulp + ...
headpin-system-groups - fence pulp hooks in system model
Katello_katello
train
rb
c83ce1f50a75d99c646d794f905aaa9e53c2eaf3
diff --git a/src/info/bitcoin.js b/src/info/bitcoin.js index <HASH>..<HASH> 100644 --- a/src/info/bitcoin.js +++ b/src/info/bitcoin.js @@ -12,9 +12,9 @@ export const bitcoinInfo: AbcCurrencyInfo = { { name: 'bits', multiplier: '100', symbol: 'ƀ' } ], walletTypes: [ - 'wallet:bitcoin', 'wallet:bitcoin...
Re-order bitcoin wallet types to put segwit up top
EdgeApp_edge-currency-bitcoin
train
js
e96cd13e00b0afaefea18c95ee147d4a331a2c54
diff --git a/pulsar/async/concurrency.py b/pulsar/async/concurrency.py index <HASH>..<HASH> 100644 --- a/pulsar/async/concurrency.py +++ b/pulsar/async/concurrency.py @@ -393,7 +393,7 @@ class MonitorMixin: for worker in self.managed_actors.values(): age = worker.impl.age ...
bug fix in stop_actors #release-note
quantmind_pulsar
train
py
d3419780f9daa3eaf0400c2b6fcee0234240b1de
diff --git a/tests/Doctrine/Tests/ORM/Functional/ReferenceProxyTest.php b/tests/Doctrine/Tests/ORM/Functional/ReferenceProxyTest.php index <HASH>..<HASH> 100644 --- a/tests/Doctrine/Tests/ORM/Functional/ReferenceProxyTest.php +++ b/tests/Doctrine/Tests/ORM/Functional/ReferenceProxyTest.php @@ -40,4 +40,15 @@ class Refe...
DDC-<I> - Test shows expected behavior, no failure
doctrine_orm
train
php
1a2c39bf473b0c6b726581f46a7300a49441ee33
diff --git a/src/core/columns.py b/src/core/columns.py index <HASH>..<HASH> 100644 --- a/src/core/columns.py +++ b/src/core/columns.py @@ -147,6 +147,12 @@ class BoolPresta(Prestation, BoolCol): BoolCol.__init__(self, label) Prestation.__init__(self, func, unit, label, start, end) +class IntPresta(P...
Create a IntPresta in columns to deals with problems in Calibration when using variable that are not amounts of money
openfisca_openfisca-core
train
py
c81ba97046ea712490d7b7571a6c025bec407b6d
diff --git a/simulator/src/main/java/com/hazelcast/simulator/utils/PropertyBindingSupport.java b/simulator/src/main/java/com/hazelcast/simulator/utils/PropertyBindingSupport.java index <HASH>..<HASH> 100644 --- a/simulator/src/main/java/com/hazelcast/simulator/utils/PropertyBindingSupport.java +++ b/simulator/src/main/...
Resolved checkstyle compliance issue
hazelcast_hazelcast-simulator
train
java
c41830c1b3e8821d9f528981a8863d4e71cb1af3
diff --git a/Kwf/User/Row.php b/Kwf/User/Row.php index <HASH>..<HASH> 100644 --- a/Kwf/User/Row.php +++ b/Kwf/User/Row.php @@ -303,7 +303,7 @@ class Kwf_User_Row extends Kwf_Model_RowCache_Row if (!in_array($columnName, $noLog)) { $this->_logChangedUser = true; } - if ($columnName ...
E-Mail is case insensitive Fixes that a user already exists error occurs when changing e-mail adress to upper or lower case
koala-framework_koala-framework
train
php
9b2303e41141e19fd980ce6967ca378202f19efb
diff --git a/sqlserver/setup.py b/sqlserver/setup.py index <HASH>..<HASH> 100644 --- a/sqlserver/setup.py +++ b/sqlserver/setup.py @@ -27,7 +27,7 @@ def get_dependencies(): return f.readlines() -CHECKS_BASE_REQ = 'datadog-checks-base>=23.7.3' +CHECKS_BASE_REQ = 'datadog-checks-base>=23.7.6' setup( ...
Update base version (#<I>)
DataDog_integrations-core
train
py
f1851a18c8de31e4356ed4659d2a39e941c88a3e
diff --git a/lib/marked.js b/lib/marked.js index <HASH>..<HASH> 100644 --- a/lib/marked.js +++ b/lib/marked.js @@ -1044,13 +1044,9 @@ function marked(src, opt, callback) { pending = tokens.length; - var done = function(hi) { + var done = function() { var out, err; - if (hi !== true) { - ...
minor async refactor.
remarkjs_remark
train
js
e4175be3371f96f26cbb0b19ba07a1dc34b25da5
diff --git a/src/sos/_version.py b/src/sos/_version.py index <HASH>..<HASH> 100644 --- a/src/sos/_version.py +++ b/src/sos/_version.py @@ -34,7 +34,7 @@ if _py_ver.major == 2 or (_py_ver.major == 3 and (_py_ver.minor, _py_ver.micro) # version of the SoS language __sos_version__ = '1.0' # version of the sos command ...
Release <I> because it was a bad idea to add sos install
vatlab_SoS
train
py
04fb927edb41f743b62fee318f0f6eaa79c22d8e
diff --git a/check.go b/check.go index <HASH>..<HASH> 100644 --- a/check.go +++ b/check.go @@ -121,7 +121,7 @@ var skipDir = regexp.MustCompile(`^(testdata|vendor|_.*|\.\+)$`) func getDirs(d string) ([]string, error) { var dirs []string - if !strings.HasPrefix(d, "./") { + if d != "." && !strings.HasPrefix(d, "./"...
Fix passing ./... as argument
mvdan_interfacer
train
go
07ea8763c663bdd3fe1f8446cdb62dae233f4916
diff --git a/test/reporters/json.spec.js b/test/reporters/json.spec.js index <HASH>..<HASH> 100644 --- a/test/reporters/json.spec.js +++ b/test/reporters/json.spec.js @@ -1,5 +1,6 @@ 'use strict'; +var sinon = require('sinon'); var Mocha = require('../../'); var Suite = Mocha.Suite; var Runner = Mocha.Runner; @@ ...
Remove noise output from JSON reporter test (#<I>)
mochajs_mocha
train
js
3c67c1b3329b359d52daf8a019beb23dc653570e
diff --git a/gmusicapi_wrapper/musicmanager.py b/gmusicapi_wrapper/musicmanager.py index <HASH>..<HASH> 100644 --- a/gmusicapi_wrapper/musicmanager.py +++ b/gmusicapi_wrapper/musicmanager.py @@ -169,8 +169,9 @@ class MusicManagerWrapper(_BaseWrapper): metadata = mutagen.File(temp.name, easy=True) filepath =...
Fix undefined variable ('dirname') in MusicManagerWrapper._download [#<I>]
thebigmunch_gmusicapi-wrapper
train
py
ef9344f345e23a3d91fa552971e72363a194455d
diff --git a/backtrader/strategy.py b/backtrader/strategy.py index <HASH>..<HASH> 100644 --- a/backtrader/strategy.py +++ b/backtrader/strategy.py @@ -326,7 +326,8 @@ class Strategy(six.with_metaclass(MetaStrategy, StrategyBase)): analyzer._stop() # change operators back to stage 1 - self...
Disabled return to operator stage1 in strategy
backtrader_backtrader
train
py
e401c35b6f3bc39a3413011027c11eebe7999217
diff --git a/lib/knife-solo/bootstraps/darwin.rb b/lib/knife-solo/bootstraps/darwin.rb index <HASH>..<HASH> 100644 --- a/lib/knife-solo/bootstraps/darwin.rb +++ b/lib/knife-solo/bootstraps/darwin.rb @@ -7,7 +7,7 @@ module KnifeSolo::Bootstraps def distro case issue - when %r{10.[6-10]} + when %r...
fix regex so it is functional for <I> - <I>
matschaffer_knife-solo
train
rb
08f00bd150c837b1812cf1ee094f29e8896fd9b7
diff --git a/main.js b/main.js index <HASH>..<HASH> 100644 --- a/main.js +++ b/main.js @@ -218,6 +218,8 @@ function initExtensions(extdir, type, context, appInstance, cb) { // now to initialize var self = this + // Sort by weight + loaded = loaded.sort(function (a, b) { return a.ext.weight - b...
put back in plugin ordering removed in commit <I>f<I>b<I>f5c1f7a<I>db5fe<I>e2e<I> unbreaks tests, ok @peterbraden
Strider-CD_strider-extension-loader
train
js
748c47da7795cf44fffb3c51a2592600716e4851
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -29,7 +29,9 @@ module.exports = function (custom) { return { format: mime_ext, compile: function(name) { - return 'url("data:' + mime_type + ';base64,' + file.contents.toString('base64') + '") format(...
fix generated css for .otf fonts (#4)
jalkoby_gulp-inline-fonts
train
js
b6f9fa87298bfd18e18ac8195f970951865f2de2
diff --git a/pygwidgets/pygwidgets.py b/pygwidgets/pygwidgets.py index <HASH>..<HASH> 100644 --- a/pygwidgets/pygwidgets.py +++ b/pygwidgets/pygwidgets.py @@ -240,14 +240,6 @@ authors and should not be interpreted as representing official policies, either or implied, of Al Sweigart. """ -import pygame -import ...
Moved __all__ to the proper place Moved __all__ to the proper place
IrvKalb_pygwidgets
train
py
441ece81e8fa81d3a17f7ccb45a7b5ef691ccdc6
diff --git a/EventListener/Response/CreateListener.php b/EventListener/Response/CreateListener.php index <HASH>..<HASH> 100644 --- a/EventListener/Response/CreateListener.php +++ b/EventListener/Response/CreateListener.php @@ -42,10 +42,15 @@ class CreateListener implements EventSubscriberInterface */ public...
set status code even when a collection has been created
Innmind_rest-server
train
php
d83d04a7fd505e0d1f2b44c9d77d8a7266f6d5eb
diff --git a/src/Choice.php b/src/Choice.php index <HASH>..<HASH> 100644 --- a/src/Choice.php +++ b/src/Choice.php @@ -31,7 +31,7 @@ class Choice implements MatcherInterface { /** * The token that matched in the last matching process - * @var \nexxes\token\Tokenizer + * @var \nexxes\tokenizer\Tokenizer */ ...
Fixed from type hint in docblock
nexxes_php-tokenmatcher
train
php,php
56d4da155680ad960389b6ce2e924c91c41d32a8
diff --git a/lib/adapters/idb/idb.js b/lib/adapters/idb/idb.js index <HASH>..<HASH> 100644 --- a/lib/adapters/idb/idb.js +++ b/lib/adapters/idb/idb.js @@ -937,7 +937,8 @@ IdbPouch.valid = function () { // to our knees. var isSafari = typeof openDatabase !== 'undefined' && /(Safari|iPhone|iPad|iPod)/.test(nav...
(#<I>) - Fix for BlackBerry <I> browsers being identified as Safari
pouchdb_pouchdb
train
js
6d4de556664daa49a22a3700d6bbade5a9170b2d
diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -59,12 +59,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface...
bumped Symfony version to <I>
symfony_symfony
train
php
07ded1048e0e969a519e2ef97c6a76c0b75d5683
diff --git a/cmd/juju/cloud/updatecredential_test.go b/cmd/juju/cloud/updatecredential_test.go index <HASH>..<HASH> 100644 --- a/cmd/juju/cloud/updatecredential_test.go +++ b/cmd/juju/cloud/updatecredential_test.go @@ -60,7 +60,7 @@ func (s *updateCredentialSuite) TestNoArgs(c *gc.C) { func (s *updateCredentialSuite...
adjust test because windows has diff error msgs
juju_juju
train
go
7f46b07f5c70ebdc6dcb29c73b01a776a6772557
diff --git a/azurerm/internal/services/storage/validate/storage.go b/azurerm/internal/services/storage/validate/storage.go index <HASH>..<HASH> 100644 --- a/azurerm/internal/services/storage/validate/storage.go +++ b/azurerm/internal/services/storage/validate/storage.go @@ -8,8 +8,8 @@ import ( func StorageShareDirect...
Updated storage share directory name regex to allow underscore (#<I>) * updated storage share directory name regex to allow underscore * updated storage share directory name regex to allow underscore
terraform-providers_terraform-provider-azurerm
train
go
30a5d22d08da6b7b955e1ffdceeaf62868143675
diff --git a/src/org/joml/Matrix4f.java b/src/org/joml/Matrix4f.java index <HASH>..<HASH> 100644 --- a/src/org/joml/Matrix4f.java +++ b/src/org/joml/Matrix4f.java @@ -2670,6 +2670,8 @@ public class Matrix4f implements Serializable, Externalizable { * This method transforms the given coordinates by <code>this</cod...
Comment on the returned depth range in project()
JOML-CI_JOML
train
java
e77023bdce2db2522f0320237c532e6c6eaa93a2
diff --git a/spec/unit/cookbook/syntax_check_spec.rb b/spec/unit/cookbook/syntax_check_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/cookbook/syntax_check_spec.rb +++ b/spec/unit/cookbook/syntax_check_spec.rb @@ -60,6 +60,7 @@ describe Chef::Cookbook::SyntaxCheck do openldap_stuff.conf.erb ...
Trololol my change bled into another test.
chef_chef
train
rb
a14f6964a8e32aab51fc922a22f0ebd4169a332b
diff --git a/src/CreateSignalFactory.js b/src/CreateSignalFactory.js index <HASH>..<HASH> 100644 --- a/src/CreateSignalFactory.js +++ b/src/CreateSignalFactory.js @@ -129,8 +129,6 @@ module.exports = function (controller, model, services, compute, modules) { runBranch(branch, index + 1) } ...
fix(signalFactory): emit 'change' event after mapping async actions promises Allows debugger to indicate running async actions.
cerebral_cerebral
train
js
2f957af0994084c0663edca3e177adf662fca86b
diff --git a/salt/client/__init__.py b/salt/client/__init__.py index <HASH>..<HASH> 100644 --- a/salt/client/__init__.py +++ b/salt/client/__init__.py @@ -771,6 +771,7 @@ class LocalClient(object): timeout=None, tgt='*', tgt_type='glob', + expect_minions=False, ...
add expect_minions to yield minions that did not respond
saltstack_salt
train
py
10659b87c19a0ef88e7e359408872a6b15609dc0
diff --git a/engine-rest/engine-rest/src/test/java/org/camunda/bpm/engine/rest/util/container/TomcatServerBootstrap.java b/engine-rest/engine-rest/src/test/java/org/camunda/bpm/engine/rest/util/container/TomcatServerBootstrap.java index <HASH>..<HASH> 100644 --- a/engine-rest/engine-rest/src/test/java/org/camunda/bpm/e...
chore(engine-rest): use local respository for shrinkwrap dependency resolution - the dependency resolution was changed from maven <I> to <I> which shrinkwrap adopted with version <I> - this allows the TomcatServerBootstrap to resolve dependencies from local respository
camunda_camunda-bpm-platform
train
java
584e1da692288d3f52b42a2cd0f332011b145d4d
diff --git a/tests/unittest/pywbem/test_subscriptionmanager.py b/tests/unittest/pywbem/test_subscriptionmanager.py index <HASH>..<HASH> 100644 --- a/tests/unittest/pywbem/test_subscriptionmanager.py +++ b/tests/unittest/pywbem/test_subscriptionmanager.py @@ -579,8 +579,6 @@ TESTCASES_SUBMGR = [ # * dest_attrs: d...
Fixed description of testcases for modifying subscription related instances
pywbem_pywbem
train
py
65980104deae5ab6eb9c4fc0a7514738e9822fac
diff --git a/src/cli.js b/src/cli.js index <HASH>..<HASH> 100755 --- a/src/cli.js +++ b/src/cli.js @@ -35,6 +35,10 @@ function parseCommandLine () { 'specify the output format of the report' ). option( + '-a, --allfiles', + 'include hidden files in the report' + ...
Add option to govern handling of hidden files, remove file extension test.
philbooth_complexity-report
train
js
546394653e334b72b6c40a5ae1379f91ec0cdbda
diff --git a/packages/core/parcel-bundler/src/transforms/babel/babelrc.js b/packages/core/parcel-bundler/src/transforms/babel/babelrc.js index <HASH>..<HASH> 100644 --- a/packages/core/parcel-bundler/src/transforms/babel/babelrc.js +++ b/packages/core/parcel-bundler/src/transforms/babel/babelrc.js @@ -1,5 +1,5 @@ cons...
Fix require (#<I>) This was blocking me from using <I>.beta0.
parcel-bundler_parcel
train
js
9e26ce712a9854004b3d88d3c76c445b133fb676
diff --git a/lib/Thelia/Model/ConfigQuery.php b/lib/Thelia/Model/ConfigQuery.php index <HASH>..<HASH> 100644 --- a/lib/Thelia/Model/ConfigQuery.php +++ b/lib/Thelia/Model/ConfigQuery.php @@ -151,6 +151,15 @@ class ConfigQuery extends BaseConfigQuery } /** + * @since 2.4 + * @return bool + */ + ...
add new config customer_email_confirmation
thelia_core
train
php
56844100c25e395e91e263811d2be023f1c9723c
diff --git a/internal/graphics/opengl/context.go b/internal/graphics/opengl/context.go index <HASH>..<HASH> 100644 --- a/internal/graphics/opengl/context.go +++ b/internal/graphics/opengl/context.go @@ -38,8 +38,8 @@ type Context struct { } func (c *Context) bindFramebuffer(f Framebuffer) { - if c.lastFramebuffer !...
temporal hack to pass tests (#<I>)
hajimehoshi_ebiten
train
go
21c3cc3ccdfe511abec6a4268c567a19e87b3887
diff --git a/lib/deliver/itunes_connect.rb b/lib/deliver/itunes_connect.rb index <HASH>..<HASH> 100644 --- a/lib/deliver/itunes_connect.rb +++ b/lib/deliver/itunes_connect.rb @@ -176,7 +176,12 @@ module Deliver open_app_page(app) - return first(".status.ready").text.split(" ").first + begin +...
Fixed get_live_version for app not in production yet
fastlane_fastlane
train
rb