hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
bf28bad4dee2d34af4f522f400ec2a10f15a423b | diff --git a/ObjJAcornCompiler.js b/ObjJAcornCompiler.js
index <HASH>..<HASH> 100644
--- a/ObjJAcornCompiler.js
+++ b/ObjJAcornCompiler.js
@@ -3048,9 +3048,18 @@ MessageSendExpression: function(node, st, c) {
// If it is 'self' we assume it will never be nil and remove that test
var receiverIs... | Commit from the Cappuccino project: Fixed: If receiver in the function objj_msgSend is a class we don't need to check if it is nil as a class can never be nil without the load has already failed.
<URL> | mrcarlberg_objj-transpiler | train |
33927f4fff23418bc33161b85770c86364ffb8a0 | diff --git a/lib/docker.js b/lib/docker.js
index <HASH>..<HASH> 100644
--- a/lib/docker.js
+++ b/lib/docker.js
@@ -51,8 +51,8 @@ function runImage(imageId, cwd, command, mount) {
var mountDir = crossPlatformCwd(cwd);
var mountComponent = mount ? `-v "${mountDir}:/app/src"` : '';
var envArgComponent = directory... | Escape all env vars, not just PORT | heroku_heroku-container-registry | train |
b6206e12b97d7e199df653ac61525a831406f548 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -66,7 +66,7 @@ function sequence(functions, cb, values = []) {
}
function normalizeOptions(maybeOpts = {}) {
- const opts = Object.create(maybeOpts)
+ const opts = { ...maybeOpts }
if (!opts.jar) {
... | fix normalized options--request does not walk prototype chain | miniplug_plug-login | train |
677e6d7dd6e3fdaaea265e55bd029660aba9a656 | diff --git a/src/service/misc/File.php b/src/service/misc/File.php
index <HASH>..<HASH> 100644
--- a/src/service/misc/File.php
+++ b/src/service/misc/File.php
@@ -43,19 +43,13 @@ use Brainworxx\Krexx\Service\Factory\Pool;
*/
class File
{
- /**
- * The cache for the reading of files.
- *
- * @var arra... | Micro optimization in the AbstractRender and the file service. | brainworxx_kreXX | train |
72468c33c35262cb31eb1e1eb48fecef0b966d18 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='appdaemontestframework',
- version='2.6.0',
+ version='2.6.1',
description='Clean, human-readable tests for Appdaemon',
long_description='See: http... | Release <I>: Add support for kwargs in 'turned_off' (by snjoetw) + Fix bug when turning on/off via service | FlorianKempenich_Appdaemon-Test-Framework | train |
5596976715528b0e2351648d19fee19af540e469 | diff --git a/script/playbackstrategy/msestrategy.js b/script/playbackstrategy/msestrategy.js
index <HASH>..<HASH> 100644
--- a/script/playbackstrategy/msestrategy.js
+++ b/script/playbackstrategy/msestrategy.js
@@ -65,7 +65,15 @@ define('bigscreenplayer/playbackstrategy/msestrategy',
}
function onTimeUp... | Live CDN failover time fix (#<I>)
* use the dvrInfo range start time to determine the failover time for dynamic streams
* fix playing from the relative start of a sliding window | bbc_bigscreen-player | train |
849a72ddc517e25d95792f47899f5e524a2c5899 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -47,8 +47,6 @@ module.exports = {
},
included: function(app) {
- if (app.app) { app = app.app; }
-
this._super.included.apply(this, arguments);
this.projectRoot = this._projectRoot(app.trees); | fix(nested addons): no loonger swithing to the parent app so that addon's specific settings can be used | ebryn_ember-component-css | train |
e5622234fb9364babd03b6155549616cfc88d4ba | diff --git a/lib/filterTasks.js b/lib/filterTasks.js
index <HASH>..<HASH> 100644
--- a/lib/filterTasks.js
+++ b/lib/filterTasks.js
@@ -5,7 +5,7 @@ var _ = require('lodash');
// Filtering rules are optional; delete those tasks that don't pass a filter
function filterTasks (type, tasks, alltasks) {
var contains = ... | Updating dependencies. Updating code related to Lodash 4.x API changes. | philgs_grunt-available-tasks | train |
6d17d4a58de94fd54c3dc5b4f6e55ad70a9dc5ec | diff --git a/lib/manager/npm/monorepos.js b/lib/manager/npm/monorepos.js
index <HASH>..<HASH> 100644
--- a/lib/manager/npm/monorepos.js
+++ b/lib/manager/npm/monorepos.js
@@ -52,9 +52,10 @@ async function checkMonorepos(config) {
if (!monorepoPackages.includes(depName)) {
monorepoPackages.push(d... | fix: only ignore monorepo packages if matching glob (#<I>)
Previously, packages within a workspace or lerna project were ignores across the entire repo. Now, they are only ignored within package files that exist in the same lerna project or yarn workspace.
Closes #<I> | renovatebot_renovate | train |
537789b85fc3a12a917dcea2af57711189a671f0 | diff --git a/src/pyctd/manager/database.py b/src/pyctd/manager/database.py
index <HASH>..<HASH> 100755
--- a/src/pyctd/manager/database.py
+++ b/src/pyctd/manager/database.py
@@ -36,7 +36,7 @@ alchemy_pandas_dytpe_mapper = {
}
-class BaseDbManager:
+class BaseDbManager(object):
"""Creates a connection to data... | corrected wrong formatting in documentation of database.py | cebel_pyctd | train |
95ec119b3a2255f3207a69f7e104ad1a690af614 | diff --git a/Resources/public/js/sequence/Sequence/Controllers/SequencePlayCtrl.js b/Resources/public/js/sequence/Sequence/Controllers/SequencePlayCtrl.js
index <HASH>..<HASH> 100644
--- a/Resources/public/js/sequence/Sequence/Controllers/SequencePlayCtrl.js
+++ b/Resources/public/js/sequence/Sequence/Controllers/Seque... | [ExoBundle] minor sequence controller correction | claroline_Distribution | train |
6a76931961f0e396be526f4192cb0bb8a67a8b01 | diff --git a/lib/Cake/Network/CakeEmail.php b/lib/Cake/Network/CakeEmail.php
index <HASH>..<HASH> 100644
--- a/lib/Cake/Network/CakeEmail.php
+++ b/lib/Cake/Network/CakeEmail.php
@@ -562,7 +562,7 @@ class CakeEmail {
if ($email === $alias) {
$return[] = $email;
} else {
- $return[] = sprintf('%s <%s>', ... | Added support to multibyte in formatAddress. Tests added. | cakephp_cakephp | train |
20cd746d418798293c73b8d094310e37c05a7c80 | diff --git a/tests/test_templates.py b/tests/test_templates.py
index <HASH>..<HASH> 100644
--- a/tests/test_templates.py
+++ b/tests/test_templates.py
@@ -109,3 +109,9 @@ def test_multidict():
a=[1, 2],
b=2
))) == '1|2'
+
+
+def test_substitute():
+ """Templer rendering responds to substitute ... | Added missing tests for Href. | pallets_werkzeug | train |
a91bfa396c48c48d2e0154633b374366d470a95b | diff --git a/bcbio/rnaseq/featureCounts.py b/bcbio/rnaseq/featureCounts.py
index <HASH>..<HASH> 100644
--- a/bcbio/rnaseq/featureCounts.py
+++ b/bcbio/rnaseq/featureCounts.py
@@ -1,7 +1,7 @@
import os
import shutil
import bcbio.bam as bam
-from bcbio.utils import (file_exists, safe_makedir)
+from bcbio.utils import ... | Fix name in featureCounts log to get correct multiqc stats
Fix typos | bcbio_bcbio-nextgen | train |
3e18ec6d98571abea081adfffc1d37fc3e9ef68e | diff --git a/src/Gzero/Core/Parsers/NumericParser.php b/src/Gzero/Core/Parsers/NumericParser.php
index <HASH>..<HASH> 100644
--- a/src/Gzero/Core/Parsers/NumericParser.php
+++ b/src/Gzero/Core/Parsers/NumericParser.php
@@ -127,7 +127,7 @@ class NumericParser implements ConditionParser {
*/
public function ge... | fix for numeric parser's validation rule (#<I>) | GrupaZero_core | train |
27a816e5ff5e605e9154bd5a32ece7e112dbc30e | diff --git a/src/java/org/apache/cassandra/io/sstable/SSTableLoader.java b/src/java/org/apache/cassandra/io/sstable/SSTableLoader.java
index <HASH>..<HASH> 100644
--- a/src/java/org/apache/cassandra/io/sstable/SSTableLoader.java
+++ b/src/java/org/apache/cassandra/io/sstable/SSTableLoader.java
@@ -303,12 +303,6 @@ publ... | 'Merge made by recursive' indeed. | Stratio_stratio-cassandra | train |
f54a3bf5bb92a4c1c2485b023e1c0291965a01e8 | diff --git a/explorer/explorerroutes.go b/explorer/explorerroutes.go
index <HASH>..<HASH> 100644
--- a/explorer/explorerroutes.go
+++ b/explorer/explorerroutes.go
@@ -1305,13 +1305,11 @@ func (exp *explorerUI) HandleApiRequestsOnSync(w http.ResponseWriter, r *http.Re
})
str := string(data)
- statusCode := http.St... | Change the API return status code from <I> to <I> | decred_dcrdata | train |
db32e1b9d597dc4e715968f98d1d7a72288fb2a3 | diff --git a/eliot/tests/test_twisted.py b/eliot/tests/test_twisted.py
index <HASH>..<HASH> 100644
--- a/eliot/tests/test_twisted.py
+++ b/eliot/tests/test_twisted.py
@@ -432,23 +432,31 @@ class RedirectLogsForTrialTests(TestCase):
def test_withTrial(self):
"""
- When running under just I{trial} ... | Address review comments: Better test coverage for trial detection. | itamarst_eliot | train |
8c94e1f710dcdea03c3e1f04c42439f1b4127fa0 | diff --git a/superset/assets/src/visualizations/country_map.js b/superset/assets/src/visualizations/country_map.js
index <HASH>..<HASH> 100644
--- a/superset/assets/src/visualizations/country_map.js
+++ b/superset/assets/src/visualizations/country_map.js
@@ -132,7 +132,7 @@ function countryMapChart(slice, payload) {
... | Fix country_map visualization URL (#<I>)
When moving the visualizations/ folder to src/ I missed this reference. | apache_incubator-superset | train |
8bef8a4ffcd2fbcd6869470c1729700b5dbf7814 | diff --git a/pyked/converters.py b/pyked/converters.py
index <HASH>..<HASH> 100644
--- a/pyked/converters.py
+++ b/pyked/converters.py
@@ -83,17 +83,8 @@ def get_file_metadata(root):
if properties['file-author']['name'] == '':
raise MissingElementError('fileAuthor')
- # Default version is 0
- vers... | just use 0 for new ChemKED file version | pr-omethe-us_PyKED | train |
7978405ceafe56df84456af3efe528e517bf03b9 | diff --git a/Neos.Media/Classes/ViewHelpers/Form/CheckboxViewHelper.php b/Neos.Media/Classes/ViewHelpers/Form/CheckboxViewHelper.php
index <HASH>..<HASH> 100644
--- a/Neos.Media/Classes/ViewHelpers/Form/CheckboxViewHelper.php
+++ b/Neos.Media/Classes/ViewHelpers/Form/CheckboxViewHelper.php
@@ -82,7 +82,7 @@ class Check... | TASK: Adjust ``CheckboxViewHelper`` to change in Fluid (#<I>) | neos_neos-development-collection | train |
ef29c75a90a637ec49579aa5afd8f4f7bb515eb4 | diff --git a/Player/Console/ValidateCommand.php b/Player/Console/ValidateCommand.php
index <HASH>..<HASH> 100644
--- a/Player/Console/ValidateCommand.php
+++ b/Player/Console/ValidateCommand.php
@@ -28,7 +28,7 @@ final class ValidateCommand extends Command
$this
->setName('validate')
... | ValidateCommand: Allow scenario input via stdin.
This is analogous to the "run" command, which also accepts the scenario on
stdin. It allows running the validator inside a Docker container without doing
funny stuff to get the data inside. | blackfireio_player | train |
44d08f6c473404383195eddeb6a88f960e9b6208 | diff --git a/spec/lib/bumbleworks/task/finder_spec.rb b/spec/lib/bumbleworks/task/finder_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/lib/bumbleworks/task/finder_spec.rb
+++ b/spec/lib/bumbleworks/task/finder_spec.rb
@@ -48,7 +48,7 @@ describe Bumbleworks::Task::Finder do
it 'uses Bumbleworks::Task class by defa... | Minor spec file refactoring | bumbleworks_bumbleworks | train |
31a70934330c115fe068208d3dd1015b7f7da967 | diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py
index <HASH>..<HASH> 100644
--- a/discord/ext/commands/core.py
+++ b/discord/ext/commands/core.py
@@ -553,7 +553,7 @@ class Command:
aliases = '|'.join(self.aliases)
fmt = '[%s|%s]' % (self.name, aliases)
if ... | [commands] Fix minor spacing issue in Command.signature | Rapptz_discord.py | train |
e3bc610e49cbba8ed079109b41bbaa76a1fd4c02 | diff --git a/lib/jsduck/exporter/app.rb b/lib/jsduck/exporter/app.rb
index <HASH>..<HASH> 100644
--- a/lib/jsduck/exporter/app.rb
+++ b/lib/jsduck/exporter/app.rb
@@ -53,8 +53,8 @@ module JsDuck
def combine_meta(m)
meta = {}
TagRegistry.signatures.each do |s|
- key = s[:key]
- ... | Rename :key to :tagname in signature data. | senchalabs_jsduck | train |
53f67063e3668b302c5d11b72c10185f92b7cd53 | diff --git a/system/config/default/cli_route.php b/system/config/default/cli_route.php
index <HASH>..<HASH> 100644
--- a/system/config/default/cli_route.php
+++ b/system/config/default/cli_route.php
@@ -27,15 +27,15 @@ return array(
'--pass=value' => /* @text */'Admin password',
'--db-name=val... | Update translations in cli config | gplcart_gplcart | train |
4b5421b7f3dff42bd26d951143455ab9ebb8a878 | diff --git a/src/Extensions/FocusPointDBFileExtension.php b/src/Extensions/FocusPointDBFileExtension.php
index <HASH>..<HASH> 100644
--- a/src/Extensions/FocusPointDBFileExtension.php
+++ b/src/Extensions/FocusPointDBFileExtension.php
@@ -2,7 +2,33 @@
namespace JonoM\FocusPoint\Extensions;
+use JonoM\FocusPoint\Fi... | Fix issue with DBFile not storing DBFocusPoint | jonom_silverstripe-focuspoint | train |
830bb72d6f6fc731e0fc16b8b2b12f9780341cfc | diff --git a/rpc/client/httpclient.go b/rpc/client/httpclient.go
index <HASH>..<HASH> 100644
--- a/rpc/client/httpclient.go
+++ b/rpc/client/httpclient.go
@@ -122,6 +122,15 @@ func (c *HTTP) DumpConsensusState() (*ctypes.ResultDumpConsensusState, error) {
return result, nil
}
+func (c *HTTP) Health() (*ctypes.Resu... | add Health method to clients
Refs #<I> | tendermint_tendermint | train |
1c397e9aa547903c1d3e9f5e286b0b222fadc50f | diff --git a/requests_oauthlib/compliance_fixes/facebook.py b/requests_oauthlib/compliance_fixes/facebook.py
index <HASH>..<HASH> 100644
--- a/requests_oauthlib/compliance_fixes/facebook.py
+++ b/requests_oauthlib/compliance_fixes/facebook.py
@@ -5,11 +5,16 @@ from oauthlib.common import urldecode
def facebook_complia... | Improved greatly upon the Facebook compliance fix with regard to handling JSON error messages and malformed URL-encoded data. | requests_requests-oauthlib | train |
1d27b94f39e007ee17aa233f857d78675a2b7ffa | diff --git a/structr-ui/src/main/resources/structr/js/config.js b/structr-ui/src/main/resources/structr/js/config.js
index <HASH>..<HASH> 100644
--- a/structr-ui/src/main/resources/structr/js/config.js
+++ b/structr-ui/src/main/resources/structr/js/config.js
@@ -302,6 +302,9 @@ let doSearch = (q) => {
let visibleTab... | Bugfix: Auto-focus search field again after a tab is auto-selected in case the browser tried to auto-select a password field | structr_structr | train |
cbce3c5dda1325329db62eeb0543a0ae489fdffa | diff --git a/dyno-contrib/src/main/java/com/netflix/dyno/contrib/EurekaHostsSupplier.java b/dyno-contrib/src/main/java/com/netflix/dyno/contrib/EurekaHostsSupplier.java
index <HASH>..<HASH> 100644
--- a/dyno-contrib/src/main/java/com/netflix/dyno/contrib/EurekaHostsSupplier.java
+++ b/dyno-contrib/src/main/java/com/net... | Adding in constructor for discovery client | Netflix_dyno | train |
7c43835a99666f8a9201f8ce06a74f816cc5c21f | diff --git a/cs-jclouds/src/main/java/io/cloudslang/content/jclouds/utils/OutputsUtil.java b/cs-jclouds/src/main/java/io/cloudslang/content/jclouds/utils/OutputsUtil.java
index <HASH>..<HASH> 100644
--- a/cs-jclouds/src/main/java/io/cloudslang/content/jclouds/utils/OutputsUtil.java
+++ b/cs-jclouds/src/main/java/io/clo... | Amazon-AWS-Regions - added Describe Regions unit test. | CloudSlang_cs-actions | train |
311d8e7de648d9fcaa8e0d309cc196b61491f81b | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -37,7 +37,7 @@ def is_requirement(line):
setup(
name='edx-ecommerce-worker',
- version='1.1.2',
+ version='1.1.3',
description='Celery tasks supporting the operations of edX\'s ecommerce service',
long_... | Version bump up. (#<I>) | edx_ecommerce-worker | train |
6ddbfccc91fb3fed94a708cf9df07814c43454f4 | diff --git a/guava-tests/test/com/google/common/io/LittleEndianDataInputStreamTest.java b/guava-tests/test/com/google/common/io/LittleEndianDataInputStreamTest.java
index <HASH>..<HASH> 100644
--- a/guava-tests/test/com/google/common/io/LittleEndianDataInputStreamTest.java
+++ b/guava-tests/test/com/google/common/io/Li... | Removing MoreAsserts call
-------------
Created by MOE: <URL> | google_guava | train |
233628b89ad1e64cd47167a9956e21b9ee0d30d0 | diff --git a/src/router.js b/src/router.js
index <HASH>..<HASH> 100644
--- a/src/router.js
+++ b/src/router.js
@@ -61,7 +61,7 @@ function patchTransitionManager (transitionManager) {
transaction.name = fullRoute
}
- if (hardNavigation) {
+ if (hardNavi... | fix(router): only set hard navigation if transaction is a route-change (#4) | opbeat_opbeat-react | train |
d148434e43d85f7343bef161c966a68e95a2504f | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100755
--- a/index.js
+++ b/index.js
@@ -452,8 +452,13 @@ FSWatcher.prototype.unwatch = function(paths) {
delete this._closers[path];
this._getWatchedDir(sysPath.dirname(path)).remove(sysPath.basename(path));
} else {
+ //convert to absolute ... | Use absolute paths to ignore unwatched paths | paulmillr_chokidar | train |
740b849d305e62012c5454bbe7348851c8b69b26 | diff --git a/value.go b/value.go
index <HASH>..<HASH> 100644
--- a/value.go
+++ b/value.go
@@ -397,9 +397,10 @@ func (vlog *valueLog) rewrite(f *logFile, tr trace.Trace) error {
}
ne.Value = append([]byte{}, e.Value...)
- wb = append(wb, ne)
- size += int64(e.estimateSize(vlog.opt.ValueThreshold))
- if ... | Ensure rewrite in vlog is within transactional limits (#<I>)
* Ensure rewrite in vlog is within transactional limits
With this commit the temporary list of entries built during value log
iteration is committed before it overflows transactional limits
(maxBatchSize and maxBatchCount).
Fixes <URL> | dgraph-io_badger | train |
60c80a9466506099cec9444866413e9bb9fddf4a | diff --git a/src/com/logentries/log4j/LeAppender.java b/src/com/logentries/log4j/LeAppender.java
index <HASH>..<HASH> 100644
--- a/src/com/logentries/log4j/LeAppender.java
+++ b/src/com/logentries/log4j/LeAppender.java
@@ -45,21 +45,30 @@ public class LeAppender extends AppenderSkeleton {
* @param location
* @thr... | Replaced custom createSocket method with inherited activateOptions method for automatic connection | rapid7_le_java | train |
0d71771adf93487440e54b22f7a28d021c3223ca | diff --git a/views/js/layout/tree.js b/views/js/layout/tree.js
index <HASH>..<HASH> 100644
--- a/views/js/layout/tree.js
+++ b/views/js/layout/tree.js
@@ -164,23 +164,40 @@ define([
var treeId = $elt.attr('id');
var treeStore = store.get('taotree') || {};
- ... | default select the last/first resource in the tree | oat-sa_tao-core | train |
31a5de2a1c84bd5aadd51879943c1bdd99f8e9c9 | diff --git a/addon/components/detail-cohort-manager.js b/addon/components/detail-cohort-manager.js
index <HASH>..<HASH> 100644
--- a/addon/components/detail-cohort-manager.js
+++ b/addon/components/detail-cohort-manager.js
@@ -5,8 +5,6 @@ import Component from '@ember/component';
import { map, filter } from 'rsvp';
i... | Remove unnecessary calls to translationMacro
This import is deprecated, but it turns out every usage of it was a
vestige of old code and this is done in templates now. | ilios_common | train |
03ca54e2442f651463848264d0659ea54f658d46 | diff --git a/Neos.Utility.MediaTypes/Classes/MediaTypes.php b/Neos.Utility.MediaTypes/Classes/MediaTypes.php
index <HASH>..<HASH> 100644
--- a/Neos.Utility.MediaTypes/Classes/MediaTypes.php
+++ b/Neos.Utility.MediaTypes/Classes/MediaTypes.php
@@ -21,7 +21,7 @@ namespace Neos\Utility;
*
* The static properties conta... | TASK: Fox doc comment in MediaTypes.php | neos_flow-development-collection | train |
5fc575b1ff222b4335fd6430db0f553d58db26bf | diff --git a/job-scheduler/src/main/java/org/hawkular/metrics/scheduler/impl/SchedulerImpl.java b/job-scheduler/src/main/java/org/hawkular/metrics/scheduler/impl/SchedulerImpl.java
index <HASH>..<HASH> 100644
--- a/job-scheduler/src/main/java/org/hawkular/metrics/scheduler/impl/SchedulerImpl.java
+++ b/job-scheduler/sr... | [HWMETRICS-<I>] clean up logging and add rejected execution handler | hawkular_hawkular-metrics | train |
75e4b59ef0c2b8111b4d6b5408caea9e4cab48d0 | diff --git a/src/Ifsnop/Mysqldump/Mysqldump.php b/src/Ifsnop/Mysqldump/Mysqldump.php
index <HASH>..<HASH> 100644
--- a/src/Ifsnop/Mysqldump/Mysqldump.php
+++ b/src/Ifsnop/Mysqldump/Mysqldump.php
@@ -270,16 +270,6 @@ class Mysqldump
}
/**
- * Returns written archive filename
- *
- * @return strin... | Removed getFilename() method | ifsnop_mysqldump-php | train |
a035672761c9cfdf604b8fe402b47b678f77eced | diff --git a/aws/rest.go b/aws/rest.go
index <HASH>..<HASH> 100644
--- a/aws/rest.go
+++ b/aws/rest.go
@@ -37,7 +37,7 @@ func (c *RestClient) Do(req *http.Request) (*http.Response, error) {
return nil, err
}
return nil, err.Err()
- case "application/xml":
+ case "application/xml", "text/xml":
if err ... | Handling text/xml Content-Type on REST errors
Some AWS services respond with Content-Type=text/xml rather than
application/xml on errors. | aws_aws-sdk-go | train |
09e238ab32b0b80858834c768f19af7264bfcfb6 | diff --git a/seaglass/trunk/seaglass/src/main/java/com/seaglasslookandfeel/painter/util/PaintUtil.java b/seaglass/trunk/seaglass/src/main/java/com/seaglasslookandfeel/painter/util/PaintUtil.java
index <HASH>..<HASH> 100644
--- a/seaglass/trunk/seaglass/src/main/java/com/seaglasslookandfeel/painter/util/PaintUtil.java
+... | Re-ordered some declarations. | khuxtable_seaglass | train |
603734009c9d35657593ae22aa6c6da194b2e78d | diff --git a/gprof2dot.py b/gprof2dot.py
index <HASH>..<HASH> 100755
--- a/gprof2dot.py
+++ b/gprof2dot.py
@@ -1175,6 +1175,7 @@ class CallgrindParser(LineParser):
self.profile[SAMPLES] += events[0]
else:
callee = self.get_callee()
+ callee[CALLS] += calls
... | Parse number of times function is called. | jrfonseca_gprof2dot | train |
f62b6230458c15cc97c02cdf1913689f1c1e3eca | diff --git a/test/app-bounce-test-as-root.js b/test/app-bounce-test-as-root.js
index <HASH>..<HASH> 100644
--- a/test/app-bounce-test-as-root.js
+++ b/test/app-bounce-test-as-root.js
@@ -27,6 +27,7 @@ var assert = require("assert"),
http = require("http"),
https = require("https"),
urlparse = require("ur... | Fix _ not being defined in test files | pump-io_pump.io | train |
f837811bcf5c074ca6c36fad6129e1bca5bb94a8 | diff --git a/txaws/s3/client.py b/txaws/s3/client.py
index <HASH>..<HASH> 100644
--- a/txaws/s3/client.py
+++ b/txaws/s3/client.py
@@ -620,11 +620,7 @@ class Query(BaseQuery):
"""
Build the list of headers needed in order to perform S3 operations.
"""
- if self.body_producer:
- ... | Remove content-length header.
Twisted's Agent sets this, so we don't need to. | twisted_txaws | train |
eec1deb59b43046b830e98491d09bd05ae88d5fc | diff --git a/apiserver/gui_test.go b/apiserver/gui_test.go
index <HASH>..<HASH> 100644
--- a/apiserver/gui_test.go
+++ b/apiserver/gui_test.go
@@ -106,6 +106,8 @@ var guiHandlerTests = []struct {
SHA256: "fake-hash",
})
c.Assert(err, jc.ErrorIsNil)
+ // Do not start by creating the directory with no permissi... | Add a comment explaining test changes for windows. | juju_juju | train |
fd593a6bd1eb7a2fc440aada7e6c9d8a44c01884 | diff --git a/scripts/importer/importer.py b/scripts/importer/importer.py
index <HASH>..<HASH> 100644
--- a/scripts/importer/importer.py
+++ b/scripts/importer/importer.py
@@ -13,7 +13,7 @@ from scripts import FILENAME
from . import Events
from . funcs import derive_and_sanitize, get_bibauthor_dict, get_extinctions_di... | MAINT: during sanitization add break after 'travislimit' (now 'TRAVIS_QUERY_LIMIT'). | astrocatalogs_astrocats | train |
f731707fe7c90484ee28e5d22df2e0b74f31a616 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -3,8 +3,8 @@ Run your IRC client on a server and access it from the web browser. This gives y
### Commands
These are the commands currently implemented:
-- [ ] /ame
-- [ ] /amsg
+- [x] /ame
+- [x] /amsg
- [x] /close
... | Added '/ame' and '/amsg' command | erming_shout | train |
a8e27bce7ab78c712bae4738b2165bb6d2cacb26 | diff --git a/modules/social_features/social_group/modules/social_group_request/src/SocialGroupRequestConfigOverride.php b/modules/social_features/social_group/modules/social_group_request/src/SocialGroupRequestConfigOverride.php
index <HASH>..<HASH> 100644
--- a/modules/social_features/social_group/modules/social_group... | Unneccessary override | goalgorilla_open_social | train |
79e5d1e77947527abacc32b45e13702e315d43b7 | diff --git a/flusher.go b/flusher.go
index <HASH>..<HASH> 100644
--- a/flusher.go
+++ b/flusher.go
@@ -290,11 +290,13 @@ func (s *Server) flushEventsChecks() {
if events[i].Hostname == "" {
events[i].Hostname = s.Hostname
}
+ events[i].Tags = append(events[i].Tags, s.Tags...)
}
for i := range checks {
... | Add tags to service checks and events. | stripe_veneur | train |
7ccac78ccac63fe3138b574d294cf2621ca8d351 | diff --git a/Classes/Command/RedirectionCommandController.php b/Classes/Command/RedirectionCommandController.php
index <HASH>..<HASH> 100644
--- a/Classes/Command/RedirectionCommandController.php
+++ b/Classes/Command/RedirectionCommandController.php
@@ -107,7 +107,7 @@ class RedirectionCommandController extends Comman... | TASK: Remove all mentions of host patterns | neos_redirecthandler | train |
f2cc6341c35e66b42f759fd89d4b7ada8bfcb4fe | diff --git a/src/main/java/org/takes/rq/RqMultipart.java b/src/main/java/org/takes/rq/RqMultipart.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/takes/rq/RqMultipart.java
+++ b/src/main/java/org/takes/rq/RqMultipart.java
@@ -249,11 +249,15 @@ public interface RqMultipart extends Request {
} final... | #<I> Added Content-Length to RqMultipart parts | yegor256_takes | train |
1d926054c6ae63d93d2dd9ecd1bef03c3f423401 | diff --git a/tika/__init__.py b/tika/__init__.py
index <HASH>..<HASH> 100644
--- a/tika/__init__.py
+++ b/tika/__init__.py
@@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-__version__ = "1.23.1"
+__version__ = "1.24"
try:
__import__('p... | Fix for Upgrade to <I> #<I> | chrismattmann_tika-python | train |
6c28b770d724822fd6ea995c67844ef680a92e10 | diff --git a/src/Database/Concerns/IsAbility.php b/src/Database/Concerns/IsAbility.php
index <HASH>..<HASH> 100644
--- a/src/Database/Concerns/IsAbility.php
+++ b/src/Database/Concerns/IsAbility.php
@@ -24,7 +24,7 @@ trait IsAbility
Models::scope()->applyToModel($ability);
if (is_null($abili... | Explicitely cast to string | JosephSilber_bouncer | train |
72b384b2c882857f9450111b1d7f50546a51ed4c | diff --git a/src/main/java/eu/hansolo/tilesfx/skins/CustomTileSkin.java b/src/main/java/eu/hansolo/tilesfx/skins/CustomTileSkin.java
index <HASH>..<HASH> 100644
--- a/src/main/java/eu/hansolo/tilesfx/skins/CustomTileSkin.java
+++ b/src/main/java/eu/hansolo/tilesfx/skins/CustomTileSkin.java
@@ -144,14 +144,17 @@ public ... | Also set fitWidth if graphic is ImageView in CustomTileSkin | HanSolo_tilesfx | train |
f7d98f5e10a853a3b04fb019ee0943b336c5a456 | diff --git a/pkg/replication/replication.go b/pkg/replication/replication.go
index <HASH>..<HASH> 100644
--- a/pkg/replication/replication.go
+++ b/pkg/replication/replication.go
@@ -393,7 +393,7 @@ func (c *Config) EditRule(opts Options) error {
if rule.Priority == newRule.Priority && rIdx != idx {
return fmt.E... | replication: Check rule id before validating target arn (#<I>) | minio_minio-go | train |
1b45188a62d7d17894d513640bf50f3b0a8731e2 | diff --git a/indra/assemblers/cx_assembler.py b/indra/assemblers/cx_assembler.py
index <HASH>..<HASH> 100644
--- a/indra/assemblers/cx_assembler.py
+++ b/indra/assemblers/cx_assembler.py
@@ -98,10 +98,9 @@ class CxAssembler(object):
self._add_modification(stmt)
if isinstance(stmt, SelfModi... | Assemble RegulateAmount to CX | sorgerlab_indra | train |
05b11759b772f3250d0b9d0157f82a7113be2e2e | diff --git a/src/ol/xml.js b/src/ol/xml.js
index <HASH>..<HASH> 100644
--- a/src/ol/xml.js
+++ b/src/ol/xml.js
@@ -144,7 +144,7 @@ export function makeArrayExtender(valueReader, opt_this) {
* @param {Array.<*>} objectStack Object stack.
*/
function(node, objectStack) {
- const value = valueReader.... | Handle undefined 'this' in ol/xml | openlayers_openlayers | train |
6cb5ade2f9d7196fd826051cfb57d743f5f64608 | diff --git a/src/common/core/users/serialization.js b/src/common/core/users/serialization.js
index <HASH>..<HASH> 100644
--- a/src/common/core/users/serialization.js
+++ b/src/common/core/users/serialization.js
@@ -213,7 +213,7 @@ define(['common/util/assert', 'blob/BlobConfig'], function (ASSERT, BlobConfig)
... | #<I> empty instance as base issue
because the empty instances are not exported (as they not carry additional information), it may happen that during export these nodes are falsely identified as external bases (though they are not)
so the fix will filter out these nodes from the external bases collection as they will be... | webgme_webgme-engine | train |
c8c762aed96b9fed0a1244ccbcb43f202185b748 | diff --git a/spillway/models.py b/spillway/models.py
index <HASH>..<HASH> 100644
--- a/spillway/models.py
+++ b/spillway/models.py
@@ -4,6 +4,7 @@ from django.contrib.gis.db import models
from django.utils.translation import ugettext_lazy as _
from greenwich import Raster, SpatialReference
import mapnik
+import nump... | Add bin() method and reversed color ramps | bkg_django-spillway | train |
5dd01fcbfb708cf778152e226b1d469b29de3a4b | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,8 @@ All notable changes to `laravel-query-builder` will be documented in this file
## 2.2.0 - 2019-09-24
-- Add option to disable parsing relationship constraints when filtering related model prop... | Fix issue with selecting fields for included relationships
Fixes #<I> | spatie_laravel-query-builder | train |
63c8a0f791f241505701e8498b9d25c59a6f9f20 | diff --git a/sonar-core/src/main/java/org/sonar/core/dependency/DependencyMapper.java b/sonar-core/src/main/java/org/sonar/core/dependency/DependencyMapper.java
index <HASH>..<HASH> 100644
--- a/sonar-core/src/main/java/org/sonar/core/dependency/DependencyMapper.java
+++ b/sonar-core/src/main/java/org/sonar/core/depend... | Support MyBatis ResultHandler for dependencies and resources | SonarSource_sonarqube | train |
eba053756dc271465e2d2191e6f52a75c9628852 | diff --git a/lib/node_modules/@stdlib/utils/configdir/benchmark/benchmark.js b/lib/node_modules/@stdlib/utils/configdir/benchmark/benchmark.js
index <HASH>..<HASH> 100644
--- a/lib/node_modules/@stdlib/utils/configdir/benchmark/benchmark.js
+++ b/lib/node_modules/@stdlib/utils/configdir/benchmark/benchmark.js
@@ -17,15... | Account for `null` as return value | stdlib-js_stdlib | train |
2789d5cbd3a6bf0140134ca682e9995ca1acb196 | diff --git a/app/controllers/almanac/posts_controller.rb b/app/controllers/almanac/posts_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/almanac/posts_controller.rb
+++ b/app/controllers/almanac/posts_controller.rb
@@ -42,6 +42,11 @@ module Almanac
def show
@post = Post.find_by_slug(params... | Fixed an edge case when old posts without a slug were breaking the app. | vasinov_almanac | train |
82183f15721b0960c0f6e65603285687903e6513 | diff --git a/salt/cloud/clouds/lxc.py b/salt/cloud/clouds/lxc.py
index <HASH>..<HASH> 100644
--- a/salt/cloud/clouds/lxc.py
+++ b/salt/cloud/clouds/lxc.py
@@ -279,27 +279,22 @@ def list_nodes(conn=None, call=None):
nodes = {}
for state, lxcs in lxclist.items():
for lxcc, linfos in lxcs.items():
- ... | return list of nodes for lxc driver when called directly
This is required so that salt-cloud sees a dictionary list of lxc
containers that exist so that they do not attempt to recreate the
container.
The downside to this is that if the container is stopped, it is not
started.
Fixes #<I> | saltstack_salt | train |
ba5b3ad57f05223628c5efc94ecbb7cb2976b1d4 | diff --git a/includes/eduadmin-api-client/rest-client.php b/includes/eduadmin-api-client/rest-client.php
index <HASH>..<HASH> 100644
--- a/includes/eduadmin-api-client/rest-client.php
+++ b/includes/eduadmin-api-client/rest-client.php
@@ -12,9 +12,9 @@ class EduAdminRESTClient {
/**
* @var string API Password
*... | fix: REST-client for eduadmin-api-client didn't take care of strings | MultinetInteractive_EduAdmin-WordPress | train |
0807ab44a59c35f65293f20aec9699d97dac3cb8 | diff --git a/superset/constants.py b/superset/constants.py
index <HASH>..<HASH> 100644
--- a/superset/constants.py
+++ b/superset/constants.py
@@ -133,14 +133,14 @@ EXTRA_FORM_DATA_OVERRIDE_REGULAR_MAPPINGS = {
"time_column": "time_column",
"time_grain": "time_grain",
"time_range": "time_range",
+ "dr... | fix(native-filters): merge_extra_form_data extras processing (#<I>)
* fix: merge_extra_form_data extras processing
* move props that are later moved back in viz.py | apache_incubator-superset | train |
f3e70dc7b33f4d0637094c12122fa644e6bf7f17 | diff --git a/pymatgen/io/vasp/outputs.py b/pymatgen/io/vasp/outputs.py
index <HASH>..<HASH> 100644
--- a/pymatgen/io/vasp/outputs.py
+++ b/pymatgen/io/vasp/outputs.py
@@ -751,17 +751,20 @@ class Vasprun(MSONable):
kpoint_file.kpts[i]
# remake the data only considering line ... | Correct handling of band structure projections for hybrid calculations.
Fixes #<I> | materialsproject_pymatgen | train |
159e81747d0208866ea1d67b37c9aa08bc751666 | diff --git a/externs/es5.js b/externs/es5.js
index <HASH>..<HASH> 100644
--- a/externs/es5.js
+++ b/externs/es5.js
@@ -56,3 +56,27 @@ Window.prototype.JSON.stringify =
* @return {string}
*/
Date.prototype.toJSON = function(opt_ignoredKey) {};
+
+
+/**
+ * @return {string}
+ * @nosideeffects
+ * @see http://develop... | Add String::trim.
R=acleung
DELTA=<I> (<I> added, 0 deleted, 0 changed)
Revision created by MOE tool push_codebase.
MOE_MIGRATION=<I>
git-svn-id: <URL> | google_closure-compiler | train |
999c6d800e59ece267e84f0021a5ecf82c097db5 | diff --git a/server/src/main/java/io/druid/server/AsyncQueryForwardingServlet.java b/server/src/main/java/io/druid/server/AsyncQueryForwardingServlet.java
index <HASH>..<HASH> 100644
--- a/server/src/main/java/io/druid/server/AsyncQueryForwardingServlet.java
+++ b/server/src/main/java/io/druid/server/AsyncQueryForwardi... | Fix Router handling of SQL queries. (#<I>) | apache_incubator-druid | train |
1623147ff1eb70dda701e65c5d5e811634abfb72 | diff --git a/buildosx b/buildosx
index <HASH>..<HASH> 100755
--- a/buildosx
+++ b/buildosx
@@ -7,7 +7,7 @@ export PYTHONPATH="/Library/Python/2.7/site-packages/"
export CC=gcc-4.2
export CXX=g++-4.2
rm -rf build
-python setup.py config_fc --fcompiler gfortran build
+python setup.py egg_info -d -r config_fc --fcompil... | Fixed PDMatrixMetropolis competence for issue #<I> | pymc-devs_pymc | train |
4b293580de06d2558f6efb2a1634513908a1bcf9 | diff --git a/src/CoandaCMS/Coanda/Pages/Repositories/Eloquent/EloquentPageRepository.php b/src/CoandaCMS/Coanda/Pages/Repositories/Eloquent/EloquentPageRepository.php
index <HASH>..<HASH> 100644
--- a/src/CoandaCMS/Coanda/Pages/Repositories/Eloquent/EloquentPageRepository.php
+++ b/src/CoandaCMS/Coanda/Pages/Repositori... | Parent page id should be set when using the createNewPage method.
Also, parent_page_id should only be changed if the variable isset, otherwise it should be left alone. | CoandaCMS_coanda-core | train |
141ba203b0a9b8c24431acb09fb76ab7daef1866 | diff --git a/lib/reporters/base.js b/lib/reporters/base.js
index <HASH>..<HASH> 100644
--- a/lib/reporters/base.js
+++ b/lib/reporters/base.js
@@ -193,7 +193,7 @@ exports.list = function(failures){
function Base(runner) {
var self = this
- , stats = this.stats = { suites: 0, tests: 0, passes: 0, pendings: 0, f... | Changing the code according to the comments in the pull-request | mochajs_mocha | train |
08a0ca649ad3e379d6df1d65a7fac16c14d3da16 | diff --git a/tests/test_parse_gpx.js b/tests/test_parse_gpx.js
index <HASH>..<HASH> 100644
--- a/tests/test_parse_gpx.js
+++ b/tests/test_parse_gpx.js
@@ -89,7 +89,8 @@ vows.describe('Test suite for parsing gpx').addBatch({
},
'Parse gpx data should return an array of two tracking points null time' : function() {
... | #9 assert err null before going on | vanng822_gps-util | train |
f12e70dc7c39d54bd8843e5a3ef6841d24348f37 | diff --git a/src/Controller/Component/CsvViewComponent.php b/src/Controller/Component/CsvViewComponent.php
index <HASH>..<HASH> 100644
--- a/src/Controller/Component/CsvViewComponent.php
+++ b/src/Controller/Component/CsvViewComponent.php
@@ -27,6 +27,11 @@ class CsvViewComponent extends Component
const PANEL_COUN... | Server side filtering panels (task #<I>) | QoboLtd_cakephp-csv-migrations | train |
84a645712b04604c37f263faa3726cf6c5a342c4 | diff --git a/terraform/terraform.go b/terraform/terraform.go
index <HASH>..<HASH> 100644
--- a/terraform/terraform.go
+++ b/terraform/terraform.go
@@ -133,6 +133,9 @@ func (t *Terraform) refreshWalkFn(result *State) depgraph.WalkFunc {
return nil, err
}
+ // Fix the type to be the type we have
+ rs.Type = r.... | terraform: Type should always be set on ResourceState | hashicorp_terraform | train |
8778dea04ca9033006a5568011df0f6e94d13178 | diff --git a/test/test_config.py b/test/test_config.py
index <HASH>..<HASH> 100644
--- a/test/test_config.py
+++ b/test/test_config.py
@@ -26,18 +26,11 @@ class Path(TestCase):
class Loading(TestCase):
- open_patcher = mock.patch(open_mock_string)
-
- def setUp(self):
- self.mock_open = self.open_patc... | Open mock refactored. | tiborsimon_projects | train |
b64c5a8f00db1f5a48b85c56ca0e55beebd0b68c | diff --git a/hazelcast/src/main/java/com/hazelcast/cache/ICache.java b/hazelcast/src/main/java/com/hazelcast/cache/ICache.java
index <HASH>..<HASH> 100644
--- a/hazelcast/src/main/java/com/hazelcast/cache/ICache.java
+++ b/hazelcast/src/main/java/com/hazelcast/cache/ICache.java
@@ -23,7 +23,7 @@ import java.util.Map;
... | interfaces to interface in javadocs | hazelcast_hazelcast | train |
831fc723f25c60d72f0744406bb26f7ae87e94bb | diff --git a/gump.class.php b/gump.class.php
index <HASH>..<HASH> 100644
--- a/gump.class.php
+++ b/gump.class.php
@@ -675,7 +675,7 @@ class GUMP
*/
protected function validate_valid_email($field, $input, $param = NULL)
{
- if(!isset($input[$field]))
+ if(!isset($input[$field]) || empty($input[$field]))
{
... | Only failing validation when the fields are missing and the 'required' function is explicitly being set | Wixel_GUMP | train |
0d5d2e9be4d9f39dae8ca4d537ee8996960ac546 | diff --git a/caffeine/src/main/java/com/percolate/caffeine/ViewUtils.java b/caffeine/src/main/java/com/percolate/caffeine/ViewUtils.java
index <HASH>..<HASH> 100644
--- a/caffeine/src/main/java/com/percolate/caffeine/ViewUtils.java
+++ b/caffeine/src/main/java/com/percolate/caffeine/ViewUtils.java
@@ -23,7 +23,7 @@ imp... | Added ViewUtils#showKeyboard method | percolate_caffeine | train |
0a5fc2ff97e30d1fdd6800fda4a4f9060bb15665 | diff --git a/hamster/applet.py b/hamster/applet.py
index <HASH>..<HASH> 100755
--- a/hamster/applet.py
+++ b/hamster/applet.py
@@ -208,7 +208,6 @@ class HamsterApplet(object):
# load window of activity switcher and todays view
self.glade = gtk.glade.XML(os.path.join(SHARED_DATA_DIR, "menu.glade"))
... | could not trigger loosing of main window anymore so removed
the keep_above hint. fixes bug <I> on it's way
svn path=/trunk/; revision=<I> | projecthamster_hamster | train |
7fb0fd0df2f57ce91a1631972e67ebbc1851d9ca | diff --git a/tests/test_new.py b/tests/test_new.py
index <HASH>..<HASH> 100644
--- a/tests/test_new.py
+++ b/tests/test_new.py
@@ -26,6 +26,11 @@ def do_a_test(iso, check_func):
# Now make sure we can re-open the written ISO.
pyiso.PyIso().open(out)
+ iso2 = pyiso.PyIso()
+ iso2.open(out)
+ check_f... | Do additional checks with new tests.
In particular, make sure to re-open the ISOs to check
to see that we did things correctly. | clalancette_pycdlib | train |
caf7079fd07d2e7456e03d54c4f1d2d96a9ca0c1 | diff --git a/Controller/ThemeController.php b/Controller/ThemeController.php
index <HASH>..<HASH> 100644
--- a/Controller/ThemeController.php
+++ b/Controller/ThemeController.php
@@ -81,7 +81,7 @@ class ThemeController
$this->cookieOptions['path'],
$this->cookieOptions['domain'],
... | change config param from httponly to http_only | liip_LiipThemeBundle | train |
60730c6b144870a50259bdf495115946aa0be642 | diff --git a/test/acid.py b/test/acid.py
index <HASH>..<HASH> 100755
--- a/test/acid.py
+++ b/test/acid.py
@@ -121,8 +121,8 @@ def process_args():
parser = argparse.ArgumentParser()
parser.add_argument(
'--command',
- default='{} {}'.format(sys.executable,
- os.pa... | Make this work on Python <I> | hhatto_autopep8 | train |
23d11fedc610e091df22ddbb45a3d8bcfbbf745d | diff --git a/test/errorhandling.test.js b/test/errorhandling.test.js
index <HASH>..<HASH> 100644
--- a/test/errorhandling.test.js
+++ b/test/errorhandling.test.js
@@ -49,19 +49,22 @@ helper.files('errorhandling', 'mml', function(file) {
describe('Error handling mss', function() {
helper.files('errorhandling', 'mss'... | skip mss that is valid | mapbox_carto | train |
9a1c2a2962e289c4f0a5e39cff9ad0fbf16c0b62 | diff --git a/lib/sear.js b/lib/sear.js
index <HASH>..<HASH> 100644
--- a/lib/sear.js
+++ b/lib/sear.js
@@ -298,7 +298,13 @@ SearModule.prototype.toString = function (options) {
}
};
-SearModule.prototype.getSourceMap = function () {
+SearModule.prototype.getSourceMap = function (options) {
+ options = _.extend({... | Integrated sourcemaps to build process. closes #2 | Everyplay_sear | train |
9ed14dbf2af6ea3f5040801a27eed91b750a6342 | diff --git a/visidata/freqtbl.py b/visidata/freqtbl.py
index <HASH>..<HASH> 100644
--- a/visidata/freqtbl.py
+++ b/visidata/freqtbl.py
@@ -2,8 +2,8 @@ import math
from visidata import *
-globalCommand('F', 'vd.push(SheetFreqTable(sheet, cursorCol))', 'open Frequency Table grouped on current column', 'data-aggregat... | [commands] Begin migrating freqtbl.py to new format | saulpw_visidata | train |
fa32c39a7c07adc06ac391c6b334f2d2b84ce036 | diff --git a/napalm/ios/ios.py b/napalm/ios/ios.py
index <HASH>..<HASH> 100644
--- a/napalm/ios/ios.py
+++ b/napalm/ios/ios.py
@@ -3395,9 +3395,6 @@ class IOSDriver(NetworkDriver):
first_part = vrf.split("Address family")[0]
- if not first_part:
- return instances
-
... | undo a<I>ceba | napalm-automation_napalm | train |
a738502a506d12b38464475cbd205b7bfb03f02a | diff --git a/bakery/models.py b/bakery/models.py
index <HASH>..<HASH> 100644
--- a/bakery/models.py
+++ b/bakery/models.py
@@ -6,7 +6,6 @@ The magic relies on your view being class-based and having a build_object
method, like the BuildableDetailView included in this app.
"""
from django.db import models
-from django... | Let's not use atomic out of superstition for #<I>. | datadesk_django-bakery | train |
5541a96319c2878b88a24c017bcbf61c1c5c1476 | diff --git a/satpy/tests/reader_tests/test_eum_base.py b/satpy/tests/reader_tests/test_eum_base.py
index <HASH>..<HASH> 100644
--- a/satpy/tests/reader_tests/test_eum_base.py
+++ b/satpy/tests/reader_tests/test_eum_base.py
@@ -17,12 +17,10 @@
# satpy. If not, see <http://www.gnu.org/licenses/>.
"""EUMETSAT base read... | Updated test script - to optimise imports | pytroll_satpy | train |
a4746c722767f0d447c7a3737f22c90dc9ff93f6 | diff --git a/cake/libs/model/datasources/dbo/dbo_postgres.php b/cake/libs/model/datasources/dbo/dbo_postgres.php
index <HASH>..<HASH> 100644
--- a/cake/libs/model/datasources/dbo/dbo_postgres.php
+++ b/cake/libs/model/datasources/dbo/dbo_postgres.php
@@ -299,6 +299,17 @@ class DboPostgres extends DboSource {
}
... | Applying patch from 'kworr' to reorder the switch in DboPostgres::value() to fix issues with pgsql <I>. Fixes #<I> | cakephp_cakephp | train |
1e40bbacfa90076d7c647dfc36417432a1ae7599 | diff --git a/internal/static/config.go b/internal/static/config.go
index <HASH>..<HASH> 100644
--- a/internal/static/config.go
+++ b/internal/static/config.go
@@ -5,7 +5,7 @@ package static
// ExampleConfig is the config used within goreleaser init.
const ExampleConfig = `# This is an example .goreleaser.yml file w... | fix: link in example config to https (#<I>) | goreleaser_goreleaser | train |
2406b3a259cf1c4192184a5452652e4bd9831bfa | diff --git a/tests/test_integration.py b/tests/test_integration.py
index <HASH>..<HASH> 100644
--- a/tests/test_integration.py
+++ b/tests/test_integration.py
@@ -45,8 +45,8 @@ class BaseTestPycolator(unittest.TestCase):
ns['xmlns{0}{1}'.format(separator, nsprefix)] = root.nsmap[prefix]
return ns
... | Some refacotring to remove extra implementations of setUp | glormph_msstitch | train |
b6ffdd661033b87655dbd2d8791039082342ba7b | diff --git a/lib/svn-fixture/revision.rb b/lib/svn-fixture/revision.rb
index <HASH>..<HASH> 100644
--- a/lib/svn-fixture/revision.rb
+++ b/lib/svn-fixture/revision.rb
@@ -59,6 +59,7 @@ module SvnFixture
repo.repos.fs.set_prop('svn:author', @author, rev) if @author
repo.repos.fs.set_prop('svn:date', @d... | Update Revision#commit's handling of custom revprops to ensure Date/Times are converted to svn preferred time format | jm81_svn-fixture | train |
314242ad5374c420e49a25fadd3cf0f32221b999 | diff --git a/test/roda.js b/test/roda.js
index <HASH>..<HASH> 100644
--- a/test/roda.js
+++ b/test/roda.js
@@ -9,10 +9,17 @@ var roda = rodabase('./test/data/roda.json', {
db: jsondown
});
var n = 100;
-// roda.fn.use('diff', function(ctx, next){
-// console.log(ctx.result);
-// setTimeout(next, 10);
-// });
+... | more strict test cases. Breaking stuffs | cshum_rodabase | train |
5dec856d77069d70c2951c6b8f4f4ef00ea444d9 | diff --git a/mediatype/encode.go b/mediatype/encode.go
index <HASH>..<HASH> 100644
--- a/mediatype/encode.go
+++ b/mediatype/encode.go
@@ -36,7 +36,7 @@ func (m *MediaType) Encoder(w io.Writer) (Encoder, error) {
return nil, fmt.Errorf("No encoder found for format %s (%s)", m.Format, m.String())
}
-// Encode uses ... | text editor didn't save, i swear | lostisland_go-sawyer | train |
3b11c91039c27f56de351812e6294ef3db1b1c69 | diff --git a/actions/form/class.SimpleProperty.php b/actions/form/class.SimpleProperty.php
index <HASH>..<HASH> 100644
--- a/actions/form/class.SimpleProperty.php
+++ b/actions/form/class.SimpleProperty.php
@@ -141,6 +141,66 @@ class tao_actions_form_SimpleProperty
$this->form->addElement($modeElt);
$elementNames... | add the index properties value to the edit class form | oat-sa_tao-core | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.