hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
6dda1926f7d3abd833a86856654996ee133ddbda
diff --git a/app/actors/curation_concerns/actors/actor_stack.rb b/app/actors/curation_concerns/actors/actor_stack.rb index <HASH>..<HASH> 100644 --- a/app/actors/curation_concerns/actors/actor_stack.rb +++ b/app/actors/curation_concerns/actors/actor_stack.rb @@ -24,6 +24,15 @@ module CurationConcerns def update(...
Add DestroyActor to remove work from collection and destroy the work Add tests
samvera_hyrax
train
b725623f4ea7e93e37de54afaa252730387686eb
diff --git a/src/toil/job.py b/src/toil/job.py index <HASH>..<HASH> 100644 --- a/src/toil/job.py +++ b/src/toil/job.py @@ -168,8 +168,8 @@ class Job(object): if parentService is not None: # Do check to ensure that parentService is a service of this job def check(services): - ...
Fix service promise serialization (resolves #<I>) Adds a test in toil.test.jobServiceTest.testServiceSerialization which now passes illustrating the issues.
DataBiosphere_toil
train
9e55150afa7cdbe1b6323230e11af153175fefc6
diff --git a/test/test_qimageview.py b/test/test_qimageview.py index <HASH>..<HASH> 100644 --- a/test/test_qimageview.py +++ b/test/test_qimageview.py @@ -1,34 +1,35 @@ -from qimage2ndarray import qimageview +from qimage2ndarray import _qimageview from PyQt4 import QtGui from nose.tools import raises, assert_equal ...
test_qimageview: don’t import qimageview directly instead, use function imported as _qimageview, which may come from different sources (e.g. different DLLs or pure python implementation)
hmeine_qimage2ndarray
train
42afb6c2ac7b70cc8c9a4e1ab5001f2ff64549d7
diff --git a/version.php b/version.php index <HASH>..<HASH> 100644 --- a/version.php +++ b/version.php @@ -29,7 +29,7 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2018020600.00; // YYYYMMDD = weekly release date of this DEV branch. +$version = 2018020600.01; // YYYYMMDD ...
MDL-<I> version: Bump to update system capabilities and lang str
moodle_moodle
train
14239b50b4ad0d90df051aa2ab468fe09b3cdde3
diff --git a/src/main/java/water/api/SummaryPage.java b/src/main/java/water/api/SummaryPage.java index <HASH>..<HASH> 100644 --- a/src/main/java/water/api/SummaryPage.java +++ b/src/main/java/water/api/SummaryPage.java @@ -45,7 +45,7 @@ public class SummaryPage extends Request { String cname = o.get("name")....
just added some colors to summary page...
h2oai_h2o-2
train
ff28668dd8ef0986dd2da329f313d5411de14106
diff --git a/h2o-docs/src/booklets/v2_2015/source/python/ipython_machinelearning_input.py b/h2o-docs/src/booklets/v2_2015/source/python/ipython_machinelearning_input.py index <HASH>..<HASH> 100644 --- a/h2o-docs/src/booklets/v2_2015/source/python/ipython_machinelearning_input.py +++ b/h2o-docs/src/booklets/v2_2015/sour...
script that will be used in the python booklet for ML section
h2oai_h2o-3
train
4372ca7997f07dd5c3bb8ebb47c302314705ac30
diff --git a/wizard/src/main/java/me/panavtec/wizard/Wizard.java b/wizard/src/main/java/me/panavtec/wizard/Wizard.java index <HASH>..<HASH> 100644 --- a/wizard/src/main/java/me/panavtec/wizard/Wizard.java +++ b/wizard/src/main/java/me/panavtec/wizard/Wizard.java @@ -116,7 +116,7 @@ public class Wizard implements Fragme...
Update missing dot notation builder constructor
PaNaVTEC_Wizard
train
35409367f7f1be2f7468ac61da00e60b5d281016
diff --git a/indra/sources/indra_db_rest/query.py b/indra/sources/indra_db_rest/query.py index <HASH>..<HASH> 100644 --- a/indra/sources/indra_db_rest/query.py +++ b/indra/sources/indra_db_rest/query.py @@ -7,7 +7,8 @@ into sophisticated and optimized SQL. Different classes represent different types of constraint and ...
Remove code blocks from doctests.
sorgerlab_indra
train
914d32c930a4909e040d4b1693934edeb3dd56bc
diff --git a/doxypypy/doxypypy.py b/doxypypy/doxypypy.py index <HASH>..<HASH> 100755 --- a/doxypypy/doxypypy.py +++ b/doxypypy/doxypypy.py @@ -71,7 +71,9 @@ class AstWalker(NodeVisitor): ' @copyright ': regexpCompile(r"^(\s*Copyright:\s*)(.*)$", IGNORECASE), ' @date ': regexpCompile(r"^(\s*Date:\s*)(....
Added a couple additional single line REs that people had requested, and removed a little bit of extra code that accidentally stowed away in with the last check-in.
Feneric_doxypypy
train
6ee802e3afec1ed72976d2867fac01820d0f3775
diff --git a/compliance_checker/cf/cf_1_6.py b/compliance_checker/cf/cf_1_6.py index <HASH>..<HASH> 100644 --- a/compliance_checker/cf/cf_1_6.py +++ b/compliance_checker/cf/cf_1_6.py @@ -1091,25 +1091,21 @@ class CF1_6Check(CFNCCheck): flag_meanings = getattr(variable, "flag_meanings", None) valid_val...
Fix handling of flag attributes when a single value/scalar is passed
ioos_compliance-checker
train
2bc3ff9fefcba362a45eb51ea74bbd4dad9c004b
diff --git a/jssearch.js b/jssearch.js index <HASH>..<HASH> 100644 --- a/jssearch.js +++ b/jssearch.js @@ -47,21 +47,21 @@ var jssearch = { queryWords: [], search: function(query) { - var words = $.jssearch.tokenizeString(query); + var words = jssearch.tokenizeString(query); var result = {}; - $.jssearch....
rename of jssearch
cebe_js-search
train
6e2e5447303592fd3141e21c4409beadb5432421
diff --git a/src/Model/Product/HeurekaProductDomainFacade.php b/src/Model/Product/HeurekaProductDomainFacade.php index <HASH>..<HASH> 100644 --- a/src/Model/Product/HeurekaProductDomainFacade.php +++ b/src/Model/Product/HeurekaProductDomainFacade.php @@ -74,8 +74,8 @@ class HeurekaProductDomainFacade foreach...
flushes executed in loops are now executed outside of loop (#<I>) - execution of flush inside loop is bad practice - execution of flush outside of loop will increase performance - fixes issue (#<I>)
shopsys_product-feed-heureka
train
170a90685edf966d064537e97a2218a634d990a8
diff --git a/lib/jitsu/package.js b/lib/jitsu/package.js index <HASH>..<HASH> 100644 --- a/lib/jitsu/package.js +++ b/lib/jitsu/package.js @@ -452,13 +452,13 @@ package.properties = function (dir) { }, { name: 'version', - validator: /[\w|\-|\.]+/, + validator: semver.valid, default: '...
[api] Use semver.valid to test versions
nodejitsu_jitsu
train
4edf7205239fae1f5d1579131548f35f3cab9ad2
diff --git a/pynlpl/tests/folia.py b/pynlpl/tests/folia.py index <HASH>..<HASH> 100755 --- a/pynlpl/tests/folia.py +++ b/pynlpl/tests/folia.py @@ -2595,11 +2595,61 @@ class Test8Validation(unittest.TestCase): class Test9Validation(unittest.TestCase): def test001_deepvalidation(self): """Validation - Deep...
Added two invalid text tests (proycon/folia#<I>)
proycon_pynlpl
train
9cbae1e5b22e714740e1c858140ebec2a133d37d
diff --git a/app/models/ems/article.rb b/app/models/ems/article.rb index <HASH>..<HASH> 100644 --- a/app/models/ems/article.rb +++ b/app/models/ems/article.rb @@ -6,9 +6,11 @@ module Ems friendly_id :title, use: :slugged searchable do - text :title + text :title, :stored => true text :s...
updating search to make sure none of the html is indexed
thebeansgroup_ems
train
4d313447b8b6517184a02b7ac41d1ac7d3f5a501
diff --git a/h2o-admissibleml/src/main/java/hex/Infogram/InfogramUtils.java b/h2o-admissibleml/src/main/java/hex/Infogram/InfogramUtils.java index <HASH>..<HASH> 100644 --- a/h2o-admissibleml/src/main/java/hex/Infogram/InfogramUtils.java +++ b/h2o-admissibleml/src/main/java/hex/Infogram/InfogramUtils.java @@ -206,8 +20...
Admissible score frame: Rename both raw CMI columns to simply cmi_raw
h2oai_h2o-3
train
60a94df6869f18f75e9e694751f7436c914a4fd4
diff --git a/ngTagsInput.js b/ngTagsInput.js index <HASH>..<HASH> 100644 --- a/ngTagsInput.js +++ b/ngTagsInput.js @@ -13,10 +13,9 @@ angular.module('tags-input', []).directive('tagsInput', function() { ' <div class="tag" ng-repeat="tag in tags">' + ' <span>{{ tag }}</span><but...
Changed the code a little bit to make unit tests easier to write
mbenford_ngTagsInput
train
1083ed9c112e039dbf5f4a1d9b14bbb571019c16
diff --git a/client/src/main/java/com/metamx/druid/client/cache/MemcachedCacheBroker.java b/client/src/main/java/com/metamx/druid/client/cache/MemcachedCacheBroker.java index <HASH>..<HASH> 100644 --- a/client/src/main/java/com/metamx/druid/client/cache/MemcachedCacheBroker.java +++ b/client/src/main/java/com/metamx/dr...
make max cache object size configurable and disable client-side compressions
apache_incubator-druid
train
26fde9110f932df8cb5cc24396e7a54a6d3a94c2
diff --git a/utils.go b/utils.go index <HASH>..<HASH> 100644 --- a/utils.go +++ b/utils.go @@ -206,7 +206,7 @@ func getValueFromFields(value reflect.Value, fieldNames []string) (results []int // as FieldByName could panic if indirectValue := reflect.Indirect(value); indirectValue.IsValid() { for _, fieldName := ...
getValueFromFields doesn't panic on nil pointers (#<I>) * `IsValid()` won't return `false` for nil pointers unless Value is wrapped in a `reflect.Indirect`.
jinzhu_gorm
train
55fb5ccaa16194b4d996dd11936e93840e4e84c1
diff --git a/Lib/glyphsLib/builder/anchors.py b/Lib/glyphsLib/builder/anchors.py index <HASH>..<HASH> 100644 --- a/Lib/glyphsLib/builder/anchors.py +++ b/Lib/glyphsLib/builder/anchors.py @@ -125,16 +125,16 @@ def _adjust_anchors(anchor_data, ufo, parent, component): glyph = ufo[component.baseGlyph] t = Transf...
Changed order, the named anchor code needs to be secondary
googlefonts_glyphsLib
train
52eeb8551e8b8104c5339b29eb1b46fd2999d809
diff --git a/builtin/logical/aws/secret_access_keys_test.go b/builtin/logical/aws/secret_access_keys_test.go index <HASH>..<HASH> 100644 --- a/builtin/logical/aws/secret_access_keys_test.go +++ b/builtin/logical/aws/secret_access_keys_test.go @@ -9,7 +9,17 @@ func TestNormalizeDisplayName(t *testing.T) { expectedName...
Adding one more test (for no-op case)
hashicorp_vault
train
e4a5de9baf93ed3ccb4c385b5df74fa25bdd79e5
diff --git a/spring-cloud-aws-messaging/src/test/java/org/springframework/cloud/aws/messaging/config/annotation/SqsConfigurationTest.java b/spring-cloud-aws-messaging/src/test/java/org/springframework/cloud/aws/messaging/config/annotation/SqsConfigurationTest.java index <HASH>..<HASH> 100644 --- a/spring-cloud-aws-mess...
Use stubonly mocking for async client (to avoid OOM on Linux)
spring-cloud_spring-cloud-aws
train
5903d151f83229f69cc5b89f140927901798f69f
diff --git a/lib/transforms/decreaseItemDepth.js b/lib/transforms/decreaseItemDepth.js index <HASH>..<HASH> 100644 --- a/lib/transforms/decreaseItemDepth.js +++ b/lib/transforms/decreaseItemDepth.js @@ -22,48 +22,47 @@ function decreaseItemDepth(opts, transform, ordered) { return transform; } - let c...
Adapt decreaseItemDepth with appropriate transform
GitbookIO_slate-edit-list
train
439316f5d089bbf618e4269a5799805448cdc105
diff --git a/pandas/core/format.py b/pandas/core/format.py index <HASH>..<HASH> 100644 --- a/pandas/core/format.py +++ b/pandas/core/format.py @@ -165,7 +165,9 @@ def _encode_diff_func(): encoding = get_option("display.encoding") def _encode_diff(x): - return len(x) - len(x.decode(encodin...
BUG: don't rely on sys.getdefaultencoding if we don't need to GH<I>
pandas-dev_pandas
train
d79c55f61d224e138979e6b799cf7706f041132b
diff --git a/jlib.container/src/main/java/org/jlib/container/sequence/ReplaceSequenceIterator.java b/jlib.container/src/main/java/org/jlib/container/sequence/ReplaceSequenceIterator.java index <HASH>..<HASH> 100644 --- a/jlib.container/src/main/java/org/jlib/container/sequence/ReplaceSequenceIterator.java +++ b/jlib.co...
ReplaceSequenceIterator: getSequence method added
jlib-framework_jlib-operator
train
43aad1dc768fef64ae12ffb90ffbd761165abe34
diff --git a/rest/core/src/main/java/org/seedstack/seed/rest/internal/RestPlugin.java b/rest/core/src/main/java/org/seedstack/seed/rest/internal/RestPlugin.java index <HASH>..<HASH> 100644 --- a/rest/core/src/main/java/org/seedstack/seed/rest/internal/RestPlugin.java +++ b/rest/core/src/main/java/org/seedstack/seed/res...
Bind resources only in servlet context
seedstack_seed
train
6ec0d82a7e693da0c9d265b8aea0a0cbebf64410
diff --git a/errors.go b/errors.go index <HASH>..<HASH> 100644 --- a/errors.go +++ b/errors.go @@ -8,7 +8,7 @@ import ( "sync" ) -type Error struct { +type Err struct { Message string reportable bool InnerError error @@ -18,16 +18,16 @@ type Error struct { type HttpError struct { StatusCode int - *Er...
rename type to *grohl.Err, to remove conflict with Error()
technoweenie_grohl
train
b5efe78de9dd721f9135f65c525a3e8ab8b06f79
diff --git a/sklearn_porter/Template.py b/sklearn_porter/Template.py index <HASH>..<HASH> 100644 --- a/sklearn_porter/Template.py +++ b/sklearn_porter/Template.py @@ -98,7 +98,8 @@ class Template(object): self.estimator_type, class_name, 'templates', sel...
release/<I>: Add closing file
nok_sklearn-porter
train
c250c5123b1732ba9ae117a35d8311e19ec9a1d7
diff --git a/src/Helper/Type/Any.php b/src/Helper/Type/Any.php index <HASH>..<HASH> 100644 --- a/src/Helper/Type/Any.php +++ b/src/Helper/Type/Any.php @@ -20,11 +20,6 @@ class Any return count($var) < 1; } - // var seems to be object? - if (is_object($var)) { - return co...
Fix obj check with private methods
phpffcms_ffcms-core
train
41615f2edbe5a2e82f1a375ace232114c4b92589
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -21,28 +21,36 @@ function configureDefaults(options) { options.properties = options.properties || parsePropertiesFromEnv(process.env.PROPERTIES) || null; options.toConsole = !!options.toConsole; options.suiteTitleSepa...
fix 'Root Suite' prefixed to every testcase name (#<I>) * Do not modify suite's title and only show 'Root Suite' if necessary * 'Root Suite' modifiable via option
michaelleeallen_mocha-junit-reporter
train
b1f2be4453e6c58f751cfcd58459c28fc7fe6efc
diff --git a/tasklib/task.py b/tasklib/task.py index <HASH>..<HASH> 100644 --- a/tasklib/task.py +++ b/tasklib/task.py @@ -421,6 +421,12 @@ class Task(TaskResource): """ pass + class ActiveTask(Exception): + """ + Raised when the operation cannot be performed on the active task. + ...
Task: Do not allow starting a Task which has already been started
robgolding_tasklib
train
a84da22d6b09559c14be3b038b30c50e89a14092
diff --git a/apex.go b/apex.go index <HASH>..<HASH> 100644 --- a/apex.go +++ b/apex.go @@ -18,7 +18,7 @@ Examples: force apex ~/test.apex force apex - >> Start typing Apex code; press CTRL-D(for Max/Unix) / Ctrl-Z (for Windows) when finished + >> Start typing Apex code; press CTRL-D(for Mac/Linux) / Ctrl-Z (f...
Corrected "Max/Unix" to "Mac/Linux" - Spelling mistake in "Max" - Changed "Unix" to "Linux". Since, Mac is already a Unix based system
ForceCLI_force
train
ed8727515259c9689ffddf505a4c7aabfd599509
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -360,62 +360,58 @@ const execa = (file, args, options) => { } }), cleanup); - const handlePromise = () => { + const handlePromise = async () => { const stdoutPromise = getStreamPromise(spawned.stdout, {encoding, buff...
Refactor `finalize()` method (#<I>)
sindresorhus_execa
train
a9024de734726013a49ca00a237d4915c0be4c06
diff --git a/core/src/main/java/org/springframework/security/core/SpringSecurityCoreVersion.java b/core/src/main/java/org/springframework/security/core/SpringSecurityCoreVersion.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/springframework/security/core/SpringSecurityCoreVersion.java +++ b/core/src/main...
Polish Spring Version Update Fix related tests. Issue gh-<I>
spring-projects_spring-security
train
43cb95d46b227f1562cfbb80adeb30af065720ba
diff --git a/client/_set-emmet.js b/client/_set-emmet.js index <HASH>..<HASH> 100644 --- a/client/_set-emmet.js +++ b/client/_set-emmet.js @@ -23,18 +23,18 @@ module.exports = function() { exec.if(this._Emmet, () => { this.setOption('enableEmmet', true); - }, (callback) => { + }, async (callba...
feature(package) load.js <I>
cloudcmd_edward
train
0d0b9db2ec5598854c6b00a8c8e08c939789db01
diff --git a/Hydrators/UserHydrator.php b/Hydrators/UserHydrator.php index <HASH>..<HASH> 100644 --- a/Hydrators/UserHydrator.php +++ b/Hydrators/UserHydrator.php @@ -74,66 +74,6 @@ class UserHydrator $hydrated->setValidUntil(new DateTime($user->valid_until)); } - if (isset($user->created...
Remove relics from user hydrator
rips_php-connector-bundle
train
e3cceb60389acd53e2feab64b6faea2afe0d4206
diff --git a/javascript/DateField.js b/javascript/DateField.js index <HASH>..<HASH> 100644 --- a/javascript/DateField.js +++ b/javascript/DateField.js @@ -1,28 +1,33 @@ (function($) { - /** - * Initialize and open a datepicker - * live() doesn't have "onmatch", and jQuery.entwine is a bit too - * heavyweight for ...
MINOR Refactored DateField.js from inline jQuery.live() application to a ssDatepicker() plugin which can be applied explicitly as well
silverstripe_silverstripe-framework
train
1a9d9388a5ec7803450660e3188e10815ba0d53c
diff --git a/indra/statements/statements.py b/indra/statements/statements.py index <HASH>..<HASH> 100644 --- a/indra/statements/statements.py +++ b/indra/statements/statements.py @@ -381,10 +381,9 @@ class Statement(object): "type %s." % type(ag_attr)) return ag_list - def...
Implement getting not-none agent list
sorgerlab_indra
train
4e6d18dda73bc7c842c9b1d48845c869bdba94be
diff --git a/concrete/src/Cache/Driver/RedisStashDriver.php b/concrete/src/Cache/Driver/RedisStashDriver.php index <HASH>..<HASH> 100644 --- a/concrete/src/Cache/Driver/RedisStashDriver.php +++ b/concrete/src/Cache/Driver/RedisStashDriver.php @@ -115,6 +115,7 @@ class RedisStashDriver extends AbstractDriver } ...
Fixing not sending password to RedisArray in session and cache drivers Removes unused code from #<I> Fix ttl not being used in RedisArray correctly
concrete5_concrete5
train
09cd1cb0725ba7215e2b30c8685c9e97623111f6
diff --git a/lib/xo/board.rb b/lib/xo/board.rb index <HASH>..<HASH> 100644 --- a/lib/xo/board.rb +++ b/lib/xo/board.rb @@ -18,7 +18,7 @@ module TTT end def free?(r, c) - ![:x, :o].include?(self[r, c]) + !self.class.is_token?(self[r, c]) end def clear @@ -53,8 +53,12 @@ module TTT ...
Add Board#is_token? to help classify tokens, i.e. :x and :o
dwayne_xo
train
117e4f6f3de14b6a20832b02c874fc003ef6ca9b
diff --git a/pkg/build/controller/controller.go b/pkg/build/controller/controller.go index <HASH>..<HASH> 100644 --- a/pkg/build/controller/controller.go +++ b/pkg/build/controller/controller.go @@ -128,11 +128,6 @@ func (bc *BuildController) nextBuildPhase(build *buildapi.Build) error { } build.Status.OutputDocker...
Build controller - set build status only if pod creation succeeds
openshift_origin
train
3d81867aff7ac6c8ca2da8211bdadcd16d496a73
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 @@ -1228,9 +1228,8 @@ var Route = EmberObject.extend(ActionHandler, { @return {Object} t...
[BUGFIX beta] Route#modelFor shouldn't rely on router This is especially useful for unit testing. In cases where there is no router, `modelFor` will no longer cause an exception.
emberjs_ember.js
train
143330a65094bf0fc229986b1407fc3ac9d67b66
diff --git a/cmd/config_diff_table.go b/cmd/config_diff_table.go index <HASH>..<HASH> 100644 --- a/cmd/config_diff_table.go +++ b/cmd/config_diff_table.go @@ -33,8 +33,8 @@ func (t ConfigDiffTable) Print() { } result := []boshtbl.Value{ - boshtbl.NewValueString(formatId(t.opts.FromID)), - boshtbl.NewValueString...
Remove unnecessary empty id rendering in diff-config
cloudfoundry_bosh-cli
train
8fe6d56bf7ae0dae00c29237fd7101931ab8ff2f
diff --git a/thredds_crawler/crawl.py b/thredds_crawler/crawl.py index <HASH>..<HASH> 100644 --- a/thredds_crawler/crawl.py +++ b/thredds_crawler/crawl.py @@ -28,7 +28,6 @@ except ImportError: def emit(self, record): pass logger = logging.getLogger("thredds_crawler") -logger.addHandler(NullHandle...
Don't swallow logging during testing
ioos_thredds_crawler
train
b3220cf3e8ff6d8b55ea0056238d022073bc0e97
diff --git a/src/body/Body.js b/src/body/Body.js index <HASH>..<HASH> 100644 --- a/src/body/Body.js +++ b/src/body/Body.js @@ -20,6 +20,7 @@ var Common = require('../core/Common'); var Bounds = require('../geometry/Bounds'); var Axes = require('../geometry/Axes'); + (function() { Body._inertiaScale = 4; @@ ...
Optimized Body's hidden class
liabru_matter-js
train
02c7c8451c331b0206a9db2fb50360cd44618efa
diff --git a/src/Core/Form/View/Helper/SummaryForm.php b/src/Core/Form/View/Helper/SummaryForm.php index <HASH>..<HASH> 100644 --- a/src/Core/Form/View/Helper/SummaryForm.php +++ b/src/Core/Form/View/Helper/SummaryForm.php @@ -245,7 +245,33 @@ class SummaryForm extends AbstractHelper if ('' != $elementValue ...
[Core] Improves summary view of summary form. Handles select elements with "multiple" attribute.
yawik_core
train
6bce73887147753383c5e526b86a4afe43ec1dea
diff --git a/worker/lease/manager.go b/worker/lease/manager.go index <HASH>..<HASH> 100644 --- a/worker/lease/manager.go +++ b/worker/lease/manager.go @@ -314,11 +314,19 @@ func (manager *Manager) retryingClaim(claim claim) { manager.config.Logger.Warningf("[%s] retrying timed out while handling claim %q for %q", ...
Modifies the lease manager to handle the specific error from the FSM, for a lease claim that is held by another entity. In this case we reject the claim without retrying. Previously errors like these were returned as invalid, which would trigger subsequent retries. We know this lease will not be granted, so retries ar...
juju_juju
train
520724e87af10c5c20eb478cff23e47f4bfbe5af
diff --git a/src/main/groovy/lang/Closure.java b/src/main/groovy/lang/Closure.java index <HASH>..<HASH> 100644 --- a/src/main/groovy/lang/Closure.java +++ b/src/main/groovy/lang/Closure.java @@ -535,6 +535,14 @@ public abstract class Closure extends GroovyObjectSupport implements Cloneable, public Closure cur...
let WritableClosure proxy resolve strategy access to the outer Closure. git-svn-id: <URL>
groovy_groovy-core
train
02884309b5142224bc9e017245369f8502442744
diff --git a/lib/ideone.rb b/lib/ideone.rb index <HASH>..<HASH> 100644 --- a/lib/ideone.rb +++ b/lib/ideone.rb @@ -33,7 +33,7 @@ module Ideone request_body[:run] = run request_body[:private] = is_private - response = call_request(:create_submission, :message => @request_body) + response = call...
Fix support for Ruby <= <I> Older ruby versions do not support keyword arguments. Updated code.
kennym_ideone-ruby-api
train
aed9e821d84f0cc2e9b5eaa5133eebd029d67274
diff --git a/src/configure/webpack/plugins/archetype-library.js b/src/configure/webpack/plugins/archetype-library.js index <HASH>..<HASH> 100644 --- a/src/configure/webpack/plugins/archetype-library.js +++ b/src/configure/webpack/plugins/archetype-library.js @@ -10,7 +10,7 @@ export default { return { entry...
Simplify in an initial moment and make the library output the same as pages
saguijs_sagui
train
ae01706f0134e5f74e3915aa7942e8b63bdeacd9
diff --git a/rebound/simulation.py b/rebound/simulation.py index <HASH>..<HASH> 100644 --- a/rebound/simulation.py +++ b/rebound/simulation.py @@ -927,8 +927,9 @@ class reb_variational_configuration(Structure): ("index_1st_order_a", c_int), ("index_1st_order_b", c_int)] - def vary...
Allow to manually override order in vary()
hannorein_rebound
train
57dd2acfaf95baa41bbc879ed02554b159ffee50
diff --git a/absl/flags/BUILD b/absl/flags/BUILD index <HASH>..<HASH> 100644 --- a/absl/flags/BUILD +++ b/absl/flags/BUILD @@ -103,6 +103,7 @@ py_test( deps = [ ":_argument_parser", "//absl/testing:absltest", + "@six_archive//:six", ], ) diff --git a/absl/flags/_argument_parser.py ...
Change argument parser to accept unicode boolean rhs as well as strings in Python 2. PiperOrigin-RevId: <I>
abseil_abseil-py
train
761cf00b02edbfc2a6e7c9a0f98e40d6074ae207
diff --git a/src/java/grails/util/GrailsNameUtils.java b/src/java/grails/util/GrailsNameUtils.java index <HASH>..<HASH> 100644 --- a/src/java/grails/util/GrailsNameUtils.java +++ b/src/java/grails/util/GrailsNameUtils.java @@ -121,6 +121,11 @@ public class GrailsNameUtils { } public static String getLogical...
GRAILS-<I> - improve the handling of logical property names for artifacts with single letter names (AController, BService etc...)
grails_grails-core
train
f007b124864ab8b733aef6c98bfbc3a2d94fcfd0
diff --git a/scripts/gulp-tasks/release.js b/scripts/gulp-tasks/release.js index <HASH>..<HASH> 100644 --- a/scripts/gulp-tasks/release.js +++ b/scripts/gulp-tasks/release.js @@ -58,37 +58,45 @@ gulp.task('gitPush', (done) => { /** * Bump Prerelease Task */ -gulp.task('bump:prerelease', () => { +gulp.task('bump:pr...
call missing done callback on bump tasks finishes
sirap-group_generate-swap-project
train
387f1c5aaf747cf266ac01e29d45a5a26e4f57f8
diff --git a/cmd/runhcs/main.go b/cmd/runhcs/main.go index <HASH>..<HASH> 100644 --- a/cmd/runhcs/main.go +++ b/cmd/runhcs/main.go @@ -35,32 +35,23 @@ const ( specConfig = "config.json" usage = `Open Container Initiative runtime -runc is a command line client for running applications packaged according to -t...
removed runc reference from main - this will need to be updated to reflect differences between runhcs and runc
Microsoft_hcsshim
train
0f8bcde86bdc8242efd6f2ad1c6ba0eec947819f
diff --git a/lib/block.js b/lib/block.js index <HASH>..<HASH> 100644 --- a/lib/block.js +++ b/lib/block.js @@ -53,7 +53,7 @@ var Block = module.exports = function (name, config) { Block.prototype.updateFiles = function () { var srcFiles = this.config.src.length ? this.config.src : this.files; var maps = grunt....
Update lodash to latest version. Fix breaking lodash API changes
rrharvey_grunt-file-blocks
train
beede408daf19cb4628055bf2527789f2831c727
diff --git a/AsyncStream.php b/AsyncStream.php index <HASH>..<HASH> 100644 --- a/AsyncStream.php +++ b/AsyncStream.php @@ -6,8 +6,8 @@ use Kraken\Throwable\Io\WriteException; use Kraken\Throwable\Runtime\InvalidArgumentException; use Kraken\Loop\LoopAwareTrait; use Kraken\Loop\LoopInterface; -use Kraken\Pattern\Buff...
KRF-<I> #resolve Moved Pattern API to Util API
dazzle-php_stream
train
94f8b5b7e7951e62a08433c9fed5891e4982ad4c
diff --git a/io3d/datareaderqt.py b/io3d/datareaderqt.py index <HASH>..<HASH> 100644 --- a/io3d/datareaderqt.py +++ b/io3d/datareaderqt.py @@ -95,25 +95,25 @@ class DataReaderWidget(QtGui.QWidget): """ if self.cache is not None: - self.loadfiledir = self.cache.get_or_none('loadfiledir') +...
fix qt gui: bytes to str
mjirik_io3d
train
338279f1dcc7e5fbbed0ac5b9ba428decbff1551
diff --git a/tests/test_normalize.py b/tests/test_normalize.py index <HASH>..<HASH> 100644 --- a/tests/test_normalize.py +++ b/tests/test_normalize.py @@ -21,53 +21,53 @@ normalize_vcf_no_trim = partial(normalize_seq, mode=NormalizationMode.VCF, trim= @pytest.mark.parametrize('normalize_trim', [normalize_trim, nor...
don't overload outer fn
biocommons_bioutils
train
d3974d1b54d402f0fb2af16e68bdc8b4637bea49
diff --git a/lib/pseudohiki/markdownformat.rb b/lib/pseudohiki/markdownformat.rb index <HASH>..<HASH> 100644 --- a/lib/pseudohiki/markdownformat.rb +++ b/lib/pseudohiki/markdownformat.rb @@ -90,6 +90,7 @@ module PseudoHiki formatter[EmNode] = EmNodeFormatter.new(formatter, options) formatter[StrongNode] =...
MarkDownFormat supports the notation for inline literals.
nico-hn_PseudoHikiParser
train
518680fd805f5af5e1c994d3cad34d6f6a7f0851
diff --git a/.gitignore b/.gitignore index <HASH>..<HASH> 100644 --- a/.gitignore +++ b/.gitignore @@ -27,23 +27,14 @@ build/Release # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- node_modules +bower_components + # Debug log from npm npm-debug.log -# test database ...
update image upload feature and configs
wejs_we-core
train
89f54046a79d85057939c8cb3d49b2cb8184d5d8
diff --git a/fireplace/player.py b/fireplace/player.py index <HASH>..<HASH> 100644 --- a/fireplace/player.py +++ b/fireplace/player.py @@ -234,7 +234,9 @@ class Player(Entity, TargetableByAuras): return cards[0][0] def concede(self): - return self.game.cheat_action(self, [Concede(self)]) + ret = self.game.chea...
Always check for end game after Player.concede()
jleclanche_fireplace
train
a41b64474a242ea25380b3ce00363a13b6474ba1
diff --git a/source/test/network_test/test_acknowledged_messages.py b/source/test/network_test/test_acknowledged_messages.py index <HASH>..<HASH> 100644 --- a/source/test/network_test/test_acknowledged_messages.py +++ b/source/test/network_test/test_acknowledged_messages.py @@ -4,6 +4,9 @@ import threading import time...
fix python_acknowledged_udp syspath for other unit tests as well
DLR-RM_RAFCON
train
4ced638abcbc9a3a23d2b3e4fb638c00ed83f2d9
diff --git a/hecate-cql3/src/main/java/com/savoirtech/hecate/cql3/schema/CreateVerifier.java b/hecate-cql3/src/main/java/com/savoirtech/hecate/cql3/schema/CreateVerifier.java index <HASH>..<HASH> 100644 --- a/hecate-cql3/src/main/java/com/savoirtech/hecate/cql3/schema/CreateVerifier.java +++ b/hecate-cql3/src/main/java...
Make sure we use the right converter.
savoirtech_hecate
train
840151447d0ca673c0c2947bea91d31cec4ef321
diff --git a/transformers/CropTransformer.php b/transformers/CropTransformer.php index <HASH>..<HASH> 100644 --- a/transformers/CropTransformer.php +++ b/transformers/CropTransformer.php @@ -33,11 +33,11 @@ class CropTransformer extends TransformerAbstract { * @return string */ public function transform() { - ...
Renamed $options to $config
ljgpartners_transit
train
edf172ffc64b7598902832046b0dc4773b9f69dd
diff --git a/includes/functions/functions_print_lists.php b/includes/functions/functions_print_lists.php index <HASH>..<HASH> 100644 --- a/includes/functions/functions_print_lists.php +++ b/includes/functions/functions_print_lists.php @@ -1451,7 +1451,7 @@ function format_surname_list($surnames, $style, $totals, $scrip...
Non-breaking space in semicolon-separated lists.
fisharebest_webtrees
train
63ce49df9bb3aa6c04290121df414b7b91ea73ae
diff --git a/lib/tests/grouplib_test.php b/lib/tests/grouplib_test.php index <HASH>..<HASH> 100644 --- a/lib/tests/grouplib_test.php +++ b/lib/tests/grouplib_test.php @@ -1562,6 +1562,8 @@ class core_grouplib_testcase extends advanced_testcase { * Test groups_get_all_groups_for_courses() method. */ pub...
MDL-<I> groupslib: Fix time issue in unit test
moodle_moodle
train
7a3fcda5ef49ac30e08ac37757233644357cb96f
diff --git a/core/codegen/src/main/java/org/overture/codegen/transform/LetBeStStrategy.java b/core/codegen/src/main/java/org/overture/codegen/transform/LetBeStStrategy.java index <HASH>..<HASH> 100644 --- a/core/codegen/src/main/java/org/overture/codegen/transform/LetBeStStrategy.java +++ b/core/codegen/src/main/java/o...
Made the 'let be st' strategy realize the new abstract iteration interface. Now the strategy explicitly declares the identifiers at the outermost level
overturetool_overture
train
12d02fc61895cf4f8b700e69705f76d2536cac78
diff --git a/service/src/main/java/org/ops4j/pax/web/service/internal/ng/Activator.java b/service/src/main/java/org/ops4j/pax/web/service/internal/ng/Activator.java index <HASH>..<HASH> 100644 --- a/service/src/main/java/org/ops4j/pax/web/service/internal/ng/Activator.java +++ b/service/src/main/java/org/ops4j/pax/web/...
small refactoring for better naming of private methods
ops4j_org.ops4j.pax.web
train
e17d8ddbeb01a7e3eb745431d39c93661e167bbc
diff --git a/core/block_processor.go b/core/block_processor.go index <HASH>..<HASH> 100644 --- a/core/block_processor.go +++ b/core/block_processor.go @@ -342,7 +342,7 @@ func (sm *BlockProcessor) VerifyUncles(statedb *state.StateDB, block, parent *ty // GetBlockReceipts returns the receipts beloniging to the block ha...
core: during chain reorg rewrite receipts and transactions Added PutBlockReceipts; storing receipts by blocks. Eventually this will require pruning during some cleanup cycle. During forks the receipts by block are used to get the new canonical receipts and transactions. This PR fixes #<I> by rewriting transactions an...
ethereum_go-ethereum
train
c7831546a101d7ec5d66da56b3362af28fee1b3e
diff --git a/test/end2end_test.go b/test/end2end_test.go index <HASH>..<HASH> 100644 --- a/test/end2end_test.go +++ b/test/end2end_test.go @@ -7436,6 +7436,7 @@ func (s *httpServer) start(t *testing.T, lis net.Listener) { } func doHTTPHeaderTest(t *testing.T, errCode codes.Code, headerFields ...[]string) { + t.Help...
test: extend RPC timeout for TestHTTPHeaderFrameErrorHandlingHTTPMode (#<I>) This test sometimes fails with error creating stream due to DeadlineExceeded. It's very hard to reproduce (failed twice in <I> runs). Extend the RPC timeout in case it's too short.
grpc_grpc-go
train
6e9f414f514e99293e541473367603c4f86abc1b
diff --git a/action/edit.go b/action/edit.go index <HASH>..<HASH> 100644 --- a/action/edit.go +++ b/action/edit.go @@ -90,5 +90,9 @@ func (s *Action) editor(content []byte) ([]byte, error) { return []byte{}, fmt.Errorf("failed to read from tmpfile: %v", err) } + // enforce unix line endings in the password store...
Enforce UNIX style line endings in the password store
gopasspw_gopass
train
d32424ca421f920f7ee471dcef15e8f9d522fc8d
diff --git a/src/components/Tooltip/Tooltip.js b/src/components/Tooltip/Tooltip.js index <HASH>..<HASH> 100644 --- a/src/components/Tooltip/Tooltip.js +++ b/src/components/Tooltip/Tooltip.js @@ -268,16 +268,18 @@ export default class Tooltip extends Component { document.body; handleMouse = evt => { - const...
Make keyboard events work with Tooltip when `clickToOpen` is true, prevent clicks and keyboard events bubbling up through the dom (#<I>) * Moved onClick/onKeyDown handlers to correct element (previously only the click handler was firing). Added stopPropagation to prevent the events bubbling up (e.g. when a tooltip is ...
carbon-design-system_carbon-components
train
70f0cd78db860b86c8a611e658e745dffa3f04fc
diff --git a/src/python/pants/backend/project_info/list_targets.py b/src/python/pants/backend/project_info/list_targets.py index <HASH>..<HASH> 100644 --- a/src/python/pants/backend/project_info/list_targets.py +++ b/src/python/pants/backend/project_info/list_targets.py @@ -25,6 +25,8 @@ class ListSubsystem(LineOriente...
Deprecate `--list-provides` option. (#<I>) This is pre-work for getting rid of `python_artifact` in favour of fields directly on `python_distribution`. See #<I>
pantsbuild_pants
train
549c1ae6808b8798b899deaa80783da79468de1c
diff --git a/lib/portfolio/caller.php b/lib/portfolio/caller.php index <HASH>..<HASH> 100644 --- a/lib/portfolio/caller.php +++ b/lib/portfolio/caller.php @@ -315,8 +315,6 @@ abstract class portfolio_caller_base { * and what the selected portfolio plugin supports * will be used * use the constants PORTFO...
portfolio MDL-<I> fixed broken forum attachment export - fixed a lot of logic in the format conflict stuff - fixed a very specific bug in forum export when exporting a single attachment.
moodle_moodle
train
06f7675fad88aa51c13569dfae02a218f7d29405
diff --git a/src/org/ddogleg/optimization/trustregion/TrustRegionUpdateDogleg_F64.java b/src/org/ddogleg/optimization/trustregion/TrustRegionUpdateDogleg_F64.java index <HASH>..<HASH> 100644 --- a/src/org/ddogleg/optimization/trustregion/TrustRegionUpdateDogleg_F64.java +++ b/src/org/ddogleg/optimization/trustregion/Tr...
- removed the dummy math class from trust region schur
lessthanoptimal_ddogleg
train
71b685a862f2125244e669245fc3921523f6f381
diff --git a/lib/gcli/ui/focus.js b/lib/gcli/ui/focus.js index <HASH>..<HASH> 100644 --- a/lib/gcli/ui/focus.js +++ b/lib/gcli/ui/focus.js @@ -356,6 +356,10 @@ FocusManager.prototype._checkShow = function() { * available inputs */ FocusManager.prototype._shouldShowTooltip = function() { + if (!this._hasFocus) { +...
Bug <I> (focus): Add missing checks for hasFocus If the input element doesn't have focus then we shouldn't ever have either the output or the hint area showing.
joewalker_gcli
train
5d1af6233491f0d5eb9be174eb4ad4553e819302
diff --git a/src/properties/class-papi-property-flexible.php b/src/properties/class-papi-property-flexible.php index <HASH>..<HASH> 100644 --- a/src/properties/class-papi-property-flexible.php +++ b/src/properties/class-papi-property-flexible.php @@ -511,20 +511,22 @@ class Papi_Property_Flexible extends Papi_Property_...
Fix so flexible and repeaters can handle properties with children
wp-papi_papi
train
c1071fd3839759fb213c284a08b409f66c7ad962
diff --git a/core-bundle/contao/library/Contao/Controller.php b/core-bundle/contao/library/Contao/Controller.php index <HASH>..<HASH> 100644 --- a/core-bundle/contao/library/Contao/Controller.php +++ b/core-bundle/contao/library/Contao/Controller.php @@ -1058,19 +1058,36 @@ abstract class Controller extends \System ...
[Core] Remove the correct part of the if-else condition in gernerateFrontendUrl()
contao_contao
train
b24763365b06de8310db6d58e9e46fbfd7be85ba
diff --git a/multiqc/modules/ngsderive/ngsderive.py b/multiqc/modules/ngsderive/ngsderive.py index <HASH>..<HASH> 100644 --- a/multiqc/modules/ngsderive/ngsderive.py +++ b/multiqc/modules/ngsderive/ngsderive.py @@ -202,11 +202,9 @@ class MultiqcModule(BaseMultiqcModule): } self.general_stats_addcols(g...
refactor: remove unnecessary samples var
ewels_MultiQC
train
115e86584c896cc139e72b5041187d6e9e0a260d
diff --git a/ChangeLog.txt b/ChangeLog.txt index <HASH>..<HASH> 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,11 @@ +2013-11-06 Version 0.7.1 + * Fixes for bugs: + #118 Proxy doesn't support specifying credentials + #117 Service bus authorization code doesn't go through the proxy server + #108 Create ...
Updated version to <I> (bug fixes only, backwards compatible) Updated change log Added metadata to setup.py
Azure_azure-sdk-for-python
train
e8b40129f591e8111d8f5eca3d8961fc97fac770
diff --git a/.jshintrc b/.jshintrc index <HASH>..<HASH> 100644 --- a/.jshintrc +++ b/.jshintrc @@ -19,6 +19,7 @@ "maxcomplexity" : 10, "maxlen" : 120, "browser" : true, + "debug": true, "strict": false, "-W040": true, "globals": { diff --git a/src/core/Canvas.js b/src/core/Canvas.js index <HASH>..<HA...
feat(canvas) implement drop After drag end event is fired the shape now remains at the new position. Drag and Drop is using the CommandStack service and undo is available.
bpmn-io_diagram-js
train
942f53ea8a207f632a2b65af3d78051663a394fb
diff --git a/lib/spring/client/rails.rb b/lib/spring/client/rails.rb index <HASH>..<HASH> 100644 --- a/lib/spring/client/rails.rb +++ b/lib/spring/client/rails.rb @@ -20,7 +20,7 @@ module Spring if COMMANDS.include?(command_name) Run.call(["rails_#{command_name}", *args.drop(2)]) - elsif co...
Fix check when no command is supplied Closes #<I>.
rails_spring
train
15c550ec592794ef0290ff14766f5a102171dfbc
diff --git a/ObjJAcornCompiler.js b/ObjJAcornCompiler.js index <HASH>..<HASH> 100644 --- a/ObjJAcornCompiler.js +++ b/ObjJAcornCompiler.js @@ -721,7 +721,7 @@ TryStatement: function(node, st, c) { if (generate) { buffer = compiler.jsBuffer; buffer.concat(indentation); - buffer.concat("try"); + ...
Fixed: Better format on code generated try statements
mrcarlberg_objj-transpiler
train
0c030d92f9d7db237b4e9916d385a05bc44495ce
diff --git a/src/Symfony/Component/DependencyInjection/Compiler/ResolveDefinitionTemplatesPass.php b/src/Symfony/Component/DependencyInjection/Compiler/ResolveDefinitionTemplatesPass.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/ResolveDefinitionTemplatesPass.php +++ b/src/Sym...
[DI] Fix named args overridding
symfony_symfony
train
3bd02f38d2835187f88611c09e6c9355c6176b86
diff --git a/inspire_dojson/hep/model.py b/inspire_dojson/hep/model.py index <HASH>..<HASH> 100644 --- a/inspire_dojson/hep/model.py +++ b/inspire_dojson/hep/model.py @@ -163,12 +163,20 @@ def reorder_abstracts(record, blob): return record +def merge_authors(record, blob): + authors_second = record.pop('aut...
hep: don't trust MARC <I>/<I> order
inspirehep_inspire-dojson
train
2fa4ccc1da05e2919d510cc62c3b9d9045f831a6
diff --git a/framework/db/Connection.php b/framework/db/Connection.php index <HASH>..<HASH> 100644 --- a/framework/db/Connection.php +++ b/framework/db/Connection.php @@ -403,11 +403,11 @@ class Connection extends Component */ private $_driverName; /** - * @var Connection the currently active master...
Fix phpdoc for $_master and $_slave properties in yii\db\Connection (#<I>)
yiisoft_yii2
train
ea8807987cf4aeb226f09f8a1050f621f2c4c622
diff --git a/flusher.go b/flusher.go index <HASH>..<HASH> 100644 --- a/flusher.go +++ b/flusher.go @@ -796,7 +796,6 @@ func flushSpansLightstep(ctx context.Context, s *Server, lightstepTracer opentra for _, ssfSpan := range ssfSpans { flushSpanLightstep(lightstepTracer, ssfSpan) } - lightstep.FlushLightStepTrace...
Don't explicitly flush, let the lightstep client manage itself.
stripe_veneur
train
3e8884a7f1ddd492f127fd8cc7607a536809d9b6
diff --git a/middleware_test.go b/middleware_test.go index <HASH>..<HASH> 100644 --- a/middleware_test.go +++ b/middleware_test.go @@ -6,6 +6,7 @@ package gin import ( "errors" + "strings" "testing" @@ -245,11 +246,5 @@ func TestMiddlewareWrite(t *testing.T) { w := performRequest(router, "GET", "/") as...
Fix MiddlewareWrite in middleware_test.go
gin-gonic_gin
train
0cdce4d520387986a787258056ca2cacf0ddcc0e
diff --git a/question/type/ddmarker/yui/dd/dd.js b/question/type/ddmarker/yui/dd/dd.js index <HASH>..<HASH> 100644 --- a/question/type/ddmarker/yui/dd/dd.js +++ b/question/type/ddmarker/yui/dd/dd.js @@ -408,6 +408,8 @@ YUI.add('moodle-qtype_ddmarker-dd', function(Y) { var dragitemhome = this.doc.drag_i...
MDL-<I> ddmarker: Fix weird drag-drop marker behaviour in IE<I>. #<I> Moving the markers with the keyboard was not working. The markers would move in weird directions!
moodle_moodle
train
08bf7f02e4715e3c484f20e7c2f3e77fdd99fbf8
diff --git a/services/maintenance/maintenance.service.js b/services/maintenance/maintenance.service.js index <HASH>..<HASH> 100644 --- a/services/maintenance/maintenance.service.js +++ b/services/maintenance/maintenance.service.js @@ -1,27 +1,56 @@ 'use strict' -const LegacyService = require('../legacy-service') -co...
refactor maintenance service (#<I>)
badges_shields
train
b3a7b63532376e443d9b8b3ba3c03ac223875fd6
diff --git a/packages/sproutcore-metal/tests/computed_test.js b/packages/sproutcore-metal/tests/computed_test.js index <HASH>..<HASH> 100644 --- a/packages/sproutcore-metal/tests/computed_test.js +++ b/packages/sproutcore-metal/tests/computed_test.js @@ -540,6 +540,31 @@ testBoth('depending on complex Global chain', fu...
Adding unit test to demonstrate issue #<I>.
emberjs_ember.js
train
a2232a28bd22732f611abd1c6a054a79b1afb603
diff --git a/ricecooker/utils/jsontrees.py b/ricecooker/utils/jsontrees.py index <HASH>..<HASH> 100644 --- a/ricecooker/utils/jsontrees.py +++ b/ricecooker/utils/jsontrees.py @@ -22,13 +22,14 @@ DOCUMENT_NODE = content_kinds.DOCUMENT HTML5_NODE = content_kinds.HTML5 # TODO(Ivan): add constants.file_types to le_util...
Add ePub support to LineCook json channels
learningequality_ricecooker
train
eee3a7861d2494ef06d48204ddb9167ed40014bd
diff --git a/src/Http/Guard.php b/src/Http/Guard.php index <HASH>..<HASH> 100644 --- a/src/Http/Guard.php +++ b/src/Http/Guard.php @@ -74,7 +74,7 @@ class Guard implements GuardContract { * @return bool|WP_Error */ protected function can_edit_others_posts() { - return current_user_can( 'edit_others_posts' ) ?:...
Set correct status codes for API response The status codes need to be set in the WP_Error data, rather than the code, in order to set the correct HTTP status code in the header.
intraxia_jaxion
train
18e5898ec420d7e5b29e53c12abf475ca6ed829a
diff --git a/vcr/patch.py b/vcr/patch.py index <HASH>..<HASH> 100644 --- a/vcr/patch.py +++ b/vcr/patch.py @@ -87,7 +87,7 @@ class CassettePatcherBuilder(object): def _recursively_apply_get_cassette_subclass(self, replacement_dict_or_obj): if isinstance(replacement_dict_or_obj, dict): - for k...
Return a tuple from the _request function on CassettePatcherBuilder even if import fails. Make _recursively_apply_get_cassette_subclass actually work with dictionaries.
kevin1024_vcrpy
train
4766aadf733a21a1f07e61af9fb9df889eeda93c
diff --git a/ezp/Persistence/Storage/InMemory/UserHandler.php b/ezp/Persistence/Storage/InMemory/UserHandler.php index <HASH>..<HASH> 100644 --- a/ezp/Persistence/Storage/InMemory/UserHandler.php +++ b/ezp/Persistence/Storage/InMemory/UserHandler.php @@ -61,7 +61,7 @@ class UserHandler implements UserHandlerInterface ...
Change: UserHandler to require User->id to be set
ezsystems_ezpublish-kernel
train
9383d2814ec9489fbf6b3d12e80ecd830f17443e
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,9 @@ setup(name='papermill', url='https://github.com/nteract/papermill', packages=['papermill'], install_requires=[ + 'boto3', 'click', + 'concurrent', 'py...
adding in boto3 and concurrent to setup.py
nteract_papermill
train
4c7333e4cab60a3d3438b0933764ac1928e1c710
diff --git a/src/controllers/UploadController.php b/src/controllers/UploadController.php index <HASH>..<HASH> 100644 --- a/src/controllers/UploadController.php +++ b/src/controllers/UploadController.php @@ -152,7 +152,7 @@ class UploadController extends LfmController protected function replaceInsecureSuffix($nam...
Triming php suffix should be case insensitive
UniSharp_laravel-filemanager
train
ff4920a415e3bd8c276395a5d5303ed7517e090d
diff --git a/src/Models/Taxonomy.php b/src/Models/Taxonomy.php index <HASH>..<HASH> 100644 --- a/src/Models/Taxonomy.php +++ b/src/Models/Taxonomy.php @@ -6,7 +6,6 @@ use Illuminate\Database\Eloquent\Collection as EloquentCollection; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\B...
Refactor taxable class into relation attribute
Lecturize_Laravel-Taxonomies
train
2adc51baa65543df5cf6662d2c8448ea261abc1d
diff --git a/lib/celluloid/supervision_group.rb b/lib/celluloid/supervision_group.rb index <HASH>..<HASH> 100644 --- a/lib/celluloid/supervision_group.rb +++ b/lib/celluloid/supervision_group.rb @@ -60,7 +60,7 @@ module Celluloid @members = [] @registry = registry || Registry.root - yield self if b...
Do not leak self in SupervisionGroup#initialize
celluloid_celluloid
train