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 |
|---|---|---|---|---|---|
1ee68103ec79825499657b0d6ad4d97ce299f13c | diff --git a/lib/awesome_print/formatters/hash_formatter.rb b/lib/awesome_print/formatters/hash_formatter.rb
index <HASH>..<HASH> 100644
--- a/lib/awesome_print/formatters/hash_formatter.rb
+++ b/lib/awesome_print/formatters/hash_formatter.rb
@@ -32,7 +32,7 @@ module AwesomePrint
end
def multiline_hash
... | Multilines should use string#join rather than concat << | awesome-print_awesome_print | train | rb |
1123f59d852c3e7361c23f3182ade4fbdf0f28f0 | diff --git a/cloudfoundry-maven-plugin/src/main/java/org/cloudfoundry/maven/AbstractCloudFoundryMojo.java b/cloudfoundry-maven-plugin/src/main/java/org/cloudfoundry/maven/AbstractCloudFoundryMojo.java
index <HASH>..<HASH> 100644
--- a/cloudfoundry-maven-plugin/src/main/java/org/cloudfoundry/maven/AbstractCloudFoundryMo... | fixing a typo in maven plugin warning message: passwword -> password | cloudfoundry_cf-java-client | train | java |
17339fe5ae4eb3f9058dfc9a0bab0b37987d06c6 | diff --git a/src/js/lib/Case.js b/src/js/lib/Case.js
index <HASH>..<HASH> 100644
--- a/src/js/lib/Case.js
+++ b/src/js/lib/Case.js
@@ -14,6 +14,16 @@ quail.lib.Case = (function () {
this.listeners = {};
this.attributes = attributes;
+ // Dispatch a resolved event if the case is initiated with a sta... | Dispatch a resolved event from a Case on initialization. | quailjs_quail | train | js |
4ed00e0d443991d148f0e659f95fce130454d6b9 | diff --git a/src/SALib/sample/morris/__init__.py b/src/SALib/sample/morris/__init__.py
index <HASH>..<HASH> 100644
--- a/src/SALib/sample/morris/__init__.py
+++ b/src/SALib/sample/morris/__init__.py
@@ -190,6 +190,22 @@ def generate_trajectory(group_membership, num_levels=4):
def compute_b_star(J, x_star, delta, B, ... | Included compute_b_star docstring | SALib_SALib | train | py |
e517bb21c15fb292a2268eb157af66ef6d102dc6 | diff --git a/src/app/Models/User.php b/src/app/Models/User.php
index <HASH>..<HASH> 100644
--- a/src/app/Models/User.php
+++ b/src/app/Models/User.php
@@ -76,6 +76,11 @@ class User extends Authenticatable
return trim($this->first_name.' '.$this->last_name);
}
+ public function getLanguageAttribute()
... | added getLanguageAttribute to User model | laravel-enso_Core | train | php |
bde0363b51bfa7bb6facac1185c9a687ff952e36 | diff --git a/artifacts/exceptions.py b/artifacts/exceptions.py
index <HASH>..<HASH> 100644
--- a/artifacts/exceptions.py
+++ b/artifacts/exceptions.py
@@ -16,13 +16,20 @@ Exceptions raised by the Artifacts library.
from __future__ import print_function, division
+__all__ = [
+ 'ArtifactsError',
+ 'Artifactor... | Add __all__ variable to enforce ordering in docs | smarter-travel-media_stac | train | py |
4932617180a54ac6990bde00d16220e6269ac1fc | diff --git a/consumer_group.go b/consumer_group.go
index <HASH>..<HASH> 100644
--- a/consumer_group.go
+++ b/consumer_group.go
@@ -732,6 +732,9 @@ func (s *consumerGroupSession) heartbeatLoop() {
pause := time.NewTicker(s.parent.config.Consumer.Group.Heartbeat.Interval)
defer pause.Stop()
+ retryBackoff := time.N... | fix: ensure backoff timer is re-used
Unlikely to cause an issue in Sarama unless the user explicitly set
Metadata.Retry.Backoff especially high and was hitting lots of retry
conditions, but no harm in guarding against this.
Ref: <URL> | Shopify_sarama | train | go |
85a69c02600deda1794be10d9030616079c982b0 | diff --git a/code/controllers/CMSPageAddController.php b/code/controllers/CMSPageAddController.php
index <HASH>..<HASH> 100644
--- a/code/controllers/CMSPageAddController.php
+++ b/code/controllers/CMSPageAddController.php
@@ -51,7 +51,9 @@ class CMSPageAddController extends CMSPageEditController {
"child//$child... | ENHANCEMENT: add page icons for tree dropdown field when creating a new page and setting its parent | silverstripe_silverstripe-siteconfig | train | php |
23f11434b1bec8e408a4713c102cda36505bc1c3 | diff --git a/pysysinfo/memcached.py b/pysysinfo/memcached.py
index <HASH>..<HASH> 100644
--- a/pysysinfo/memcached.py
+++ b/pysysinfo/memcached.py
@@ -55,7 +55,7 @@ class MemcachedInfo:
self._conn = telnetlib.Telnet(self._host, self._port,
connTimeout)
... | Bug Fix in MemcachedInfo for Python versions < <I>. | aouyar_PyMunin | train | py |
9bb24c61b9082c745be75043f7668222df37b9be | diff --git a/source/rafcon/gui/mygaphas/items/state.py b/source/rafcon/gui/mygaphas/items/state.py
index <HASH>..<HASH> 100644
--- a/source/rafcon/gui/mygaphas/items/state.py
+++ b/source/rafcon/gui/mygaphas/items/state.py
@@ -889,6 +889,10 @@ class NameView(Element):
self._view = self.canvas.get_first_vie... | refactor(gaphas): Add transparency property to NameView | DLR-RM_RAFCON | train | py |
9c5b0fea88899a750b5b2ac8d9f0516f927b71d8 | diff --git a/lettuce/parser.py b/lettuce/parser.py
index <HASH>..<HASH> 100644
--- a/lettuce/parser.py
+++ b/lettuce/parser.py
@@ -718,6 +718,8 @@ def parse(string=None, filename=None, token=None, lang=None):
return u'|'
elif token == r'\n':
return u'\n'
+ elif token == r'\\':
... | Allow escaped backslashes in features | aloetesting_aloe_django | train | py,py |
87701bffe3e5ee045a68152e8975f4c07b577cc2 | diff --git a/src/webroot/cms/dashboard/modules/inbox.js b/src/webroot/cms/dashboard/modules/inbox.js
index <HASH>..<HASH> 100644
--- a/src/webroot/cms/dashboard/modules/inbox.js
+++ b/src/webroot/cms/dashboard/modules/inbox.js
@@ -44,6 +44,9 @@ YUI.add("dashboard.inbox", function (Y) {
"value": Supra.Intl.get(["das... | #<I> Show dashboard notification block only if there are messages | sitesupra_sitesupra | train | js |
8552e7a3e23f3ad30a728751a745bc21149b9d4d | diff --git a/src/Base/Application.php b/src/Base/Application.php
index <HASH>..<HASH> 100644
--- a/src/Base/Application.php
+++ b/src/Base/Application.php
@@ -60,7 +60,7 @@ class Application extends BaseApplication implements ApplicationContract
*/
public function resourcePath($path = '')
{
- ret... | Fixed a bug in the resource path | matthewbdaly_artisan-standalone | train | php |
4811f9fdd6d587d534b8910c41233e1a074a5f62 | diff --git a/privilege.go b/privilege.go
index <HASH>..<HASH> 100644
--- a/privilege.go
+++ b/privilege.go
@@ -28,8 +28,9 @@ const (
ERROR_NOT_ALL_ASSIGNED syscall.Errno = 1300
- SeBackupPrivilege = "SeBackupPrivilege"
- SeRestorePrivilege = "SeRestorePrivilege"
+ SeBackupPrivilege = "SeBackupPrivilege"
+ SeRe... | Add security privilege (needed for VHDX support for docker data root) | Microsoft_go-winio | train | go |
07753c54ee1f977734a02ee46a0082f8103dda54 | diff --git a/tasks/enb.js b/tasks/enb.js
index <HASH>..<HASH> 100644
--- a/tasks/enb.js
+++ b/tasks/enb.js
@@ -21,7 +21,7 @@ module.exports = function(grunt) {
options = this.options({
noLog: false
}),
- enbBuilder = enb.createBuilder({ noLog: options.noLog}),
+... | Pass task options to enb.createBuilder as is
I want to pass `options.cdir` to enb, but `{noLog: options.noLog}` blocks it... | megatolya_grunt-enb | train | js |
f4017a88c3674405dc18e6837fba4e4aaeaa0025 | diff --git a/lxd/container_lxc.go b/lxd/container_lxc.go
index <HASH>..<HASH> 100644
--- a/lxd/container_lxc.go
+++ b/lxd/container_lxc.go
@@ -514,6 +514,7 @@ func containerLXCCreate(s *state.State, args db.ContainerArgs) (container, error
err = c.deviceAdd(k, m)
if err != nil {
+ c.Delete()
return ni... | lxd/containers: Delete on creation failure | lxc_lxd | train | go |
551396564a9b74e43db0a3059411849a3a54e44a | diff --git a/salt/modules/mysql.py b/salt/modules/mysql.py
index <HASH>..<HASH> 100644
--- a/salt/modules/mysql.py
+++ b/salt/modules/mysql.py
@@ -1612,7 +1612,8 @@ def grant_exists(grant,
grants = user_grants(user, host, **connection_args)
if grants is False:
- log.debug('Grant does not exist, or is... | Ammend error log to include multiple tips for troubleshooting.
Fixes #<I> | saltstack_salt | train | py |
b95036043ad4412d3db71a86d4622816cd2b24da | diff --git a/lib/regexp_parser/syntax/base.rb b/lib/regexp_parser/syntax/base.rb
index <HASH>..<HASH> 100644
--- a/lib/regexp_parser/syntax/base.rb
+++ b/lib/regexp_parser/syntax/base.rb
@@ -10,12 +10,11 @@ module Regexp::Syntax
include Regexp::Syntax::Token
class << self
- # sum of features, including... | Inherit features without class fiddling | ammar_regexp_parser | train | rb |
6a12fc535a8315ff88c611ead2b25e2f10985ff1 | diff --git a/requery-test/src/test/java/io/requery/test/JPAModelTest.java b/requery-test/src/test/java/io/requery/test/JPAModelTest.java
index <HASH>..<HASH> 100644
--- a/requery-test/src/test/java/io/requery/test/JPAModelTest.java
+++ b/requery-test/src/test/java/io/requery/test/JPAModelTest.java
@@ -31,6 +31,7 @@ imp... | Add additional test testInsertOneToMany | requery_requery | train | java |
6d375c4caae71b625e5376a5baffde318c0f0c40 | diff --git a/widget/slider.js b/widget/slider.js
index <HASH>..<HASH> 100644
--- a/widget/slider.js
+++ b/widget/slider.js
@@ -125,6 +125,9 @@ sb.widget.slider.prototype = {
this.draggable = 0;
document.onmousemove = null;
document.onmouseup = null;
+ if(typeof this.onStopSlide == 'function'){
+ this.on... | added onSlideStop event | surebert_surebert-framework | train | js |
607c9f8bc32af79593a4abaf75cb04b9007492fd | diff --git a/src/context.js b/src/context.js
index <HASH>..<HASH> 100644
--- a/src/context.js
+++ b/src/context.js
@@ -122,7 +122,7 @@ class Context {
*/
call(actionName, params, opts = {}) {
opts.parentCtx = this;
- if (this.timeout > 0) {
+ if (this.timeout > 0 && this.startHrTime) {
// Distributed time... | protect metricsFinish, if metricsStart isn't called | moleculerjs_moleculer | train | js |
71995ae82a1164546474beac343e591d5e4cc38e | diff --git a/tests.py b/tests.py
index <HASH>..<HASH> 100644
--- a/tests.py
+++ b/tests.py
@@ -4,7 +4,7 @@
# Filename : tests.py
# Description :
# Creation Date : 03-04-2015
-# Last Modified : Fri 03 Apr 2015 03:56:21 PM UTC
+# Last Modified : Fri 03 Apr 2015 04:00:49 PM UTC
#
##########... | fix #6 : payloader option are all ok | josuebrunel_myql-cli | train | py |
b1737b23050067a80760bf524d6c6a9dc679c6ee | diff --git a/tests/TestCase/Database/FunctionsBuilderTest.php b/tests/TestCase/Database/FunctionsBuilderTest.php
index <HASH>..<HASH> 100644
--- a/tests/TestCase/Database/FunctionsBuilderTest.php
+++ b/tests/TestCase/Database/FunctionsBuilderTest.php
@@ -15,6 +15,7 @@ declare(strict_types=1);
*/
namespace Cake\Test\... | Update FunctionsBuilderTest.php | cakephp_cakephp | train | php |
1704d1a2eb254b079ed52d03d42dc2cc37de3457 | diff --git a/test/prepareImproQueryString.js b/test/prepareImproQueryString.js
index <HASH>..<HASH> 100644
--- a/test/prepareImproQueryString.js
+++ b/test/prepareImproQueryString.js
@@ -40,4 +40,12 @@ describe('prepareImproQueryString', () => {
'resize=800,800&pngcrush&rem=gAMA'
);
});
+
+ it('should p... | Add sanity test for parse() to ensure handling of multiple engines. | papandreou_express-processimage | train | js |
2e66f6b2d017da5404a3b925840856de3eb5feeb | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -165,10 +165,9 @@ const leftControllerQuaternionArray4 = new Float32Array(4);
const rightControllerPositionArray3 = new Float32Array(3);
const rightControllerQuaternionArray4 = new Float32Array(4);
-// ocul... | Dead code commenting in index.js | exokitxr_exokit | train | js |
cac13561da444e65d53691f1e6092c5e253bd3f1 | diff --git a/shared/util_linux.go b/shared/util_linux.go
index <HASH>..<HASH> 100644
--- a/shared/util_linux.go
+++ b/shared/util_linux.go
@@ -288,17 +288,6 @@ func intArrayToString(arr interface{}) string {
return s
}
-func Statvfs(path string) (*unix.Statfs_t, error) {
- var st unix.Statfs_t
-
- err := unix.Stat... | shared/util/linux: Removes Statvfs
Moved to lxd/storage/filesystem as StatVFS(). | lxc_lxd | train | go |
83b822079eec985a43c72e8a1e7f8ce645029920 | diff --git a/forms_builder/forms/slugify.py b/forms_builder/forms/slugify.py
index <HASH>..<HASH> 100644
--- a/forms_builder/forms/slugify.py
+++ b/forms_builder/forms/slugify.py
@@ -1,9 +1,18 @@
-from django.template.defaultfilters import slugify as generic_slugify
+import re
+import unicodedata
+from django.utils.enc... | using Mezzanine's slugify, which doesn't require extra dependency | stephenmcd_django-forms-builder | train | py |
22b7683a526a7d44b806c4c6a5d0f10cb1196aed | diff --git a/lib/logger.js b/lib/logger.js
index <HASH>..<HASH> 100644
--- a/lib/logger.js
+++ b/lib/logger.js
@@ -8,7 +8,8 @@ module.exports = function (silent) {
level: 'debug',
handleExceptions: true,
json: false,
- colorize: true
+ colorize: true,
+ label: 'S3rver'
... | Add Log Label
Add a log label to create a clear delineation between S3rver logs and an users application. This is particularly useful when using S3rver programmatically within an application (e.g. during development or testing time). | jamhall_s3rver | train | js |
f796a0b3a10fbf83e9ae69c3d1aef5065dbdcef8 | diff --git a/spyderlib/scientific_startup.py b/spyderlib/scientific_startup.py
index <HASH>..<HASH> 100644
--- a/spyderlib/scientific_startup.py
+++ b/spyderlib/scientific_startup.py
@@ -10,6 +10,8 @@ Scientific Python startup script
Requires NumPy, SciPy and Matplotlib
"""
+from __future__ import division
+
... | Scientific startup script (default PYTHONSTARTUP in Spyder): added floating point division (from __future__ import division)
Thanks to revision 0cde<I>feb<I>, this will now work as expected. | spyder-ide_spyder | train | py |
0eafe01bba41f42ca1514d32f49c88c2cb1cde0e | diff --git a/src/Guzzle/Service/Command/DynamicCommand.php b/src/Guzzle/Service/Command/DynamicCommand.php
index <HASH>..<HASH> 100644
--- a/src/Guzzle/Service/Command/DynamicCommand.php
+++ b/src/Guzzle/Service/Command/DynamicCommand.php
@@ -53,7 +53,11 @@ class DynamicCommand extends AbstractCommand
}
... | [Service] Only appending and prepending if they are set on a dynamic command | guzzle_guzzle3 | train | php |
6a3eda61533916b67a5e24258e73f0d79aff2831 | diff --git a/mhctools/common.py b/mhctools/common.py
index <HASH>..<HASH> 100644
--- a/mhctools/common.py
+++ b/mhctools/common.py
@@ -78,6 +78,7 @@ def normalize_hla_allele_name(hla):
- A2
- A*03:02
- A02:02
+ - A0202
- A:02:03
- A*02:01:01
- HLA-A*02:01:01G... | Adding a comment and test for A<I> | openvax_mhctools | train | py,py |
bede7f4d57cdb889783ada5430bac635bd3bf4d8 | diff --git a/test/helpers/common.js b/test/helpers/common.js
index <HASH>..<HASH> 100644
--- a/test/helpers/common.js
+++ b/test/helpers/common.js
@@ -7,6 +7,8 @@ var Readable = require('stream').Readable || require('readable-stream');
var Writable = require('stream').Writable || require('readable-stream').Writable;
... | test: quick fix to helper. | archiverjs_node-archiver | train | js |
2690ecfe2cb0b75131ef11ff692c661cf3802392 | diff --git a/cerberus/tests/tests.py b/cerberus/tests/tests.py
index <HASH>..<HASH> 100644
--- a/cerberus/tests/tests.py
+++ b/cerberus/tests/tests.py
@@ -70,6 +70,11 @@ class TestValidator(TestBase):
errors.ERROR_UNKNOWN_RULE % ('unknown_rule', field)
)
+ def test_empty_field_definition(self... | Add test for validation of empty field definition | pyeve_cerberus | train | py |
8039c85ba6db6c468b9720a5dff089ff39d2b6f2 | diff --git a/src/group/group.js b/src/group/group.js
index <HASH>..<HASH> 100644
--- a/src/group/group.js
+++ b/src/group/group.js
@@ -207,6 +207,11 @@ class Group extends EventEmitter {
this.timeline.timeScale(this.timeScale)
this._duration = this.timeline.duration()
} catch (err) {
+
+ if (deb... | Debug error stack in development when timeline construction fails | spirit_spirit | train | js |
22fcff8b1e668987d32bc044f7b94b5251a8ef7c | 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
@@ -124,6 +124,9 @@ EOS
## the first draw_screen is needed before topline and botline
## are set, and the secon... | Mark thread as read after ThreadViewMode has been instancied
This patch delays the moment when the ":unread" label is removed so when
opening a thread you know exactly what are the new messages thanks to
the 'N' flag. | sup-heliotrope_sup | train | rb,rb |
f0b75ae4001ee9cc87336eaaa72acba52c551b6e | diff --git a/project/project.go b/project/project.go
index <HASH>..<HASH> 100644
--- a/project/project.go
+++ b/project/project.go
@@ -74,11 +74,7 @@ func (p *Project) Deploy(names []string) error {
go func() {
defer sem.Release()
- if fn, err := p.FunctionByName(name); err != nil {
- errs <- err
- ... | refactor Project.Deploy() with Project.deploy() util | apex_apex | train | go |
1956765c3aa81f1640dda9d33b146618950241b5 | diff --git a/lxd/device/disk.go b/lxd/device/disk.go
index <HASH>..<HASH> 100644
--- a/lxd/device/disk.go
+++ b/lxd/device/disk.go
@@ -753,10 +753,6 @@ func (d *disk) startVM() (*deviceConfig.RunConfig, error) {
if err != nil {
return nil, errors.Wrapf(err, "Failed to setup virtiofsd for device %q", d.name)
... | lxd/device/disk: Remove duplicated source path exists check in startVM | lxc_lxd | train | go |
d3cdb168e3a9ac17211688846f4641ca0fe12ff1 | diff --git a/cassandra/cqlengine/columns.py b/cassandra/cqlengine/columns.py
index <HASH>..<HASH> 100644
--- a/cassandra/cqlengine/columns.py
+++ b/cassandra/cqlengine/columns.py
@@ -37,7 +37,7 @@ class BaseValueManager(object):
@property
def deleted(self):
- return self.value is None and (self.expli... | cqle: make ValueManager delete recognize converted collections
PYTHON-<I> | datastax_python-driver | train | py |
b1bb07e48d614e71f9577c1112848c5d989e4e9c | diff --git a/lib/fog/cloudsigma/connection.rb b/lib/fog/cloudsigma/connection.rb
index <HASH>..<HASH> 100644
--- a/lib/fog/cloudsigma/connection.rb
+++ b/lib/fog/cloudsigma/connection.rb
@@ -54,7 +54,7 @@ module Fog
response = @connection.request(params)
rescue Excon::Errors::HTTPStatusError => ... | [cloudsigma] Fix excon HTTPStatusError#response not having []= and failing on assignment of json decoded body | fog_fog | train | rb |
fdb903180c81d03e65bd11d4b6bb4479f1ee767b | diff --git a/test/glue/pulp/repository_test.rb b/test/glue/pulp/repository_test.rb
index <HASH>..<HASH> 100644
--- a/test/glue/pulp/repository_test.rb
+++ b/test/glue/pulp/repository_test.rb
@@ -305,7 +305,7 @@ class GluePulpRepoRequiresSyncTest < GluePulpRepoTestBase
staging = KTEnvironment.find(environments(:sta... | Fixed a test to make travis happy | Katello_katello | train | rb |
241b5aa27e7391a8584040c48ac2aca5886a289a | diff --git a/abilian/services/auth/service.py b/abilian/services/auth/service.py
index <HASH>..<HASH> 100644
--- a/abilian/services/auth/service.py
+++ b/abilian/services/auth/service.py
@@ -5,7 +5,7 @@ from __future__ import absolute_import
import logging
from datetime import datetime, timedelta
-from flask import... | auth: fix testing+no_login case: current_user wasn't set to SYSTEM but let as anonymous | abilian_abilian-core | train | py |
f7b0f4f1e0a732ff70f3704007536bf1c49fce12 | diff --git a/actionview/lib/action_view/helpers/asset_url_helper.rb b/actionview/lib/action_view/helpers/asset_url_helper.rb
index <HASH>..<HASH> 100644
--- a/actionview/lib/action_view/helpers/asset_url_helper.rb
+++ b/actionview/lib/action_view/helpers/asset_url_helper.rb
@@ -88,9 +88,12 @@ module ActionView
# s... | Update documentation for setting asset_host to a Proc, mention that the request parameter might not be supplied [ci skip] | rails_rails | train | rb |
6c212ece31c1c359cd7806d6036f2644033ae1a8 | diff --git a/test/unit/02-broker-component.js b/test/unit/02-broker-component.js
index <HASH>..<HASH> 100644
--- a/test/unit/02-broker-component.js
+++ b/test/unit/02-broker-component.js
@@ -7,6 +7,7 @@ describe("02 - unit - brokerage component", function() {
var mockModels = {};
var mockMesh = {
_mesh... | test: fixed <I>-broker-component JIRA: SMC-<I> | happner_happner-cluster | train | js |
d3d8f97c19dc5f79aada006e89f96164424165ba | diff --git a/geomet/wkt.py b/geomet/wkt.py
index <HASH>..<HASH> 100644
--- a/geomet/wkt.py
+++ b/geomet/wkt.py
@@ -151,10 +151,18 @@ def __load_point(tokens, string):
coords = []
try:
+ negative = False
for t in tokens:
if t == ')':
break
- coords.app... | wkt:
Added negative coordinate support to point wkt loading.
This was a bug. | geomet_geomet | train | py |
97cc0cfc91628c315e7125983c7b3893c06f8829 | diff --git a/gkeepapi/node.py b/gkeepapi/node.py
index <HASH>..<HASH> 100644
--- a/gkeepapi/node.py
+++ b/gkeepapi/node.py
@@ -1563,7 +1563,7 @@ class NodeDrawingInfo(Element):
self.drawing_id = raw['drawingId']
self.snapshot.load(raw['snapshotData'])
self._snapshot_fingerprint = raw['snapsho... | Issue #<I>: Fix parse error
The Drawing node is no longer being send with a `thumbnailGeneratedTime`
field for some users. | kiwiz_gkeepapi | train | py |
c3b5ffade0b38333f5e5618c261b94e34276ef72 | diff --git a/src/components/btn/QBtn.js b/src/components/btn/QBtn.js
index <HASH>..<HASH> 100644
--- a/src/components/btn/QBtn.js
+++ b/src/components/btn/QBtn.js
@@ -5,6 +5,11 @@ import QIcon from '../icon/QIcon.js'
import QSpinner from '../spinner/QSpinner.js'
import { between } from '../../utils/format.js'
import... | [v1] QBtn: prevent errors on PointerEvent on Firefox mobile (#<I>) | quasarframework_quasar | train | js |
4aab2e8f4545cab412b73e567efaace39c2c42f6 | diff --git a/core/src/main/java/com/graphhopper/GraphHopper.java b/core/src/main/java/com/graphhopper/GraphHopper.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/graphhopper/GraphHopper.java
+++ b/core/src/main/java/com/graphhopper/GraphHopper.java
@@ -316,7 +316,7 @@ public class GraphHopper implements G... | fixing wrong commit <I>f3b1a, for #<I> | graphhopper_graphhopper | train | java |
9dddf9cd96efbb41ba02dd7db5bcf0dd1ac1ac06 | diff --git a/modules/activiti-engine/src/test/java/org/activiti/engine/test/jobexecutor/AsyncExecutorTest.java b/modules/activiti-engine/src/test/java/org/activiti/engine/test/jobexecutor/AsyncExecutorTest.java
index <HASH>..<HASH> 100644
--- a/modules/activiti-engine/src/test/java/org/activiti/engine/test/jobexecutor/... | Tweaking AsyncExecutorTest | Activiti_Activiti | train | java |
11f556571b2d4d531a6215398f39e313e48d1aa2 | diff --git a/src/Compiler.php b/src/Compiler.php
index <HASH>..<HASH> 100644
--- a/src/Compiler.php
+++ b/src/Compiler.php
@@ -207,8 +207,13 @@ class Compiler
$sourceMapGenerator = null;
- if ($this->sourceMap && $this->sourceMap !== self::SOURCE_MAP_NONE) {
- $sourceMapGenerator = new So... | Add option to pass a custom SourceMapGenerator object | leafo_scssphp | train | php |
a69a336214c0ce3d5a342e54644f666c4262a084 | diff --git a/src/main/java/org/codehaus/mojo/xml/CheckFormatMojo.java b/src/main/java/org/codehaus/mojo/xml/CheckFormatMojo.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/codehaus/mojo/xml/CheckFormatMojo.java
+++ b/src/main/java/org/codehaus/mojo/xml/CheckFormatMojo.java
@@ -192,6 +192,12 @@ public class Che... | Add skip support to CheckFormatMojo | mojohaus_xml-maven-plugin | train | java |
e519cb6a37ff68a930ab730f403def36ece0ce61 | diff --git a/flake8_future_import.py b/flake8_future_import.py
index <HASH>..<HASH> 100755
--- a/flake8_future_import.py
+++ b/flake8_future_import.py
@@ -5,6 +5,8 @@ from __future__ import print_function
import sys
+from collections import namedtuple
+
try:
import argparse
except ImportError as e:
@@ -62,1... | Use namedtuple for Feature
The `Feature` class is very simplistic, so no need to define a normal class.
Instead it can just use `collections.namedtuple`. | xZise_flake8-future-import | train | py |
a836361ef064f650e65cf74e1c921e3d9340c020 | diff --git a/Klein/DataCollection/DataCollection.php b/Klein/DataCollection/DataCollection.php
index <HASH>..<HASH> 100644
--- a/Klein/DataCollection/DataCollection.php
+++ b/Klein/DataCollection/DataCollection.php
@@ -337,13 +337,13 @@ class DataCollection implements IteratorAggregate, ArrayAccess, Countable
*
... | Whoops. Fixing name of the implemented method... | klein_klein.php | train | php |
3d1119e2522a1016e3506d558e5783132120ab49 | diff --git a/sk_dsp_comm/digitalcom.py b/sk_dsp_comm/digitalcom.py
index <HASH>..<HASH> 100644
--- a/sk_dsp_comm/digitalcom.py
+++ b/sk_dsp_comm/digitalcom.py
@@ -404,12 +404,7 @@ def QAM_SEP(tx_data,rx_data,mod_type,Ncorr = 1024,Ntransient = 0,SEP_disp=True):
s2i = mlab.find(rx_data.imag < 0)
rx_data.imag[s1... | Removing commented lines for plotting | mwickert_scikit-dsp-comm | train | py |
6ab6cfc3c1043f109fe0c890a034e983eddebea8 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ with open('README.rst') as f:
setup(
name='twistedchecker',
description='A Twisted coding standard compliance checker.',
- version='16.0',
+ version='0.7.1',
author='Twisted Matrix Laborato... | Previous version bump was too large, bump to <I> | twisted_twistedchecker | train | py |
5c1d8f3671459ac6001a6cb9fb0691f511750a83 | diff --git a/redisco/models/__init__.py b/redisco/models/__init__.py
index <HASH>..<HASH> 100644
--- a/redisco/models/__init__.py
+++ b/redisco/models/__init__.py
@@ -2,5 +2,8 @@ from base import *
from attributes import *
from exceptions import *
-__all__ = ['Model', 'Attribute', 'IntegerField', 'DateTimeField',
-... | Adds forgotten attributes to models.__all__ | iamteem_redisco | train | py |
3178eb33b6324d9cf96bdc41efcd669a81621589 | diff --git a/mamba/example_collector.py b/mamba/example_collector.py
index <HASH>..<HASH> 100644
--- a/mamba/example_collector.py
+++ b/mamba/example_collector.py
@@ -66,8 +66,10 @@ class ExampleCollector(object):
# No parent package available, so skip it
pass
+ self._prepare_path_for... | Allow loading of local non-installed modules and packages | nestorsalceda_mamba | train | py |
3ab24a56b3097b3b84db76f6f920a331cb5f72ce | diff --git a/lib/spring/application_manager.rb b/lib/spring/application_manager.rb
index <HASH>..<HASH> 100644
--- a/lib/spring/application_manager.rb
+++ b/lib/spring/application_manager.rb
@@ -59,7 +59,7 @@ module Spring
end
def stop
- Process.kill('TERM', pid)
+ Process.kill('TERM', pid) if pid... | Don't try to kill if pid is nil | rails_spring | train | rb |
09d6174c2d8de260a38a3caa3ac5a1a7ea14c851 | diff --git a/eZ/Publish/Core/FieldType/Image/Type.php b/eZ/Publish/Core/FieldType/Image/Type.php
index <HASH>..<HASH> 100644
--- a/eZ/Publish/Core/FieldType/Image/Type.php
+++ b/eZ/Publish/Core/FieldType/Image/Type.php
@@ -41,18 +41,6 @@ class Type extends FieldType
protected $validatorService;
/**
- * ... | Fixed: Smaller code corrections to Image FieldType. | ezsystems_ezpublish-kernel | train | php,php |
fbd0bbf96bf3f82a1177cf02b947b288c1d2a46e | diff --git a/core/Log/Message.php b/core/Log/Message.php
index <HASH>..<HASH> 100644
--- a/core/Log/Message.php
+++ b/core/Log/Message.php
@@ -26,7 +26,10 @@ class Piwik_Log_Message extends Piwik_Log
{
$logToFileFilename = self::ID.".htm";
$logToDatabaseTableName = self::ID;
- $logToDatabaseColumnMapping = nul... | Add proper column mapping for Log Message | matomo-org_matomo | train | php |
63b7e7399dac6bca183076711012fdf7bd021151 | diff --git a/lib/lookup_by/version.rb b/lib/lookup_by/version.rb
index <HASH>..<HASH> 100644
--- a/lib/lookup_by/version.rb
+++ b/lib/lookup_by/version.rb
@@ -1,3 +1,3 @@
module LookupBy
- VERSION = "0.1.0"
+ VERSION = "0.1.1"
end | Tick version to <I> | companygardener_lookup_by | train | rb |
57e35bc29daaa0c9ecc8230fef0a94a4ecf930da | diff --git a/src/Mpociot/BotMan/Middleware/ApiAi.php b/src/Mpociot/BotMan/Middleware/ApiAi.php
index <HASH>..<HASH> 100644
--- a/src/Mpociot/BotMan/Middleware/ApiAi.php
+++ b/src/Mpociot/BotMan/Middleware/ApiAi.php
@@ -95,6 +95,7 @@ class ApiAi implements MiddlewareInterface
{
if ($this->listenForAction) ... | Apply fixes from StyleCI (#<I>) | botman_botman | train | php |
27e8bdf32bbcc49ff3f8201b6da26aba567aa58e | diff --git a/cli/compose/convert/service.go b/cli/compose/convert/service.go
index <HASH>..<HASH> 100644
--- a/cli/compose/convert/service.go
+++ b/cli/compose/convert/service.go
@@ -295,7 +295,13 @@ func convertServiceSecrets(
})
}
- return servicecli.ParseSecrets(client, refs)
+ secrs, err := servicecli.ParseS... | sort secrets and configs to ensure idempotence
`docker stack deploy` keeps restarting services it doesn't need to (no changes)
because the entries' order gets randomized at some previous (de)serialization.
Maybe it would be worth looking into this at a higher level and ensure
all (de)serialization happens in an ordere... | docker_cli | train | go |
710ac5f3a400849b3366bd59a4f373db21dcb933 | diff --git a/pulsar/client/amqp_exchange.py b/pulsar/client/amqp_exchange.py
index <HASH>..<HASH> 100644
--- a/pulsar/client/amqp_exchange.py
+++ b/pulsar/client/amqp_exchange.py
@@ -24,6 +24,7 @@ DEFAULT_HEARTBEAT = 580
DEFAULT_RECONNECT_CONSUMER_WAIT = 1
DEFAULT_HEARTBEAT_WAIT = 1
+DEFAULT_HEARTBEAT_JOIN_TIMEOUT ... | Log in amqp_exchange when consume finishes properly. | galaxyproject_pulsar | train | py |
d1298c3024d0b6eb173c71ae8fcfc436abd0a5af | diff --git a/riak.php b/riak.php
index <HASH>..<HASH> 100644
--- a/riak.php
+++ b/riak.php
@@ -992,7 +992,7 @@ class RiakBucket {
$obj = new RiakObject($this->client, $this, NULL);
$obj->populate($response, array(200));
if (!$obj->exists()) {
- throw Exception("Error searching index: " . $body);
+ ... | Fixed left over bug from debugging. | basho_riak-php-client | train | php |
e37c2ab7feae314a747008edbc2aed36889bc477 | diff --git a/kite-data/kite-data-core/src/test/java/org/kitesdk/data/spi/TestMetadataProviders.java b/kite-data/kite-data-core/src/test/java/org/kitesdk/data/spi/TestMetadataProviders.java
index <HASH>..<HASH> 100644
--- a/kite-data/kite-data-core/src/test/java/org/kitesdk/data/spi/TestMetadataProviders.java
+++ b/kite... | CDK-<I>: Fix requested location in provider test.
Hive attempts to create the location, so it needs to be a valid
location with the minicluster's authority section. | kite-sdk_kite | train | java |
77a32b49e4f4f71cf5be10e51e2fb4a055908bb2 | diff --git a/testing/selftest.py b/testing/selftest.py
index <HASH>..<HASH> 100755
--- a/testing/selftest.py
+++ b/testing/selftest.py
@@ -39,9 +39,9 @@ class TestAbuChart(unittest.TestCase):
def test_abu_chart(self):
from NuGridPy import utils,ppn,data_plot
import matplotlib
+ matplotlib.... | Trying another DISPLAY variable fix | NuGrid_NuGridPy | train | py |
7f74ef44f6b107fddb2e092a6c94afff41d9c8b6 | diff --git a/examples/directory_ls_recursive_streaming_strlen_file_get_contents.php b/examples/directory_ls_recursive_streaming_strlen_file_get_contents.php
index <HASH>..<HASH> 100644
--- a/examples/directory_ls_recursive_streaming_strlen_file_get_contents.php
+++ b/examples/directory_ls_recursive_streaming_strlen_fil... | Display the adapter we're using just like the other examples | reactphp_filesystem | train | php |
fcfcf9dddf6563e698c21e6f83057838d6479d8d | diff --git a/src/trumbowyg.js b/src/trumbowyg.js
index <HASH>..<HASH> 100644
--- a/src/trumbowyg.js
+++ b/src/trumbowyg.js
@@ -1739,7 +1739,7 @@ Object.defineProperty(jQuery.trumbowyg, 'defaultOptions', {
// Fix IE11 Error 'Could not complete the operation due to error 800a025e'.
// https://... | Update for fix IE<I> Error Could not complete the operation
More safest version. | Alex-D_Trumbowyg | train | js |
5e77cfc49a392647f5cf7209e078177c568e3a46 | diff --git a/lib/discordrb/api/user.rb b/lib/discordrb/api/user.rb
index <HASH>..<HASH> 100644
--- a/lib/discordrb/api/user.rb
+++ b/lib/discordrb/api/user.rb
@@ -129,6 +129,12 @@ module Discordrb::API::User
)
end
+ # Returns one of the "default" discord avatards from the CDN given a discriminator
+ def def... | add API::User.default_avatar
Adds a secondary method to build URL that embeds one of the "default"
avatars of a user based on their discrim. | meew0_discordrb | train | rb |
135bf00996dfc0391ce1a0bc936e48312e37ea1e | diff --git a/lib/heroku/command/git.rb b/lib/heroku/command/git.rb
index <HASH>..<HASH> 100644
--- a/lib/heroku/command/git.rb
+++ b/lib/heroku/command/git.rb
@@ -27,7 +27,7 @@ class Heroku::Command::Git < Heroku::Command::Base
display git("clone #{app_data['git_url']} #{git_options}")
- unless options[:no_... | avoid trying to create remote in git:clone if clone fails | heroku_legacy-cli | train | rb |
be8478113396e1a11fb7c08c34f0329258c5b457 | diff --git a/vault/ha.go b/vault/ha.go
index <HASH>..<HASH> 100644
--- a/vault/ha.go
+++ b/vault/ha.go
@@ -773,7 +773,7 @@ func (c *Core) cleanLeaderPrefix(ctx context.Context, uuid string, leaderLostCh
// clearLeader is used to clear our leadership entry
func (c *Core) clearLeader(uuid string) error {
key := core... | Don't use activeContext for standby/leader cancelation (#<I>)
Move cancelation to after cleanup
Fixes GH-<I> | hashicorp_vault | train | go |
c3e453a43ef735851e7fb6ab50f457514f17bb9c | diff --git a/lib/fat_model_auth/controller_helpers.rb b/lib/fat_model_auth/controller_helpers.rb
index <HASH>..<HASH> 100644
--- a/lib/fat_model_auth/controller_helpers.rb
+++ b/lib/fat_model_auth/controller_helpers.rb
@@ -40,7 +40,7 @@ module FatModelAuth
def respond_with_404_page
if defined?(Rails)
- ... | Replace `render "public/<I>.html"` with `render file: "public/<I>.html"`
This change is backward-compatible, so it shouldn't break existing any
existing app.
Previously, calling render "foo/bar" in a controller action was
equivalent to render file: "foo/bar". In Rails <I>, this has been
changed to mean render templat... | brentgreeff_fat_model_auth | train | rb |
eee2b321508b7de49507345e2fc75307da7943d6 | diff --git a/pysat/tests/test_meta.py b/pysat/tests/test_meta.py
index <HASH>..<HASH> 100644
--- a/pysat/tests/test_meta.py
+++ b/pysat/tests/test_meta.py
@@ -1267,13 +1267,14 @@ class TestBasics():
self.testInst.to_netcdf4(outfile)
# Load file back and test metadata is as expected
- f = netC... | BUG: closed file before deleting | rstoneback_pysat | train | py |
e52db0e48a66cfba5ef95bd5322b57bf67e905f9 | diff --git a/openshift-client/src/main/java/io/fabric8/openshift/client/DefaultOpenShiftClient.java b/openshift-client/src/main/java/io/fabric8/openshift/client/DefaultOpenShiftClient.java
index <HASH>..<HASH> 100644
--- a/openshift-client/src/main/java/io/fabric8/openshift/client/DefaultOpenShiftClient.java
+++ b/open... | DefaultOpenShiftClient constructors that use directly OkHttpClient are now private. | fabric8io_kubernetes-client | train | java |
5ce998447d5a7d429feeba7ff17b9093458b0d3e | diff --git a/protostuff-parser/src/main/java/com/dyuproject/protostuff/parser/Proto.java b/protostuff-parser/src/main/java/com/dyuproject/protostuff/parser/Proto.java
index <HASH>..<HASH> 100644
--- a/protostuff-parser/src/main/java/com/dyuproject/protostuff/parser/Proto.java
+++ b/protostuff-parser/src/main/java/com/d... | include file in error message when proto package is not defined.
git-svn-id: <URL> | protostuff_protostuff | train | java |
e7cc290b656d1dbdebf95144fba330af3bcab0ee | diff --git a/src/spec/support/integration_example_group.rb b/src/spec/support/integration_example_group.rb
index <HASH>..<HASH> 100644
--- a/src/spec/support/integration_example_group.rb
+++ b/src/spec/support/integration_example_group.rb
@@ -146,7 +146,7 @@ module IntegrationExampleGroup
url = "/deployments/#{dep... | Fix test helper method to support options
- we need to pass options, theere's a wierd appropriation of the params
hash but it's a pattern that in a few other methods. It allows us to
specify things like failure_expected properly
[#<I>](<URL>) | cloudfoundry_bosh | train | rb |
97e6ddc81a89dd6c6ecb1a2a2bf2ae7af0aa25fb | diff --git a/examples/macSay.js b/examples/macSay.js
index <HASH>..<HASH> 100644
--- a/examples/macSay.js
+++ b/examples/macSay.js
@@ -4,7 +4,7 @@
*/
var exec = require('child_process').exec;
-var bart = require('../bart');
+var bart = require('../lib/bart');
var speechQueue = []; | Moved bart.js into lib | aashay_node-bart | train | js |
dc837ae633379fc865d5b1bf3e95bc693ba862c4 | diff --git a/lib/generators/mailboxer/templates/initializer.rb b/lib/generators/mailboxer/templates/initializer.rb
index <HASH>..<HASH> 100644
--- a/lib/generators/mailboxer/templates/initializer.rb
+++ b/lib/generators/mailboxer/templates/initializer.rb
@@ -1,16 +1,16 @@
Mailboxer.setup do |config|
- #Configures i... | Grammar changes
Not an expert in English grammar but this should be better. Probably a native speaker can further improve this... :S | mailboxer_mailboxer | train | rb |
4197c04782c7ad063ee81289f56fb98b6a72fa65 | diff --git a/src/components/tabs/js/tabDirective.js b/src/components/tabs/js/tabDirective.js
index <HASH>..<HASH> 100644
--- a/src/components/tabs/js/tabDirective.js
+++ b/src/components/tabs/js/tabDirective.js
@@ -88,7 +88,6 @@ function MdTab () {
scope.$watch('disabled', function () { ctrl.refreshIndex(); });
... | update(tabs): removes unnecessary DOM lookup from tab watcher | angular_material | train | js |
6a6e7d351693d71670f2c06869b4481b4db7bc24 | diff --git a/lib/chef/knife/ssh.rb b/lib/chef/knife/ssh.rb
index <HASH>..<HASH> 100644
--- a/lib/chef/knife/ssh.rb
+++ b/lib/chef/knife/ssh.rb
@@ -560,11 +560,6 @@ class Chef
config[:ssh_password] = get_stripped_unfrozen_value(ssh_password ||
Chef::Config[:knife][:ssh_password])... | Ignore user SSH key authentication if password is given | chef_chef | train | rb |
da1829e453ba3e8949660bcf1940a6221d3045cb | diff --git a/test/csvconverter/commands/test_command_csv2strings.rb b/test/csvconverter/commands/test_command_csv2strings.rb
index <HASH>..<HASH> 100644
--- a/test/csvconverter/commands/test_command_csv2strings.rb
+++ b/test/csvconverter/commands/test_command_csv2strings.rb
@@ -32,5 +32,15 @@ class TestCommand < Test::... | ADD command test for google_doc
Does not fail because of require of test_helper | netbe_Babelish | train | rb |
c94f1270d6e3e34523c5d7c93580e1c8d3f217f3 | diff --git a/lib/OpenLdapObject/LdapClient/Client.php b/lib/OpenLdapObject/LdapClient/Client.php
index <HASH>..<HASH> 100644
--- a/lib/OpenLdapObject/LdapClient/Client.php
+++ b/lib/OpenLdapObject/LdapClient/Client.php
@@ -49,6 +49,10 @@ class Client {
public function getBaseDn() {
return $this->baseDn;
... | Add LdapClient::getConnect | OpenLdapObject_OpenLdapObject | train | php |
af14984ac7c2bae709d00cdbabe7bdfa0bc0e303 | diff --git a/grunt/mochaTest.js b/grunt/mochaTest.js
index <HASH>..<HASH> 100644
--- a/grunt/mochaTest.js
+++ b/grunt/mochaTest.js
@@ -14,7 +14,7 @@ const
timerResolution: 5
};
global.include = source => require(`../test/${source}.js`);
- require("../test/host/features")
+ r... | Fixing linter issue (#<I>) | ArnaudBuchholz_gpf-js | train | js |
56ce9b357e891965228ae17b75fcb85bedcda6ed | diff --git a/youtrack/__init__.py b/youtrack/__init__.py
index <HASH>..<HASH> 100644
--- a/youtrack/__init__.py
+++ b/youtrack/__init__.py
@@ -1,3 +1,3 @@
-__version__ = '0.0.1.dev16'
+__version__ = '0.0.1.dev17'
from youtrack.youtrack import * | update version for pypi | devopshq_youtrack | train | py |
b7fd4bda17f79dda3c6ef0dba38e0c6866792457 | diff --git a/demo/js/snap.js b/demo/js/snap.js
index <HASH>..<HASH> 100644
--- a/demo/js/snap.js
+++ b/demo/js/snap.js
@@ -93,6 +93,15 @@
}
window.CanvasRenderingContext2D.prototype.circle = circle;
+ function mouseMove (event) {
+
+ if (snap.locked && !status.anchorDrag.checked) {
+ co... | demo/snap: show a dot at real x/y when snap.locked | taye_interact.js | train | js |
2895c84e844dc03b231d1d586f0781cd1dab4e79 | diff --git a/hazelcast-client/src/test/java/com/hazelcast/client/executor/ClientExecutorServiceTest.java b/hazelcast-client/src/test/java/com/hazelcast/client/executor/ClientExecutorServiceTest.java
index <HASH>..<HASH> 100644
--- a/hazelcast-client/src/test/java/com/hazelcast/client/executor/ClientExecutorServiceTest.... | removed the all the time failing test #<I> | hazelcast_hazelcast | train | java |
58ea80d0ff447344572e056d1ec08bb6f9139008 | diff --git a/client.go b/client.go
index <HASH>..<HASH> 100644
--- a/client.go
+++ b/client.go
@@ -289,5 +289,4 @@ func handleDisconnectNotification(c *rpc2.Client) {
// Disconnect will close the OVSDB connection
func (ovs OvsdbClient) Disconnect() {
ovs.rpcClient.Close()
- clearConnection(ovs.rpcClient)
} | Fix disconnect from calling clearConnection recursively | socketplane_libovsdb | train | go |
8b24724babfaaeda851205f4b02da32cfc1bbf56 | diff --git a/lib/codemirror.js b/lib/codemirror.js
index <HASH>..<HASH> 100644
--- a/lib/codemirror.js
+++ b/lib/codemirror.js
@@ -5897,8 +5897,11 @@
if (mName) style = "m-" + (style ? mName + " " + style : mName);
}
if (!flattenSpans || curStyle != style) {
- if (curStart < stream.start) ... | Never render tokens larger than <I>k chararcters
Webkit can't deal with them.
Issue #<I> | codemirror_CodeMirror | train | js |
cf5da7d7097420bdf5b015e768508de259ecab4b | diff --git a/cartoview/app_manager/rest.py b/cartoview/app_manager/rest.py
index <HASH>..<HASH> 100644
--- a/cartoview/app_manager/rest.py
+++ b/cartoview/app_manager/rest.py
@@ -191,6 +191,9 @@ class AppInstanceResource(ModelResource):
def dehydrate_owner(self, bundle):
return bundle.obj.owner.username
... | fix AppInstanceResource config field serialization | cartologic_cartoview | train | py |
d2d18269a0dc27e3b0f77c142186de439ca60e3f | diff --git a/lib/user_engage/company.rb b/lib/user_engage/company.rb
index <HASH>..<HASH> 100644
--- a/lib/user_engage/company.rb
+++ b/lib/user_engage/company.rb
@@ -56,7 +56,7 @@ module UserEngage
## Private methods ##
#####################
private_class_method def self.supported_find_params
- []
... | Add user_id and company_id as find parameters | CompanyMood_user_engage-ruby | train | rb,rb |
02dd0deab3d2a2c07b49ff1d80b0d405d73c4ece | diff --git a/mpdlcd/mpdwrapper.py b/mpdlcd/mpdwrapper.py
index <HASH>..<HASH> 100644
--- a/mpdlcd/mpdwrapper.py
+++ b/mpdlcd/mpdwrapper.py
@@ -101,13 +101,18 @@ class MPDClient(utils.AutoRetryCandidate):
@property
def state(self):
logger.debug(u'Fetching MPD state')
- return self.status['state... | Better logging of fetched MPD data. | rbarrois_mpdlcd | train | py |
f9338ee6c08855ec75f5376b636319f33ee4e309 | diff --git a/pkg/clipboard/kill_ps.go b/pkg/clipboard/kill_ps.go
index <HASH>..<HASH> 100644
--- a/pkg/clipboard/kill_ps.go
+++ b/pkg/clipboard/kill_ps.go
@@ -6,7 +6,7 @@ import (
ps "github.com/mitchellh/go-ps"
)
-// killPrecedessors will kill any previous "gopass unclip" invokations to avoid
+// killPrecedessors... | Fixed typo in comment (#<I>)
"invokation" => "invocation" | gopasspw_gopass | train | go |
eade50dd778d9e91236db2dd573351886f6759c4 | diff --git a/contrib/externs/jasmine-3.3.js b/contrib/externs/jasmine-3.3.js
index <HASH>..<HASH> 100644
--- a/contrib/externs/jasmine-3.3.js
+++ b/contrib/externs/jasmine-3.3.js
@@ -208,16 +208,16 @@ jasmine.Matchers.prototype.toHaveBeenCalledTimes = function(num) {};
jasmine.Matchers.prototype.toMatch = function(pat... | Fix the argument type declarations for toThrow and toThrowError methods.
-------------
Created by MOE: <URL> | google_closure-compiler | train | js |
5f417026c77952230531535a59f1a4119cb314e0 | diff --git a/tests/SelectTest.php b/tests/SelectTest.php
index <HASH>..<HASH> 100644
--- a/tests/SelectTest.php
+++ b/tests/SelectTest.php
@@ -13,7 +13,7 @@ trait SelectTest
/**
* @Scenario {0}::select should return 3 rows when called with no where
*/
- public function testSelects(Adapter &$db = nul... | add order and typecasts (databases return stuff as strings, tho maybe that is a nice feature for the next version?) | monomelodies_dabble | train | php |
46d7ac4487b04d00f9c3c1939aafce34d91f0196 | diff --git a/core/src/ons/ons.js b/core/src/ons/ons.js
index <HASH>..<HASH> 100644
--- a/core/src/ons/ons.js
+++ b/core/src/ons/ons.js
@@ -436,5 +436,5 @@ function waitDeviceReady() {
}, false);
}
-window._super_secret_ons = ons;
+window._superSecretOns = ons;
export default ons; | style(ons): Rename variable. | OnsenUI_OnsenUI | train | js |
2fd9ffbaee57a86287a12db83355bd0f9d00152a | diff --git a/src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php b/src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php
+++ b/src/Symfony/Bundle/FrameworkBundle/Test/WebTestCase.php
@@ -3,10 +3,10 @@
namespace Symfony\Bund... | [FrameworkBundle] Fixed reference to old class | symfony_symfony | train | php |
88ebecdeea7cfaf351f8ead56f5c6df9fa2669c5 | diff --git a/rapidoid-db-impl/src/main/java/org/rapidoid/db/impl/DbRelsCommons.java b/rapidoid-db-impl/src/main/java/org/rapidoid/db/impl/DbRelsCommons.java
index <HASH>..<HASH> 100644
--- a/rapidoid-db-impl/src/main/java/org/rapidoid/db/impl/DbRelsCommons.java
+++ b/rapidoid-db-impl/src/main/java/org/rapidoid/db/impl/... | Improved IDs init logic for DB relational containers. | rapidoid_rapidoid | train | java |
a8e25ac27b2e31e7eacf8f3305bd001e5501c9cc | diff --git a/extensions/tags/src/Tag.php b/extensions/tags/src/Tag.php
index <HASH>..<HASH> 100644
--- a/extensions/tags/src/Tag.php
+++ b/extensions/tags/src/Tag.php
@@ -1,4 +1,4 @@
-<?php
+<?php
/*
* This file is part of Flarum.
*
@@ -123,7 +123,7 @@ class Tag extends Model
}
$ids = [];
- ... | Temporary fix for permissions bug
See flarum/core#<I> | flarum_core | train | php |
a2dc8d1a0c5efce3b33d4bd474ea498471894206 | diff --git a/hiyapyco/__init__.py b/hiyapyco/__init__.py
index <HASH>..<HASH> 100644
--- a/hiyapyco/__init__.py
+++ b/hiyapyco/__init__.py
@@ -25,6 +25,7 @@ import yaml
import logging
from distutils.util import strtobool
import re
+import io
from jinja2 import Environment, Undefined, DebugUndefined, StrictUndefined... | ISSUE-<I> Used io.open with user-provided encoding | zerwes_hiyapyco | train | py |
d309fe306a0f972e396c7cf1ce7e41744f6e2283 | diff --git a/src/main/java/com/jayway/maven/plugins/android/AbstractAndroidMojo.java b/src/main/java/com/jayway/maven/plugins/android/AbstractAndroidMojo.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/jayway/maven/plugins/android/AbstractAndroidMojo.java
+++ b/src/main/java/com/jayway/maven/plugins/android/Ab... | Always reinstall APK, no-op in case undeployBeforeDeploy is set to true (it should install the application as usual if it's not there yet). | simpligility_android-maven-plugin | train | java |
Subsets and Splits
Java Commits in Train Set
Queries for all entries where the diff_languages column is 'java', providing a filtered dataset but without deeper analysis.
Java Commits Test Data
Returns a subset of 5000 entries from the dataset where the programming language difference is Java, providing basic filtering for exploration.
Java Commits Sample
Retrieves the first 1,000 records where the 'diff_languages' column is 'java', providing limited insight into the specific data entries.
Java Commits Validation Sample
Retrieves a sample of entries from the validation dataset where the diff languages are Java, providing limited insight into specific Java-related data points.
Java Commits in Validation
This query retrieves a limited sample of entries from the validation dataset where the programming language difference is Java, providing basic filtering with minimal insight.
Java Commits Sample
This query retrieves a sample of 100 records where the 'diff_languages' is 'java', providing basic filtering but limited analytical value.
Java Commits Sample
Retrieves 100 samples where the language difference is Java, providing basic filtering but minimal analytical value.
Java Commits Sample
Retrieves 10 samples where the diff_languages column is 'java', providing basic examples of data entries with this specific language.
Java Commits Validation Sample
Retrieves 1,000 records where the differences in languages are marked as Java, providing a snapshot of that specific subset but limited to raw data.
Java Commits Sample
This query retrieves 1000 random samples from the dataset where the programming language is Java, offering limited insight beyond raw data.