hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
cd237f958d9369ba34176c88d2aa308ba75ec838
diff --git a/tests/org.eclipse.xtext.common.types.tests/tests/org/eclipse/xtext/common/types/util/AbstractFeatureOverridesServiceTest.java b/tests/org.eclipse.xtext.common.types.tests/tests/org/eclipse/xtext/common/types/util/AbstractFeatureOverridesServiceTest.java index <HASH>..<HASH> 100644 --- a/tests/org.eclipse.x...
[tests] added comments to test case failing under JDK 7
eclipse_xtext-extras
train
ec8146e0ad3bf14b40d060d7a4bebb38270cebec
diff --git a/lib/Email.js b/lib/Email.js index <HASH>..<HASH> 100644 --- a/lib/Email.js +++ b/lib/Email.js @@ -21,10 +21,13 @@ function Email (template, options) { } // init extension and engine - this.ext = path.extname(template); + // options.ext is supported for backwards compatibility with keystone.Email + th...
More backwards compatibility with keystone.Email This fixes the view engine and template extension defaults in a way that’s compatible with the new keystone.Email mappings, and adds protection for when engine is provided as a function but no template extension is specified.
keystonejs_keystone-email
train
4ed5ac5f7bfcfb94c18e134e5fa17b33c83f994f
diff --git a/py/h2o.py b/py/h2o.py index <HASH>..<HASH> 100644 --- a/py/h2o.py +++ b/py/h2o.py @@ -1075,13 +1075,16 @@ class H2O(object): # kwargs used to pass many params def GLM_shared(self, key, timeoutSecs=300, retryDelaySecs=0.5, parentName=None, **kwargs): browseAlso = kwargs.pop('browseAlso',F...
map the old GLM param 'num_cross_validation_folds' to 'n_folds' in h2o.py to match current GLM.
h2oai_h2o-2
train
4af4d0439069449d19e11a41030ef5aa6d905db4
diff --git a/core/Plugin/Manager.php b/core/Plugin/Manager.php index <HASH>..<HASH> 100644 --- a/core/Plugin/Manager.php +++ b/core/Plugin/Manager.php @@ -207,6 +207,7 @@ class Manager extends Singleton $this->removePluginFromPluginsInstalledConfig($pluginName); $this->removePluginFromTrackerConfig($p...
refs #<I> for security remove settings in case a user is deleted or a plugin installed, needs to be tested
matomo-org_matomo
train
cae80307a7b45c1be8b0291877c8dc72a8d65595
diff --git a/Controller/DemoController.php b/Controller/DemoController.php index <HASH>..<HASH> 100644 --- a/Controller/DemoController.php +++ b/Controller/DemoController.php @@ -155,7 +155,7 @@ class DemoController extends Controller $location->id, $viewType, $layout, - ...
Fixed missing params passed to ViewController in custom controllers This ensures preview is working correctly.
ezsystems_DemoBundle
train
0fa8dceb07fa2f333842db6db63e4f4a5ab8052d
diff --git a/source/org/jasig/portal/lang/Resources.java b/source/org/jasig/portal/lang/Resources.java index <HASH>..<HASH> 100644 --- a/source/org/jasig/portal/lang/Resources.java +++ b/source/org/jasig/portal/lang/Resources.java @@ -1,44 +1,10 @@ -/** - * Copyright � 2004 The JA-SIG Collaborative. All rights reserve...
changed to short copyright header, retaining existing copyright year where present. removed extra whitespace from javadoc comments. git-svn-id: <URL>
Jasig_uPortal
train
ae318d978d0da0ac4de4bc5527fdca9efbc0fde1
diff --git a/src/java/com/digitalpebble/classification/SimpleDocument.java b/src/java/com/digitalpebble/classification/SimpleDocument.java index <HASH>..<HASH> 100755 --- a/src/java/com/digitalpebble/classification/SimpleDocument.java +++ b/src/java/com/digitalpebble/classification/SimpleDocument.java @@ -273,7 +273,7 ...
Fixed issue with deserialisation of SimpleDocument from file based corpus
DigitalPebble_TextClassification
train
9bbd4939e52b50d4f56019e7bc391499bbc0e495
diff --git a/resource_aws_s3_bucket.go b/resource_aws_s3_bucket.go index <HASH>..<HASH> 100644 --- a/resource_aws_s3_bucket.go +++ b/resource_aws_s3_bucket.go @@ -55,6 +55,12 @@ func resourceAwsS3Bucket() *schema.Resource { Computed: true, }, + "region": &schema.Schema{ + Type: schema.TypeString, + ...
providers/aws: Add region to S3 attrs
terraform-providers_terraform-provider-aws
train
5a52ef26a919e3eedc821edbe5984b6f373d95bf
diff --git a/src/model.js b/src/model.js index <HASH>..<HASH> 100644 --- a/src/model.js +++ b/src/model.js @@ -24,7 +24,7 @@ export function getModel (mongooseModel) { instance: schemaPath.caster.instance }; - if (schemaPath.caster.options.ref) { + if (schemaPath.caster.options && schemaPath...
fix(model): handle mongoose models without caster option
RisingStack_graffiti-mongoose
train
aa7db2e7e89202d77222e8f449fa0e243d6cac82
diff --git a/retrofit/src/main/java/retrofit2/Utils.java b/retrofit/src/main/java/retrofit2/Utils.java index <HASH>..<HASH> 100644 --- a/retrofit/src/main/java/retrofit2/Utils.java +++ b/retrofit/src/main/java/retrofit2/Utils.java @@ -407,9 +407,9 @@ final class Utils { } @Override public String toString() ...
Removal of Unnecessary Creation of String Builder if typeArguments has length 0 there is no point to create stringBuilder for that. that condition check needs to happen before stringBuilder creation.
square_retrofit
train
85d71accbd5965bc54445d84ac5ede4fa5e00a85
diff --git a/pytestsalt/engines/pytest_engine.py b/pytestsalt/engines/pytest_engine.py index <HASH>..<HASH> 100644 --- a/pytestsalt/engines/pytest_engine.py +++ b/pytestsalt/engines/pytest_engine.py @@ -35,7 +35,9 @@ def __virtual__(): def start(): - io_loop = ioloop.IOLoop.instance() + # Create our own IOLo...
Instantiate and use our own IOLoop, we're running on a different process
saltstack_pytest-salt
train
c26e86ec2c390ff1cdd7cc4d31a7b2912ae6e0ae
diff --git a/src/Console/Commands/StartServer.php b/src/Console/Commands/StartServer.php index <HASH>..<HASH> 100644 --- a/src/Console/Commands/StartServer.php +++ b/src/Console/Commands/StartServer.php @@ -143,7 +143,7 @@ class StartServer extends Command $this->loop->addPeriodicTimer(10, function () { ...
Trigger soft-shutdown on timer restart
beyondcode_laravel-websockets
train
53ad68932f2a71bf8f4eec23255e7e112222a645
diff --git a/pymc/distributions/continuous.py b/pymc/distributions/continuous.py index <HASH>..<HASH> 100644 --- a/pymc/distributions/continuous.py +++ b/pymc/distributions/continuous.py @@ -226,8 +226,9 @@ def get_tau_sigma(tau=None, sigma=None): if isinstance(sigma, Variable): sigma_ = c...
Refactor get_tau_sigma to handle lists (#<I>) * Refactor get_tau_sigma to handle lists * Fixed syntax error * Black formatted * Change assertions to ValueError raises * Prior predictions constant data (#<I>) * support return constant_data with prior pred * pre-commit format * added test * code ...
pymc-devs_pymc
train
ecd47a47e5279fd7ea76b60e609ef3ad95260fe0
diff --git a/src/mysql.php b/src/mysql.php index <HASH>..<HASH> 100644 --- a/src/mysql.php +++ b/src/mysql.php @@ -31,17 +31,39 @@ private static $connection = null; * connects to the database, defined by ::get_config() * makes sure we have a strict and unicode aware connection * + * @param array $config optio...
allows to cache the current mysql handler to support multiple dbs
lode_fem
train
5e0d331f50ebccc7eddaded4768aefd8309dfac6
diff --git a/plugins/greylist.js b/plugins/greylist.js index <HASH>..<HASH> 100644 --- a/plugins/greylist.js +++ b/plugins/greylist.js @@ -1,6 +1,6 @@ // Greylisting Haraka plugin -var version = '0.1.3'; +// version 0.1.3 var util = require('util'); var redis = require('redis'); @@ -302,7 +302,6 @@ exports.proce...
ignore SPF permerror when aexp.com fsck their SPF record
haraka_Haraka
train
cbba534d3899683849fc63acac07e112b5bbdcb8
diff --git a/test/unit/search_test.rb b/test/unit/search_test.rb index <HASH>..<HASH> 100644 --- a/test/unit/search_test.rb +++ b/test/unit/search_test.rb @@ -15,6 +15,7 @@ class SearchTest < Test::Unit::TestCase def test_simple_query Document.solr_index(@document) + sleep 1 q = @document.attributes[:...
added sleep to tests since indexes are using a commitWitin
tc_solrsan
train
e5772f4cfbc38ec569424f5f1220f7f8f24ffb07
diff --git a/packages/neos-ui-editors/src/Library/AssetUpload.js b/packages/neos-ui-editors/src/Library/AssetUpload.js index <HASH>..<HASH> 100644 --- a/packages/neos-ui-editors/src/Library/AssetUpload.js +++ b/packages/neos-ui-editors/src/Library/AssetUpload.js @@ -1,21 +1,23 @@ import React, {PureComponent} from 're...
Fix linting errors in AssetUpload component
neos_neos-ui
train
34c0789b9de1128edfbd225c5c5c1864dd7e4bd6
diff --git a/p2p/net/pnet/protector.go b/p2p/net/pnet/protector.go index <HASH>..<HASH> 100644 --- a/p2p/net/pnet/protector.go +++ b/p2p/net/pnet/protector.go @@ -3,9 +3,9 @@ package pnet import ( "fmt" "io" + "net" ipnet "github.com/libp2p/go-libp2p-interface-pnet" - tconn "github.com/libp2p/go-libp2p-transpo...
wrap net conns, not transport conns We now "protect" below the transport layer. Also, make the tests work without the dummy conn package (one fewer deps).
libp2p_go-libp2p
train
e6cf0933b55eaa16c0f964b26a859ec271430d3f
diff --git a/client/line.go b/client/line.go index <HASH>..<HASH> 100644 --- a/client/line.go +++ b/client/line.go @@ -25,6 +25,44 @@ func (l *Line) Copy() *Line { return &nl } +// Return the contents of the text portion of a line. This only really +// makes sense for lines with a :text part, but there are a lot ...
Add a version of iopred's Message() and Target() Line methods, and tests.
fluffle_goirc
train
3b536db320207923889e5333fa8c1da5a5b8c15d
diff --git a/Test/Case/Console/Command/CakeInstallerShellTest.php b/Test/Case/Console/Command/CakeInstallerShellTest.php index <HASH>..<HASH> 100644 --- a/Test/Case/Console/Command/CakeInstallerShellTest.php +++ b/Test/Case/Console/Command/CakeInstallerShellTest.php @@ -29,6 +29,13 @@ class CakeInstallerShellTest exten...
Added test method `CakeInstallerShellTest::testInstall()`
anklimsk_cakephp-console-installer
train
3997571addb59573de1b0dc5c6ba48c2478254a7
diff --git a/lib/sup/modes/thread-index-mode.rb b/lib/sup/modes/thread-index-mode.rb index <HASH>..<HASH> 100644 --- a/lib/sup/modes/thread-index-mode.rb +++ b/lib/sup/modes/thread-index-mode.rb @@ -12,7 +12,7 @@ class ThreadIndexMode < LineCursorMode k.add :edit_labels, "Edit or add labels for a thread", 'l' ...
changed 'K' for kill to '&', because it was overriding K of J and K for scrolling git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@<I> 5c8cc<I>c-5e<I>-4d<I>-b<I>a-d8db<I>a<I>
sup-heliotrope_sup
train
34dcbfb10a6787927b6a2e8b04241b16cb45bb47
diff --git a/lib/generators/serviceworker/install_generator.rb b/lib/generators/serviceworker/install_generator.rb index <HASH>..<HASH> 100644 --- a/lib/generators/serviceworker/install_generator.rb +++ b/lib/generators/serviceworker/install_generator.rb @@ -23,7 +23,7 @@ module Serviceworker end def up...
Add manifest.json to precompiled asset on install generator
rossta_serviceworker-rails
train
22fcd518aa952d6db52af74a9db86c2cba3ec972
diff --git a/app/deploy.go b/app/deploy.go index <HASH>..<HASH> 100644 --- a/app/deploy.go +++ b/app/deploy.go @@ -106,6 +106,7 @@ type DeployOptions struct { Version string Commit string ArchiveURL string + File io.ReadCloser OutputStream io.Writer }
app: add "File" to DeployOptions Related to #<I>.
tsuru_tsuru
train
256793255ddf21e5b18ace81645c9a46c028b8f7
diff --git a/src/themes/irisTheme.js b/src/themes/irisTheme.js index <HASH>..<HASH> 100644 --- a/src/themes/irisTheme.js +++ b/src/themes/irisTheme.js @@ -5,7 +5,7 @@ export const colors = { primary: { default: '#00bef0', - alternate: '#008db1', + alternate: '#0099e5', light: '#e0f7fd', border:...
Updated colors to match UX and added hex values to color md. (#<I>)
Bandwidth_shared-components
train
92ea3c1caee0dac537e5f78ecf60c78bfb50228f
diff --git a/controller/internal/enforcer/applicationproxy/markedconn/markedconn.go b/controller/internal/enforcer/applicationproxy/markedconn/markedconn.go index <HASH>..<HASH> 100644 --- a/controller/internal/enforcer/applicationproxy/markedconn/markedconn.go +++ b/controller/internal/enforcer/applicationproxy/marked...
Remove commented code (#<I>)
aporeto-inc_trireme-lib
train
f6acb535201c68827f69fe018ef2bf533bd9f96b
diff --git a/NavigationReactNative/src/android/app/src/main/java/com/navigation/reactnative/SharedElementManager.java b/NavigationReactNative/src/android/app/src/main/java/com/navigation/reactnative/SharedElementManager.java index <HASH>..<HASH> 100644 --- a/NavigationReactNative/src/android/app/src/main/java/com/navig...
Removed dropped shared element earlier The view's already detached in onDropViewInstance so can't get the rootView (and shared element cache). Attached a state listener so notified before the view's detached so can remove it from the shared element cache in the root view
grahammendick_navigation
train
1d4a12786515c9f146dbbc8aa2b181f3d8262153
diff --git a/src/Command/MigrateLoadCommand.php b/src/Command/MigrateLoadCommand.php index <HASH>..<HASH> 100644 --- a/src/Command/MigrateLoadCommand.php +++ b/src/Command/MigrateLoadCommand.php @@ -104,31 +104,23 @@ class MigrateLoadCommand extends ContainerAwareCommand ); return 1; ...
#<I> Remove unneeded lines
hechoendrupal_drupal-console
train
4545f529106f345e9a8a9889ea621060b8827166
diff --git a/lib/utilities/call-constructor-with-arguments.js b/lib/utilities/call-constructor-with-arguments.js index <HASH>..<HASH> 100644 --- a/lib/utilities/call-constructor-with-arguments.js +++ b/lib/utilities/call-constructor-with-arguments.js @@ -1,9 +1,15 @@ 'use strict'; +let proto = require('../utilities/pr...
trying to get the code to call abort.
eXigentCoder_krpc-node
train
87c6893c955d143e808d3f6aeedf2cacf9218098
diff --git a/TODO.yml b/TODO.yml index <HASH>..<HASH> 100644 --- a/TODO.yml +++ b/TODO.yml @@ -3,8 +3,7 @@ features: - asynchronous (index page loads too slowly) - Git repo forge: - make it more flexible: - - fail gracefully if there's no Modulefile - - fail gracefully if we...
Ignore Git revisions that don't have a Modulefile
drrb_puppet-library
train
42d93e6637e031ae12c0e25ea2a7158d8f0c2f5f
diff --git a/test/jquery.ajax-retry_test.js b/test/jquery.ajax-retry_test.js index <HASH>..<HASH> 100644 --- a/test/jquery.ajax-retry_test.js +++ b/test/jquery.ajax-retry_test.js @@ -155,6 +155,31 @@ '{ "id": 12, "comment": "Hey there" }'); }); + test('timeout is waited between m...
Add test for respecting timeout when retrying
johnkpaul_jquery-ajax-retry
train
5657a52fc4eae55e196d01b92614f4f91d4a7a8c
diff --git a/packages/ember-routing/lib/system/route.js b/packages/ember-routing/lib/system/route.js index <HASH>..<HASH> 100644 --- a/packages/ember-routing/lib/system/route.js +++ b/packages/ember-routing/lib/system/route.js @@ -1362,7 +1362,7 @@ function normalizeOptions(route, name, template, options) { var co...
throw Ember.Error's
emberjs_ember.js
train
427d7533a2a990845f307ee38e872273ff61ec8d
diff --git a/src/main/java/org/graylog2/database/MongoBridge.java b/src/main/java/org/graylog2/database/MongoBridge.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/graylog2/database/MongoBridge.java +++ b/src/main/java/org/graylog2/database/MongoBridge.java @@ -59,7 +59,7 @@ public class MongoBridge { ...
disabled host upsert for now. re-writing with caching mechanism to not overload mongodb on high message rates. also fixed AMQP receiver bug after merge
Graylog2_graylog2-server
train
5428cc45cc4a240315b0b116ebad039e4bdc0111
diff --git a/client.go b/client.go index <HASH>..<HASH> 100644 --- a/client.go +++ b/client.go @@ -372,11 +372,10 @@ func (c *Client) doRawRequest(req *http.Request, emptyResponse bool) (io.ReadClo func unexpectedHttpStatusCode(statusCode int) bool { switch statusCode { - case http.StatusOK: - return false - case...
fix <I> in http valid response (#<I>)
ktrysmt_go-bitbucket
train
58fb569ca4417425c4ed6a8b21c875871b895d69
diff --git a/scs_osio/csv_reader.py b/scs_osio/csv_reader.py index <HASH>..<HASH> 100755 --- a/scs_osio/csv_reader.py +++ b/scs_osio/csv_reader.py @@ -56,7 +56,7 @@ if __name__ == '__main__': # ---------------------------------------------------------------------------------------------------------------- # e...
Regularised KeyboardInterrupt handling.
south-coast-science_scs_osio
train
2d86d95755adcf46a0da1a5b5de33483245aee85
diff --git a/docs/Querying.rst b/docs/Querying.rst index <HASH>..<HASH> 100644 --- a/docs/Querying.rst +++ b/docs/Querying.rst @@ -226,6 +226,22 @@ Here we can make our own ``MATCH`` clauses unlike in model scoping. We have ``w **TODO Duplicate this page and link to it from here (or just duplicate it here):** https:...
Adding explicit identity method for use in Query strings
neo4jrb_neo4j
train
8a105ce57c1d8efe5ca48138e74c755c5a86e464
diff --git a/core/src/main/java/hudson/FilePath.java b/core/src/main/java/hudson/FilePath.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/hudson/FilePath.java +++ b/core/src/main/java/hudson/FilePath.java @@ -617,7 +617,7 @@ public final class FilePath implements Serializable { act(new SecureFileCall...
Adding separate check for symlink to prevent jailbreak Otherwise a symlink can be created to point to a file outside $JENKINS_HOME and be read
jenkinsci_jenkins
train
c76dec7ac4fb29ad82f1c21d7119283b2927c3a8
diff --git a/modules/admin/src/components/StorageContainer.php b/modules/admin/src/components/StorageContainer.php index <HASH>..<HASH> 100644 --- a/modules/admin/src/components/StorageContainer.php +++ b/modules/admin/src/components/StorageContainer.php @@ -100,6 +100,35 @@ class StorageContainer extends Component ...
add list of dangerous mime types and block them before storing to storage system.
luyadev_luya
train
f22988321e86892cf2d263148ca1067110a1781f
diff --git a/src/Cache/ExtendedCache.php b/src/Cache/ExtendedCache.php index <HASH>..<HASH> 100644 --- a/src/Cache/ExtendedCache.php +++ b/src/Cache/ExtendedCache.php @@ -4,7 +4,7 @@ namespace Reaction\Cache; use Reaction\Base\BaseObject; use Reaction\Helpers\Json; -use Zumba\JsonSerializer\JsonSerializer; +use Rea...
Add use of serializer in some places
digit-soft_re-action
train
b557897234a2b0cdc7942f660eb9e286a4233940
diff --git a/wafer/schedule/tests/test_schedule.py b/wafer/schedule/tests/test_schedule.py index <HASH>..<HASH> 100644 --- a/wafer/schedule/tests/test_schedule.py +++ b/wafer/schedule/tests/test_schedule.py @@ -263,6 +263,105 @@ class ScheduleTests(TestCase): assert day2.rows[0].get_sorted_items()[1]['rowspan'...
Add a test case for the per-day views
CTPUG_wafer
train
161aacaf8d76dbfe1529079b403a7c320b261d3a
diff --git a/lib/agent/helpers.js b/lib/agent/helpers.js index <HASH>..<HASH> 100644 --- a/lib/agent/helpers.js +++ b/lib/agent/helpers.js @@ -19,12 +19,22 @@ exports.random_between = function(from, to){ // when run via cron, env.TERM is 'dumb' or empty exports.run_via_cron = function(){ - return process.platform ...
More understandable run_via_x methods.
prey_prey-node-client
train
899c2f882f812776ada204114864ab3dcff95f5a
diff --git a/runtests.py b/runtests.py index <HASH>..<HASH> 100644 --- a/runtests.py +++ b/runtests.py @@ -32,7 +32,7 @@ if not settings.configured: 'sentry.client.celery', # included plugin tests - 'sentry.plugins.redmine', + # 'sentry.plugins.redmine', ...
Revert redmine include since our buildbot doesnt handle it yet
elastic_apm-agent-python
train
ec783850c7d309013e68c01042afc5a813a9a89e
diff --git a/example.js b/example.js index <HASH>..<HASH> 100644 --- a/example.js +++ b/example.js @@ -1,7 +1,7 @@ require('.')({ greet: function ({name}) { - return new Promise(resolve => resolve(`Hello, ${name || 'anon'}`)) + return new Promise(resolve => resolve(`Hello, ${name || 'anon'} from ${this.remo...
Add remoteIP property to client WebSocket
fictorial_rpc-over-ws
train
82bcbd65ffdf51b185465863f6fa6c1af1f5d87e
diff --git a/inferno/dataset.py b/inferno/dataset.py index <HASH>..<HASH> 100644 --- a/inferno/dataset.py +++ b/inferno/dataset.py @@ -221,6 +221,10 @@ class CVSplit(object): multiclass, sklearn's StratifiedKFold is used. In all other cases, KFold is used. + Yields + ------ + TODO + """ ...
Improve on train-test-split implementation.
skorch-dev_skorch
train
ce256a6275a95496e3b7c1a89f3406668398c8c6
diff --git a/datapackage_pipelines/manager/tasks.py b/datapackage_pipelines/manager/tasks.py index <HASH>..<HASH> 100644 --- a/datapackage_pipelines/manager/tasks.py +++ b/datapackage_pipelines/manager/tasks.py @@ -46,7 +46,7 @@ async def collect_stats(infile): try: line = await reader.readline() ...
improve the logging of exception "Too large stats object!" - to provide some more details
frictionlessdata_datapackage-pipelines
train
f439c4886f9019e18a498bf0afcf001d1f653917
diff --git a/globus_cli/safeio/output_formatter.py b/globus_cli/safeio/output_formatter.py index <HASH>..<HASH> 100644 --- a/globus_cli/safeio/output_formatter.py +++ b/globus_cli/safeio/output_formatter.py @@ -69,10 +69,7 @@ def _jmespath_preprocess(res): def print_json_response(res): res = _jmespath_preproces...
Ensure that JSON string output is a *JSON* string Don't make quoting of string output conditional. This is a behavioral change and therefore wrong.
globus_globus-cli
train
e55d3f9804f9d279eddfde251f737287d38767bc
diff --git a/lib/halite/spec_helper/runner.rb b/lib/halite/spec_helper/runner.rb index <HASH>..<HASH> 100644 --- a/lib/halite/spec_helper/runner.rb +++ b/lib/halite/spec_helper/runner.rb @@ -61,7 +61,12 @@ module Halite super(*recipe_names) do add_halite_cookbooks(node, @halite_gemspec) if @halite_g...
Give a cookbook name to the block-based recipe if possible.
poise_halite
train
8992451e6f3df0d0ee52c27297a128dfc8a9f441
diff --git a/monolithe/specsvalidator/apivalidator.py b/monolithe/specsvalidator/apivalidator.py index <HASH>..<HASH> 100644 --- a/monolithe/specsvalidator/apivalidator.py +++ b/monolithe/specsvalidator/apivalidator.py @@ -82,13 +82,11 @@ class APIValidator: self.attribute_errors.append(APISpecMiss...
Add a human name for validation error and use future processor behavior
nuagenetworks_monolithe
train
5f755d10bad171491d68ac2a973e1e3d09ce0abf
diff --git a/library/src/main/java/com/felipecsl/gifimageview/library/GifHeaderParser.java b/library/src/main/java/com/felipecsl/gifimageview/library/GifHeaderParser.java index <HASH>..<HASH> 100644 --- a/library/src/main/java/com/felipecsl/gifimageview/library/GifHeaderParser.java +++ b/library/src/main/java/com/felip...
#<I> - When skipping it was going over the size of the buffer of rawData, in this situation an IllegalArgumentException was thrown which goes uncaught. Didn't set status to ERROR as the exception occurs when skipping to next block. So it will stop parsing on next block. Fixes #<I>.
felipecsl_GifImageView
train
08f55fd160854c490206c3c28db42812657bb72e
diff --git a/liquibase-core/src/main/java/liquibase/Liquibase.java b/liquibase-core/src/main/java/liquibase/Liquibase.java index <HASH>..<HASH> 100644 --- a/liquibase-core/src/main/java/liquibase/Liquibase.java +++ b/liquibase-core/src/main/java/liquibase/Liquibase.java @@ -556,6 +556,13 @@ public class Liquibase { ...
CORE-<I> Support for changeSet "labels" Added backwards compatibility methods as deprecated
liquibase_liquibase
train
15e44044f10ac48c549874aee3efc8e468aaa895
diff --git a/xchange-huobi/src/main/java/org/knowm/xchange/huobi/HuobiAdapters.java b/xchange-huobi/src/main/java/org/knowm/xchange/huobi/HuobiAdapters.java index <HASH>..<HASH> 100644 --- a/xchange-huobi/src/main/java/org/knowm/xchange/huobi/HuobiAdapters.java +++ b/xchange-huobi/src/main/java/org/knowm/xchange/huobi/...
[Huobi] Fix wrong order adaption, when input price is zero
knowm_XChange
train
54b4a316fe0f08bb887f1e1a84366eecf25aa474
diff --git a/src/formatter.js b/src/formatter.js index <HASH>..<HASH> 100644 --- a/src/formatter.js +++ b/src/formatter.js @@ -191,8 +191,7 @@ _.extend(DatetimeFormatter.prototype, { _convert: function (data, validate) { if (_.isNull(data) || _.isUndefined(data)) return data; - - data = trim(_.isString(dat...
Removed unecessary tests and modified trim() to throw on invalid types
cloudflarearchive_backgrid
train
89509fc58f03f05edd7e0c127a9ac6809e52fbc6
diff --git a/trailblazer/store/cli.py b/trailblazer/store/cli.py index <HASH>..<HASH> 100644 --- a/trailblazer/store/cli.py +++ b/trailblazer/store/cli.py @@ -4,6 +4,7 @@ import logging import click from dateutil.parser import parse as parse_date from path import Path +import yaml from . import api @@ -35,9 +36...
check that analysis record is current analysis on disk
Clinical-Genomics_trailblazer
train
30fdfeaef3e25070a93bcb2de70c3123408886a3
diff --git a/src/main/java/eus/ixa/ixa/pipe/ml/seg/RuleBasedSegmenter.java b/src/main/java/eus/ixa/ixa/pipe/ml/seg/RuleBasedSegmenter.java index <HASH>..<HASH> 100644 --- a/src/main/java/eus/ixa/ixa/pipe/ml/seg/RuleBasedSegmenter.java +++ b/src/main/java/eus/ixa/ixa/pipe/ml/seg/RuleBasedSegmenter.java @@ -219,11 +219,1...
ready for debugging speed in server
ixa-ehu_ixa-pipe-ml
train
b05e705eaf76dbdfb4d04d14d5bb860153cc6bac
diff --git a/treeCl/alignment.py b/treeCl/alignment.py index <HASH>..<HASH> 100644 --- a/treeCl/alignment.py +++ b/treeCl/alignment.py @@ -247,6 +247,10 @@ class BranchLengthOptimiser(object): self.__call__(initial_brlen) def __call__(self, brlen): + if brlen < 0: + self.lnl, self.dlnl...
Pairwise distance calc + removed unneeded dependency from misc
kgori_treeCl
train
257e40aa91ab77ff870318f28fef7b65d933a5d2
diff --git a/hawkular-javaagent/src/main/java/org/hawkular/agent/javaagent/config/ConfigConverter.java b/hawkular-javaagent/src/main/java/org/hawkular/agent/javaagent/config/ConfigConverter.java index <HASH>..<HASH> 100644 --- a/hawkular-javaagent/src/main/java/org/hawkular/agent/javaagent/config/ConfigConverter.java +...
try harder to figure out what the local DMR address/port is (#<I>)
hawkular_hawkular-agent
train
a25ea392bb162400a9d7da56e9cf5d48ebc14dd2
diff --git a/src/DOM.js b/src/DOM.js index <HASH>..<HASH> 100644 --- a/src/DOM.js +++ b/src/DOM.js @@ -1858,24 +1858,6 @@ class HTMLIFrameElement extends HTMLSrcableElement { this.browser.onconsole = (message, source, line) => { this.onconsole && this.onconsole(message, source, l...
moved ready state to before onload event and moved contentWindow setup to before that also
exokitxr_exokit
train
a606133f8590c42b2f22d3374e216a9aec941f7c
diff --git a/thali/install/ios/nativeInstaller.js b/thali/install/ios/nativeInstaller.js index <HASH>..<HASH> 100644 --- a/thali/install/ios/nativeInstaller.js +++ b/thali/install/ios/nativeInstaller.js @@ -149,7 +149,7 @@ function addFramework( console.log('Checkouting done!'); var checkoutDir = path.j...
Update build dir for SwiftXCTest/CocoaAsyncSocket frameworks.
thaliproject_Thali_CordovaPlugin
train
9333d52ff82131afe310ac9291ec82fbddd4916f
diff --git a/directives/map-lazy-load.js b/directives/map-lazy-load.js index <HASH>..<HASH> 100644 --- a/directives/map-lazy-load.js +++ b/directives/map-lazy-load.js @@ -36,20 +36,28 @@ /* global window, document */ (function() { 'use strict'; - var $timeout, $compile, src, savedHtml; + var $timeout, $compile, ...
[map-lazy-load] keep element content for each calls.
allenhwkim_angularjs-google-maps
train
f2ff0925dc212f38a05bcec85e6d73c6172b8d1d
diff --git a/src/api/v4/layer/layer.js b/src/api/v4/layer/layer.js index <HASH>..<HASH> 100644 --- a/src/api/v4/layer/layer.js +++ b/src/api/v4/layer/layer.js @@ -62,6 +62,8 @@ var metadataParser = require('./metadata/parser'); * @api */ function Layer (source, style, options) { + Base.apply(this, arguments); + ...
Allow layers to have a custom id
CartoDB_carto.js
train
dd13df57ad6bb7336394376a9f32b9888ed30229
diff --git a/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicGet.php b/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicGet.php index <HASH>..<HASH> 100644 --- a/src/ProxyManager/ProxyGenerator/LazyLoadingValueHolder/MethodGenerator/MagicGet.php +++ b/src/ProxyMana...
Fixing virtual proxy public properties containing arrays
Ocramius_ProxyManager
train
f5072e2cab769308092212b746ebb056ff88a02f
diff --git a/src/kff.BindingView.js b/src/kff.BindingView.js index <HASH>..<HASH> 100644 --- a/src/kff.BindingView.js +++ b/src/kff.BindingView.js @@ -382,6 +382,8 @@ kff.BindingView = kff.createClass( this.modelBindersMap = null; } this.destroyCollectionCountBindings(); + this.collectionFilter = null; + th...
feat(kff.BindingView): implement live sorting into collection binding Live sorting (sorting of bound collection) is done in similar way as filtering. Sort function is specified in attribut 'data-kff-sort' using 'model.compareFunction' format. It watches any change in collection or in collection item, which can lead to...
karfcz_kff
train
ec6a30be373b368082591939ea7270244c97b5bb
diff --git a/tunnel/tunnel.go b/tunnel/tunnel.go index <HASH>..<HASH> 100644 --- a/tunnel/tunnel.go +++ b/tunnel/tunnel.go @@ -31,12 +31,12 @@ type Tunnel interface { Connect() error // Close closes the tunnel Close() error + // All the links the tunnel is connected to + Links() []Link // Connect to a channel ...
Links above Dial/Listen in interface
micro_go-micro
train
b345e2f2fb4e3183d814eaafc80a947a62fc26f2
diff --git a/modules/directives/jq/jq.js b/modules/directives/jq/jq.js index <HASH>..<HASH> 100644 --- a/modules/directives/jq/jq.js +++ b/modules/directives/jq/jq.js @@ -42,13 +42,9 @@ angular.module('ui.directives').directive('uiJq', ['ui.config', function (uiConf // Call jQuery method and pass relevant op...
fix(jq) Passthrough was never firing asynchronously despite codechange
angular-ui_ui-select2
train
658acae79ec4ef95d1a275b030c2e18133312240
diff --git a/jsonschema/tests/test_validators.py b/jsonschema/tests/test_validators.py index <HASH>..<HASH> 100644 --- a/jsonschema/tests/test_validators.py +++ b/jsonschema/tests/test_validators.py @@ -896,10 +896,30 @@ class TestDraft3Validator(ValidatorTestMixin, TestCase): cls = self.validator_class(schema...
Make sure True and False aren't Draft4 schemas.
Julian_jsonschema
train
43ef0970d2ebdb25a49eb0669950b597f01ce95b
diff --git a/nautilus/services/service.py b/nautilus/services/service.py index <HASH>..<HASH> 100644 --- a/nautilus/services/service.py +++ b/nautilus/services/service.py @@ -115,11 +115,6 @@ class Service: self.app.config['PORT'] = port self.app.config['SECRET_KEY'] = secret_key - # if the s...
fixed bug where child processes would also get registered with consul
AlecAivazis_graphql-over-kafka
train
f55a636a3c9070ec52550bd64c992a3b2f90bced
diff --git a/craftai/pandas/utils.py b/craftai/pandas/utils.py index <HASH>..<HASH> 100644 --- a/craftai/pandas/utils.py +++ b/craftai/pandas/utils.py @@ -39,14 +39,14 @@ def create_timezone_df(df, name): return timezone_df # Return a html version of the given tree -def create_tree_html(tree_object, height=500): ...
improve display tree function with selectedNode and foldedNodes params
craft-ai_craft-ai-client-python
train
1f43dcbb19122021b5c3427a79b6db0bcc3bd9ee
diff --git a/lib/reform/form.rb b/lib/reform/form.rb index <HASH>..<HASH> 100644 --- a/lib/reform/form.rb +++ b/lib/reform/form.rb @@ -23,8 +23,8 @@ module Reform end def collection(name, options={}, &block) - #options[:collection] = true # FIXME: this is internal API! - options[:__collect...
for nested form collections, just use collection:true, parse_strategy: :sync now, we don't need a lonely collection.
trailblazer_reform
train
beec504587328460163a774549b2f819267df0a0
diff --git a/google-cloud-storage/acceptance/storage/file_test.rb b/google-cloud-storage/acceptance/storage/file_test.rb index <HASH>..<HASH> 100644 --- a/google-cloud-storage/acceptance/storage/file_test.rb +++ b/google-cloud-storage/acceptance/storage/file_test.rb @@ -770,6 +770,7 @@ describe Google::Cloud::Storage::...
Update Storage acceptance test Remove File test for private bucket without authentication due to occasional service failures.
googleapis_google-cloud-ruby
train
0fbc6287d3e76ea64c1afdcbcd4a5b696b22c24f
diff --git a/playitagainsam/coordinator.py b/playitagainsam/coordinator.py index <HASH>..<HASH> 100644 --- a/playitagainsam/coordinator.py +++ b/playitagainsam/coordinator.py @@ -102,7 +102,10 @@ def proxy_to_coordinator(socket_path, header=None, stdin=None, stdout=None): if c: ...
fix socket error when overtyping; bug was introduced by --live-replay the guard against sock.recv(<I>) is a bit of a superstitious fix in the sense that I don't understand well what's going on here; the patch just mitigates the symptoms.
rfk_playitagainsam
train
bc75689dd0a616bc3b88dbbfb51472f526fe91b7
diff --git a/src/toil/provisioners/azure/__init__.py b/src/toil/provisioners/azure/__init__.py index <HASH>..<HASH> 100644 --- a/src/toil/provisioners/azure/__init__.py +++ b/src/toil/provisioners/azure/__init__.py @@ -15,13 +15,13 @@ import os def getAzureZone(defaultZone=None): - ''' + """ Find an appr...
Change single to double doc string, replace logging info.
DataBiosphere_toil
train
3f4fa42dc4c5c7db4e64959777abd53dd41b969a
diff --git a/spec/generators/rolify/role/role_generator_spec.rb b/spec/generators/rolify/role/role_generator_spec.rb index <HASH>..<HASH> 100644 --- a/spec/generators/rolify/role/role_generator_spec.rb +++ b/spec/generators/rolify/role/role_generator_spec.rb @@ -52,6 +52,7 @@ describe Rolify::Generators::RoleGenerator ...
added be_a_migration specs after new ammeter release supporting it
RolifyCommunity_rolify
train
55c5d1b38b824acba8bc5438e2a7f30e9319d5c0
diff --git a/src/Flow.php b/src/Flow.php index <HASH>..<HASH> 100644 --- a/src/Flow.php +++ b/src/Flow.php @@ -56,6 +56,23 @@ class Flow } /** + * Pattern to solve: + * Cannot bind an instance to a static closure + * for PHP 5.6, a PHP Quirk :) + */ + public function __construct() + { ...
Cannot bind an instance to a static closure
CradlePHP_framework
train
7e2d1840e059c0f2514c16a8c18385960f5db01a
diff --git a/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/event/RemoteContinuousQueryTest.java b/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/event/RemoteContinuousQueryTest.java index <HASH>..<HASH> 100644 --- a/client/hotrod-client/src/test/java/org/infinispan/client/hotrod/event...
ISPN-<I> ContinuousQuery tests should disable expiration reaper * Disable reaper to prevent spurious failures with more than 1 event
infinispan_infinispan
train
45206e782c8ece1e9839e55441b675b42c7f08d9
diff --git a/Eloquent/Builder.php b/Eloquent/Builder.php index <HASH>..<HASH> 100755 --- a/Eloquent/Builder.php +++ b/Eloquent/Builder.php @@ -54,7 +54,7 @@ class Builder { * * @param mixed $id * @param array $columns - * @return \Illuminate\Database\Eloquent\Model + * @return \Illuminate\Database\Eloque...
Various fixes Fixed typos, incorrect property and incorrect return types.
illuminate_database
train
c735682ac6814a5c6d69e681c8c3d47c7d9e26f2
diff --git a/discord/app_commands/commands.py b/discord/app_commands/commands.py index <HASH>..<HASH> 100644 --- a/discord/app_commands/commands.py +++ b/discord/app_commands/commands.py @@ -226,21 +226,22 @@ def validate_context_menu_name(name: str) -> str: def _validate_auto_complete_callback( - callback: Aut...
Fix autocomplete bindings not working for transformer instances
Rapptz_discord.py
train
0f626f461bab9f08612ee0525f0c5b2d46e6c8ec
diff --git a/lib/salt/publishable.rb b/lib/salt/publishable.rb index <HASH>..<HASH> 100644 --- a/lib/salt/publishable.rb +++ b/lib/salt/publishable.rb @@ -11,11 +11,11 @@ module Salt end end - def render(contents, context = {}, use_layout = true) + def render(body, context = {}, use_layout = true) ...
Changed the contents param to body, and make the @contents variable explicit.
waferbaby_dimples
train
85ccae0892277a26aa403c9cc7cf0aa7df5f8416
diff --git a/testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/naming/connector/JMXConnectorTestCase.java b/testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/naming/connector/JMXConnectorTestCase.java index <HASH>..<HASH> 100644 --- a/testsuite/integration/basic/src/test/java...
[WFLY-<I>][JDK<I>+] Fixing JMXConnectorTestCase when security manager is enabled.
wildfly_wildfly
train
d2ad07618d09703e0839f308256cf83cdde9cfb0
diff --git a/spyder/plugins/tests/test_ipythonconsole.py b/spyder/plugins/tests/test_ipythonconsole.py index <HASH>..<HASH> 100644 --- a/spyder/plugins/tests/test_ipythonconsole.py +++ b/spyder/plugins/tests/test_ipythonconsole.py @@ -60,6 +60,32 @@ def ipyconsole(request): # Tests #==================================...
Testing: Add a test that verifies that Ctrl+C only prints a message while debugging
spyder-ide_spyder
train
28c50bf812a8a99361b8f1702c96f43d225006a4
diff --git a/limix/core/fastany/fast_any.py b/limix/core/fastany/fast_any.py index <HASH>..<HASH> 100644 --- a/limix/core/fastany/fast_any.py +++ b/limix/core/fastany/fast_any.py @@ -3,10 +3,11 @@ import ipdb import numpy.linalg as la import numpy as np import scipy as sp +import limix.core.mean.mean as mean c...
commit before merging limix-dev
PMBio_limix-backup
train
df21393abf9193ccd4ea4bd2efde9e150b2d6332
diff --git a/transitfeed/__init__.py b/transitfeed/__init__.py index <HASH>..<HASH> 100644 --- a/transitfeed/__init__.py +++ b/transitfeed/__init__.py @@ -85,4 +85,4 @@ from stoptime import * from transfer import * from trip import * -__version__ = '1.2.11' +__version__ = '1.2.12'
Issue <I>: TransitFeed <I> Release Bump transitfeed version number in preparation for release.
google_transitfeed
train
6c8cebfc68b9d398486980e53b754415f64a684b
diff --git a/js/analyzer.js b/js/analyzer.js index <HASH>..<HASH> 100644 --- a/js/analyzer.js +++ b/js/analyzer.js @@ -12,23 +12,22 @@ Analyzer = function (args){ * Analyzer initialisation. Loads defaults and overloads custom settings. */ Analyzer.prototype.init = function() { - //init preprocessor if not exi...
changed to strict comparisons. changed rating for keyword density changed naming for preprocessor and originalText changed check for keyword length (>= to >)
Yoast_YoastSEO.js
train
b5e0d2069ce8a3df86e74657e51cc614203d35c8
diff --git a/libpagure/libpagure.py b/libpagure/libpagure.py index <HASH>..<HASH> 100644 --- a/libpagure/libpagure.py +++ b/libpagure/libpagure.py @@ -439,6 +439,29 @@ class Pagure(object): if not return_value['message'].startswith("Successfully"): raise Exception(return_value['message']) + d...
Add support for changing milestones Adds method 'change_issue_milestone' that allows to update or remove milestone of an issue Counterpart of <URL>
yangl1996_libpagure
train
8d47bde636f2475c4ba16760c9a2338006fcb973
diff --git a/tests/job/validation_test.py b/tests/job/validation_test.py index <HASH>..<HASH> 100644 --- a/tests/job/validation_test.py +++ b/tests/job/validation_test.py @@ -893,14 +893,14 @@ class EventBasedRiskValidationTestCase(unittest.TestCase): hazard_output=self.job.risk_calculation.hazard_output, ...
tests/job/validation_test: Updated `loss_curve_resolution` test value and expected error message. Former-commit-id: 3dce<I>b<I>cc<I>a1c<I>e4ee4f<I>a<I>e<I>b<I>f0f
gem_oq-engine
train
2ac8fbb6fe064bb022fa03d3bcecb76fc6b8a7de
diff --git a/src/Illuminate/Console/Application.php b/src/Illuminate/Console/Application.php index <HASH>..<HASH> 100755 --- a/src/Illuminate/Console/Application.php +++ b/src/Illuminate/Console/Application.php @@ -267,7 +267,7 @@ class Application extends SymfonyApplication implements ApplicationContract */ ...
Make stronger assertion before caching commands (#<I>)
laravel_framework
train
6ea2597eeafda89b9bbdf1ab45eabccbc3ce81a7
diff --git a/restcomm/restcomm.telephony/src/main/java/org/restcomm/connect/telephony/ConferenceCenter.java b/restcomm/restcomm.telephony/src/main/java/org/restcomm/connect/telephony/ConferenceCenter.java index <HASH>..<HASH> 100644 --- a/restcomm/restcomm.telephony/src/main/java/org/restcomm/connect/telephony/Conferen...
added necceesary logs
RestComm_Restcomm-Connect
train
32db2585116254c1c4ca5364be38caceb9aca738
diff --git a/src/showdown.js b/src/showdown.js index <HASH>..<HASH> 100644 --- a/src/showdown.js +++ b/src/showdown.js @@ -1442,3 +1442,12 @@ var escapeCharacters_callback = function(wholeMatch,m1) { // export if (typeof module !== 'undefined') module.exports = Showdown; + +// stolen from AMD branch of underscore +...
Added AMD friendly piece of code.
showdownjs_showdown
train
fc87ebf43b458e5566a8e1cee3d9cec3d913c5f8
diff --git a/tests/Doctrine/DBAL/Migrations/Tests/Tools/Console/Command/AbstractCommandTest.php b/tests/Doctrine/DBAL/Migrations/Tests/Tools/Console/Command/AbstractCommandTest.php index <HASH>..<HASH> 100644 --- a/tests/Doctrine/DBAL/Migrations/Tests/Tools/Console/Command/AbstractCommandTest.php +++ b/tests/Doctrine/D...
Added a test if the migration configuration can be set via ConfigurationHelper in HelperSet
doctrine_migrations
train
d8a58beec2aa45f2ba7cba2b43a6a0fc3f2677fc
diff --git a/src/PdfSafeExtension.php b/src/PdfSafeExtension.php index <HASH>..<HASH> 100644 --- a/src/PdfSafeExtension.php +++ b/src/PdfSafeExtension.php @@ -49,7 +49,7 @@ class PdfSafeExtension extends \Twig_Extension */ public function pdfsafe($string) { - $safeTags = strip_tags($string, '<div...
Added HR as a safe html tag.
rezozero_pdfsafe
train
2510df35f8383dc2ce0dab853760aaa8b381ff31
diff --git a/xml2json.js b/xml2json.js index <HASH>..<HASH> 100644 --- a/xml2json.js +++ b/xml2json.js @@ -100,20 +100,25 @@ function parseString(xml,options) { if (currentContent != '') { // arrayise currentContent var a = []; - a.push(currentContent); - currentContent = a; + a.push(clone(curren...
Fix for adding atttributes when coerceTypes is true
Mermade_jgeXml
train
67db35ccef3128c261db0373a4803d3d1ba47a57
diff --git a/src/js/aos.js b/src/js/aos.js index <HASH>..<HASH> 100644 --- a/src/js/aos.js +++ b/src/js/aos.js @@ -130,6 +130,11 @@ const init = function init(settings) { ['complete', 'interactive'].indexOf(document.readyState) > -1) { // Initialize AOS if default startEvent was already fired refresh(tru...
#<I> - attach event lister to window for event
michalsnik_aos
train
deb0c62f1a7f1683f4c5373bd3e416300aedaa21
diff --git a/src/main/java/org/jboss/pressgang/ccms/rest/v1/jaxrsinterfaces/RESTBaseInterfaceV1.java b/src/main/java/org/jboss/pressgang/ccms/rest/v1/jaxrsinterfaces/RESTBaseInterfaceV1.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/jboss/pressgang/ccms/rest/v1/jaxrsinterfaces/RESTBaseInterfaceV1.java +++ b/s...
Fix for the RAW Images endpoint with regards to SVG images.
pressgang-ccms_PressGangCCMSRESTv1Common
train
c9377d7795075b8e4b762bf52d0eab7f71ebe79f
diff --git a/src/Contributors/Model/Contributor.php b/src/Contributors/Model/Contributor.php index <HASH>..<HASH> 100644 --- a/src/Contributors/Model/Contributor.php +++ b/src/Contributors/Model/Contributor.php @@ -7,15 +7,19 @@ namespace App\Contributors\Model; */ class Contributor { + private const DEFAULT_IMG...
make images of contributors smaller and lazy-loaded
PUGX_badge-poser
train
b0eba525a2962f304aca2e8d625d49982513747b
diff --git a/eventhubs/data-plane/azure-eventhubs/src/main/java/com/microsoft/azure/eventhubs/impl/RequestResponseOpener.java b/eventhubs/data-plane/azure-eventhubs/src/main/java/com/microsoft/azure/eventhubs/impl/RequestResponseOpener.java index <HASH>..<HASH> 100644 --- a/eventhubs/data-plane/azure-eventhubs/src/main...
Fix an issue of failing to recreate a request-response opener object in case of connection failures (#<I>)
Azure_azure-sdk-for-java
train
45045e66bfa2e9079ba4f59602623b6003bfc84b
diff --git a/src/FileServiceProvider.php b/src/FileServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/FileServiceProvider.php +++ b/src/FileServiceProvider.php @@ -3,7 +3,6 @@ namespace LaravelEnso\Files; use Illuminate\Support\ServiceProvider; -use LaravelEnso\Files\app\Models\Upload; use LaravelEnso\Files...
fixes folder method on FileBrowser
laravel-enso_FileManager
train
54e46b62dade037b2f428084f1d6ab03b0d01b9e
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ - Fixed `IGMarkets::AccountMethods#activities` and `IGMarkets::AccountMethods#transactions` never returning if there were more than 500 activities or transactions in a single day during the spe...
Support the ‘chart’ transaction type
richard-viney_ig_markets
train
eaf40f528b6e3ed6892bf882bdb42937018e358f
diff --git a/pattern/default/src/main/java/org/openbase/jul/pattern/provider/DataProvider.java b/pattern/default/src/main/java/org/openbase/jul/pattern/provider/DataProvider.java index <HASH>..<HASH> 100644 --- a/pattern/default/src/main/java/org/openbase/jul/pattern/provider/DataProvider.java +++ b/pattern/default/src...
fix behavior on update of entries in EnableableEntryRegistrySynchronizer, remove public modifier in DataProvider interface
openbase_jul
train
ca094038e134b595774aabe2d877cb52ce2bd8fb
diff --git a/tests/Integration/Suites/ImageImportTest.php b/tests/Integration/Suites/ImageImportTest.php index <HASH>..<HASH> 100644 --- a/tests/Integration/Suites/ImageImportTest.php +++ b/tests/Integration/Suites/ImageImportTest.php @@ -7,6 +7,14 @@ use Brera\Utils\LocalFilesystem; class ImageImportTest extends \P...
Issue #<I>: Add check for php extension to integration tests also
lizards-and-pumpkins_catalog
train
c8628c9c086fffdb2de27834505e1f7f250933d3
diff --git a/tests/models.py b/tests/models.py index <HASH>..<HASH> 100644 --- a/tests/models.py +++ b/tests/models.py @@ -369,12 +369,17 @@ class TestModelAPIs(ModelTestCase): @requires_models(User, Tweet) def test_populate_unsaved_relations(self): - u = User(username='huey') - t = Tweet(user...
Slightly better assertions in test for populate unsaved fks.
coleifer_peewee
train
80e309ce78d25a515c057519bf7486acf78d28f9
diff --git a/cherrypy/config.py b/cherrypy/config.py index <HASH>..<HASH> 100644 --- a/cherrypy/config.py +++ b/cherrypy/config.py @@ -63,7 +63,7 @@ defaultGlobal = { 'sessionFilter.default.cleanUpDelay': 60, 'sessionFilter.default.storageType' : 'ram', 'sessionFilter.default.cookiePrefix': 'CherryPySess...
session fixes to file and anydb adaptors
cherrypy_cheroot
train
61e127270aefea8b3b201d50c93b8486318016bb
diff --git a/dev/com.ibm.ws.request.timing_fat/fat/src/com/ibm/ws/request/timing/fat/SlowRequestTiming.java b/dev/com.ibm.ws.request.timing_fat/fat/src/com/ibm/ws/request/timing/fat/SlowRequestTiming.java index <HASH>..<HASH> 100644 --- a/dev/com.ibm.ws.request.timing_fat/fat/src/com/ibm/ws/request/timing/fat/SlowReque...
Add expected warning messageID to RequestTiming FAT
OpenLiberty_open-liberty
train