hash
stringlengths
40
40
diff
stringlengths
131
26.7k
message
stringlengths
7
694
project
stringlengths
5
67
split
stringclasses
1 value
diff_languages
stringlengths
2
24
da4e0ee48f71265332ea5ba1f7d1add03d35a778
diff --git a/lib/config-parser.js b/lib/config-parser.js index <HASH>..<HASH> 100644 --- a/lib/config-parser.js +++ b/lib/config-parser.js @@ -207,15 +207,17 @@ function handleResourceContext(attrNode, context) { } if (attrNode.childKey) { - for (dataSourceName in attrNode.childKey) { - if...
config-parser: DataSource attributes can only be resolved for inline-resources
godmodelabs_flora
train
js
a6b9cd4a0553023067219e539b05b12dae16b719
diff --git a/salt/states/dockerio.py b/salt/states/dockerio.py index <HASH>..<HASH> 100644 --- a/salt/states/dockerio.py +++ b/salt/states/dockerio.py @@ -77,7 +77,7 @@ Available Functions .. note:: - The ``port_bindings`` argument above is a dictionary. The double + The ``ports`` argument above is a d...
doc: Docker state use ports and not port_bindings anymore
saltstack_salt
train
py
42ce708e36ca93e2e109cc9a0067a703c581219f
diff --git a/python/rosette/api.py b/python/rosette/api.py index <HASH>..<HASH> 100644 --- a/python/rosette/api.py +++ b/python/rosette/api.py @@ -35,9 +35,7 @@ except ImportError: import http.client as httplib if _IsPy3: - _GZIP_SIGNATURE = bytearray(len(_GZIP_KEY)) - for i in range(len(_GZIP_KEY)): - ...
RCB-<I> clever up array initialization\; rename put to post.
rosette-api_java
train
py
e1097f50ebdda174608c4ade22e75fffa9b5505d
diff --git a/eliot/_output.py b/eliot/_output.py index <HASH>..<HASH> 100644 --- a/eliot/_output.py +++ b/eliot/_output.py @@ -307,7 +307,9 @@ class _FileDestination(object): """ Callable that writes JSON messages to a file. - On Python 3 the file may support either C{bytes} or C{unicode}. + On Python...
Address review comment: Mention Python 2.
itamarst_eliot
train
py
bcd1b1fb25a7e509d435a1996489a0fb21465a56
diff --git a/src/Providers/ServiceProvider.php b/src/Providers/ServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/Providers/ServiceProvider.php +++ b/src/Providers/ServiceProvider.php @@ -7,18 +7,4 @@ use Illuminate\Support\ServiceProvider as BaseServiceProvider; abstract class ServiceProvider extends BaseServi...
Remove redundant method. Laravel core have solve the underlying issue.
orchestral_support
train
php
349e71bd2cf3532637576b1e4060dbbf2d3a3ed9
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -8,8 +8,10 @@ var path = require('path') function splitPath(path) { var parts = path.split(/(\/|\\)/); - if (parts.length > 0 && parts[0] === '') parts.shift(); - return parts; + if (!parts.length) return parts...
more concise code, commented special case and minor cleanup
thlorenz_find-parent-dir
train
js
ad18ce7d7bf585e25858e46264dde29ac359ae65
diff --git a/src/Vkontakte.php b/src/Vkontakte.php index <HASH>..<HASH> 100644 --- a/src/Vkontakte.php +++ b/src/Vkontakte.php @@ -12,8 +12,6 @@ use Psr\Http\Message\ResponseInterface; class Vkontakte extends AbstractProvider { public $scopes = ['email']; - public $uidKey = 'user_id'; - public $responseTyp...
Use JSON only – other types are errors
j4k_oauth2-vkontakte
train
php
0b994af6c8d1f561875d5588a39a893b58730d6e
diff --git a/src/Database/Eloquent/Relations/HasOneOrMany.php b/src/Database/Eloquent/Relations/HasOneOrMany.php index <HASH>..<HASH> 100755 --- a/src/Database/Eloquent/Relations/HasOneOrMany.php +++ b/src/Database/Eloquent/Relations/HasOneOrMany.php @@ -22,15 +22,8 @@ abstract class HasOneOrMany extends BaseHasOneOrMa...
Reverted the changes for multi-database support
topclaudy_compoships
train
php
bb39b3e49cb0a0c54688ad473e509c10c79b4825
diff --git a/modules/cms/menu/Container.php b/modules/cms/menu/Container.php index <HASH>..<HASH> 100644 --- a/modules/cms/menu/Container.php +++ b/modules/cms/menu/Container.php @@ -364,8 +364,10 @@ class Container extends \yii\base\Component implements ArrayAccess $requestPath = $home->alias; } ...
trailing slash is now allowed for all urls as the where processed correctly by the menu resolver.
luyadev_luya
train
php
feba36f5879ac24568f3105f8686d658815b0c03
diff --git a/src/fields/MapField.php b/src/fields/MapField.php index <HASH>..<HASH> 100644 --- a/src/fields/MapField.php +++ b/src/fields/MapField.php @@ -326,7 +326,7 @@ class MapField extends Field implements PreviewableFieldInterface */ public function isValueEmpty ($value, ElementInterface $element): bool { ...
Add isValueEmpty to map model
ethercreative_simplemap
train
php,php
f7c882f527ff979783a43046dc68481f123f4975
diff --git a/test/test_document.rb b/test/test_document.rb index <HASH>..<HASH> 100644 --- a/test/test_document.rb +++ b/test/test_document.rb @@ -6,6 +6,12 @@ class Address key :state, String end +class Person + include MongoMapper::EmbeddedDocument + key :name, String + key :child, Person +end + class Docum...
Added test for recursively embedded documents
mongomapper_mongomapper
train
rb
1c08a9bf14d83cb9bf386a8cc9baceca08b3c8db
diff --git a/src/main/java/org/minimalj/model/annotation/Size.java b/src/main/java/org/minimalj/model/annotation/Size.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/minimalj/model/annotation/Size.java +++ b/src/main/java/org/minimalj/model/annotation/Size.java @@ -17,7 +17,7 @@ import java.lang.annotation.Tar...
Size Annotation must be usable for methods (for method - properties)
BrunoEberhard_minimal-j
train
java
b93846b392170f0a30ec75b9a8694f91163bd0b7
diff --git a/types.go b/types.go index <HASH>..<HASH> 100644 --- a/types.go +++ b/types.go @@ -310,6 +310,7 @@ var AnnotationKnownReservedKeys = []string{ "manifold.co/tool", "manifold.co/package", "manifold.co/environment", + "manifold.co/resource-template", } // Equals checks the equality of another Annotat...
Add resource-template to reserved annotations
manifoldco_go-manifold
train
go
8220c01d4081dc444d7b591728de4df1d7493598
diff --git a/src/Ubiquity/contents/transformation/TransformersManager.php b/src/Ubiquity/contents/transformation/TransformersManager.php index <HASH>..<HASH> 100644 --- a/src/Ubiquity/contents/transformation/TransformersManager.php +++ b/src/Ubiquity/contents/transformation/TransformersManager.php @@ -51,7 +51,6 @@ cla...
Fix tests failure (transformers)
phpMv_ubiquity
train
php
93699f3dc974f3f09921ae3f7da3b82d9b214a7d
diff --git a/userena/urls.py b/userena/urls.py index <HASH>..<HASH> 100644 --- a/userena/urls.py +++ b/userena/urls.py @@ -87,7 +87,7 @@ urlpatterns = patterns('', name='userena_profile_edit'), # View profiles - url(r'^(?P<username>(?![signout|signup|signin])[\.\w]+)/$', + url(r'^(?P<username>(?!si...
Fixed the regular expression to actually exclude signout|signup|signin, instead of usernames that start with the characters 'signoutp'.
bread-and-pepper_django-userena
train
py
398325a21af50adcdd3274e7b6222acab793d7b4
diff --git a/machina/apps/forum/abstract_models.py b/machina/apps/forum/abstract_models.py index <HASH>..<HASH> 100644 --- a/machina/apps/forum/abstract_models.py +++ b/machina/apps/forum/abstract_models.py @@ -54,7 +54,8 @@ class AbstractForum(MPTTModel, ActiveModel): default=...
Forum type choices are now embedded in the model
ellmetha_django-machina
train
py
09ae3e63fae2b6f52297b4c235e3684a1f8e5fb2
diff --git a/prov-xml/src/main/java/org/openprovenance/prov/xml/WasGeneratedBy.java b/prov-xml/src/main/java/org/openprovenance/prov/xml/WasGeneratedBy.java index <HASH>..<HASH> 100644 --- a/prov-xml/src/main/java/org/openprovenance/prov/xml/WasGeneratedBy.java +++ b/prov-xml/src/main/java/org/openprovenance/prov/xml/W...
round tripping of activity, agent, generation for all attributes, all data types
lucmoreau_ProvToolbox
train
java
cf3a3bbf59e190cd0b5d99d35f77f4d6dd2c2af6
diff --git a/maven-plugin/src/main/java/org/kantega/reststop/maven/dist/DebianBuilder.java b/maven-plugin/src/main/java/org/kantega/reststop/maven/dist/DebianBuilder.java index <HASH>..<HASH> 100644 --- a/maven-plugin/src/main/java/org/kantega/reststop/maven/dist/DebianBuilder.java +++ b/maven-plugin/src/main/java/org/...
Added system startup support using update-rc.d in postinst/prerm files.
kantega_reststop
train
java
04d11bf1b68202b0c6bbc0bcb2f6a85c52b0d8f2
diff --git a/src/includes/admin/class-papi-admin-ajax.php b/src/includes/admin/class-papi-admin-ajax.php index <HASH>..<HASH> 100644 --- a/src/includes/admin/class-papi-admin-ajax.php +++ b/src/includes/admin/class-papi-admin-ajax.php @@ -178,7 +178,7 @@ class Papi_Admin_Ajax { $data = json_decode( stripslashes( $...
Fixed so multi properties works with rules ajax
wp-papi_papi
train
php
f52425c3d4ad13a44e44d1419ec195e2bc0e0dfc
diff --git a/non-schema/java/src/org/whattf/checker/UnsupportedFeatureChecker.java b/non-schema/java/src/org/whattf/checker/UnsupportedFeatureChecker.java index <HASH>..<HASH> 100644 --- a/non-schema/java/src/org/whattf/checker/UnsupportedFeatureChecker.java +++ b/non-schema/java/src/org/whattf/checker/UnsupportedFeatu...
Drop warnings about "cite" attr per current spec. The current spec says, the cite attribute is "primarily intended for private use (e.g. by server-side scripts collecting statistics about a site's use of quotations), not for readers". So since the "The cite attribute on the blockquote element is not supported by brow...
validator_validator
train
java
d1f2a668aa36e3fe6753519e81e90e964bdd85e7
diff --git a/themes/phenomic-theme-base/webpack.config.babel.js b/themes/phenomic-theme-base/webpack.config.babel.js index <HASH>..<HASH> 100644 --- a/themes/phenomic-theme-base/webpack.config.babel.js +++ b/themes/phenomic-theme-base/webpack.config.babel.js @@ -159,15 +159,16 @@ export default (config = {}) => { ...
Fix commented out example for global CSS to be valid JS syntax (#<I>) * Fix commented out example for global CSS to be valid JS syntax * Fix commented out example for global CSS to be valid JS syntax (adjustements)
phenomic_phenomic
train
js
85e044a91bf71019d3518c16d1190e705b8dbbab
diff --git a/cumulusci/core/keychain/BaseProjectKeychain.py b/cumulusci/core/keychain/BaseProjectKeychain.py index <HASH>..<HASH> 100644 --- a/cumulusci/core/keychain/BaseProjectKeychain.py +++ b/cumulusci/core/keychain/BaseProjectKeychain.py @@ -32,6 +32,7 @@ class BaseProjectKeychain(BaseConfig): if not conn...
print message about setting connected_app service
SFDO-Tooling_CumulusCI
train
py
e8b5a6472e77382580d58e054ce71c4241b08ae6
diff --git a/lib/ridgepole/diff.rb b/lib/ridgepole/diff.rb index <HASH>..<HASH> 100644 --- a/lib/ridgepole/diff.rb +++ b/lib/ridgepole/diff.rb @@ -1,5 +1,5 @@ class Ridgepole::Diff - PRIMARY_KEY_OPTIONS = %i(id limit default null precision scale collation unsigned comment).freeze + PRIMARY_KEY_OPTIONS = %i(id limit ...
fix: don't treat the `comment` option as a option of primary key ActiveRecord 5 allows to specify the `comment` option on `create_table`, but this option adds the comment for tables not a primary key.
winebarrel_ridgepole
train
rb
88fdc068fdc4aa448a3f231d62b89cc84156625a
diff --git a/js/bam/bamReader.js b/js/bam/bamReader.js index <HASH>..<HASH> 100755 --- a/js/bam/bamReader.js +++ b/js/bam/bamReader.js @@ -304,7 +304,7 @@ var igv = (function (igv) { else { record.qual = []; for (j = 0; j < lseq; ++j) { - ...
Interpret phred scores as bytes, not SAM string
igvteam_igv.js
train
js
3381e8d9129cd403587c060830d006fdf46c31ab
diff --git a/js/ScreenQuad.js b/js/ScreenQuad.js index <HASH>..<HASH> 100644 --- a/js/ScreenQuad.js +++ b/js/ScreenQuad.js @@ -29,7 +29,12 @@ window.ScreenQuad = (() => { if (depth2 <= depth1) { gl_FragColor = texture2D(uTexture2, vUv); } else { - gl_FragColor = texture2D(uTexture1...
Use alpha blend in composite scene screen quad shader
exokitxr_exokit-home
train
js
facf1ca627601a154d363ff837d75edd921236d4
diff --git a/docs/source/conf.py b/docs/source/conf.py index <HASH>..<HASH> 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -39,6 +39,9 @@ extensions = [ 'sphinx.ext.napoleon' ] +# Don't show source files on docs +html_show_sourcelink = False + # Order by source, not alphabetically autodoc_membe...
Don't show source files on live docs
pyrogram_pyrogram
train
py
a8d0d8f33dae99dc5422dc34bd458e63d54e77d6
diff --git a/src/models/room.js b/src/models/room.js index <HASH>..<HASH> 100644 --- a/src/models/room.js +++ b/src/models/room.js @@ -240,6 +240,21 @@ Room.prototype.getMyMembership = function() { return this._syncedMembership; }; +Room.prototype.getDMInviter = function() { + if (this.myUserId) { + c...
provide method on room to help with DM detection with fallback to summary heroes/counts.
matrix-org_matrix-js-sdk
train
js
bc451d0647ea49a968178d21654a8a65905fbf8c
diff --git a/lib/main.js b/lib/main.js index <HASH>..<HASH> 100644 --- a/lib/main.js +++ b/lib/main.js @@ -18,8 +18,8 @@ function capture() { toReturn.push({ function: matches[1], file: matches[2], - line: matches[3], - col: matches[4] + line: parseInt(matches[3]) || 1, + ...
:new: Parse ints for line and col
steelbrain_callsite
train
js,js
e3770253fbc527e6f9cd7b5b506b1858f8debca5
diff --git a/import_aws_sqs_queue_test.go b/import_aws_sqs_queue_test.go index <HASH>..<HASH> 100644 --- a/import_aws_sqs_queue_test.go +++ b/import_aws_sqs_queue_test.go @@ -10,7 +10,7 @@ import ( ) func TestAccAWSSQSQueue_importBasic(t *testing.T) { - resourceName := "aws_sqs_queue.queue-with-defaults" + resource...
provider/aws: Change the resource name expected as part of sqs queue import test
terraform-providers_terraform-provider-aws
train
go
cc1d90da98f4042f3e89d82e5e68b5104b680309
diff --git a/core/lib/generators/refinery/engine/templates/config/routes.rb b/core/lib/generators/refinery/engine/templates/config/routes.rb index <HASH>..<HASH> 100644 --- a/core/lib/generators/refinery/engine/templates/config/routes.rb +++ b/core/lib/generators/refinery/engine/templates/config/routes.rb @@ -8,7 +8,7 ...
Add generated engine namespace into admin url
refinery_refinerycms
train
rb
0a2e3449dbd7ed43ef24a52e109b38fcd070d338
diff --git a/tests/test-headers.js b/tests/test-headers.js index <HASH>..<HASH> 100644 --- a/tests/test-headers.js +++ b/tests/test-headers.js @@ -29,11 +29,13 @@ xhr.onreadystatechange = function() { // Test aborted getAllResponseHeaders this.abort(); assert.equal("", this.getAllResponseHeaders()); + ...
Add tests for early and aborted requests to getResponseHeader.
driverdan_node-XMLHttpRequest
train
js
bb0e70d850208550c86f752f53fd6f7cc2e0d80e
diff --git a/DependencyInjection/SonataBlockExtension.php b/DependencyInjection/SonataBlockExtension.php index <HASH>..<HASH> 100644 --- a/DependencyInjection/SonataBlockExtension.php +++ b/DependencyInjection/SonataBlockExtension.php @@ -30,7 +30,7 @@ class SonataBlockExtension extends Extension /** * {@inh...
Override and use Extension::getConfiguration method The Configuration class constructor needs $defaultContainerTemplates argument. This is not provided on the default Extension::getConfiguration method. The bundle is working, but some functionalities like `app/console config:dump-reference sonata_block` might fail.
sonata-project_SonataBlockBundle
train
php
8c999d05c1529118d2fb66bc4ab8bbfbad023305
diff --git a/autolens/pipeline/phase/phase.py b/autolens/pipeline/phase/phase.py index <HASH>..<HASH> 100644 --- a/autolens/pipeline/phase/phase.py +++ b/autolens/pipeline/phase/phase.py @@ -67,22 +67,6 @@ class AbstractPhase(af.AbstractPhase): self.cosmology = cosmology @property - def variable(self...
moved variable set/get to autofit
Jammy2211_PyAutoLens
train
py
dc52c4be48a33c0d0b0ada26598f0aa83e9fa6c6
diff --git a/datadog_checks_dev/datadog_checks/dev/tooling/commands/release/trello/testable.py b/datadog_checks_dev/datadog_checks/dev/tooling/commands/release/trello/testable.py index <HASH>..<HASH> 100644 --- a/datadog_checks_dev/datadog_checks/dev/tooling/commands/release/trello/testable.py +++ b/datadog_checks_dev/...
Fix infra-integrations team for testable (#<I>)
DataDog_integrations-core
train
py
72495cfb79809078d34d78fabc652fb304f8ba51
diff --git a/src/Widgets/BaseDateTime.php b/src/Widgets/BaseDateTime.php index <HASH>..<HASH> 100644 --- a/src/Widgets/BaseDateTime.php +++ b/src/Widgets/BaseDateTime.php @@ -41,6 +41,7 @@ abstract class BaseDateTime extends BaseFilteredText { return parent::render($this->processDateTime($data)); } +...
CS fix of a CS fix (ie. me fixing the robot 🦸🤖)
artkonekt_appshell
train
php
0a6c40b0b2ebe448b1c97dc1f0d9fab3a1238581
diff --git a/lib/determine-basal/determine-basal.js b/lib/determine-basal/determine-basal.js index <HASH>..<HASH> 100644 --- a/lib/determine-basal/determine-basal.js +++ b/lib/determine-basal/determine-basal.js @@ -492,13 +492,13 @@ var determine_basal = function determine_basal(glucose_status, currenttemp, iob_ ...
print lastBolusAge more often
openaps_oref0
train
js
556d4e98a629c546a0001ce0ff05d96144b8af2f
diff --git a/lib/runnable.js b/lib/runnable.js index <HASH>..<HASH> 100644 --- a/lib/runnable.js +++ b/lib/runnable.js @@ -210,10 +210,10 @@ Runnable.prototype.run = function(fn){ // sync or promise-returning try { - if (!this.pending) { - callFn(this.fn); - } else { + if (this.pending) { d...
refactor negated conditional with else branch
mochajs_mocha
train
js
a6cb556e2180d4b89d50bc1205d80bc01ae2aec3
diff --git a/framework/yii/console/controllers/MigrateController.php b/framework/yii/console/controllers/MigrateController.php index <HASH>..<HASH> 100644 --- a/framework/yii/console/controllers/MigrateController.php +++ b/framework/yii/console/controllers/MigrateController.php @@ -594,7 +594,7 @@ class MigrateControll...
Fixes #<I>: the length of primary key for migration table is too long.
yiisoft_yii2-debug
train
php
20552523f824dea0caada73573309f437c69076b
diff --git a/test/index-spec.js b/test/index-spec.js index <HASH>..<HASH> 100644 --- a/test/index-spec.js +++ b/test/index-spec.js @@ -111,6 +111,7 @@ describe('dacho', () => { }); }); + /** @test {createReaction} */ describe('createReaction', () => { let createReaction = null; beforeEach(() => ...
doc(test): Add comments for esdoc
moqada_dacho
train
js
96c974569b9cfe21dbd9682c2138f1c413347f7a
diff --git a/src/frontend/org/voltdb/dbmonitor/js/voltdb.ui.js b/src/frontend/org/voltdb/dbmonitor/js/voltdb.ui.js index <HASH>..<HASH> 100644 --- a/src/frontend/org/voltdb/dbmonitor/js/voltdb.ui.js +++ b/src/frontend/org/voltdb/dbmonitor/js/voltdb.ui.js @@ -449,6 +449,7 @@ function convertArrayOfObjectsToCSV(args) { ...
VMC-<I>: Fixed issue with Download CSV not working in firefox
VoltDB_voltdb
train
js
bf3fd36b74ccbd9e1ff92c6003246972eba458cc
diff --git a/src/python/pants/backend/codegen/tasks/wire_gen.py b/src/python/pants/backend/codegen/tasks/wire_gen.py index <HASH>..<HASH> 100644 --- a/src/python/pants/backend/codegen/tasks/wire_gen.py +++ b/src/python/pants/backend/codegen/tasks/wire_gen.py @@ -39,7 +39,6 @@ class WireGen(CodeGen, JvmToolTaskMixin): ...
Remove an unused config reference. If needed in the future, it can be added back as an option. Testing Done: CI passes: <URL>
pantsbuild_pants
train
py
f5f4446f801e71d86ecea0ad373de409019059b1
diff --git a/src/java/azkaban/utils/Utils.java b/src/java/azkaban/utils/Utils.java index <HASH>..<HASH> 100644 --- a/src/java/azkaban/utils/Utils.java +++ b/src/java/azkaban/utils/Utils.java @@ -368,8 +368,7 @@ public class Utils { if (period.get(DurationFieldType.years()) > 0) { int years = period.get(DurationF...
Changed "if" to "else if" in Utils.java
azkaban_azkaban
train
java
ae3a1a1b7e78eb1ef60fb8a74c11c13d605b92eb
diff --git a/docs/components/RestrictFocusToChildrenDocs.js b/docs/components/RestrictFocusToChildrenDocs.js index <HASH>..<HASH> 100644 --- a/docs/components/RestrictFocusToChildrenDocs.js +++ b/docs/components/RestrictFocusToChildrenDocs.js @@ -22,7 +22,7 @@ class RestrictFocusToChildrenDocs extends React.Component {...
Add clarity to RestrictFocusToChildrenDocs
mxenabled_mx-react-components
train
js
c6cfed27f67d143dc1664f50ad14a22d9c067f27
diff --git a/airtest/aircv/multiscale_template_matching.py b/airtest/aircv/multiscale_template_matching.py index <HASH>..<HASH> 100644 --- a/airtest/aircv/multiscale_template_matching.py +++ b/airtest/aircv/multiscale_template_matching.py @@ -9,6 +9,8 @@ 3. scale_max: 多尺度模板匹配最大范围,增大可适应更小UI 4. scale_step: 多尺度模...
修复python2除法问题 (cherry picked from commit <I>a7d8ce<I>f8d<I>b8b<I>ee<I>aa<I>b<I>d1)
AirtestProject_Airtest
train
py
8e607d137eedc8503a22fe7044aba9ca6b191718
diff --git a/src/samples/java/BL_Sample.java b/src/samples/java/BL_Sample.java index <HASH>..<HASH> 100644 --- a/src/samples/java/BL_Sample.java +++ b/src/samples/java/BL_Sample.java @@ -77,6 +77,37 @@ public class BL_Sample { return null; } + public String fpSwitchInReturningIfChain(String s, int t)...
add fp BL case having to do with chained ifs with always return exits and embedded switch
mebigfatguy_fb-contrib
train
java
0ab89e9d4d7a931f21f625788d2d94f8f7be2b80
diff --git a/agents/lib/common/right_link_log.rb b/agents/lib/common/right_link_log.rb index <HASH>..<HASH> 100644 --- a/agents/lib/common/right_link_log.rb +++ b/agents/lib/common/right_link_log.rb @@ -81,8 +81,8 @@ module RightScale @initialized = true prog_name = Nanite::Log.file.match(/nanite\.(.*...
Fixed a minor bug with RightLinkLogger.
rightscale_right_link
train
rb
8aad31c698f12d2947958aa4778ad5759808f9e3
diff --git a/lib/Filter.php b/lib/Filter.php index <HASH>..<HASH> 100644 --- a/lib/Filter.php +++ b/lib/Filter.php @@ -3,24 +3,25 @@ namespace Timber; /** - * Class provides different commonly used in Wordpress development + * Class provides different commonly used in WordPress development */ -class Filter -{ +cl...
ref #<I> -- some cleanup to PR
timber_timber
train
php
93b01edd4f7144accdd067387e8b489a3f4b2435
diff --git a/cmd/helm/helm.go b/cmd/helm/helm.go index <HASH>..<HASH> 100644 --- a/cmd/helm/helm.go +++ b/cmd/helm/helm.go @@ -14,7 +14,7 @@ import ( const ( homeEnvVar = "HELM_HOME" defaultHome = "$HOME/.helm" // FIXME: is $HOME windows compatible? - hostEnvVar = "TILLER_HOST" + hostEnvVar = "HELM_HOST" defa...
fix(helm): change TILLER_HOST to HELM_HOST This makes the naming of client-side environment variables consistent.
helm_helm
train
go
7ef967c4f25b8aa30a8c35ec4cd854546b4648c4
diff --git a/lib/rails_pdate/p_date.rb b/lib/rails_pdate/p_date.rb index <HASH>..<HASH> 100644 --- a/lib/rails_pdate/p_date.rb +++ b/lib/rails_pdate/p_date.rb @@ -62,19 +62,6 @@ class PDate alias_method :default_inspect, :inspect alias_method :inspect, :readable_inspect - # Converts a Date instance to a Time, ...
Remove to_time method of PDate
mohsen-alizadeh_rails-pdate
train
rb
2fd940625e313736b9fbdbe06efd716402367774
diff --git a/invocations/testing.py b/invocations/testing.py index <HASH>..<HASH> 100644 --- a/invocations/testing.py +++ b/invocations/testing.py @@ -45,7 +45,7 @@ def integration(c, module=None, runner=None, opts=None, pty=True): @task -def watch_tests(c, module=None): +def watch_tests(c, module=None, opts=None)...
Pass-thru the opts flag in watch_tests
pyinvoke_invocations
train
py
48ecbef41007cb1330124438477514725b9c6c45
diff --git a/pymola/backends/casadi/api.py b/pymola/backends/casadi/api.py index <HASH>..<HASH> 100644 --- a/pymola/backends/casadi/api.py +++ b/pymola/backends/casadi/api.py @@ -125,16 +125,11 @@ def _save_model(model_folder: str, model_name: str, model: Model): library_name = '{}_{}'.format(model_name, o) ...
Included Jacobian information in generated code Note that this commit requires CasADi at revision <I>fd4c or newer (Sep <I>, <I>)
pymoca_pymoca
train
py
01dd0ad88a69c297ffebaf0dce86b418a3eafb25
diff --git a/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticSearchEngine.php b/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticSearchEngine.php index <HASH>..<HASH> 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticSearchEngine.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Elastic/ElasticSearchEngine.php @@ -2...
#PHRAS-<I> #time 1m cs to force travis rebuild...
alchemy-fr_Phraseanet
train
php
6640eab9dc8b4ff62ae67fd16bb598ffa811d955
diff --git a/config/src/main/java/org/springframework/security/config/authentication/PasswordEncoderParser.java b/config/src/main/java/org/springframework/security/config/authentication/PasswordEncoderParser.java index <HASH>..<HASH> 100644 --- a/config/src/main/java/org/springframework/security/config/authentication/P...
SEC-<I>: Added {ssha} support to PasswordEncoderParser.
spring-projects_spring-security
train
java
891a35939b58264b5bf714a4ccbc51089948c38a
diff --git a/src/core.js b/src/core.js index <HASH>..<HASH> 100644 --- a/src/core.js +++ b/src/core.js @@ -139,25 +139,6 @@ } /** - * Turns Custom Components into their Corresponding Templates - */ - this.componentsToHTML = function() { - for(var component in this.$comp...
delete componenets to html
kbrsh_moon
train
js
188c31d1a58c3ee42ec2b77c5858d5c35241d735
diff --git a/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/CacheConfig.java b/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/CacheConfig.java index <HASH>..<HASH> 100644 --- a/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/CacheConfig.java +++ b/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/CacheConfig.java @@ -12,12 +12...
fix Map synchronization by using ConcurrentHashMap
OpenLiberty_open-liberty
train
java
73b19e42bc94174a9595f58b8d5767058ef1468b
diff --git a/ng/buffer.py b/ng/buffer.py index <HASH>..<HASH> 100644 --- a/ng/buffer.py +++ b/ng/buffer.py @@ -12,12 +12,14 @@ class Buffer(urwid.AttrMap): self.typename = name self.bindings = {} urwid.AttrMap.__init__(self,widget,{}) - def info(self): + return "" def refresh...
removed info in favour of __str__()
pazz_alot
train
py
b5ff299d4348e1a25e710cb04a64068fd8df6d67
diff --git a/Neos.Flow/Classes/Http/Client/Browser.php b/Neos.Flow/Classes/Http/Client/Browser.php index <HASH>..<HASH> 100644 --- a/Neos.Flow/Classes/Http/Client/Browser.php +++ b/Neos.Flow/Classes/Http/Client/Browser.php @@ -146,6 +146,11 @@ class Browser $location = $response->getHeader('Location'); ...
BUGFIX: fix browser to be able to handle relative URLs
neos_flow-development-collection
train
php
3edd611a2ce5fa908f0d58d745026af6348e9fed
diff --git a/sources/scalac/symtab/Type.java b/sources/scalac/symtab/Type.java index <HASH>..<HASH> 100644 --- a/sources/scalac/symtab/Type.java +++ b/sources/scalac/symtab/Type.java @@ -1896,15 +1896,7 @@ public class Type implements Modifiers, Kinds, TypeTags, EntryTags { case UnboxedType(int tag1): ...
- Removed subtyping of value types
scala_scala
train
java
a1436552b3b26f6cd40d58b90c25c3b4b068ec98
diff --git a/plenum/test/txn_author_agreement/acceptance/test_taa_acceptance_validation.py b/plenum/test/txn_author_agreement/acceptance/test_taa_acceptance_validation.py index <HASH>..<HASH> 100644 --- a/plenum/test/txn_author_agreement/acceptance/test_taa_acceptance_validation.py +++ b/plenum/test/txn_author_agreemen...
INDY-<I>: fix test_taa_acceptance_allowed_when_disabled
hyperledger_indy-plenum
train
py
853258e788743e7a2c201987e572fba69c4fdde3
diff --git a/src/angular-ui-query-builder-core.js b/src/angular-ui-query-builder-core.js index <HASH>..<HASH> 100644 --- a/src/angular-ui-query-builder-core.js +++ b/src/angular-ui-query-builder-core.js @@ -527,7 +527,7 @@ angular.module('angular-ui-query-builder',[]) // Branch CRUD {{{ $ctrl.add = ()=> { if ...
BUGFIX: Newly added query elements wouldnt show up
MomsFriendlyDevCo_angular-ui-query-builder
train
js
98f6c442434195779e0ef9359d063a0b01747119
diff --git a/src/main/java/org/jfree/graphics2d/svg/SVGGraphics2D.java b/src/main/java/org/jfree/graphics2d/svg/SVGGraphics2D.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/jfree/graphics2d/svg/SVGGraphics2D.java +++ b/src/main/java/org/jfree/graphics2d/svg/SVGGraphics2D.java @@ -3024,10 +3024,10 @@ public fi...
drawArc and fillArc draw PIE arcs now. fillArc() examples from Java: <URL>
jfree_jfreesvg
train
java
193e66ba51564acd6a70588cd8f0133f790abfb7
diff --git a/imgaug/augmenters/size.py b/imgaug/augmenters/size.py index <HASH>..<HASH> 100644 --- a/imgaug/augmenters/size.py +++ b/imgaug/augmenters/size.py @@ -162,6 +162,9 @@ def _handle_position_parameter(position): def Scale(*args, **kwargs): + import warnings + warnings.warn(DeprecationWarning("'Scale...
Mark Scale as deprecated
aleju_imgaug
train
py
41273370a49bdb0d0712ee92ef500862c5c9c452
diff --git a/app/scripts/TrackRenderer.js b/app/scripts/TrackRenderer.js index <HASH>..<HASH> 100644 --- a/app/scripts/TrackRenderer.js +++ b/app/scripts/TrackRenderer.js @@ -411,7 +411,7 @@ class TrackRenderer extends React.Component { } addZoom() { - if (!this.elementSelection) return; + if (!this.eleme...
Do not add the zoom behavior when zooming is disabled
higlass_higlass
train
js
c1f4e6563c85839dbbc3ff1a4e8558c283e90a67
diff --git a/api/config/routing.php b/api/config/routing.php index <HASH>..<HASH> 100644 --- a/api/config/routing.php +++ b/api/config/routing.php @@ -4,6 +4,10 @@ namespace monad\api; return function($m) use($project) { $m->connect('/monad/page/(%s:language)/(%s:slug)/', 'monad\api\Page'); + $m->connect( + ...
add body-specific route so we can use it in ng-include (we also need the json variant for stuff like setting the title)
monomelodies_monad
train
php
39a736e25bc8065359258f9af1ec7ccb04e62f88
diff --git a/gbdxtools/images/ipe_image.py b/gbdxtools/images/ipe_image.py index <HASH>..<HASH> 100644 --- a/gbdxtools/images/ipe_image.py +++ b/gbdxtools/images/ipe_image.py @@ -67,6 +67,7 @@ class IpeImage(DaskImage, Container): image = self[:, bounds[1]:bounds[3], bounds[0]:bounds[2]] # a dask array tha...
need to attach ipe_op
DigitalGlobe_gbdxtools
train
py
18fa15cef14c66de395dab5fb2c7991517fce205
diff --git a/src/utils.js b/src/utils.js index <HASH>..<HASH> 100644 --- a/src/utils.js +++ b/src/utils.js @@ -1,5 +1,11 @@ +const camelToDashMap = new Map(); export function camelToDash(str) { - return str.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase(); + let result = camelToDashMap.get(str); + if (result === u...
fix(utils): memonize camelToDash result
hybridsjs_hybrids
train
js
5f5338bc1bd92a71bd9fceb5c450a0312de8e885
diff --git a/src/test/java/com/hubspot/jinjava/util/ChunkResolverTest.java b/src/test/java/com/hubspot/jinjava/util/ChunkResolverTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/com/hubspot/jinjava/util/ChunkResolverTest.java +++ b/src/test/java/com/hubspot/jinjava/util/ChunkResolverTest.java @@ -281,4 +281,12...
Add test for cancelling backslashes
HubSpot_jinjava
train
java
99e186d72655b1d52d94b277e4f7e64c7ea8ce71
diff --git a/silverberg/client.py b/silverberg/client.py index <HASH>..<HASH> 100644 --- a/silverberg/client.py +++ b/silverberg/client.py @@ -138,17 +138,6 @@ class CQLClient(object): else: return val - def _find_specific(col): - col_value_type = schema.value_types.get...
Only unmarshal based on the CqlResult.schema metadata.
rackerlabs_silverberg
train
py
6c3bc5c35b03beecd85ce2eca055a12141af5077
diff --git a/src/calmjs/parse/lexers/es5.py b/src/calmjs/parse/lexers/es5.py index <HASH>..<HASH> 100644 --- a/src/calmjs/parse/lexers/es5.py +++ b/src/calmjs/parse/lexers/es5.py @@ -80,7 +80,7 @@ PATT_LINE_CONTINUATION = re.compile( r'\\(\n|\r(?!\n)|\u2028|\u2029|\r\n)', flags=re.S) -broken_string_patt = re.c...
Keep the names consistent - Should have gotten this committed, but it was pushed to master already.
calmjs_calmjs.parse
train
py
3a6b4bc718c05457c9d852defcb9524b1512b2ea
diff --git a/tests/test_sentinel.py b/tests/test_sentinel.py index <HASH>..<HASH> 100644 --- a/tests/test_sentinel.py +++ b/tests/test_sentinel.py @@ -66,15 +66,13 @@ class SentinelTestCluster: @pytest.fixture() -def cluster(request, master_ip): - def teardown(): - aioredis.sentinel.Redis = saved_Redis +...
Ensure loop teardown works correctly for sentinel tests.
aio-libs_aioredis
train
py
6f1649993fe144213e98d47e07f59da7cf6dcd82
diff --git a/src/components/preferences/index.js b/src/components/preferences/index.js index <HASH>..<HASH> 100644 --- a/src/components/preferences/index.js +++ b/src/components/preferences/index.js @@ -177,6 +177,15 @@ const preferences = services => { }); }); + $container.on('change', '...
PORT PHRAS-<I> and PHRAS-<I> to <I>
alchemy-fr_Phraseanet-production-client
train
js
303b1a63c7b7f16d08e83168e3f394a2c6a56436
diff --git a/src/test/org/openscience/cdk/renderer/color/PartialAtomicChargeColorsTest.java b/src/test/org/openscience/cdk/renderer/color/PartialAtomicChargeColorsTest.java index <HASH>..<HASH> 100644 --- a/src/test/org/openscience/cdk/renderer/color/PartialAtomicChargeColorsTest.java +++ b/src/test/org/openscience/cdk...
The default atom color is white, not black, according to the implementation
cdk_cdk
train
java
ff9b1e5eba2eba27b9dca8810cddac4898ff85b6
diff --git a/abilian/web/frontend.py b/abilian/web/frontend.py index <HASH>..<HASH> 100644 --- a/abilian/web/frontend.py +++ b/abilian/web/frontend.py @@ -498,8 +498,9 @@ class Module(object): return redirect("%s/%d" % (self.url, entity_id)) elif form.validate(): form.populate_obj(entity) - acti...
entity edit: send flush before sending activity, like it's done in entity_new edit on an object is complete only after flush events handlers (if any) have been called.
abilian_abilian-core
train
py
fb00d77c179909617c05eb715965c2faa6d1eda5
diff --git a/pkg/client/unversioned/doc.go b/pkg/client/unversioned/doc.go index <HASH>..<HASH> 100644 --- a/pkg/client/unversioned/doc.go +++ b/pkg/client/unversioned/doc.go @@ -23,12 +23,13 @@ Most consumers should use the Config object to create a Client: import ( client "k8s.io/kubernetes/pkg/client/u...
updated document as far as I dug into codes I figured it out that the config exists in `restclient` package
kubernetes_kubernetes
train
go
b32830c1a1d5dabde6c85aaef4e31630fef94d10
diff --git a/test/letter_tests.py b/test/letter_tests.py index <HASH>..<HASH> 100644 --- a/test/letter_tests.py +++ b/test/letter_tests.py @@ -143,7 +143,8 @@ class Letters(unittest.TestCase): print( u"".join(utf8.get_letters(u"இந்த")) ) for word in u"இந்த (C) tamil முத்தையா அண்ணாமலை 2013 இந்த ஒரு...
more Win specific Python3 print stmt filter
Ezhil-Language-Foundation_open-tamil
train
py
14309f94b173a78078307cb61173c2e4939aaaf2
diff --git a/wsgiservice/resource.py b/wsgiservice/resource.py index <HASH>..<HASH> 100644 --- a/wsgiservice/resource.py +++ b/wsgiservice/resource.py @@ -464,13 +464,13 @@ class Help(Resource): retval = {} for param in method_params: is_path_param = '{' + param + '}' in res._path + ...
resource.py (Help._get_parameters): Mark parameters with validation rules as mandatory.
pneff_wsgiservice
train
py
bbed680ee939bf65a4216692b02433dca82c5315
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index <HASH>..<HASH> 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -17,7 +17,7 @@ Travis.logger = Logger.new(StringIO.new) RSpec.configure do |config| config.after :each do - Travis.config.notifications.clear + Travis.instance_variable_s...
try fixing failing specs on jruby by reseting Travis.config
travis-ci_travis-core
train
rb
be4bef39543eb5bc391899e18ac95b65627a46f7
diff --git a/backend/fleet/state.go b/backend/fleet/state.go index <HASH>..<HASH> 100644 --- a/backend/fleet/state.go +++ b/backend/fleet/state.go @@ -3,6 +3,7 @@ package fleet import ( "errors" "fmt" + "strings" "sync" "time" @@ -157,10 +158,13 @@ func printUnitSubState(name string, outchan chan *schema.Uni...
fix(state): ignore intermittent timeouts when polling for UnitState
deis_deis
train
go
f5f1178e4d29866c8582fc1a4996a99276346afe
diff --git a/plugins/telegrambot.js b/plugins/telegrambot.js index <HASH>..<HASH> 100644 --- a/plugins/telegrambot.js +++ b/plugins/telegrambot.js @@ -49,8 +49,8 @@ Actor.prototype.processAdvice = function(advice) { Actor.prototype.verifyQuestion = function(msg, text) { this.chatId = msg.chat.id; - if (text[1] i...
Making commands insensitive-case Making the input commands insensitive-case. While calling the telegram robot using the mobile device, the commands doesn't seem to work because the phone inputs the first character in upper case. Now, commands are allowed in any-case.
askmike_gekko
train
js
de6d997d19a57a99cb272ca72e1a8ed4b91e5fb9
diff --git a/rollup.config.js b/rollup.config.js index <HASH>..<HASH> 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -23,7 +23,7 @@ export default { format: 'cjs', plugins: [ babel({ - //include: [ 'src/**', 'node_modules/acorn/**' ] + include: [ 'src/**', 'node_modules/acorn/**' ] }), npm({
only transpile own source and acorn
rollup_rollup
train
js
9917020d150982dba17ca493b36a1a19b7d4bd46
diff --git a/src/main/java/org/jbake/launcher/JettyServer.java b/src/main/java/org/jbake/launcher/JettyServer.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/jbake/launcher/JettyServer.java +++ b/src/main/java/org/jbake/launcher/JettyServer.java @@ -6,9 +6,7 @@ import org.eclipse.jetty.server.ServerConnector; ...
#8 clean up unused imports.
jbake-org_jbake
train
java
8bfad1e6ccd7992961e6b8d62407ec7b66140819
diff --git a/kernel/private/classes/ezcontentobjectstategroup.php b/kernel/private/classes/ezcontentobjectstategroup.php index <HASH>..<HASH> 100644 --- a/kernel/private/classes/ezcontentobjectstategroup.php +++ b/kernel/private/classes/ezcontentobjectstategroup.php @@ -609,6 +609,10 @@ class eZContentObjectStateGroup ...
Fixed #<I>: Object State Group Objects ordering not working
ezsystems_ezpublish-legacy
train
php
f7944b6c48437fdae88602e22817fca5ee0ce7e8
diff --git a/sql-migrate/command_new.go b/sql-migrate/command_new.go index <HASH>..<HASH> 100644 --- a/sql-migrate/command_new.go +++ b/sql-migrate/command_new.go @@ -77,11 +77,18 @@ func CreateMigration(name string) error { } fileName := fmt.Sprintf("%s-%s.sql", time.Now().Format("20060102150405"), strings.TrimS...
Output the path to the new migration on creation
rubenv_sql-migrate
train
go
8b1793012d8cf862c4e6e3751faf039f6d9268d0
diff --git a/telemetry/telemetry/core/browser_options.py b/telemetry/telemetry/core/browser_options.py index <HASH>..<HASH> 100644 --- a/telemetry/telemetry/core/browser_options.py +++ b/telemetry/telemetry/core/browser_options.py @@ -42,8 +42,6 @@ class BrowserFinderOptions(optparse.Values): self.profiler = None ...
[Telemetry] Cleanup: remove unused --report_root_metrics flag The only reason this flag is still around is because the buildbots still pass it to Telemetry. BUG=None Review URL: <URL>
catapult-project_catapult
train
py
0254987b7077646516bffac274294d1dfd98c998
diff --git a/lib/Model.php b/lib/Model.php index <HASH>..<HASH> 100644 --- a/lib/Model.php +++ b/lib/Model.php @@ -54,7 +54,7 @@ * @license See http://agiletoolkit.org/about/license * **/ -class Model extends AbstractModel implements ArrayAccess,Iterator { +class Model extends AbstractModel implements ArrayAcces...
allow (un)serialization of models. Fix mongo's ref
atk4_atk4
train
php
fa06e5f5913447d2789fe9b0977c00619bc3820c
diff --git a/src/Error/GraphQLException.php b/src/Error/GraphQLException.php index <HASH>..<HASH> 100644 --- a/src/Error/GraphQLException.php +++ b/src/Error/GraphQLException.php @@ -66,7 +66,7 @@ class GraphQLException extends AbstractException implements SerializationInterfa /** * Extension fields to add t...
Fix some type-hint issues in GraphQLException
digiaonline_graphql-php
train
php
902bf9a10189044a4f77c384f954755e5821a000
diff --git a/packages/blueprint-gatekeeper/app/models/Account.js b/packages/blueprint-gatekeeper/app/models/Account.js index <HASH>..<HASH> 100644 --- a/packages/blueprint-gatekeeper/app/models/Account.js +++ b/packages/blueprint-gatekeeper/app/models/Account.js @@ -166,8 +166,13 @@ schema.methods.isVerificationTokenEx...
Check if token is the same as the one stored
onehilltech_blueprint
train
js
d3eda9b2d1917ba5184726a916facd553939575f
diff --git a/gstreamer.py b/gstreamer.py index <HASH>..<HASH> 100644 --- a/gstreamer.py +++ b/gstreamer.py @@ -45,10 +45,21 @@ class GstMediaInfo(MediaInfo): self.inError = True self.finish() elif t == gst.MESSAGE_EOS: + self.on_eos() + + def on_eos(self): + raw = self.bin.query_position( + gst....
gstreamer: fall back to query_position if _duration fails
bwesterb_mirte
train
py
7671fe5d7fe80b238916c9dca5277bdf23da7780
diff --git a/test/test_verbs.rb b/test/test_verbs.rb index <HASH>..<HASH> 100644 --- a/test/test_verbs.rb +++ b/test/test_verbs.rb @@ -63,7 +63,7 @@ class TestVerbs < Test::Unit::TestCase def test_regular_non_doubled_ending_consonant assert_equal 'fixes', Verbs::Conjugator.conjugate(:fix, :tense => :present, :p...
Assuming this was a typo in Mr. Biezemans's fork.
rossmeissl_verbs
train
rb
2086470e316d44afa8bb66f01e5b4631f054a991
diff --git a/src/components/Modal/Modal.js b/src/components/Modal/Modal.js index <HASH>..<HASH> 100644 --- a/src/components/Modal/Modal.js +++ b/src/components/Modal/Modal.js @@ -46,11 +46,10 @@ export default class Modal extends Component { * Specify the content of the modal header title. */ modalHead...
fix(Modal): Allow components as modal heading (#<I>) * fix(Modal): Allow components as modal heading * fix(Modal): Any renderable type for label
carbon-design-system_carbon-components-react
train
js
3a9451c14578154ab2669bea391e8502b2894aca
diff --git a/src/test/moment/relative_time.js b/src/test/moment/relative_time.js index <HASH>..<HASH> 100644 --- a/src/test/moment/relative_time.js +++ b/src/test/moment/relative_time.js @@ -150,7 +150,6 @@ test('custom thresholds', function (assert) { moment.relativeTimeThreshold('M', 11); }); -/* TGJG Disable...
Update relative_time.js Test case re-enabled.
moment_moment
train
js
876bd8536578abfa228e853eb3e344b8372c0a5b
diff --git a/closure/goog/events/listenable.js b/closure/goog/events/listenable.js index <HASH>..<HASH> 100644 --- a/closure/goog/events/listenable.js +++ b/closure/goog/events/listenable.js @@ -23,6 +23,9 @@ goog.provide('goog.events.ListenableKey'); /** @suppress {extraRequire} */ goog.require('goog.events.EventId'...
Forward declare in listenable.js so that it can compile without deps.js. ------------- Created by MOE: <URL>
google_closure-library
train
js
3a75bbf4db29acbd40ba6f9006113aa65e5d199e
diff --git a/webhook.go b/webhook.go index <HASH>..<HASH> 100644 --- a/webhook.go +++ b/webhook.go @@ -326,7 +326,7 @@ func handleHook(h *hook.Hook, headers, query, payload *map[string]interface{}, b log.Printf("executing %s (%s) with arguments %q and environment %s using %s as cwd\n", h.ExecuteCommand, cmd.Path, c...
Change to CombinedOutput to consume Stderr as well
adnanh_webhook
train
go
20d5417d6562e7eed320d4413f58c9995d65a928
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -72,7 +72,7 @@ language = None exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] # The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'sphinx' +pygments_style = 'manni' ...
Update conf.py manni pygment style
tmoerman_arboreto
train
py
da0be47812ce860c36c481ffb5c20a12464fadbe
diff --git a/addon/components/ember-cli-spinner.js b/addon/components/ember-cli-spinner.js index <HASH>..<HASH> 100644 --- a/addon/components/ember-cli-spinner.js +++ b/addon/components/ember-cli-spinner.js @@ -28,7 +28,6 @@ export default Component.extend({ didInsertElement: function () { let spinner = this.ge...
Fix 'color' is defined but never used
ajainvivek_ember-cli-spinner
train
js
3b5dc8ef67f2d974d0e724409bfcb600b8810422
diff --git a/scope/analyze.py b/scope/analyze.py index <HASH>..<HASH> 100644 --- a/scope/analyze.py +++ b/scope/analyze.py @@ -682,4 +682,4 @@ def chi_squared(parameters, parameter_names, observed_spectra, aperture_mapping, ) logging.debug("Total \chi^2: {chi_sq}, n_dof: {ndof}".format(chi_sq=total_...
Minimise reduced \chi^2
andycasey_sick
train
py
b75f51461f640094740f2f01ef19a6e71ffe85b5
diff --git a/Entity/ChatRepository.php b/Entity/ChatRepository.php index <HASH>..<HASH> 100755 --- a/Entity/ChatRepository.php +++ b/Entity/ChatRepository.php @@ -71,4 +71,20 @@ class ChatRepository extends EntityRepository $em->persist($chat); $em->flush(); } -} \ No newline at end of file + ...
Update ChatRepository Add function to find my first message in a chat
sopinetchat_SopinetChatBundle
train
php
c35f07bdd368a8ea50b16d76a657fbdbb720f875
diff --git a/hbs_helpers/js_cms.js b/hbs_helpers/js_cms.js index <HASH>..<HASH> 100644 --- a/hbs_helpers/js_cms.js +++ b/hbs_helpers/js_cms.js @@ -9,8 +9,7 @@ __templating_engine.registerHelper('js_cms', function(cmsfile) { if(files.length > 0){ var fileInCms = files[0].match(/cms\/(.*)\.([^\\/]+)$/)[1] - data ...
changed how js_cms work
Gottwik_Enduro
train
js
75f5cbd45ae0f864088ed45a36c7f5ad2b49c7ff
diff --git a/internal/devicescale/impl_unix.go b/internal/devicescale/impl_unix.go index <HASH>..<HASH> 100644 --- a/internal/devicescale/impl_unix.go +++ b/internal/devicescale/impl_unix.go @@ -26,23 +26,23 @@ import ( "strings" ) -type windowManager int +type desktop int const ( - windowManagerUnknown windowM...
devicescale: Rename windowManager -> desktop
hajimehoshi_ebiten
train
go
1edcb44286d138ff32bc8cade466147b889faec6
diff --git a/src/Component/Checker/HeaderCheckerManager.php b/src/Component/Checker/HeaderCheckerManager.php index <HASH>..<HASH> 100644 --- a/src/Component/Checker/HeaderCheckerManager.php +++ b/src/Component/Checker/HeaderCheckerManager.php @@ -33,7 +33,7 @@ final class HeaderCheckerManager /** * HeaderChe...
Apply fixes from StyleCI (#<I>) [ci skip] [skip ci]
web-token_jwt-framework
train
php