hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
c18d9dac84b9ef7b45ca4e1753645292d5d29324
diff --git a/GPy/kern/src/poly.py b/GPy/kern/src/poly.py index <HASH>..<HASH> 100644 --- a/GPy/kern/src/poly.py +++ b/GPy/kern/src/poly.py @@ -27,7 +27,7 @@ class Poly(Kern): _, _, B = self._AB(X, X2) return B * self.variance - #@Cache_this(limit=2) + @Cache_this(limit=2) def _AB(self, X,...
[Poly] added bias and scale
SheffieldML_GPy
train
bb7024b6ecbc6f379275de3a7171bd0e84d39f29
diff --git a/activerecord/lib/active_record/persistence.rb b/activerecord/lib/active_record/persistence.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/persistence.rb +++ b/activerecord/lib/active_record/persistence.rb @@ -136,22 +136,27 @@ module ActiveRecord # Updates the attributes of the mo...
AR update_attributes api is updated to reflect the addition of assign_attributes
rails_rails
train
b456224af4184f3698ae7c8789fda1721bc23537
diff --git a/src/utility.js b/src/utility.js index <HASH>..<HASH> 100644 --- a/src/utility.js +++ b/src/utility.js @@ -2,7 +2,7 @@ var merge = require('./merge'); var RollbarJSON = {}; var __initRollbarJSON = false; -function setupJSON() { +function setupJSON(polyfillJSON) { if (__initRollbarJSON) { return;...
feat: export setupJSON and make optional
rollbar_rollbar.js
train
a14735e93ad71891159e5e09c955bef64f6c2f56
diff --git a/lib/neo4j-core/query.rb b/lib/neo4j-core/query.rb index <HASH>..<HASH> 100644 --- a/lib/neo4j-core/query.rb +++ b/lib/neo4j-core/query.rb @@ -347,11 +347,17 @@ module Neo4j def generate_partitioning! @partitioning = [[]] + @clauses.each do |clause| if clause.ni...
Also take care of the case where `order` appears before `with`
neo4jrb_neo4j-core
train
d709e825a3ffe3e6193ab9c3999d2203f68b3352
diff --git a/src-gwt/org/opencms/gwt/client/ui/input/colorpicker/CmsSliderBar.java b/src-gwt/org/opencms/gwt/client/ui/input/colorpicker/CmsSliderBar.java index <HASH>..<HASH> 100644 --- a/src-gwt/org/opencms/gwt/client/ui/input/colorpicker/CmsSliderBar.java +++ b/src-gwt/org/opencms/gwt/client/ui/input/colorpicker/Cms...
Correct issue by moving the slider bar and get the correct value to generate the color. Correct for Chrome.
alkacon_opencms-core
train
4a825f816b524f08b4d38bcdd2ed5a3c614c8905
diff --git a/HttpKernel/AbstractWellCommerceBundle.php b/HttpKernel/AbstractWellCommerceBundle.php index <HASH>..<HASH> 100644 --- a/HttpKernel/AbstractWellCommerceBundle.php +++ b/HttpKernel/AbstractWellCommerceBundle.php @@ -45,6 +45,16 @@ abstract class AbstractWellCommerceBundle extends Bundle public sta...
Some fixes (#<I>) * Separation of the login form and registration into different url * Added russian language translite * fixed translite, and theme * fix register bundles and config for use custom user bundle from /src * remove img cache files * remove dumped assets and vendor bundle files * added n...
WellCommerce_CoreBundle
train
2063c70befc1af1495fbf5bfa3254bec9bd22c53
diff --git a/lib/requests/CreateBkmInitializeRequest.js b/lib/requests/CreateBkmInitializeRequest.js index <HASH>..<HASH> 100644 --- a/lib/requests/CreateBkmInitializeRequest.js +++ b/lib/requests/CreateBkmInitializeRequest.js @@ -13,8 +13,8 @@ function CreateBkmInitializeRequest(request) { locale: request['lo...
paymentGroup and basketId setting fix in bkm and chekout initialize request
iyzico_iyzipay-node
train
4b9e881ddfba79fa264ca79382f9a6c593e35e16
diff --git a/openstack/lb_v2_shared.go b/openstack/lb_v2_shared.go index <HASH>..<HASH> 100644 --- a/openstack/lb_v2_shared.go +++ b/openstack/lb_v2_shared.go @@ -220,11 +220,24 @@ func waitForLBV2viaPool(networkingClient *gophercloud.ServiceClient, id string, } if pool.Loadbalancers != nil { - // we know each ...
Find load balancer for pool via listener In the Neutron lbaasv2 API, pools contain the listener, but not the load balancer. Fixes #<I>.
terraform-providers_terraform-provider-openstack
train
6f1cf4465d450722e532686a201c3d953ee9ecec
diff --git a/zcl/pos.go b/zcl/pos.go index <HASH>..<HASH> 100644 --- a/zcl/pos.go +++ b/zcl/pos.go @@ -62,7 +62,7 @@ func RangeBetween(start, end Range) Range { // ContainsOffset returns true if and only if the given byte offset is within // the receiving Range. -func (r *Range) ContainsOffset(offset int) bool { +f...
zcl: Range.ContainsOffset should not have pointer receiver
hashicorp_hcl
train
03eb603da46f2dc270d8fd5007abac1a7db7ae6a
diff --git a/pyang/translators/cts.py b/pyang/translators/cts.py index <HASH>..<HASH> 100644 --- a/pyang/translators/cts.py +++ b/pyang/translators/cts.py @@ -291,6 +291,7 @@ class ConceptualTreeSchema(object): if not no_dc: self.namespaces[self.dc_uri] = "dc" if not no_a: self.namespaces[self.a_uri] ...
CTS: Implemented handling of choice, started defs/refs.
mbj4668_pyang
train
b42a0403aa2173c0bd457b7c606c99ba5bae782d
diff --git a/iavl/iavl_proof2.go b/iavl/iavl_proof2.go index <HASH>..<HASH> 100644 --- a/iavl/iavl_proof2.go +++ b/iavl/iavl_proof2.go @@ -55,6 +55,29 @@ func (p *PathToKey) isRightmost() bool { return true } +type innerPathPair struct { + left []IAVLProofInnerNode + right []IAVLProofInnerNode +} + +func (p *inne...
Factor path code out into new type
tendermint_iavl
train
bf6691ca4617b8b6da22fc7b19801f82009bae13
diff --git a/src/Symfony/Component/Form/Extension/Core/DataTransformer/DateTimeToLocalizedStringTransformer.php b/src/Symfony/Component/Form/Extension/Core/DataTransformer/DateTimeToLocalizedStringTransformer.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Form/Extension/Core/DataTransformer/DateTimeToLocal...
Fix #<I> Issue was introduced in #<I>
symfony_symfony
train
fe64342ee58bda8588e8037f35882563e3601913
diff --git a/src/sap.ui.core/src/sap/ui/test/OpaPlugin.js b/src/sap.ui.core/src/sap/ui/test/OpaPlugin.js index <HASH>..<HASH> 100644 --- a/src/sap.ui.core/src/sap/ui/test/OpaPlugin.js +++ b/src/sap.ui.core/src/sap/ui/test/OpaPlugin.js @@ -461,7 +461,7 @@ sap.ui.define([ }, /** - * Find a control by its glo...
[INTERNAL] sap.ui.test.OpaPlugin: remove redundant documentation Removes redundant documentation which was mistakenly introduced with long-running change Ie8fab2fdf<I>a0cc6a9b<I>ced5f<I>a6c7e<I>b (commit <I>df6ca4a). Change-Id: Ia<I>d<I>fff0baea4ac<I>c6a7a<I>a<I>
SAP_openui5
train
a19e04f06af352c9ec183382733262aaff53c907
diff --git a/src/UthandoThemeManager/View/SocialLinks.php b/src/UthandoThemeManager/View/SocialLinks.php index <HASH>..<HASH> 100644 --- a/src/UthandoThemeManager/View/SocialLinks.php +++ b/src/UthandoThemeManager/View/SocialLinks.php @@ -11,6 +11,7 @@ namespace UthandoThemeManager\View; +use UthandoCommon\Stdlib\...
added support for internal routes in social links
uthando-cms_uthando-theme-manager
train
c842cacabd9051b74e19f83452d2c23ed06eec27
diff --git a/lib/simple_action/version.rb b/lib/simple_action/version.rb index <HASH>..<HASH> 100644 --- a/lib/simple_action/version.rb +++ b/lib/simple_action/version.rb @@ -1,3 +1,3 @@ module SimpleAction - VERSION = "2.0.1" + VERSION = "2.0.3" end
Bump simple_action to <I>
brycesenz_simple_action
train
9f98cd450cde254caf2818c5078a2bdc0fb835ec
diff --git a/core/src/main/java/org/infinispan/cacheviews/CacheViewsManagerImpl.java b/core/src/main/java/org/infinispan/cacheviews/CacheViewsManagerImpl.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/infinispan/cacheviews/CacheViewsManagerImpl.java +++ b/core/src/main/java/org/infinispan/cacheviews/Cach...
ISPN-<I> - CacheViewsManager should call the cache view listener's commitView() method committing the view
infinispan_infinispan
train
ed8f925cc698429308f5035547176d232ffceea6
diff --git a/xchange-liqui/src/main/java/org/knowm/xchange/liqui/LiquiAdapters.java b/xchange-liqui/src/main/java/org/knowm/xchange/liqui/LiquiAdapters.java index <HASH>..<HASH> 100644 --- a/xchange-liqui/src/main/java/org/knowm/xchange/liqui/LiquiAdapters.java +++ b/xchange-liqui/src/main/java/org/knowm/xchange/liqui/...
fall back since introducing null originalAmount possibility needs more thinking
knowm_XChange
train
c6bacf59ad6a84d4ae7f3dc4b6cffa449e1abbec
diff --git a/bin/ghw b/bin/ghw index <HASH>..<HASH> 100755 --- a/bin/ghw +++ b/bin/ghw @@ -64,7 +64,7 @@ function proc(t, o, silent, conf, f, ctx) { var tmpl = hogan.compile(fs.readFileSync(t, 'utf-8')); var data = tmpl.render(merge(conf, ctx)) - var target = path.join(o, path.basename(f, '.md').toLowerC...
Deal with ? in urls Closes #2.
bebraw_ghw
train
7ea6142cb05198c14dabeae42ac79d4f57603b8e
diff --git a/src/main/java/com/ning/billing/recurly/RecurlyClient.java b/src/main/java/com/ning/billing/recurly/RecurlyClient.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/ning/billing/recurly/RecurlyClient.java +++ b/src/main/java/com/ning/billing/recurly/RecurlyClient.java @@ -621,7 +621,7 @@ public class ...
Fix minor problems about Coupon Redemption API * Change method signature of RecurlyClient.getCouponRedemptionByInvoice(String) to RecurlyClient.getCouponRedemptionByInvoice(Integer) * Fix copy and paste mistake in Redemption.equals()
killbilling_recurly-java-library
train
f0fe651178e743b64a3b7f600bfdfc9ef51f61f3
diff --git a/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLConnectionLink.java b/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLConnectionLink.java index <HASH>..<HASH> 100644 --- a/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/SSLConnectionLink.java +++ b/dev/com...
Need to check for null callbacks.
OpenLiberty_open-liberty
train
6cf9346dfd1c69a6db69720360dc11978c2dd5c6
diff --git a/configs/configload/loader.go b/configs/configload/loader.go index <HASH>..<HASH> 100644 --- a/configs/configload/loader.go +++ b/configs/configload/loader.go @@ -84,3 +84,10 @@ func (l *Loader) Parser() *configs.Parser { func (l *Loader) Sources() map[string][]byte { return l.parser.Sources() } + +// I...
configs/configload: Helper for recognizing a config dir (or not) This is just a small wrapper around the parser's IsConfigDir method, for convenience and for law of demeter.
hashicorp_terraform
train
594b4a0089786c333e1f0896d049e34503e5172e
diff --git a/ChangeLog b/ChangeLog index <HASH>..<HASH> 100644 --- a/ChangeLog +++ b/ChangeLog @@ -181,6 +181,9 @@ Release date: TBA Close #1603 +* Fixed ``broad_try_clause`` extension to check try/finally statements and to + check for nested statements (e.g., inside of an ``if`` statement). + What's New in Py...
Fixed broad_try_clause extension to check try/finally statements and to check for nested statements. (#<I>) Previously, the broad_try_except extension did not check nested statements. For example, an if/else statement and its body inside of a try clause did not result in a message. Now, the extension checks within sub...
PyCQA_pylint
train
ed4d6761790dbb9d2e164047e726601caeb9eeb1
diff --git a/fix_yahoo_finance/__init__.py b/fix_yahoo_finance/__init__.py index <HASH>..<HASH> 100644 --- a/fix_yahoo_finance/__init__.py +++ b/fix_yahoo_finance/__init__.py @@ -241,11 +241,24 @@ class Ticker(): quotes = self._parse_quotes(data["chart"]["result"][0]) # 2) fix weired bug with Yahoo!...
Fixed Yahoo!'s <I>m bars being returned as <I>m/<I>m
ranaroussi_fix-yahoo-finance
train
29147af1190bc88cadc3bd0e9535a89cfd2b7dcd
diff --git a/backend/scrapers/classes/processors/addPreRequisiteFor.js b/backend/scrapers/classes/processors/addPreRequisiteFor.js index <HASH>..<HASH> 100644 --- a/backend/scrapers/classes/processors/addPreRequisiteFor.js +++ b/backend/scrapers/classes/processors/addPreRequisiteFor.js @@ -27,8 +27,10 @@ class AddPreRe...
Added non-functional primative sort
ryanhugh_searchneu
train
b1e0f78f5611ec3c3f6d68604f994bf4beb6235d
diff --git a/namesys/publisher.go b/namesys/publisher.go index <HASH>..<HASH> 100644 --- a/namesys/publisher.go +++ b/namesys/publisher.go @@ -22,7 +22,6 @@ import ( const ipnsPrefix = "/ipns/" -const PublishPutValTimeout = time.Minute const DefaultRecordEOL = 24 * time.Hour // IpnsPublisher is capable of publ...
fix: do not use hard coded IPNS Publish maximum timeout duration
ipfs_go-ipfs
train
cd4dba5f8af8ff5738f7d42946f5f387163072e0
diff --git a/stanza/server/semgrex.py b/stanza/server/semgrex.py index <HASH>..<HASH> 100644 --- a/stanza/server/semgrex.py +++ b/stanza/server/semgrex.py @@ -7,19 +7,22 @@ import subprocess import stanza from stanza.protobuf import SemgrexRequest, SemgrexResponse -def send_request(request): +def send_request(reque...
Refactor the function that runs the actual java program
stanfordnlp_stanza
train
d6e02dc0d1e3e9663eccac9f60d09020144f0dcb
diff --git a/airflow/configuration.py b/airflow/configuration.py index <HASH>..<HASH> 100644 --- a/airflow/configuration.py +++ b/airflow/configuration.py @@ -242,7 +242,7 @@ class AirflowConfigParser(ConfigParser): if StrictVersion(sqlite3.sqlite_version) < StrictVersion(min_sqlite_version): ...
Fix docs link for using SQLite as Metadata DB (#<I>) Identified the issue in: <URL>
apache_airflow
train
e377791f170d2cd033f1bb20cbd71348aeab67a0
diff --git a/wikitextparser/spans.py b/wikitextparser/spans.py index <HASH>..<HASH> 100644 --- a/wikitextparser/spans.py +++ b/wikitextparser/spans.py @@ -253,9 +253,7 @@ SINGLE_BRACES_FINDITER = regex_compile( ).finditer -def parse_to_spans( - byte_array: bytearray -) -> Dict[str, List[Tuple[int, int]]]: +def ...
Completely remove templates, parser functions and parameters Almost no performance hit, maybe even a little faster
5j9_wikitextparser
train
503dd169bba74dba7584c63df61e47a84a5ee8ee
diff --git a/src/main/java/com/github/alexcojocaru/mojo/elasticsearch/v2/step/InstallPluginsStep.java b/src/main/java/com/github/alexcojocaru/mojo/elasticsearch/v2/step/InstallPluginsStep.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/github/alexcojocaru/mojo/elasticsearch/v2/step/InstallPluginsStep.java +++ ...
Fix the Windows file URLs for plugins
alexcojocaru_elasticsearch-maven-plugin
train
8178e564e6e3ee417e977cef4e3eb5bdcaa5ea2d
diff --git a/service/gcsutils/gcstools/netnsConfig.go b/service/gcsutils/gcstools/netnsConfig.go index <HASH>..<HASH> 100644 --- a/service/gcsutils/gcstools/netnsConfig.go +++ b/service/gcsutils/gcstools/netnsConfig.go @@ -11,7 +11,6 @@ package main // output itself. import ( - "bytes" "encoding/json" "flag" ...
Ooops. Why we need CI back working
Microsoft_hcsshim
train
f8af60a2db7a2be9afcbd04a7cce1a740f4aad6b
diff --git a/CHANGES.rst b/CHANGES.rst index <HASH>..<HASH> 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -97,6 +97,8 @@ v1.0.11 v1.0.12 ----------- * Upgrade ovp-organization to 1.0.3 +* Add "user" to /projects/{slug}/applies/ v1.0.13[unreleased] ----------- + diff --git a/ovp_projects/serializers/project.py b/...
Add "user" to /projects/{slug}/applies/
OpenVolunteeringPlatform_django-ovp-projects
train
4df2e7382fd71a4223b97693eeb5bb2e5d12d93d
diff --git a/lib/Koine/Hash.php b/lib/Koine/Hash.php index <HASH>..<HASH> 100644 --- a/lib/Koine/Hash.php +++ b/lib/Koine/Hash.php @@ -503,6 +503,7 @@ class Hash extends Object implements ArrayAccess, Iterator, Countable protected function isCallable($callable) { return gettype($callable) === 'object...
Added code documentation [ci skip]
koinephp_Core
train
d31d3173091a17e36f2b7522a6e13b2e5af80660
diff --git a/src/main/java/io/mola/galimatias/URL.java b/src/main/java/io/mola/galimatias/URL.java index <HASH>..<HASH> 100644 --- a/src/main/java/io/mola/galimatias/URL.java +++ b/src/main/java/io/mola/galimatias/URL.java @@ -319,6 +319,45 @@ public class URL implements Serializable { return new URLParser(bas...
Add builder methods for URLs. Fixes #<I>.
smola_galimatias
train
962ca65bc7e4f41e790c45673074a76d9810309f
diff --git a/app/lib/actions/base.rb b/app/lib/actions/base.rb index <HASH>..<HASH> 100644 --- a/app/lib/actions/base.rb +++ b/app/lib/actions/base.rb @@ -1,7 +1,6 @@ module Actions class Base < Dynflow::Action middleware.use ::Actions::Middleware::RailsExecutorWrap - middleware.use ::Actions::Middleware::L...
Refs #<I> - Move middleware to engine To include it also in ActiveJob
theforeman_foreman-tasks
train
42f684811323711cf090e9fd8e31143f482ba28b
diff --git a/examples/glyphs/glyph1.py b/examples/glyphs/glyph1.py index <HASH>..<HASH> 100644 --- a/examples/glyphs/glyph1.py +++ b/examples/glyphs/glyph1.py @@ -22,10 +22,7 @@ source = ObjectArrayDataSource( data = [ {'x' : 1, 'y' : 5, 'z':3}, {'x' : 2, 'y' : 4, 'z':3, 'radius':10}, - # ...
Cleaning up file names and comments in glyph1.py
bokeh_bokeh
train
17365e7e4286523cc85386da997fb814ecefe24a
diff --git a/cmd/minikube/cmd/config/util.go b/cmd/minikube/cmd/config/util.go index <HASH>..<HASH> 100644 --- a/cmd/minikube/cmd/config/util.go +++ b/cmd/minikube/cmd/config/util.go @@ -243,7 +243,7 @@ func ValidateProfile(profile string) (*ErrValidateProfile, bool) { validProfiles, invalidProfiles, err := pkgConf...
<I>: removed exit with error
kubernetes_minikube
train
390e1063113999c56317d19ea4422e3939145b1e
diff --git a/HydraLib/python/HydraLib/PluginLib/templates.py b/HydraLib/python/HydraLib/PluginLib/templates.py index <HASH>..<HASH> 100644 --- a/HydraLib/python/HydraLib/PluginLib/templates.py +++ b/HydraLib/python/HydraLib/PluginLib/templates.py @@ -139,6 +139,10 @@ def validate_template(template_file, connection): ...
Add a check in template validation to ensure the data type of the data matches that specified in the template. Also fix the unit checking to ensure the unit of the dasta and the unit of the template match.
hydraplatform_hydra-base
train
1d8e3d0f6925dde9ca5b40a4a0d4f7af6eae1ede
diff --git a/angular-hal.js b/angular-hal.js index <HASH>..<HASH> 100644 --- a/angular-hal.js +++ b/angular-hal.js @@ -30,7 +30,7 @@ angular.module('angular-hal', []) }; //del - function Resource(href, options, data) { + function Resource(href, options, data, response) { var link...
Added $response method for getting the response. This is useful when you need to act on headers etc.
LuvDaSun_angular-hal
train
72305fdc468708ad167ef8030e70e1c192c751d3
diff --git a/Doctrine/Hydration/DoctrineHydrator.php b/Doctrine/Hydration/DoctrineHydrator.php index <HASH>..<HASH> 100644 --- a/Doctrine/Hydration/DoctrineHydrator.php +++ b/Doctrine/Hydration/DoctrineHydrator.php @@ -21,8 +21,8 @@ class DoctrineHydrator $this->doctrine; } - public function hydrate(...
hydration mode should be possible to configured in every query - pull solr up to parent class - pull hydration mode up to parent class
floriansemm_SolrBundle
train
411cf539a27e7a5f588dedc6d3e3a22141109823
diff --git a/src/sap.m/src/sap/m/Wizard.js b/src/sap.m/src/sap/m/Wizard.js index <HASH>..<HASH> 100644 --- a/src/sap.m/src/sap/m/Wizard.js +++ b/src/sap.m/src/sap/m/Wizard.js @@ -1119,7 +1119,8 @@ sap.ui.define([ var iScrollTop = oEvent.target.scrollTop, oProgressNavigator = this._getProgressNavigator(), - ...
[FIX] sap.m.Wizard: Unstable qUnit tests are now updated A few of the unit tests are failing irregularly. Additional checks for existing DOM elements are added. JIRA: BGSOFUIRILA-<I> Change-Id: I<I>f<I>f3f4b<I>abd0c6de<I>f<I>c<I>e<I>a
SAP_openui5
train
8faeacfe75a63437bcb1a044db7b96a72e574e99
diff --git a/salt/fileclient.py b/salt/fileclient.py index <HASH>..<HASH> 100644 --- a/salt/fileclient.py +++ b/salt/fileclient.py @@ -183,6 +183,21 @@ class Client(object): return '' + def list_states(self, env): + ''' + Return a list of all available sls modules on the master for a given...
Add ability to list states via the fileclient
saltstack_salt
train
d3b446f8f81ce5e9aeddf7d6bf64544df5cec4f2
diff --git a/src/Sulu/Bundle/CategoryBundle/Entity/Category.php b/src/Sulu/Bundle/CategoryBundle/Entity/Category.php index <HASH>..<HASH> 100644 --- a/src/Sulu/Bundle/CategoryBundle/Entity/Category.php +++ b/src/Sulu/Bundle/CategoryBundle/Entity/Category.php @@ -85,6 +85,20 @@ class Category implements AuditableInterfa...
Implemented setter for id in Category and Account entity
sulu_sulu
train
25efdfbabeee733247a6d9cd06156b2597f65146
diff --git a/cmd2.py b/cmd2.py index <HASH>..<HASH> 100755 --- a/cmd2.py +++ b/cmd2.py @@ -585,7 +585,7 @@ class Cmd(cmd.Cmd): :param msg: str - message to print to current stdout - anyting convertible to a str with '{}'.format() is OK :param end: str - string appended after the end of the message if ...
Improved poutput() so that it can print an integer zero and other falsy things The poutput() function has been ruggedized so that it has a better conditional check so that it will actually print things which are "falsy" but are still convertible to a string. A few unit tests have been added specifically for the poutp...
python-cmd2_cmd2
train
8d33a32f6493d163818bf43eae6b803a0c47321c
diff --git a/src/site/components/com_people/controllers/person.php b/src/site/components/com_people/controllers/person.php index <HASH>..<HASH> 100644 --- a/src/site/components/com_people/controllers/person.php +++ b/src/site/components/com_people/controllers/person.php @@ -93,7 +93,12 @@ class ComPeopleControllerPerso...
added id filters to the people browse
anahitasocial_anahita
train
357011ad8a4388e11b8dfc1be0ddabb3254f221e
diff --git a/ext_emconf.php b/ext_emconf.php index <HASH>..<HASH> 100755 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -9,10 +9,10 @@ $EM_CONF[$_EXTKEY] = [ 'state' => 'stable', 'createDirs' => '', 'clearCacheOnLoad' => 0, - 'version' => '11.5.2', + 'version' => '12.0.0', 'constraints' => [ ...
[TASK] Set version to <I>.x.x and require core <I> in ext_emconf.php
TYPO3_styleguide
train
272c9446fc89e21bc9bcb74230f5966c5c862033
diff --git a/Model/Service/TransactionHandlerService.php b/Model/Service/TransactionHandlerService.php index <HASH>..<HASH> 100755 --- a/Model/Service/TransactionHandlerService.php +++ b/Model/Service/TransactionHandlerService.php @@ -396,20 +396,24 @@ class TransactionHandlerService // Refund ...
Updated the partial refund logic to allow multiple partial refunds
checkout_checkout-magento2-plugin
train
1251e51ad0d8bf24517010a259b8f56c31a60fb6
diff --git a/registry/storage/tagstore.go b/registry/storage/tagstore.go index <HASH>..<HASH> 100644 --- a/registry/storage/tagstore.go +++ b/registry/storage/tagstore.go @@ -197,7 +197,7 @@ func (ts *tagStore) Lookup(ctx context.Context, desc distribution.Descriptor) ([ return tags, nil } -func (ts *tagStore) Ind...
better name and updated tests - use ManifestDigests name instead of Indexes - update tests to validate against multiple tags
docker_distribution
train
5ee72663701a98d6a3aced04c2129f69283c8a03
diff --git a/openpnm/algorithms/GenericTransport.py b/openpnm/algorithms/GenericTransport.py index <HASH>..<HASH> 100644 --- a/openpnm/algorithms/GenericTransport.py +++ b/openpnm/algorithms/GenericTransport.py @@ -205,7 +205,7 @@ class GenericTransport(GenericAlgorithm): @docstr.get_sectionsf(base='GenericTranspo...
Remove iterative_props traces from the rest of the code
PMEAL_OpenPNM
train
3d74afcbd84265034a9af725fe7aeb8d5c99aa3a
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -3,6 +3,7 @@ from distutils.core import setup setup( name='angr', version='0.8.0', + description='The next-generation binary analysis platform from UC Santa Barbara\'s Seclab!', packages=['angr', 'angr.surve...
Adding `description` to `setup.py` Adding `description` to `setup.py` to be picked up by `pypi`
angr_angr
train
b89adbdc08ab1041db20adebd42e415afb2d5d41
diff --git a/.travis.yml b/.travis.yml index <HASH>..<HASH> 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ php: env: global: - - STRIPE_MOCK_VERSION=0.44.0 + - STRIPE_MOCK_VERSION=0.49.0 matrix: - AUTOLOAD=1 - AUTOLOAD=0 diff --git a/lib/Terminal/Location.php b/lib/Terminal/Locati...
Add support for Terminal Location and Reader deletion
stripe_stripe-php
train
631dfa6ba8687f70fd3ae100356fc59930ad4d7e
diff --git a/edisgo/io/pypsa_io.py b/edisgo/io/pypsa_io.py index <HASH>..<HASH> 100755 --- a/edisgo/io/pypsa_io.py +++ b/edisgo/io/pypsa_io.py @@ -319,25 +319,17 @@ def to_pypsa(grid_object, timesteps, **kwargs): ) = _get_timeseries_with_aggregated_elements( edisgo_obj, ti...
Remove charging points from pypsa_io
openego_eDisGo
train
b138e8123643d1e12f92542d6c631f89a32bc5f1
diff --git a/tomodachi/helpers/crontab.py b/tomodachi/helpers/crontab.py index <HASH>..<HASH> 100644 --- a/tomodachi/helpers/crontab.py +++ b/tomodachi/helpers/crontab.py @@ -36,6 +36,7 @@ def get_next_datetime(crontab_notation: str, now_date: datetime.datetime) -> Opt parts = cron_parts[i].lower().split(',') ...
Schedule errors due to invalid timestamps/intervals should raise an exception on init
kalaspuff_tomodachi
train
3f4d5c61535a5380f4085074c6cb71b56038c9f2
diff --git a/app/models/maestrano/connector/rails/complex_entity.rb b/app/models/maestrano/connector/rails/complex_entity.rb index <HASH>..<HASH> 100644 --- a/app/models/maestrano/connector/rails/complex_entity.rb +++ b/app/models/maestrano/connector/rails/complex_entity.rb @@ -64,7 +64,7 @@ module Maestrano::Connector...
Changes ComplexEntity::map_to_external_with_idmaps to be an instance method
maestrano_maestrano-connector-rails
train
d972fb9711b0bde08e4ba8c79ddec1482154da40
diff --git a/src/test/java/com/stripe/StripeTest.java b/src/test/java/com/stripe/StripeTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/com/stripe/StripeTest.java +++ b/src/test/java/com/stripe/StripeTest.java @@ -110,6 +110,11 @@ public class StripeTest assertEquals("test+bindings@stripe.com", retrievedAcc...
Add more tests for other Account properties.
stripe_stripe-java
train
d0d502e4fefe0479a278b7206139eaba7f3cd8d8
diff --git a/tests/test_apps/deletes/src/com/DeletesClient.java b/tests/test_apps/deletes/src/com/DeletesClient.java index <HASH>..<HASH> 100644 --- a/tests/test_apps/deletes/src/com/DeletesClient.java +++ b/tests/test_apps/deletes/src/com/DeletesClient.java @@ -1,3 +1,26 @@ +/* This file is part of VoltDB. + * Copyrig...
Make licensecheck happy...I forgot that we walk this subdir.
VoltDB_voltdb
train
2ffb2988bfad97a9a855e3d5cfbccfa98671a381
diff --git a/src/diagrams/sequence/sequenceRenderer.js b/src/diagrams/sequence/sequenceRenderer.js index <HASH>..<HASH> 100644 --- a/src/diagrams/sequence/sequenceRenderer.js +++ b/src/diagrams/sequence/sequenceRenderer.js @@ -285,10 +285,8 @@ const drawMessage = function(g, msgModel) { .append('path') ...
One small refactor to fix activation starty Ensure a minimum amount of space between wrapped / non-wrapped title text and the next element
knsv_mermaid
train
3a82840bf6bddf6f42439eaccc6139de91ab2567
diff --git a/packages/ember-htmlbars/lib/hooks.js b/packages/ember-htmlbars/lib/hooks.js index <HASH>..<HASH> 100644 --- a/packages/ember-htmlbars/lib/hooks.js +++ b/packages/ember-htmlbars/lib/hooks.js @@ -69,7 +69,7 @@ export function subexpr(path, view, params, hash, options, env) { } } -export function attrib...
Ensure that initially null attributes are not added to element.
emberjs_ember.js
train
ad8f6a22239fdcc737be1c14713982280e388d2c
diff --git a/claripy/__init__.py b/claripy/__init__.py index <HASH>..<HASH> 100644 --- a/claripy/__init__.py +++ b/claripy/__init__.py @@ -21,6 +21,8 @@ def init_claripies(): backend_vsa = backends.BackendVSA() backend_concrete = backends.BackendConcrete() Claripies['VSA'] = ClaripyStandalone('VSA', mode...
Setting references to the claripy instance in backends
angr_claripy
train
c277229c33cbf2bd198de7f870055e9738d78d9b
diff --git a/lib/export.js b/lib/export.js index <HASH>..<HASH> 100644 --- a/lib/export.js +++ b/lib/export.js @@ -50,9 +50,9 @@ function getRIS(results) { var ris = []; results.hits.hits.forEach(function(hit) { var res = hit._source; - ris.push('TY' + rsep + res.uri.indexOf('ncbi.nlm.nih.gov') ? 'ABST' :...
implementing RIS export (wip)
vid_SenseBase
train
01e9ab05d56d4355bab8e6d1ac1579f8622e3132
diff --git a/hash.js b/hash.js index <HASH>..<HASH> 100644 --- a/hash.js +++ b/hash.js @@ -1,5 +1,5 @@ var Hash = new function() { - this.extract = function(data, path) { + this.extract = function(data, path) { if(!new RegExp('[{\[]').test(path)) return this.get(data, path) || [] var tokens = this._tokenize...
fixed tokenize for [] input name syntax, gave merge a destructive boolean need to replace $.isArray
jbielick_hash-js
train
0ef72ebfbfd0307f287a6f831f2cebe6ec305b0f
diff --git a/Tests/Unit/Task/Release/PrepareReleaseTaskTest.php b/Tests/Unit/Task/Release/PrepareReleaseTaskTest.php index <HASH>..<HASH> 100644 --- a/Tests/Unit/Task/Release/PrepareReleaseTaskTest.php +++ b/Tests/Unit/Task/Release/PrepareReleaseTaskTest.php @@ -9,7 +9,7 @@ namespace TYPO3\Surf\Tests\Unit\Task\Release;...
[HOTFIX] Expect the correct exception class in test
TYPO3_Surf
train
e16d4a7aa41f295d985febfe8fe4b3fc06c20328
diff --git a/aws/resource_aws_mq_broker.go b/aws/resource_aws_mq_broker.go index <HASH>..<HASH> 100644 --- a/aws/resource_aws_mq_broker.go +++ b/aws/resource_aws_mq_broker.go @@ -146,7 +146,6 @@ func resourceAwsMqBroker() *schema.Resource { "ldap_server_metadata": { Type: schema.TypeList, Optional: tr...
r/mq_broker: Mark password sensitive
terraform-providers_terraform-provider-aws
train
5cdb963277ebc379eba8af39bc386c462bfdcb93
diff --git a/src/ClientEngine.js b/src/ClientEngine.js index <HASH>..<HASH> 100644 --- a/src/ClientEngine.js +++ b/src/ClientEngine.js @@ -80,12 +80,6 @@ class ClientEngine { that.inboundMessages.push(worldData); }); - // initialize the renderer - if (!this.renderer) { - ...
ClientEngine: initialize renderer after game world
lance-gg_lance
train
02d7e1d0c40ba867bfe7a010646c5277bfdb4ad8
diff --git a/app/controllers/alchemy/api/pages_controller.rb b/app/controllers/alchemy/api/pages_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/alchemy/api/pages_controller.rb +++ b/app/controllers/alchemy/api/pages_controller.rb @@ -7,10 +7,12 @@ module Alchemy # Returns all pages as json object ...
Do not leak all pages for guest users in API controller CanCanCan does not respect any scope set before `accessible_by`. We need to make sure the additional scopes get called afterwards.
AlchemyCMS_alchemy_cms
train
805727b28c66ddb2f8433dcbcdf99321f3e040c3
diff --git a/cmd/sql-agent/main.go b/cmd/sql-agent/main.go index <HASH>..<HASH> 100644 --- a/cmd/sql-agent/main.go +++ b/cmd/sql-agent/main.go @@ -122,6 +122,12 @@ type Payload struct { } func handleRequest(w http.ResponseWriter, r *http.Request) { + // Alive. + if r.Method == "GET" || r.Method == "HEAD" { + retur...
Support GET and HEAD requests for liveness checks
chop-dbhi_sql-agent
train
689f7df91ac12e18348c848077059938eb9838a7
diff --git a/src/main/java/org/gitlab4j/api/IssuesApi.java b/src/main/java/org/gitlab4j/api/IssuesApi.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/gitlab4j/api/IssuesApi.java +++ b/src/main/java/org/gitlab4j/api/IssuesApi.java @@ -1,26 +1,3 @@ -/* - * The MIT License (MIT) - * - * Copyright (c) 2017 Greg Me...
Added support for getting issue participants (#<I>).
gmessner_gitlab4j-api
train
53610d50d4dd050770bd0695cf2a72718474e054
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -53,16 +53,16 @@ Person.prototype.change = function(name) { var jim = new Person('Jim'); // Adding event handlers -jim.on('change:name', function(name) { +jim.on('change:name', function(e, name) { console.log('"ch...
Pass event name as first argument to handlers
Prestaul_listen-up
train
fe33eb033784eb786882e4d0eb479708c8c18876
diff --git a/src/Domains/Resource/Field/FieldType.php b/src/Domains/Resource/Field/FieldType.php index <HASH>..<HASH> 100644 --- a/src/Domains/Resource/Field/FieldType.php +++ b/src/Domains/Resource/Field/FieldType.php @@ -75,7 +75,40 @@ class FieldType implements FieldTypeInterface public function resolveDataFrom...
Extract resolveValueFromRequest from resolveDataFromRequest for reusability
superv_platform
train
39c7e41140c374276c9a3986dc4291088bdc2e26
diff --git a/lxd/db/storage_pools.go b/lxd/db/storage_pools.go index <HASH>..<HASH> 100644 --- a/lxd/db/storage_pools.go +++ b/lxd/db/storage_pools.go @@ -682,19 +682,19 @@ func (c *Cluster) GetStoragePoolID(poolName string) (int64, error) { // GetStoragePool returns a single storage pool. // // The pool must be in ...
lxd/db/storage/pools: Updates storage pool load functions to return nodes
lxc_lxd
train
4e7cec443ceb8aad0ff29b2b6bde4c3c049fcd16
diff --git a/app/models/ip_address.rb b/app/models/ip_address.rb index <HASH>..<HASH> 100644 --- a/app/models/ip_address.rb +++ b/app/models/ip_address.rb @@ -15,7 +15,8 @@ class IPAddress < ApplicationRecord belongs_to :ip_pool - validates :ipv4, :presence => true + validates :ipv4, :presence => true, :unique...
ensure IP addresses are unique fixes #<I>
atech_postal
train
7e1cfc1f6a727809a7d858ce6fa606550ea07b7d
diff --git a/cgroups/fs/apply_raw.go b/cgroups/fs/apply_raw.go index <HASH>..<HASH> 100644 --- a/cgroups/fs/apply_raw.go +++ b/cgroups/fs/apply_raw.go @@ -75,6 +75,7 @@ func GetStats(c *cgroups.Cgroup) (*cgroups.Stats, error) { if err == cgroups.ErrNotFound { continue } + return nil, err } diff --...
Dont fail on missing subsystem for systemd stats Docker-DCO-<I>-
opencontainers_runc
train
10789cd779ba684f9da1af8dd1dc9b8a1302e66a
diff --git a/src/virtual-machine.js b/src/virtual-machine.js index <HASH>..<HASH> 100644 --- a/src/virtual-machine.js +++ b/src/virtual-machine.js @@ -414,12 +414,34 @@ class VirtualMachine extends EventEmitter { * Update a sound buffer. * @param {int} soundIndex - the index of the sound to be updated. ...
Bring in Karishmas changes from save-load to ensure the sound gets updated in storage when edited
LLK_scratch-vm
train
890f11127f4b7722a2bab93b6dffb07eac55b120
diff --git a/styleguide/src/components/search.js b/styleguide/src/components/search.js index <HASH>..<HASH> 100644 --- a/styleguide/src/components/search.js +++ b/styleguide/src/components/search.js @@ -92,8 +92,8 @@ const Search = props => { placeholder="Search..." aria-autocomplete="list" a...
styleguide: only set aria-owns and aria-activedescendant on search input when results are shown
pivotal-cf_pivotal-ui
train
dbd59a16ba209f52a074d44c774e02c8acd739a5
diff --git a/parsl/utils.py b/parsl/utils.py index <HASH>..<HASH> 100644 --- a/parsl/utils.py +++ b/parsl/utils.py @@ -25,7 +25,7 @@ def get_version(): status = 'dirty' if diff else 'clean' version = '{v}-{head}-{status}'.format(v=VERSION, head=head, status=status) except Exception as e: - ...
Do not log traceback if version check fails This is confusing. If the version is the vanilla version instead of in the format '{v}-{head}-{status}', we can assume that the check failed. There is no need to show the user the traceback, as that makes it appear like there was a fatal error. Fixes #<I> and fixes #<I>.
Parsl_parsl
train
cb89be7ae192bb36c2bb6cc973b8ae6d4c849f6b
diff --git a/src/ApiFramework/User.php b/src/ApiFramework/User.php index <HASH>..<HASH> 100644 --- a/src/ApiFramework/User.php +++ b/src/ApiFramework/User.php @@ -11,10 +11,11 @@ namespace ApiFramework; */ class User extends BaseModule { - - private static $user = 'guest'; - private static $password = '1a1dc91...
Updated User module with configurable usernameColumn and passwordColumn
nicodevs_laito
train
89141eec1148ba8d578bf295dfeb3f763a636d93
diff --git a/bin/generate-exports.py b/bin/generate-exports.py index <HASH>..<HASH> 100755 --- a/bin/generate-exports.py +++ b/bin/generate-exports.py @@ -85,10 +85,9 @@ class ObjectLiteral(Exportable): class Symbol(Exportable): - def __init__(self, name, export_symbol, export_as=None): + def __init__(self, ...
Remove export_as handling from generate-exports.py
openlayers_openlayers
train
d217c141540a277326bf84dfc345d6efda51121e
diff --git a/web/modeshape-web-explorer/src/main/java/org/modeshape/web/server/impl/JsonConfigConnectorImpl.java b/web/modeshape-web-explorer/src/main/java/org/modeshape/web/server/impl/JsonConfigConnectorImpl.java index <HASH>..<HASH> 100644 --- a/web/modeshape-web-explorer/src/main/java/org/modeshape/web/server/impl/...
MODE-<I>: Web-explorer should access repository configuration files in the same style as other web components.
ModeShape_modeshape
train
7a2a2116aa0da910e4dfcd027c04b0df890e585c
diff --git a/scripts/hateoas.js b/scripts/hateoas.js index <HASH>..<HASH> 100644 --- a/scripts/hateoas.js +++ b/scripts/hateoas.js @@ -140,10 +140,23 @@ angular.module("hateoas", ["ngResource"]) return { response: function (response) { - if (response && typeof response[linksKey] === "object") { - ...
interceptor now supports consuming response data arrays
jmarquis_angular-hateoas
train
b1fc2059bbb7489a2f1917f2508b789c3a104268
diff --git a/tests/conftest.py b/tests/conftest.py index <HASH>..<HASH> 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,7 +1,7 @@ import functools import os +from unittest import mock -import mock import mopidy_podcast as ext import pytest diff --git a/tests/test_extension.py b/tests/test_extension...
Replace mock with unittest.mock
tkem_mopidy-podcast
train
366c1752b414ede4561965f409b6035457b70bb9
diff --git a/src/main/java/com/codeborne/selenide/Selenide.java b/src/main/java/com/codeborne/selenide/Selenide.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/codeborne/selenide/Selenide.java +++ b/src/main/java/com/codeborne/selenide/Selenide.java @@ -74,6 +74,13 @@ public class Selenide { } /** + ...
Added method close() and screenshot() to Selenide class
selenide_selenide
train
8eaf82a10e0a178b1476772bf0749c17c57c0f72
diff --git a/scheduler/schedtype.go b/scheduler/schedtype.go index <HASH>..<HASH> 100644 --- a/scheduler/schedtype.go +++ b/scheduler/schedtype.go @@ -160,7 +160,7 @@ type Scheduler struct { // Invoked when a slave has been determined unreachable (e.g., // machine failure, network partition). Most frameworks will n...
Added handler for SlaveLost message.
mesos_mesos-go
train
d20fcff6c54c9ac22ca8873fd2d58c5c50c51987
diff --git a/src/Helpers/HCResponse.php b/src/Helpers/HCResponse.php index <HASH>..<HASH> 100644 --- a/src/Helpers/HCResponse.php +++ b/src/Helpers/HCResponse.php @@ -64,6 +64,7 @@ class HCResponse return response()->json([ 'message' => $message, 'errors' => $errors, + 'sta...
Update HCResponse.php
honey-comb_starter
train
2b08cb82480e8476579c4ff699332f3d8063fbd9
diff --git a/app/controllers/releaf/base_controller.rb b/app/controllers/releaf/base_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/releaf/base_controller.rb +++ b/app/controllers/releaf/base_controller.rb @@ -113,14 +113,10 @@ module Releaf def destroy check_feature(:destroy) @resou...
Remove code duplication related to notice scopes names
cubesystems_releaf
train
491e87e957fb69f90012c8e86d4cfa419f29bff6
diff --git a/src/basis/data.js b/src/basis/data.js index <HASH>..<HASH> 100644 --- a/src/basis/data.js +++ b/src/basis/data.js @@ -217,13 +217,13 @@ if (mask & 1) { var cfg = subscriptionConfig[idx]; + + actions.push(cfg.action); + for (var key in cfg.handler) - ...
fix multiple subscribe/unsubscribe for subscriptions with more than one event handlers
basisjs_basisjs
train
5e734e95fc19437792c9c07c2f5f8bd6fad5cdc1
diff --git a/state-log/src/test/java/net/kuujo/copycat/state/StateLogTest.java b/state-log/src/test/java/net/kuujo/copycat/state/StateLogTest.java index <HASH>..<HASH> 100644 --- a/state-log/src/test/java/net/kuujo/copycat/state/StateLogTest.java +++ b/state-log/src/test/java/net/kuujo/copycat/state/StateLogTest.java @...
Reset local protocol in state log tests.
atomix_atomix
train
2cd11a7c563d48378b5ce69454d26aaf04f617aa
diff --git a/core/cas-server-core-configuration/src/main/java/org/apereo/cas/configuration/support/Beans.java b/core/cas-server-core-configuration/src/main/java/org/apereo/cas/configuration/support/Beans.java index <HASH>..<HASH> 100644 --- a/core/cas-server-core-configuration/src/main/java/org/apereo/cas/configuration...
fix castinng issue to remove javac warning
apereo_cas
train
1b17b52385b9241ae6a537939b82e3276977d875
diff --git a/hangups/client.py b/hangups/client.py index <HASH>..<HASH> 100644 --- a/hangups/client.py +++ b/hangups/client.py @@ -87,6 +87,8 @@ class Client(object): self._last_active_secs = 0.0 # ActiveClientState enum value or None: self._active_client_state = None + # Future for Ch...
Add Client.disconnect to disconnect gracefully
tdryer_hangups
train
929fd24dfd1dce2892d8a763b03e1d55791e9383
diff --git a/api/src/main/java/org/ocpsoft/common/services/ServiceLoader.java b/api/src/main/java/org/ocpsoft/common/services/ServiceLoader.java index <HASH>..<HASH> 100644 --- a/api/src/main/java/org/ocpsoft/common/services/ServiceLoader.java +++ b/api/src/main/java/org/ocpsoft/common/services/ServiceLoader.java @@ -1...
Use diamond operator <> where possible
ocpsoft_common
train
b603f3bdaaa92e5c790168d47c203076f8c18fbe
diff --git a/pmml-model/src/main/java/org/jpmml/model/ElementFilter.java b/pmml-model/src/main/java/org/jpmml/model/ElementFilter.java index <HASH>..<HASH> 100644 --- a/pmml-model/src/main/java/org/jpmml/model/ElementFilter.java +++ b/pmml-model/src/main/java/org/jpmml/model/ElementFilter.java @@ -3,6 +3,9 @@ */ pac...
Added constructors ElementFilter(Class) and ElementFilter(XMLReader, Class)
jpmml_jpmml-model
train
bc9a933c7a128eab7e2507d2489b228a5b440fe8
diff --git a/src/typeMapper.js b/src/typeMapper.js index <HASH>..<HASH> 100644 --- a/src/typeMapper.js +++ b/src/typeMapper.js @@ -6,6 +6,7 @@ import { GraphQLEnumType, GraphQLList } from 'graphql'; +import JSONType from './types/jsonType'; let customTypeMapper; /** @@ -50,7 +51,8 @@ export function toGra...
Maps sequelize JSON/JSONB to JSONType (#<I>) * Adds JSON mapper * Remove JSONB * Clean up
mickhansen_graphql-sequelize
train
67ae147eacff7de55656bf3ff79d287187645bd6
diff --git a/src/Retriever.php b/src/Retriever.php index <HASH>..<HASH> 100644 --- a/src/Retriever.php +++ b/src/Retriever.php @@ -15,6 +15,7 @@ use webignition\WebResource\Exception\HttpException; use webignition\WebResource\Exception\InvalidContentTypeException; use webignition\WebResource\Exception\TransportExcept...
Update docblocks to reflect interface of thrown exceptions (#6)
webignition_web-resource-retriever
train
ae9cb6df4c25ea277db79661c994aa54c8b3e011
diff --git a/blimpy/sigproc.py b/blimpy/sigproc.py index <HASH>..<HASH> 100644 --- a/blimpy/sigproc.py +++ b/blimpy/sigproc.py @@ -128,7 +128,7 @@ def read_next_header_keyword(fh): if dtype == b'<d': val = struct.unpack(dtype, fh.read(8))[0] if dtype == b'str': - str_len = np.f...
int<I> -> uint<I> typo fix, was loading a uint as an integer. This will not actually affect real-world headers but is more strictly correct. See #<I>
UCBerkeleySETI_blimpy
train
d57a10006a8c1152f71c164046b45e0bfecc6da2
diff --git a/presto-main/src/main/java/com/facebook/presto/sql/gen/NullIfCodeGenerator.java b/presto-main/src/main/java/com/facebook/presto/sql/gen/NullIfCodeGenerator.java index <HASH>..<HASH> 100644 --- a/presto-main/src/main/java/com/facebook/presto/sql/gen/NullIfCodeGenerator.java +++ b/presto-main/src/main/java/co...
Fix NULLIF for map type when type coercion is required The compilation of NULLIF will perform necessary cast into common type. It uses "dup" as the expression to generate the first value when invoke the cast function, assuming the first value is on the stack. This doesn't work when the invocation framework need to pus...
prestodb_presto
train
f2555210a40319a5c15a629de3a1390eaf8832d5
diff --git a/utils/src/main/java/com/ning/jetty/utils/filters/PeepingTomResponseWrapper.java b/utils/src/main/java/com/ning/jetty/utils/filters/PeepingTomResponseWrapper.java index <HASH>..<HASH> 100644 --- a/utils/src/main/java/com/ning/jetty/utils/filters/PeepingTomResponseWrapper.java +++ b/utils/src/main/java/com/n...
utils: make PeepingTomResponseWrapper support PrintWriter This is needed when wrapping around jsp servlet.
pierre_ning-service-skeleton
train
80e5c50b741a528126e4512d60d281f9b17e1db8
diff --git a/Kwf/Media/Image.php b/Kwf/Media/Image.php index <HASH>..<HASH> 100644 --- a/Kwf/Media/Image.php +++ b/Kwf/Media/Image.php @@ -87,13 +87,16 @@ class Kwf_Media_Image break; } - while (true) { + $count = 0; + while ($count < ...
Add limit checks for exif-rotation Break if ifd-count is greater than <I> because there only exist about <I> different tags whereby about <I> are specific to special hardware. Also break if there are more than 5 ifd-regions because there shouldn't be any more...
koala-framework_koala-framework
train
570298be8f5514ec15742239899977a1d1827369
diff --git a/instances/src/components/ServiceInstanceDetails/ServiceInstanceBindings/ServiceInstanceBindings.component.js b/instances/src/components/ServiceInstanceDetails/ServiceInstanceBindings/ServiceInstanceBindings.component.js index <HASH>..<HASH> 100644 --- a/instances/src/components/ServiceInstanceDetails/Servi...
Allow ServiceBinding without secret (#<I>)
kyma-project_console
train
4f7371d9fad9bffc04d3acef76af5114b58761d5
diff --git a/src/Anonym/Bootstrap/AliasNotFoundException.php b/src/Anonym/Bootstrap/AliasNotFoundException.php index <HASH>..<HASH> 100644 --- a/src/Anonym/Bootstrap/AliasNotFoundException.php +++ b/src/Anonym/Bootstrap/AliasNotFoundException.php @@ -28,4 +28,4 @@ class AliasNotFoundException extends Exception { ...
added a new blank line to alias not found exception file
AnonymPHP_Anonym-Library
train
9fc349965de50ceb8d4a32934549ca235d928ec7
diff --git a/test/response.test.js b/test/response.test.js index <HASH>..<HASH> 100644 --- a/test/response.test.js +++ b/test/response.test.js @@ -52,7 +52,7 @@ module.exports = { assert.response(app, { url: '/html' }, - { body: '<p>test</p>', headers: { 'Content-Language': 'en', 'Content-Type': 'tex...
Changed; charsets are no longer implied
expressjs_express
train
71a04c524e1bbfa606234d07eee761fd7d7bc5c9
diff --git a/goals/PackageGoal.php b/goals/PackageGoal.php index <HASH>..<HASH> 100644 --- a/goals/PackageGoal.php +++ b/goals/PackageGoal.php @@ -86,7 +86,7 @@ class PackageGoal extends VendorGoal public function getHomepage() { - return $this->getItem('homepage') ?: ($this->vendor->homepage . $this...
* default package homepage to same as source
hiqdev_hidev
train
17f9407a52d5ffaf26e2e6d5369161cf2be4cd8e
diff --git a/lib/mizuho/generator.rb b/lib/mizuho/generator.rb index <HASH>..<HASH> 100644 --- a/lib/mizuho/generator.rb +++ b/lib/mizuho/generator.rb @@ -21,11 +21,12 @@ class Generator def start if @commenting_system - if !File.exist?(@id_map_file) + @id_map = IdMap.new(@input_file) + if File.exist?(@id...
Fix creation of new ID map file.
FooBarWidget_mizuho
train