hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
38c6c724f0f140bfc315359fcb8dcdd733d95723
diff --git a/block/block.py b/block/block.py index <HASH>..<HASH> 100644 --- a/block/block.py +++ b/block/block.py @@ -4,6 +4,7 @@ import scipy.sparse as sp try: import torch + from torch.autograd import Variable except: pass @@ -44,6 +45,10 @@ Row lengths: {}'''.format(rowLens)) row...
Added backend for Torch Variables
bamos_block
train
234244952af8d016ab60f1378ca931d0bec74601
diff --git a/src/Console/ConfigMigrations/MitchellMigrator.php b/src/Console/ConfigMigrations/MitchellMigrator.php index <HASH>..<HASH> 100644 --- a/src/Console/ConfigMigrations/MitchellMigrator.php +++ b/src/Console/ConfigMigrations/MitchellMigrator.php @@ -3,15 +3,18 @@ namespace LaravelDoctrine\ORM\ConfigMigrations...
Inject View\Factory instead of use View facade Because IoC is the name of the game
laravel-doctrine_orm
train
e5bcbe44aec9549a5869fcac23ba39b90bfeb466
diff --git a/src/Schema/AST/ASTHelper.php b/src/Schema/AST/ASTHelper.php index <HASH>..<HASH> 100644 --- a/src/Schema/AST/ASTHelper.php +++ b/src/Schema/AST/ASTHelper.php @@ -247,4 +247,23 @@ class ASTHelper return $objectType; } + + /** + * Checks the given type to see whether it implements the ...
feature: add typeImplementsInterface helper method with test
nuwave_lighthouse
train
a1e5d8df86272933432b9d2bbecbb39f90917b58
diff --git a/doc.go b/doc.go index <HASH>..<HASH> 100644 --- a/doc.go +++ b/doc.go @@ -4,9 +4,9 @@ interact with the chef server. The testing can be run with go test, and the client can be used as per normal via: - go get github.com/chef/go-chef + go get github.com/go-chef/chef -Documentation can be found on G...
these doc.go changes are excluded from upstream merge
go-chef_chef
train
d9869544147b4b9fe717bbcd567ce2f72994f4e1
diff --git a/freezegun/api.py b/freezegun/api.py index <HASH>..<HASH> 100644 --- a/freezegun/api.py +++ b/freezegun/api.py @@ -180,7 +180,13 @@ def freeze_time(time_to_freeze, tz_offset=0): elif isinstance(time_to_freeze, datetime.date): time_to_freeze = time_to_freeze.strftime('%x') - if not isinsta...
Fixed problem with Python3 and basestring.
spulec_freezegun
train
d066d547cce64a4f02bb05d718bc53fe71d06ad3
diff --git a/staging/src/k8s.io/apiserver/pkg/apis/audit/types.go b/staging/src/k8s.io/apiserver/pkg/apis/audit/types.go index <HASH>..<HASH> 100644 --- a/staging/src/k8s.io/apiserver/pkg/apis/audit/types.go +++ b/staging/src/k8s.io/apiserver/pkg/apis/audit/types.go @@ -99,6 +99,10 @@ type Event struct { // Source IP...
logging user-agent in audit
kubernetes_kubernetes
train
13eb5cc6eddbf0eed7e6fd2953eb9fc28a432153
diff --git a/spring-social-facebook/src/main/java/org/springframework/social/facebook/api/CommentOperations.java b/spring-social-facebook/src/main/java/org/springframework/social/facebook/api/CommentOperations.java index <HASH>..<HASH> 100644 --- a/spring-social-facebook/src/main/java/org/springframework/social/faceboo...
Overload CommentOperations.getComments() to be able to set offset and limit. Also adjusted documentation to reflect what comments are returned (eg, most recent vs. first). SOCIALFB-<I>
spring-projects_spring-social-facebook
train
e7619218f84e399fa46e165237592cdd5756db5a
diff --git a/Godeps/_workspace/src/github.com/tendermint/tendermint/permission/types/permissions.go b/Godeps/_workspace/src/github.com/tendermint/tendermint/permission/types/permissions.go index <HASH>..<HASH> 100644 --- a/Godeps/_workspace/src/github.com/tendermint/tendermint/permission/types/permissions.go +++ b/Gode...
changes to fix permissions -> evm connection
hyperledger_burrow
train
94755c79903266fcb58b7917228ac2ae1f4f153b
diff --git a/services-discovery/src/main/java/io/scalecube/services/discovery/ScalecubeServiceDiscovery.java b/services-discovery/src/main/java/io/scalecube/services/discovery/ScalecubeServiceDiscovery.java index <HASH>..<HASH> 100644 --- a/services-discovery/src/main/java/io/scalecube/services/discovery/ScalecubeServi...
Fixed memory leak in jmx bean
scalecube_scalecube-services
train
ab9f1e0c1944ec2ead64e2812b6203a005db7506
diff --git a/ggplot/geoms/geom.py b/ggplot/geoms/geom.py index <HASH>..<HASH> 100644 --- a/ggplot/geoms/geom.py +++ b/ggplot/geoms/geom.py @@ -129,7 +129,7 @@ class geom(object): return data - def draw_layer(self, data, panel, coord, zorder): + def draw_layer(self, data, panel, coord, **params): ...
The layer does merging of geom & stat params
has2k1_plotnine
train
da65b06843bd9a055c8d42d76075a83077093a71
diff --git a/firenado/tornadoweb.py b/firenado/tornadoweb.py index <HASH>..<HASH> 100644 --- a/firenado/tornadoweb.py +++ b/firenado/tornadoweb.py @@ -225,7 +225,7 @@ class TornadoComponent(object): implemented at the component, all handlers will use it as default. If a handler implements the `get_err...
Fixed write error infinite loop. Returned None by default in get_error_handler methods of component handler and component. Fixes: #<I>
candango_firenado
train
aef027759d0df8781649b8de2ccf72442f17464c
diff --git a/safe_qgis/clipper.py b/safe_qgis/clipper.py index <HASH>..<HASH> 100644 --- a/safe_qgis/clipper.py +++ b/safe_qgis/clipper.py @@ -22,7 +22,7 @@ import os import sys import tempfile import logging -from subprocess import (CalledProcessError, Popen, PIPE) +from subprocess import (CalledProcessError, call,...
Rolled back changes from 0becba<I>dc0 dues to issues it causes under windows and osx. Lets reevaluate after <I>
inasafe_inasafe
train
1c16d301fe0695d40a3eb080187a0a15409aa3ba
diff --git a/lib/rest_adapter.rb b/lib/rest_adapter.rb index <HASH>..<HASH> 100644 --- a/lib/rest_adapter.rb +++ b/lib/rest_adapter.rb @@ -1,5 +1,6 @@ $:.push File.expand_path(File.dirname(__FILE__)) +gem 'dm-core', '>=0.10.0' require 'dm-core' require 'extlib' require 'pathname' diff --git a/spec/spec_helper.rb ...
updated dm-core dependency to <I> and fixed dm-adjust for <I>
datamapper_dm-rest-adapter
train
496bb3cb89e9ede3c253269394f141c90a4ccd8d
diff --git a/src/JWage/APNS/Safari/PackageGenerator.php b/src/JWage/APNS/Safari/PackageGenerator.php index <HASH>..<HASH> 100644 --- a/src/JWage/APNS/Safari/PackageGenerator.php +++ b/src/JWage/APNS/Safari/PackageGenerator.php @@ -4,7 +4,6 @@ namespace JWage\APNS\Safari; use ErrorException; use JWage\APNS\Certifica...
Scrutinizer Auto-Fixes This patch was automatically generated as part of the following inspection: <URL>
jwage_php-apns
train
506454619e6cf662c7225cd38c50ee089d1808f5
diff --git a/src/main/java/net/sf/mpxj/explorer/ProjectExplorer.java b/src/main/java/net/sf/mpxj/explorer/ProjectExplorer.java index <HASH>..<HASH> 100644 --- a/src/main/java/net/sf/mpxj/explorer/ProjectExplorer.java +++ b/src/main/java/net/sf/mpxj/explorer/ProjectExplorer.java @@ -95,7 +95,7 @@ public class ProjectExp...
Add exe to project explorer.
joniles_mpxj
train
98e2891f0ebbe3b0861b52548b93301690cbe2b1
diff --git a/languagetool-wikipedia/src/main/java/org/languagetool/dev/dumpcheck/TatoebaSentenceSource.java b/languagetool-wikipedia/src/main/java/org/languagetool/dev/dumpcheck/TatoebaSentenceSource.java index <HASH>..<HASH> 100644 --- a/languagetool-wikipedia/src/main/java/org/languagetool/dev/dumpcheck/TatoebaSenten...
throw exception if Tatoeba data is not in expected format
languagetool-org_languagetool
train
3cb9f07bcfb75b5d862e706c75d30cbe99cd295e
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -31,19 +31,22 @@ function map (ob, iter) { } -module.exports = function (config) { - config = config || {} + //config = config || {} //FIX THIS - var registry = config.registry || 'http://registry.npmjs.org' + //...
refactor so that the npmd is responsible for the command bit...
dominictarr_npmd-install
train
7da0d24619928690f4999ffc1693b643b612f130
diff --git a/sos/plugins/ceph.py b/sos/plugins/ceph.py index <HASH>..<HASH> 100644 --- a/sos/plugins/ceph.py +++ b/sos/plugins/ceph.py @@ -81,6 +81,13 @@ class Ceph(Plugin, RedHatPlugin, UbuntuPlugin): self.add_forbidden_path("/var/lib/ceph/*/*/*keyring*") self.add_forbidden_path("/var/lib/ceph/osd/*"...
[ceph] exclude temporary mount locations from collection Do not collect temporary mount paths at /var/lib/ceph/tmp/mnt.XXXX. Resolves #<I> Replaces #<I>
sosreport_sos
train
c64ceec2258939ab4cae5b727982b86d056a64c7
diff --git a/views/js/qtiCreator/editor/styleEditor/fontSizeChanger.js b/views/js/qtiCreator/editor/styleEditor/fontSizeChanger.js index <HASH>..<HASH> 100755 --- a/views/js/qtiCreator/editor/styleEditor/fontSizeChanger.js +++ b/views/js/qtiCreator/editor/styleEditor/fontSizeChanger.js @@ -13,7 +13,7 @@ * along with ...
feat: update figcaption font size by styleEditor
oat-sa_extension-tao-itemqti
train
f04a938084e0a68884af95378a3a9f81227c578f
diff --git a/lib/puppet/defaults.rb b/lib/puppet/defaults.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/defaults.rb +++ b/lib/puppet/defaults.rb @@ -485,9 +485,11 @@ module Puppet authority requests. It's a separate server because it cannot and does not need to horizontally scale."], ...
Adding support for specifying a preferred serialization format This isn't that great, but at least it provides basic tuning of the format. Also removing the catalog_format default, since it's no longer used.
puppetlabs_puppet
train
937a7ff2f62d8df418a772e558eca8a2f288cb9f
diff --git a/docs/api-reference/layer.md b/docs/api-reference/layer.md index <HASH>..<HASH> 100644 --- a/docs/api-reference/layer.md +++ b/docs/api-reference/layer.md @@ -49,13 +49,15 @@ Remarks: * For sublayers (automatically generated by composite layers), a unique "composite layer id" is automatically generated by ...
Support generic iterables in `data` prop (#<I>)
uber_deck.gl
train
76bb30faa02e95734a1a4f885a24d1cc1b141aab
diff --git a/lib/trestle/resource.rb b/lib/trestle/resource.rb index <HASH>..<HASH> 100644 --- a/lib/trestle/resource.rb +++ b/lib/trestle/resource.rb @@ -143,6 +143,12 @@ module Trestle Resource::Builder.build(self, &block) end + def validate! + if singular? && find_instance_block.nil? + ...
Require an `instance` block for singular resources
TrestleAdmin_trestle
train
1a3aebb54763a9fa6decf7103434f0f234ad5e5d
diff --git a/react/MuiCozyTheme/makeOverrides.js b/react/MuiCozyTheme/makeOverrides.js index <HASH>..<HASH> 100644 --- a/react/MuiCozyTheme/makeOverrides.js +++ b/react/MuiCozyTheme/makeOverrides.js @@ -591,7 +591,7 @@ const makeOverrides = theme => ({ }, MuiDialogTitle: { root: { - '.flagship-app &': {...
fix: Apply top/bottom spacing on dialog fullscreen Previously it was also applied to small dialogs which is not right. We only need it on fullscreen modals when in flagship app.
cozy_cozy-ui
train
f95a840d1d100821ba6af58350dbf35385ca5c5f
diff --git a/lib/relations/Relation.js b/lib/relations/Relation.js index <HASH>..<HASH> 100644 --- a/lib/relations/Relation.js +++ b/lib/relations/Relation.js @@ -168,7 +168,7 @@ Relation.prototype = { var hrefObj = urlModule.parse(this.href, false, true); canonical = hrefObj.slashes...
Missing index comparison in indexOf check in Relation.canonical getter
assetgraph_assetgraph
train
6ac73e90bb6972e66926ecc2861c48e4860887a8
diff --git a/src/environment.js b/src/environment.js index <HASH>..<HASH> 100644 --- a/src/environment.js +++ b/src/environment.js @@ -124,7 +124,7 @@ var Environment = Obj.extend({ }, getGlobal: function(name) { - if(!this.globals[name]) { + if(typeof this.globals[name] === 'undefined') { ...
Merge pull request #<I> from mariusbuescher/master Add support for boolean globals
mozilla_nunjucks
train
28f820007db9595b90fa05d465bb8379ef8541cb
diff --git a/revgrep.go b/revgrep.go index <HASH>..<HASH> 100644 --- a/revgrep.go +++ b/revgrep.go @@ -198,21 +198,19 @@ func GitPatch(revisionFrom, revisionTo string) (io.Reader, []string, error) { return nil, nil, fmt.Errorf("error executing git ls-files: %s", err) } for _, file := range bytes.Split(ls, []byte...
Remove directories from ls-files
bradleyfalzon_revgrep
train
e864769714614f73a4fe6d4b4f6a7daf7d821773
diff --git a/src/collectors/DiskUsageCollector/DiskUsageCollector.py b/src/collectors/DiskUsageCollector/DiskUsageCollector.py index <HASH>..<HASH> 100644 --- a/src/collectors/DiskUsageCollector/DiskUsageCollector.py +++ b/src/collectors/DiskUsageCollector/DiskUsageCollector.py @@ -155,5 +155,5 @@ class DiskUsageCollec...
For e.g. HP devices which have a / in the device name, replace with _
python-diamond_Diamond
train
fc33d8a2e0246f80181f774eef8c6b383708bc74
diff --git a/examples/djopenid/util.py b/examples/djopenid/util.py index <HASH>..<HASH> 100644 --- a/examples/djopenid/util.py +++ b/examples/djopenid/util.py @@ -1,7 +1,6 @@ """ -Based on the Django backend type in use, return a reference to an -OpenID association store which uses that backend. +Utility code for th...
[project @ Update comment in djopenid.util]
necaris_python3-openid
train
db261f9c1e894aaa7c07bf4b21571cbb2b0e741b
diff --git a/plugins/iterators.js b/plugins/iterators.js index <HASH>..<HASH> 100644 --- a/plugins/iterators.js +++ b/plugins/iterators.js @@ -60,7 +60,7 @@ var iteratorObject = function(options) { var runner = ()=> { this.settings.cursor.next((err, doc) => { if (err) { - cb(err); + throw ...
BUGFIX: Re-throwing cursor errors
hash-bang_Monoxide
train
baa0875fed1fb23b0e92b1e37ce73256972d47d7
diff --git a/molgenis-app-lifelines/src/main/java/org/molgenis/lifelines/WebAppConfig.java b/molgenis-app-lifelines/src/main/java/org/molgenis/lifelines/WebAppConfig.java index <HASH>..<HASH> 100644 --- a/molgenis-app-lifelines/src/main/java/org/molgenis/lifelines/WebAppConfig.java +++ b/molgenis-app-lifelines/src/main...
fix for issue #<I> " Database connection time out exceptions\
molgenis_molgenis
train
9987466f61274424f813149bb7ce42180a3b8ce9
diff --git a/base/test-core/src/test/java/org/openscience/cdk/config/AtomTypeFactoryTest.java b/base/test-core/src/test/java/org/openscience/cdk/config/AtomTypeFactoryTest.java index <HASH>..<HASH> 100644 --- a/base/test-core/src/test/java/org/openscience/cdk/config/AtomTypeFactoryTest.java +++ b/base/test-core/src/tes...
Undo the reformatting of imports
cdk_cdk
train
439a4588f384698a8ae8183ab70e45364f632235
diff --git a/cumulusci/tasks/release_notes/exceptions.py b/cumulusci/tasks/release_notes/exceptions.py index <HASH>..<HASH> 100644 --- a/cumulusci/tasks/release_notes/exceptions.py +++ b/cumulusci/tasks/release_notes/exceptions.py @@ -17,5 +17,8 @@ class GithubApiUnauthorized(CumulusCIException): pass +class G...
raise exception when issue not found in github
SFDO-Tooling_CumulusCI
train
ee65f387375a874dd89a7e7ba83c8047b10109d1
diff --git a/kernel/search/plugins/ezsearchengine/ezsearchengine.php b/kernel/search/plugins/ezsearchengine/ezsearchengine.php index <HASH>..<HASH> 100644 --- a/kernel/search/plugins/ezsearchengine/ezsearchengine.php +++ b/kernel/search/plugins/ezsearchengine/ezsearchengine.php @@ -168,7 +168,6 @@ class eZSearchEngine ...
Fix EZP-<I>: Incorrect increment of object_count in ezsearch_word (#<I>) * Fix for incorrect increment of object_count in ezsearch_word * Do not rename variable
ezsystems_ezpublish-legacy
train
1aa099187d5d10b0b132c01b1aff149dff2fc4dc
diff --git a/nion/swift/model/DocumentModel.py b/nion/swift/model/DocumentModel.py index <HASH>..<HASH> 100644 --- a/nion/swift/model/DocumentModel.py +++ b/nion/swift/model/DocumentModel.py @@ -447,6 +447,7 @@ class DocumentModel(Observable.Observable, ReferenceCounting.ReferenceCounted, P """ computation_...
Ensure library version is updated after migrating. Test.
nion-software_nionswift
train
092dff1e265f6c59f595b4b0571f0e2e3853ec5c
diff --git a/TODO.txt b/TODO.txt index <HASH>..<HASH> 100644 --- a/TODO.txt +++ b/TODO.txt @@ -41,8 +41,8 @@ OK - JUnit backward compatibility OK - check the context class loader of the pool OK - verify that fixes https://github.com/orfjackal/jumi/issues/2 !! - e2e test for also driver thread; it may change in t...
Added support for @SimpleUnit.RunInDriverThread
luontola_jumi
train
6627efac8540c65ae1d0c38ddcebefb0d9b6aaea
diff --git a/influxdb/client.py b/influxdb/client.py index <HASH>..<HASH> 100644 --- a/influxdb/client.py +++ b/influxdb/client.py @@ -97,7 +97,8 @@ class InfluxDBClient(object): self._headers = { 'Content-type': 'application/json', - 'Accept': 'text/plain'} + 'Accept': 'te...
Formatting improvements * ``if value`` can lead to errors
influxdata_influxdb-python
train
7925d091fea08f63f9705d31098c744f5fc1a519
diff --git a/tests/test_netmiko_show.py b/tests/test_netmiko_show.py index <HASH>..<HASH> 100755 --- a/tests/test_netmiko_show.py +++ b/tests/test_netmiko_show.py @@ -54,6 +54,8 @@ def test_send_command_expect(net_connect, commands, expected_responses): ''' Verify a command can be sent down the channel succes...
Update send_command_expect test
ktbyers_netmiko
train
aec7170b2220992c6958d53f5dd2b774d4aa0f22
diff --git a/urigo:angular.js b/urigo:angular.js index <HASH>..<HASH> 100644 --- a/urigo:angular.js +++ b/urigo:angular.js @@ -23,4 +23,16 @@ angularMeteor.run(['$compile', '$document', '$rootScope', function ($compile, $d }); }); } - }]); \ No newline at end of file + }]); + +// Putting all serv...
Add a shorter $meteor service for nicer API, solves #<I>
Urigo_angular-meteor
train
911290de3bacd089223e0f16f4410480d9555c96
diff --git a/aws/resource_aws_organizations_account.go b/aws/resource_aws_organizations_account.go index <HASH>..<HASH> 100644 --- a/aws/resource_aws_organizations_account.go +++ b/aws/resource_aws_organizations_account.go @@ -7,7 +7,6 @@ import ( "time" "github.com/aws/aws-sdk-go/aws" - "github.com/aws/aws-sdk-g...
Fix refactoring gone wrong. Should have just used isAWSErr helper but accidentally left in the old awserr check.
terraform-providers_terraform-provider-aws
train
838f35864ca726974abce36cb993ec76917686a4
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -28,9 +28,11 @@ replay(request('http://google.com/doodle.png', function (err, response, body) { retries: 10, factor: 3 }) -.on('replay', function (replay, error) { - console.log('request failed:', error.code,...
Replay event now fires an object with the replay information.
IndigoUnited_node-request-replay
train
8f8588db40126fa6e794944a19e52bb3a5f6621d
diff --git a/app/controllers/checkins_controller.rb b/app/controllers/checkins_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/checkins_controller.rb +++ b/app/controllers/checkins_controller.rb @@ -38,7 +38,9 @@ class CheckinsController < ApplicationController if flash[:checkin_basket_id] @...
added attr_accessible to Basket
next-l_enju_circulation
train
53c94b2b724ce06bf78f3df5226827035966f140
diff --git a/login_session.go b/login_session.go index <HASH>..<HASH> 100644 --- a/login_session.go +++ b/login_session.go @@ -111,7 +111,7 @@ func (s LoginSession) Clear() error { } // Frontpage returns the submissions on the logged-in user's personal frontpage. -func (s LoginSession) Frontpage(sort popularitySort...
Export the popularitySort type from the package. This allows users of this library to initialize this type from a string in a config file or another external source.
jzelinskie_geddit
train
20f7ce74136a1b184f776edb0e48ba21cd6942dd
diff --git a/Kwc/Basic/Text/StylesModel.php b/Kwc/Basic/Text/StylesModel.php index <HASH>..<HASH> 100644 --- a/Kwc/Basic/Text/StylesModel.php +++ b/Kwc/Basic/Text/StylesModel.php @@ -30,7 +30,7 @@ class Kwc_Basic_Text_StylesModel extends Kwf_Model_Db_Proxy 'name' => $m[5][$i], 'tagName...
Remove assetVariables feature upgrade script will take care to convert everything to scss variables
koala-framework_koala-framework
train
235a12ac42f8c7f422f6dca6af5aa638de1460f8
diff --git a/android/src/com/google/zxing/client/android/CaptureActivity.java b/android/src/com/google/zxing/client/android/CaptureActivity.java index <HASH>..<HASH> 100755 --- a/android/src/com/google/zxing/client/android/CaptureActivity.java +++ b/android/src/com/google/zxing/client/android/CaptureActivity.java @@ -7...
Defensive change against late callbacks; not clear it's actually any issue git-svn-id: <URL>
zxing_zxing
train
27f338e606c17cf06d304d6b6d4b2a42df436dfc
diff --git a/presto-iceberg/src/main/java/com/facebook/presto/iceberg/IcebergModule.java b/presto-iceberg/src/main/java/com/facebook/presto/iceberg/IcebergModule.java index <HASH>..<HASH> 100644 --- a/presto-iceberg/src/main/java/com/facebook/presto/iceberg/IcebergModule.java +++ b/presto-iceberg/src/main/java/com/face...
Fix PartitionMutator not bound error during server start
prestodb_presto
train
afc75c997ac589b07769f7d6b8ba5f8328513490
diff --git a/languagetool-language-modules/fr/src/main/java/org/languagetool/rules/fr/FrenchPartialPosTagFilter.java b/languagetool-language-modules/fr/src/main/java/org/languagetool/rules/fr/FrenchPartialPosTagFilter.java index <HASH>..<HASH> 100644 --- a/languagetool-language-modules/fr/src/main/java/org/languagetool...
[fr] fixing "@since" tag
languagetool-org_languagetool
train
d4ec3b4237dfbd810b42bbedfb3c1d0e0efb01ad
diff --git a/simulator/src/main/java/com/hazelcast/simulator/test/annotations/Teardown.java b/simulator/src/main/java/com/hazelcast/simulator/test/annotations/Teardown.java index <HASH>..<HASH> 100644 --- a/simulator/src/main/java/com/hazelcast/simulator/test/annotations/Teardown.java +++ b/simulator/src/main/java/com/...
Improved javadoc teardown and verify
hazelcast_hazelcast-simulator
train
f5d0d5b953f18b24e170f890ecedd365248dc071
diff --git a/git-updater.php b/git-updater.php index <HASH>..<HASH> 100644 --- a/git-updater.php +++ b/git-updater.php @@ -12,7 +12,7 @@ * Plugin Name: Git Updater * Plugin URI: https://git-updater.com * Description: A plugin to automatically update GitHub hosted plugins, themes, and language p...
add short_description and active_installs for plugin dependencies
afragen_github-updater
train
a14f746bf0aac3f5e21b8d5b5d9672ba0d1dd979
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb b/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb +++ b/activerecord/lib...
use the compile method so we do not have to specify the collectors in this case
rails_rails
train
c4c0842197593ba93783128b4d0f9050866c3544
diff --git a/python_modules/dagster/dagster_tests/core_tests/test_required_resources.py b/python_modules/dagster/dagster_tests/core_tests/test_required_resources.py index <HASH>..<HASH> 100644 --- a/python_modules/dagster/dagster_tests/core_tests/test_required_resources.py +++ b/python_modules/dagster/dagster_tests/cor...
Kill new as_dagster_type invokes Summary: This resolves a merge error with <URL>
dagster-io_dagster
train
dcce050c74007b5c156b41bb77d03a423121cdbd
diff --git a/packages/jsio.js b/packages/jsio.js index <HASH>..<HASH> 100644 --- a/packages/jsio.js +++ b/packages/jsio.js @@ -112,11 +112,17 @@ this.global = window; this.global.jsio = jsio; + var SLICE = Array.prototype.slice; this.log = function() { - if(typeof console != 'undefined' && console.log) ...
fix IE8 logging - console.log doesn't support apply or call in IE8
gameclosure_js.io
train
56a8bbdda9b0d2afdc1ab61ac457e36138d2cfa1
diff --git a/fleetspeak/src/server/https/streaming_message_server.go b/fleetspeak/src/server/https/streaming_message_server.go index <HASH>..<HASH> 100644 --- a/fleetspeak/src/server/https/streaming_message_server.go +++ b/fleetspeak/src/server/https/streaming_message_server.go @@ -320,6 +320,7 @@ func (m *streamManage...
Small fixes to make integration test pass.
google_fleetspeak
train
2146296cd646e7bf74eb8aa2ff10377b291403d8
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -36,6 +36,9 @@ setup( ], 'broker-auth-json': [ 'aionotify', + ], + 'broker-auth-mongo': [ + 'motor', ] }, )
Add feature flag for mongo auth
hpfeeds_hpfeeds
train
855e4034b41be39a2917e04061e7ec57660deea0
diff --git a/indra/belief/__init__.py b/indra/belief/__init__.py index <HASH>..<HASH> 100644 --- a/indra/belief/__init__.py +++ b/indra/belief/__init__.py @@ -245,7 +245,7 @@ class BayesianScorer(SimpleScorer): continue prior_probs['syst'][source] = syst_error prior_probs['ran...
Use some floats to make Python 2 happy
sorgerlab_indra
train
389a4c18421639f053122fa816a052ca454e6781
diff --git a/cf_debug_server_test.go b/cf_debug_server_test.go index <HASH>..<HASH> 100644 --- a/cf_debug_server_test.go +++ b/cf_debug_server_test.go @@ -1,12 +1,14 @@ package cf_debug_server_test import ( + "bytes" "flag" "fmt" "io/ioutil" "net" "net/http" "os" + "strconv" cf_debug_server "github....
Restoring and improving the UT for log-level endpoint Restored the unit test cases for log-level endpoint. Improved the assertion of the log messages for each acceptable forms. This PR tries to resolve <URL>
cloudfoundry_debugserver
train
09c1ba7362cc4f6dcd3d6eaf1dc74496755aace0
diff --git a/jmetal-problem/src/main/java/org/uma/jmetal/problem/multiobjective/cec2009Competition/UF5.java b/jmetal-problem/src/main/java/org/uma/jmetal/problem/multiobjective/cec2009Competition/UF5.java index <HASH>..<HASH> 100755 --- a/jmetal-problem/src/main/java/org/uma/jmetal/problem/multiobjective/cec2009Competi...
Fix: variable assigned with itself, leading useless argument.
jMetal_jMetal
train
3adf8438e721b73194b7701ae114b729f3c83149
diff --git a/test/end-to-end.js b/test/end-to-end.js index <HASH>..<HASH> 100644 --- a/test/end-to-end.js +++ b/test/end-to-end.js @@ -13,7 +13,7 @@ module.exports = function (opts) { var alice = ssbKeys.generate() var bob = ssbKeys.generate() - var ssb = createSSB('test-ssb', opts, alice) + var ssb = createS...
pass keys into test ssb instance correctly
ssbc_ssb-db
train
185867624228ecea6036e62de93ba0d3948fdd6f
diff --git a/lib/farsifu.rb b/lib/farsifu.rb index <HASH>..<HASH> 100644 --- a/lib/farsifu.rb +++ b/lib/farsifu.rb @@ -130,7 +130,7 @@ module FarsiFu if exceptions.include? self exceptions[self] else - spell_farsi + suffix + (spell_farsi + suffix).gsub(/سه(م|مین)$/) { "سو#{$1}" } ...
Fix a bug with 3 at end of a number
aziz_farsifu
train
c60a1ea00b82551c098776f5e67f3d7e30d7cdc2
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -34,7 +34,8 @@ function _footnote_anchor(tokens, idx) { if (tokens[idx].meta.subId > 0) { id += ':' + tokens[idx].meta.subId; } - return ' <a href="#' + id + '" class="footnote-backref">\u21a9</a>'; /* ↩ */ + /* ↩...
Added escape code to anchor symbol ("↩") to prevent display as Apple Emoji on iOS Close <URL>
markdown-it_markdown-it-footnote
train
021ea2c89d98d9f24d6ba98461cdef55b9a5d286
diff --git a/lib/internal/backend/repository/repository2.go b/lib/internal/backend/repository/repository2.go index <HASH>..<HASH> 100644 --- a/lib/internal/backend/repository/repository2.go +++ b/lib/internal/backend/repository/repository2.go @@ -125,7 +125,9 @@ func (rb *RepositoryBackend) buildACIV2(layerIDs []string...
lib/internal/backend/repository: check if closer is nil before closing If any layers being fetched encountered an error, that won't be caught by the main goroutine until after it's attempted to close all of the HTTP bodies, but if there was an error the body could be nil. The bodies should be closed before checking fo...
appc_docker2aci
train
44f1182c52a4379b3599feb1f19d113eeec9bd99
diff --git a/src/Graviton/GeneratorBundle/Definition/JsonDefinition.php b/src/Graviton/GeneratorBundle/Definition/JsonDefinition.php index <HASH>..<HASH> 100644 --- a/src/Graviton/GeneratorBundle/Definition/JsonDefinition.php +++ b/src/Graviton/GeneratorBundle/Definition/JsonDefinition.php @@ -3,7 +3,7 @@ namespace Gra...
more verbosity on the field composition (documentation)
libgraviton_graviton
train
d9b8b3611b7ed4e52f77f3f74f6257c0b79cf0a7
diff --git a/src/Composer/EventDispatcher/EventDispatcher.php b/src/Composer/EventDispatcher/EventDispatcher.php index <HASH>..<HASH> 100644 --- a/src/Composer/EventDispatcher/EventDispatcher.php +++ b/src/Composer/EventDispatcher/EventDispatcher.php @@ -223,7 +223,13 @@ class EventDispatcher return $event...
fixes composer/composer#<I>
mothership-ec_composer
train
e02a8ecf6a053b48a486f63dc5f0bfc019781980
diff --git a/lib/http/headers.rb b/lib/http/headers.rb index <HASH>..<HASH> 100644 --- a/lib/http/headers.rb +++ b/lib/http/headers.rb @@ -128,12 +128,14 @@ module HTTP # @param [#to_hash, #to_h, #to_a] object # @return [Headers] def self.coerce(object) - object = case - when object.respond_t...
Use Headers as is upon coercing
httprb_http
train
90d93e79bd5f5f1b22bc7d81e3c04b1c2b0409d8
diff --git a/src/sap.m/src/sap/m/DatePicker.js b/src/sap.m/src/sap/m/DatePicker.js index <HASH>..<HASH> 100644 --- a/src/sap.m/src/sap/m/DatePicker.js +++ b/src/sap.m/src/sap/m/DatePicker.js @@ -1342,7 +1342,7 @@ sap.ui.define([ sFormattedDate = this._getPickerParser().format( oDate, - sap.ui.getCore().ge...
[FIX] sap.m.DateTimePicker: Selection is OK when value is bound with timezone BCP: <I> Change-Id: Ibe<I>c<I>ab8b<I>e<I>b3e<I>bebe<I>b<I>a<I>a<I>b<I>
SAP_openui5
train
8a6efb7a42bc305d96163ef7c16167bf004cf1ab
diff --git a/src/node/tools/bin/protoc.js b/src/node/tools/bin/protoc.js index <HASH>..<HASH> 100755 --- a/src/node/tools/bin/protoc.js +++ b/src/node/tools/bin/protoc.js @@ -43,7 +43,9 @@ var path = require('path'); var execFile = require('child_process').execFile; -var protoc = path.resolve(__dirname, 'protoc'); ...
Node tools: use the right extension for running protoc on Windows
grpc_grpc
train
d9e7438c5b3f5e6e16c4196fa6917613cefaf687
diff --git a/lib/solargraph/api_map.rb b/lib/solargraph/api_map.rb index <HASH>..<HASH> 100755 --- a/lib/solargraph/api_map.rb +++ b/lib/solargraph/api_map.rb @@ -311,6 +311,7 @@ module Solargraph result.concat inner_get_methods('Kernel', :instance, visibility, deep, skip) else result.concat in...
ApiMap#get_methods always includes Kernel methods.
castwide_solargraph
train
7cd9f4a316ce79a7093c4a18a5c84182572dab40
diff --git a/lib/ronin/sessions/udp.rb b/lib/ronin/sessions/udp.rb index <HASH>..<HASH> 100644 --- a/lib/ronin/sessions/udp.rb +++ b/lib/ronin/sessions/udp.rb @@ -39,6 +39,8 @@ module Ronin require_variable :host require_variable :port + print_info "Connecting to #{@host}:#{@port} ..." + ...
Added some info and debugging output to Sessions::UDP methods.
ronin-ruby_ronin
train
bdc1593b344de95c92fd66b2035396c9490356b6
diff --git a/shared/teams/team/settings-tab/container.js b/shared/teams/team/settings-tab/container.js index <HASH>..<HASH> 100644 --- a/shared/teams/team/settings-tab/container.js +++ b/shared/teams/team/settings-tab/container.js @@ -28,7 +28,12 @@ const mapStateToProps = (state, {teamname}: OwnProps) => { public...
Fix spinner on saving team settings (#<I>)
keybase_client
train
e1b2aca8e9468bf246ae5afa878ed4a36fb36ab1
diff --git a/runway/commands/modules_command.py b/runway/commands/modules_command.py index <HASH>..<HASH> 100644 --- a/runway/commands/modules_command.py +++ b/runway/commands/modules_command.py @@ -654,14 +654,11 @@ class ModulesCommand(RunwayCommand): if deployments is None: deployments = [] -...
fix reverse_deployments to work with variable attributes (#<I>)
onicagroup_runway
train
6600a30a591515c009fd536694dfd07a7353227d
diff --git a/src/main/java/com/yahoo/sketches/theta/Sketches.java b/src/main/java/com/yahoo/sketches/theta/Sketches.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/yahoo/sketches/theta/Sketches.java +++ b/src/main/java/com/yahoo/sketches/theta/Sketches.java @@ -14,7 +14,9 @@ import com.yahoo.sketches.memory.Me...
Made some classes final that should be final and made the default constructor private.
DataSketches_sketches-core
train
e4236ad9c8377202b901ae8d86eaf321bf3e89a1
diff --git a/jest-common/src/test/java/io/searchbox/action/AbstractActionTest.java b/jest-common/src/test/java/io/searchbox/action/AbstractActionTest.java index <HASH>..<HASH> 100644 --- a/jest-common/src/test/java/io/searchbox/action/AbstractActionTest.java +++ b/jest-common/src/test/java/io/searchbox/action/AbstractA...
Added a test to verify that exception is not swallowed
searchbox-io_Jest
train
0d0ff5c5c6841cba78bca78c267159e0afd69bf3
diff --git a/lib/vagrant/protobufs/proto/vagrant_plugin_sdk/plugin_pb.rb b/lib/vagrant/protobufs/proto/vagrant_plugin_sdk/plugin_pb.rb index <HASH>..<HASH> 100644 --- a/lib/vagrant/protobufs/proto/vagrant_plugin_sdk/plugin_pb.rb +++ b/lib/vagrant/protobufs/proto/vagrant_plugin_sdk/plugin_pb.rb @@ -668,15 +668,6 @@ Goog...
Define communicator configs as plugin configs
hashicorp_vagrant
train
8ee6d5c9d92419b39e97b93edb94f6c7bb5dbc40
diff --git a/daemon/daemon.go b/daemon/daemon.go index <HASH>..<HASH> 100644 --- a/daemon/daemon.go +++ b/daemon/daemon.go @@ -669,6 +669,8 @@ func NewDaemon(c *Config) (*Daemon, error) { } log.Infof("Local node-name: %s", nodeaddress.GetName()) + log.Infof("Node-IPv6: %s", nodeaddress.GetIPv6()) + log.Infof("Nod...
agent: Print IPv4/IPv6 node IPs when starting up
cilium_cilium
train
0113eb8368ba13d9e4356a6d6670a3a67c9482fb
diff --git a/spec/interactors/cangaroo/run_polls_spec.rb b/spec/interactors/cangaroo/run_polls_spec.rb index <HASH>..<HASH> 100644 --- a/spec/interactors/cangaroo/run_polls_spec.rb +++ b/spec/interactors/cangaroo/run_polls_spec.rb @@ -6,53 +6,13 @@ class PollJobB < Cangaroo::PollJob; end describe Cangaroo::RunPolls do...
Moving polling specs to poll job specs
nebulab_cangaroo
train
90336b026b088732a315dcb1089085b4455a4d5e
diff --git a/src/nupic/algorithms/KNNClassifier.py b/src/nupic/algorithms/KNNClassifier.py index <HASH>..<HASH> 100755 --- a/src/nupic/algorithms/KNNClassifier.py +++ b/src/nupic/algorithms/KNNClassifier.py @@ -809,6 +809,15 @@ class KNNClassifier(object): return partitionId + def getPartitionIdPerPattern(s...
Partition Id accessors Implemented getPartitionIdPerPattern and getPartitionIdList. Added tests for same.
numenta_nupic
train
d953fff487e85a296ff699c0ca4ef3286920e64d
diff --git a/test/allSpec.js b/test/allSpec.js index <HASH>..<HASH> 100644 --- a/test/allSpec.js +++ b/test/allSpec.js @@ -56,4 +56,19 @@ describe('all', function() { validators[2].should.not.have.been.called; }); + + it('always fails when prop value is missing and isRequired is used', function() { + cons...
added test for `all` - isRequired feature
react-bootstrap_react-prop-types
train
8e69de17de4c1dc33f911dd3a67f6b41375311ca
diff --git a/src/rinoh/flowable.py b/src/rinoh/flowable.py index <HASH>..<HASH> 100644 --- a/src/rinoh/flowable.py +++ b/src/rinoh/flowable.py @@ -177,8 +177,8 @@ class Flowable(Styled): padding_left = self.get_style('padding_left', container) padding_right = self.get_style('padding_right', container)...
HorizAlignedFlowable: fix background/border placement Horizontal padding was not being taken into account.
brechtm_rinohtype
train
d241f901287625148aab80f041370058213a1ab5
diff --git a/Kwf/Media.php b/Kwf/Media.php index <HASH>..<HASH> 100644 --- a/Kwf/Media.php +++ b/Kwf/Media.php @@ -152,8 +152,8 @@ class Kwf_Media $output = Kwf_Media_MemoryCache::getInstance()->load($cacheId); if ($output && !isset($output['file']) && !isset($output['contents'])) { - //s...
media cache: create hieracial files in larger webs this folder can have <I>+ entries
koala-framework_koala-framework
train
623bfafee6b00ef4183c60d5145203ddce49284f
diff --git a/transfer/custom.go b/transfer/custom.go index <HASH>..<HASH> 100644 --- a/transfer/custom.go +++ b/transfer/custom.go @@ -374,7 +374,3 @@ func ConfigureCustomAdapters() { } } - -func init() { - ConfigureCustomAdapters() -} diff --git a/transfer/transfer.go b/transfer/transfer.go index <HASH>..<HASH> 1...
Fix weird clone test failures; must not cause config to load too early Need to move the custom adapter init into a sync.Once which happens JIT instead of during init(). Loading Config (via AllGitConfig()) that early causes problems I don't quite understand
git-lfs_git-lfs
train
7f0603effa8ff465ea0a96c6dd877c0fe6a1cb78
diff --git a/gui/default/vendor/angular/angular-sanitize.js b/gui/default/vendor/angular/angular-sanitize.js index <HASH>..<HASH> 100644 --- a/gui/default/vendor/angular/angular-sanitize.js +++ b/gui/default/vendor/angular/angular-sanitize.js @@ -2,6 +2,25 @@ * @license AngularJS v1.3.20 * (c) 2010-2014 Google, Inc...
gui: Add license verbiage to vendored angular.js (#<I>)
syncthing_syncthing
train
9cc8d8a05f4decc7ec087d6d13f8e61ac78b9db8
diff --git a/tensorforce/environments/environment.py b/tensorforce/environments/environment.py index <HASH>..<HASH> 100644 --- a/tensorforce/environments/environment.py +++ b/tensorforce/environments/environment.py @@ -650,9 +650,12 @@ class RemoteEnvironment(Environment): def receive_execute(self): if se...
Fixed an issue with unpacking experiences (e.g., states, terminal, reward, seconds) from remote environment.
tensorforce_tensorforce
train
4bad2fdda25e2044dbe5e89285fb931ee3d40ad4
diff --git a/spec/pickle/adapter_spec.rb b/spec/pickle/adapter_spec.rb index <HASH>..<HASH> 100644 --- a/spec/pickle/adapter_spec.rb +++ b/spec/pickle/adapter_spec.rb @@ -23,18 +23,6 @@ describe Pickle::Adapter do end describe 'ActiveRecord' do - -#DEPRECATION WARNING: subclasses is deprecated and will be r...
This spec makes the other specs go haywire Can't figure out why. :(
ianwhite_pickle
train
84033e95aadebda20e14082ef6f7da43abe4944f
diff --git a/lib/flatten_record/meta/normalized_attr.rb b/lib/flatten_record/meta/normalized_attr.rb index <HASH>..<HASH> 100644 --- a/lib/flatten_record/meta/normalized_attr.rb +++ b/lib/flatten_record/meta/normalized_attr.rb @@ -58,7 +58,7 @@ module FlattenRecord super(definition) @foreign...
rails <I> support changes
alvinsj_flatten_record
train
e76a5da8f1f4bcefcd26af6ec08606ca27ad300e
diff --git a/README.rst b/README.rst index <HASH>..<HASH> 100644 --- a/README.rst +++ b/README.rst @@ -293,7 +293,7 @@ Helper class that is itself callable, whose return values when called are config >>> side_effect(2) 'with 2' -Call argument equality is checked via equality (==) of the ``call``` object, wh...
Use mock.call as the call object
Fluxx_exam
train
8697d94c339ba98b68bd76cbc43d37576e2d0c6e
diff --git a/jsr330activator.implementation/src/main/java/no/steria/osgi/jsr330activator/implementation/InjectionMethod.java b/jsr330activator.implementation/src/main/java/no/steria/osgi/jsr330activator/implementation/InjectionMethod.java index <HASH>..<HASH> 100644 --- a/jsr330activator.implementation/src/main/java/no...
Fix #2 by retracting injected services on bundle shutdown. Only injections that are injected using property setters are retracted.
sbang_jsr330activator
train
8a97475f2780916b4b1aa1c83253ee112b519ddd
diff --git a/lib/AbstractView.php b/lib/AbstractView.php index <HASH>..<HASH> 100644 --- a/lib/AbstractView.php +++ b/lib/AbstractView.php @@ -320,6 +320,13 @@ abstract class AbstractView extends AbstractObject } + if ($this->model + && is_object($this->model) + && $this->model...
move View::setModel tag integration into recursiveRender this way you can override any values in render() Also it's possible to override the method
atk4_atk4
train
93232f47b5f6e3adb66ef2b66f1fc2e2ca155f70
diff --git a/src/main/java/lv/semti/morphology/analyzer/Wordform.java b/src/main/java/lv/semti/morphology/analyzer/Wordform.java index <HASH>..<HASH> 100644 --- a/src/main/java/lv/semti/morphology/analyzer/Wordform.java +++ b/src/main/java/lv/semti/morphology/analyzer/Wordform.java @@ -41,7 +41,7 @@ public class Wordfo...
Exposed a property needed for LVTagger
PeterisP_morphology
train
38034c399f8155f7a80f4dff053763116a1660ff
diff --git a/bosh-dev/lib/bosh/dev/bat/deployment_manifest.rb b/bosh-dev/lib/bosh/dev/bat/deployment_manifest.rb index <HASH>..<HASH> 100644 --- a/bosh-dev/lib/bosh/dev/bat/deployment_manifest.rb +++ b/bosh-dev/lib/bosh/dev/bat/deployment_manifest.rb @@ -56,7 +56,6 @@ module Bosh::Dev::Bat new_schema = strict_re...
second_static_ip is only used for testing manual network reconfiguration
cloudfoundry_bosh
train
51d00fd9001da6d67bee70103dabc30a6f1890c6
diff --git a/pandas/util/testing.py b/pandas/util/testing.py index <HASH>..<HASH> 100644 --- a/pandas/util/testing.py +++ b/pandas/util/testing.py @@ -183,7 +183,10 @@ def assert_series_equal(left, right, check_dtype=True, assert_almost_equal(left.values, right.values, check_less_precise) if check_dtype: ...
ENH: assert_X_equal with check_less_precise should apply to index/columns too
pandas-dev_pandas
train
b885b00fcca239d2ea1fd6809c598100aa5ff59c
diff --git a/tensorflow_datasets/audio/crema_d.py b/tensorflow_datasets/audio/crema_d.py index <HASH>..<HASH> 100644 --- a/tensorflow_datasets/audio/crema_d.py +++ b/tensorflow_datasets/audio/crema_d.py @@ -136,7 +136,7 @@ class CremaD(tfds.core.GeneratorBasedBuilder): builder=self, description=_DESCR...
Add sample rate metadata to savee and crema_d datasets. PiperOrigin-RevId: <I>
tensorflow_datasets
train
4022cbb67c7b69c0bed537cad924d0641db50780
diff --git a/src/Access/Utils.php b/src/Access/Utils.php index <HASH>..<HASH> 100644 --- a/src/Access/Utils.php +++ b/src/Access/Utils.php @@ -411,7 +411,7 @@ class Utils $contrName, static::humanizeActionName($action) . $suffix ); - $field = $ta...
Assignation field alias Skip table alias for assignation field, since this is used for filtering fild queries, which might be called through an association's target table and the table alias won't match the assignation field preset table alias.
QoboLtd_cakephp-roles-capabilities
train
997e09231b2a48c3afbb5356bda16cb4df5b0c90
diff --git a/src/View/Cell/DblistCell.php b/src/View/Cell/DblistCell.php index <HASH>..<HASH> 100644 --- a/src/View/Cell/DblistCell.php +++ b/src/View/Cell/DblistCell.php @@ -60,6 +60,8 @@ class DblistCell extends Cell /** * Create new list. * + * It will fail to create a new list if the given name...
Fixed docblock (task #<I>)
QoboLtd_cakephp-csv-migrations
train
e0dbc0c5a098b28c9f1ffc531849278520b2d0a6
diff --git a/lib/qprompt.py b/lib/qprompt.py index <HASH>..<HASH> 100644 --- a/lib/qprompt.py +++ b/lib/qprompt.py @@ -168,6 +168,22 @@ except TypeError: if flush: sys.stdout.flush() +def _format_kwargs(formats): + """Decorator to handle formatting kwargs to the proper names expected by + ...
Fixed issue #4, default values accumulating in help. Added logic to improve kwargs per issue #7.
jeffrimko_Qprompt
train
dde4fadac49c2a70e3ac54a31992b0f286b45a91
diff --git a/resource_aws_kms_alias_test.go b/resource_aws_kms_alias_test.go index <HASH>..<HASH> 100644 --- a/resource_aws_kms_alias_test.go +++ b/resource_aws_kms_alias_test.go @@ -5,6 +5,7 @@ import ( "testing" "time" + "github.com/hashicorp/terraform/helper/acctest" "github.com/hashicorp/terraform/helper/re...
provider/aws: Randomize key names in KMS alias test
terraform-providers_terraform-provider-aws
train
505f96d060ad55c67aaca7ec59a698cbc09bd90e
diff --git a/nose/test_kuzminkutuzov.py b/nose/test_kuzminkutuzov.py index <HASH>..<HASH> 100644 --- a/nose/test_kuzminkutuzov.py +++ b/nose/test_kuzminkutuzov.py @@ -35,7 +35,7 @@ def test_vcirc(): V_H = KuzminKutuzovStaeckelPotential(amp=(1.-k),ac=ac_H,Delta=Delta,normalize=False) pot = [V_D,V_H] ...
Update tests of Kuzmin-Kutuzov potential for new calling sequence
jobovy_galpy
train
bc8cb123877f169cc5d656a9ff5830873027296e
diff --git a/monitor/widgets/src/main/java/org/eobjects/datacleaner/monitor/shared/JavaScriptCallbacks.java b/monitor/widgets/src/main/java/org/eobjects/datacleaner/monitor/shared/JavaScriptCallbacks.java index <HASH>..<HASH> 100644 --- a/monitor/widgets/src/main/java/org/eobjects/datacleaner/monitor/shared/JavaScriptC...
Add onWizardPanelClosing method in addition to onWizardFinshed method. onWizardPanelClosing gets called when "Close" button is clicked on the last page of the wizard. onWizardFinished gets called when the last page of the Wizard gets displayed.
datacleaner_DataCleaner
train
42d11af03300fe0a3476c32ad8c70297862d9320
diff --git a/adapter/mock/mock_vpp_adapter.go b/adapter/mock/mock_vpp_adapter.go index <HASH>..<HASH> 100644 --- a/adapter/mock/mock_vpp_adapter.go +++ b/adapter/mock/mock_vpp_adapter.go @@ -252,7 +252,10 @@ func (a *VppAdapter) GetMsgID(msgName string, msgCrc string) (uint16, error) { // SendMsg emulates sending a ...
fixed data race in mock vpp adapter There was a race in reading VppAdapter.mode in SendMsg and writing in MockReply/MockReplyHandler/MockReplyWithContext. All these *Reply* methods hold VppAdapter.repliesLock, so this fix uses this lock to safely read the value of a mode field.
FDio_govpp
train
7f21e7999b3fefd1c733bb75b6b7287dec54f385
diff --git a/jsonapi/fixtures_test.go b/jsonapi/fixtures_test.go index <HASH>..<HASH> 100644 --- a/jsonapi/fixtures_test.go +++ b/jsonapi/fixtures_test.go @@ -325,6 +325,23 @@ func (n *NumberPost) SetID(ID string) error { return nil } +type SqlNullPost struct { + ID string + Title zero.String + Likes zero.In...
Fix Unmarshalling of sql Null-Types #<I> to marshal/unmarshal the sql Null-Types it is recommended to use the library: gopkg.in/guregu/null.v2/zero Otherwise it would be necessary to implement the required interfaces. Unmarshalling is a litle bid dirty now because of the heavy reflection usage. The UnmarshalJSON Met...
manyminds_api2go
train
240ec5c8d90ff93f9a68fe9f42d2135451625ba3
diff --git a/vault/audit.go b/vault/audit.go index <HASH>..<HASH> 100644 --- a/vault/audit.go +++ b/vault/audit.go @@ -259,7 +259,7 @@ func (c *Core) loadAudits(ctx context.Context) error { entry.namespace = ns } - if !needPersist { + if !needPersist || c.perfStandby { return nil }
perf-standby: Fix audit table upgrade on standbys (#<I>)
hashicorp_vault
train
2cc78138e9819306d2bab9ceea0dfbaaaa2cb3e0
diff --git a/faq-bundle/contao/dca/tl_faq.php b/faq-bundle/contao/dca/tl_faq.php index <HASH>..<HASH> 100644 --- a/faq-bundle/contao/dca/tl_faq.php +++ b/faq-bundle/contao/dca/tl_faq.php @@ -225,7 +225,7 @@ $GLOBALS['TL_DCA']['tl_faq'] = array 'label' => &$GLOBALS['TL_LANG']['tl_content']['size'],...
[Faq] Add the `System::getImageSizes()` method and make sure the DB query is only executed once
contao_contao
train