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 |
|---|---|---|---|---|---|
6c072815393aefbb7a1153db694e95cf156c6556 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -48,7 +48,7 @@ except (IOError, ImportError):
long_description = f.read()
-version = '0.1.7'
+version = '0.1.8'
class TestCommand(Command): | Update version number to <I> | chaoss_grimoirelab-perceval-puppet | train | py |
70a265d0c1e02279179cf00225e05a101e491c44 | diff --git a/lib/cli/index.js b/lib/cli/index.js
index <HASH>..<HASH> 100644
--- a/lib/cli/index.js
+++ b/lib/cli/index.js
@@ -8,16 +8,13 @@ module.exports = function (options) {
if (/version:/.test(string) || /warning:/.test(string)) {
return;
}
- string = string.replace(/ember-cli(?!.com)/... | Don't squash ember-cli errors | candycanejs_candycane-cli | train | js |
827dd852b7cfd07887622c36c741e06bbaddb9d2 | diff --git a/lib/motion-addressbook/version.rb b/lib/motion-addressbook/version.rb
index <HASH>..<HASH> 100644
--- a/lib/motion-addressbook/version.rb
+++ b/lib/motion-addressbook/version.rb
@@ -1,5 +1,5 @@
module Motion
module Addressbook
- VERSION = "1.7.2"
+ VERSION = "1.7.3"
end
end | Update version.rb
version bump to get latest PR | alexrothenberg_motion-addressbook | train | rb |
390155d7c37e5736de48119a26c916e855aebb53 | diff --git a/hydpy/cythons/modelutils.py b/hydpy/cythons/modelutils.py
index <HASH>..<HASH> 100644
--- a/hydpy/cythons/modelutils.py
+++ b/hydpy/cythons/modelutils.py
@@ -183,15 +183,19 @@ class Cythonizer(object):
sys.argv = argv
dirinfos = os.walk(self.buildpath)
next(dirinfos)
+ sys... | try to move files like "c_hbranch.cpython-<I>m-x<I>_<I>-linux-gnu.so" | hydpy-dev_hydpy | train | py |
6473e07ea748f6798e78046cdef26d599c2f6b35 | diff --git a/pymongo/common.py b/pymongo/common.py
index <HASH>..<HASH> 100644
--- a/pymongo/common.py
+++ b/pymongo/common.py
@@ -14,6 +14,7 @@
"""Functions and classes common to multiple pymongo modules."""
+import sys
import warnings
from pymongo import read_preferences
@@ -28,6 +29,11 @@ except ImportError... | Jython <I>'s ssl module is incomplete. | mongodb_mongo-python-driver | train | py |
cf8a2f44daa444e2cd91d5fc71c330a5c7842c74 | diff --git a/modules/orionode/lib/tasks.js b/modules/orionode/lib/tasks.js
index <HASH>..<HASH> 100644
--- a/modules/orionode/lib/tasks.js
+++ b/modules/orionode/lib/tasks.js
@@ -82,7 +82,9 @@ var TaskStoreMongoDB = function() {
});
this._orionTask = this._mongoose.model("orionTask", taskSchema);
-// this._mongo... | Bug <I> - persist long-running tasks on node server such that they're available to multiple server instances (attempt connect to Mongo iff needed) | eclipse_orion.client | train | js |
ca2d23367077f8ecf6eb286a850ca80d7f5f0691 | diff --git a/sensor.go b/sensor.go
index <HASH>..<HASH> 100644
--- a/sensor.go
+++ b/sensor.go
@@ -81,24 +81,24 @@ func InitSensor(options *Options) {
sensor = newSensor(options)
- // enable auto-profiling
- if options.EnableAutoProfile {
- autoprofile.SetLogger(sensor.logger)
- autoprofile.SetOptions(autoprofi... | Always preconfigure AutoProfile even if it's disabled | instana_go-sensor | train | go |
c74d071ef91f2f7497b0a905e09631de53e1503c | diff --git a/runner.go b/runner.go
index <HASH>..<HASH> 100644
--- a/runner.go
+++ b/runner.go
@@ -54,6 +54,8 @@ func (m *Runner) readMessage(msg *Message) (shutdown bool) {
m.step = -1
m.runNextStep()
shutdown = false
+ } else if msg.Type == COMMAND && msg.Body == "update" {
+ m.sendUpdate()
} else if len(... | runner now responds to update command | cswank_gogadgets | train | go |
5ebbff32574ef089ce091ec6b87f7d7adbb429e6 | diff --git a/lib/discordrb/bot.rb b/lib/discordrb/bot.rb
index <HASH>..<HASH> 100644
--- a/lib/discordrb/bot.rb
+++ b/lib/discordrb/bot.rb
@@ -245,7 +245,7 @@ module Discordrb
end
user.status = status
user.game = Discordrb::Games.find_game(data['game_id'])
- @users[user_id] = user
+ user
... | Don't reassign the user as it caused things to fail | meew0_discordrb | train | rb |
bf2af1c9e913939e511773d6149d03b8af4c18f1 | diff --git a/play.py b/play.py
index <HASH>..<HASH> 100755
--- a/play.py
+++ b/play.py
@@ -5,13 +5,27 @@
import pyshell
+
# The subshell classes must be defined before being referenced.
class KarShell(pyshell.Shell):
"""The KarShell.
This message shows up when you type 'help'
"""
- pass
+
+ ... | Add examples of overloading lexer | qzmfranklin_easyshell | train | py |
5e2b5b3f4f3b77ba141b2785db32141a1b73eae6 | diff --git a/oa-oauth/spec/omniauth/strategies/oauth_spec.rb b/oa-oauth/spec/omniauth/strategies/oauth_spec.rb
index <HASH>..<HASH> 100644
--- a/oa-oauth/spec/omniauth/strategies/oauth_spec.rb
+++ b/oa-oauth/spec/omniauth/strategies/oauth_spec.rb
@@ -15,7 +15,7 @@ def app
provider :oauth, :twitter, 'abc', 'def',... | changed Rack endpoint in OAuth spec to return an enumerable body as per the Rack specification | omniauth_omniauth | train | rb |
751b371d1dbb4696012a4585a4b155582ce0d931 | diff --git a/Storage/Processor/Image.php b/Storage/Processor/Image.php
index <HASH>..<HASH> 100644
--- a/Storage/Processor/Image.php
+++ b/Storage/Processor/Image.php
@@ -33,6 +33,9 @@ class Image
$contents = fread($handle, $length);
fclose($handle);
+ if ($contents === false) {
+ ... | bug(param-type): imagecreatefromstring first param cannot be false | ems-project_EMSCommonBundle | train | php |
832a3ffe73102cdf48159a6c5cf478c99851a43c | diff --git a/tests/test_ss.py b/tests/test_ss.py
index <HASH>..<HASH> 100644
--- a/tests/test_ss.py
+++ b/tests/test_ss.py
@@ -194,7 +194,8 @@ def test_script_main():
"""
proc = subprocess.Popen(['ss'], shell=True, stdout=subprocess.PIPE)
output, _ = proc.communicate()
- assert proc.returncode == 0... | Accepting more than one return code
Different return code between linux/windows, don't know why | nicoddemus_ss | train | py |
6181e5b9d046353413b1fded19dac874350325fd | diff --git a/daemon/logs.go b/daemon/logs.go
index <HASH>..<HASH> 100644
--- a/daemon/logs.go
+++ b/daemon/logs.go
@@ -7,6 +7,7 @@ import (
"time"
"github.com/docker/docker/daemon/logger"
+ "github.com/docker/docker/pkg/stdcopy"
"github.com/golang/glog"
"github.com/hyperhq/runv/hypervisor/types"
)
@@ -43,6 +... | for non-tty container, write log should use stdcopy
This is the behavior compatible to docker(tm). However, because hyperctl
always try using stream as tty terminal. Need further modification on hyperctl.
should we do the further improvement in another PR? | hyperhq_hyperd | train | go |
97b5e41ea9a29c3eb4c5db6143c9c8f834f8e041 | diff --git a/spec/influxdb/cases/write_points_spec.rb b/spec/influxdb/cases/write_points_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/influxdb/cases/write_points_spec.rb
+++ b/spec/influxdb/cases/write_points_spec.rb
@@ -81,6 +81,32 @@ describe InfluxDB::Client do
specify { expect(subject.write_point("seriez",... | Add Client#write_points specs | influxdata_influxdb-ruby | train | rb |
795cc0d3895e4bb79e5f3e3c7c771fea2d314472 | diff --git a/holoviews/ipython/magics.py b/holoviews/ipython/magics.py
index <HASH>..<HASH> 100644
--- a/holoviews/ipython/magics.py
+++ b/holoviews/ipython/magics.py
@@ -188,13 +188,10 @@ class OutputMagic(OptionsMagic):
def missing_dependency_exception(value, keyword, allowed):
- if value in ['mp4', '... | The OutputMagic now more helpful when holomap formats are unsupported
Attempting to use a holomap format that not supported on your
system (e.g ffmpeg is missing) now generates a more useful message that
helps diagnose the problem (e.g missing optional dependencies) | pyviz_holoviews | train | py |
274524e456eb7d22d9c7539394448d87ea848ce8 | diff --git a/lib/chain_manager.js b/lib/chain_manager.js
index <HASH>..<HASH> 100644
--- a/lib/chain_manager.js
+++ b/lib/chain_manager.js
@@ -6,6 +6,7 @@ ChainManager = function() {
this.chainManagerConfig = {};
this.currentChain = {};
this.file = "";
+ this.web3 = null;
}
ChainManager.prototype.loadConf... | Sometimes it's nice to get beneath the framework and work with web3 directly. | embark-framework_embark | train | js |
b317c3f7169b81fa89ee8ad8d882be4e8d82dc64 | diff --git a/src/main/java/net/troja/eve/esi/ApiClient.java b/src/main/java/net/troja/eve/esi/ApiClient.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/troja/eve/esi/ApiClient.java
+++ b/src/main/java/net/troja/eve/esi/ApiClient.java
@@ -736,6 +736,11 @@ public class ApiClient {
}
}
+ ... | content-length header fix (#<I>)
Workaround for content-length header not set if body is null | burberius_eve-esi | train | java |
3cfff0ed7efbed34c0a6e5b1439d41229eed2149 | diff --git a/src/Services/QueuedJobService.php b/src/Services/QueuedJobService.php
index <HASH>..<HASH> 100644
--- a/src/Services/QueuedJobService.php
+++ b/src/Services/QueuedJobService.php
@@ -10,7 +10,6 @@ use SilverStripe\Control\Session;
use SilverStripe\Core\Config\Config;
use SilverStripe\Core\Convert;
use Si... | FIX, correcting some references that are no longer valid with SS4. | symbiote_silverstripe-queuedjobs | train | php |
80c5059c3e5fe9865688b733335d15961633080a | diff --git a/world/components.go b/world/components.go
index <HASH>..<HASH> 100644
--- a/world/components.go
+++ b/world/components.go
@@ -1160,7 +1160,8 @@ func (maker v0ComponentMaker) RepN(n int, _ ...func(*repconfig.RepConfig)) *gink
"-bbsClientKey", maker.bbsSSL.ClientKey,
"-caFile", maker.repSSL.CACert,
... | Change v0 Rep configuration to allow v0 vizzini to pass cells_test.go
[#<I>] | cloudfoundry_inigo | train | go |
258aa6acf757433d9d70e71b4ea2ab046e4a4bd0 | diff --git a/salt/states/pcs.py b/salt/states/pcs.py
index <HASH>..<HASH> 100644
--- a/salt/states/pcs.py
+++ b/salt/states/pcs.py
@@ -6,6 +6,8 @@ Management of Pacemaker/Corosync clusters with PCS
A state module to manage Pacemaker/Corosync clusters
with the Pacemaker/Corosync configuration system(PCS)
+.. version... | Add version tag to new pcs state module (#<I>) | saltstack_salt | train | py |
e521fcda142020ecf7856c8b32dd896743b74181 | diff --git a/test/constructor.js b/test/constructor.js
index <HASH>..<HASH> 100644
--- a/test/constructor.js
+++ b/test/constructor.js
@@ -165,8 +165,7 @@ module.exports = {
'path and query params merging WITH overriding existing path params');
},
- // @todo issue #1
- 'POST request body build... | request body compilation test fixed after #1 fix | nodules_asker | train | js |
1ef640a2916625b13907b90b9fd5057463234e59 | diff --git a/properties/array.py b/properties/array.py
index <HASH>..<HASH> 100644
--- a/properties/array.py
+++ b/properties/array.py
@@ -55,7 +55,7 @@ class Array(Property):
raise Exception('Must be a float or an int: {}'.format(data.dtype))
data_file = tempfile.NamedTemporaryFile('rb+', suffi... | use tofile instead of tobytes for <I> compatibility | seequent_properties | train | py |
8c07c7cd4e337c40a9a597c3eca6ac72c584587b | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
-from setuptools import setup, find_packages
+from setuptools import setup
import sys
import os
@@ -11,6 +11,7 @@ if sys.argv[-3] == 'tag':
pwd = sys.argv[-1]
print(version)
os.system('git tag -... | added jenkins file deleting workaround | openergy_oplus | train | py |
0d1850d94f1cb9ab298e029c012e376b895f1863 | diff --git a/test/BasicTest.php b/test/BasicTest.php
index <HASH>..<HASH> 100644
--- a/test/BasicTest.php
+++ b/test/BasicTest.php
@@ -1,5 +1,7 @@
<?php
use ParagonIE\CSPBuilder\CSPBuilder;
+use Psr\Http\Message\MessageInterface;
+
/**
*
*/
@@ -43,4 +45,22 @@ class BasicTest extends PHPUnit_Framework_TestCase
... | #5 - Testing injection of CSP headers into a PSR-7 request (no legacy support) | paragonie_csp-builder | train | php |
58268ddb4717a300fba0a9772de78a82eced9aff | diff --git a/lib/slimmer/test_helpers/shared_templates.rb b/lib/slimmer/test_helpers/shared_templates.rb
index <HASH>..<HASH> 100644
--- a/lib/slimmer/test_helpers/shared_templates.rb
+++ b/lib/slimmer/test_helpers/shared_templates.rb
@@ -1,6 +1,15 @@
module Slimmer
module TestHelpers
module SharedTemplates
+ ... | Add shared test helper for frontend app to use
Allows frontend apps to stub component locales for example
```ruby
class ActiveSupport::TestCase
include Slimmer::TestHelpers::SharedTemplates
def setup
stub_shared_component_locales
end
end
``` | alphagov_slimmer | train | rb |
114cc597072ec93fc4401bbfcf10d52a9b782464 | diff --git a/src/Behat/Behat/ApplicationFactory.php b/src/Behat/Behat/ApplicationFactory.php
index <HASH>..<HASH> 100644
--- a/src/Behat/Behat/ApplicationFactory.php
+++ b/src/Behat/Behat/ApplicationFactory.php
@@ -39,7 +39,7 @@ use Behat\Testwork\Suite\ServiceContainer\SuiteExtension;
*/
class ApplicationFactory ex... | Specify <I>-dev as an application version | Behat_Behat | train | php |
85b646175e1bf1afa0448ba8ada16b9816b43407 | diff --git a/lib/transports/mailgun/processAddress.js b/lib/transports/mailgun/processAddress.js
index <HASH>..<HASH> 100644
--- a/lib/transports/mailgun/processAddress.js
+++ b/lib/transports/mailgun/processAddress.js
@@ -10,9 +10,9 @@ function processAddress (data) {
if (typeof data === 'object') {
// support { ... | Add firstName and lastName to rtn before data.name is reset | keystonejs_keystone-email | train | js |
471e72beb2e0319a541030d7b297b5ca285bafbf | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -8,7 +8,7 @@
* @author Alejandro Mostajo <info@10quality.com>
* @copyright 10 Quality
* @license MIT
- * @version 1.2.3
+ * @version 1.3.0
*/
/**
diff --git a/tests/test.js b/tests/test.js
index <HASH>..<HASH> 10064... | Prep release candidate <I> | 10quality_gulp-wpmvc | train | js,js |
4503de53ab7f31e1cc930c72f4865d30375f8f8a | diff --git a/Document.js b/Document.js
index <HASH>..<HASH> 100644
--- a/Document.js
+++ b/Document.js
@@ -172,6 +172,45 @@
};
+ Document.prototype.highlight = function (elem, code) {
+ if (!elem) return;
+
+ // default value is ERR
+ switch (code) {
+ case 'OK':
+ var color = 'green';
+ break;... | Widgets (controls) can get highlighted. GameStorage join operation in progress | nodeGame_nodegame-window | train | js |
8ca82d29355075d0bebef92d242211a9bd5f4eef | diff --git a/bundles/org.eclipse.orion.client.ui/web/orion/widgets/UserMenu.js b/bundles/org.eclipse.orion.client.ui/web/orion/widgets/UserMenu.js
index <HASH>..<HASH> 100644
--- a/bundles/org.eclipse.orion.client.ui/web/orion/widgets/UserMenu.js
+++ b/bundles/org.eclipse.orion.client.ui/web/orion/widgets/UserMenu.js
@... | Fixing a problem with the user menu to show display of sign-out or not | eclipse_orion.client | train | js |
2f8902f78797a83aa72b353b86bedb00794d533d | diff --git a/go/install/install_windows.go b/go/install/install_windows.go
index <HASH>..<HASH> 100644
--- a/go/install/install_windows.go
+++ b/go/install/install_windows.go
@@ -378,7 +378,7 @@ func LsofMount(mountDir string, log Log) ([]CommonLsofResult, error) {
func deleteDeprecatedFileIfPresent() {
// this file... | go/install: fix error conditional in unlikely old autostart removal case (#<I>) | keybase_client | train | go |
0143d7c9008302092389e89d9f4bd024e9acd286 | diff --git a/calais.js b/calais.js
index <HASH>..<HASH> 100755
--- a/calais.js
+++ b/calais.js
@@ -44,7 +44,7 @@ iniparser.parse(home + '/.calais', function(err, data) {
var file = argv['_'][0]
- path.exists(file, function(exists) {
+ fs.exists(file, function(exists) {
if (exists) { | [fix] path.exists was moved to fs.exists | mcantelon_node-calais | train | js |
453b7d0dcb7e69105af6a9c30ff62f0eecdf1b8f | diff --git a/tests/test_customer.py b/tests/test_customer.py
index <HASH>..<HASH> 100644
--- a/tests/test_customer.py
+++ b/tests/test_customer.py
@@ -5,6 +5,7 @@ import decimal
from copy import deepcopy
from unittest.mock import ANY, patch
+import pytest
from django.contrib.auth import get_user_model
from django... | Add some customer tests for deprecated methods
* Updated test_can_charge to ensure the expected warning gets raised
* Added missing test for test_has_valid_source | dj-stripe_dj-stripe | train | py |
7d9052d5c31a30eba289817372870c90361ca91f | diff --git a/app/lib/quasar-config.js b/app/lib/quasar-config.js
index <HASH>..<HASH> 100644
--- a/app/lib/quasar-config.js
+++ b/app/lib/quasar-config.js
@@ -386,7 +386,8 @@ class QuasarConfig {
// special case where a component can be designated for a framework > config prop
if (cfg.framework.importStrategy... | fix(app): Custom Loading not working in the newest version #<I> (#<I>) | quasarframework_quasar | train | js |
7e3f0b8f9bdeb891678ddd697b3aada8c6e87377 | diff --git a/app/templates/Gruntfile.js b/app/templates/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/app/templates/Gruntfile.js
+++ b/app/templates/Gruntfile.js
@@ -98,13 +98,6 @@ module.exports = function(grunt) {
}
});
- // only watch templates files
- grunt.registerTask('watch', function(target) {
- grunt.... | Update Gruntfile.js
task 'watch' has conflict so I remove the registerTask for 'watch' | keystonejs_generator-keystone | train | js |
77fd12a35c1557742fafeac1eb47e759570c7489 | diff --git a/TYPO3.Neos/Resources/Public/JavaScript/Content/Components/PublishMenu.js b/TYPO3.Neos/Resources/Public/JavaScript/Content/Components/PublishMenu.js
index <HASH>..<HASH> 100644
--- a/TYPO3.Neos/Resources/Public/JavaScript/Content/Components/PublishMenu.js
+++ b/TYPO3.Neos/Resources/Public/JavaScript/Content... | BUGFIX: Use neos- prefixed class for publish button count badge | neos_neos-development-collection | train | js |
28b392bb485adb191177037c143f38ae6166c673 | diff --git a/src/ox_modules/module-mob/commands/click.js b/src/ox_modules/module-mob/commands/click.js
index <HASH>..<HASH> 100644
--- a/src/ox_modules/module-mob/commands/click.js
+++ b/src/ox_modules/module-mob/commands/click.js
@@ -22,9 +22,10 @@ module.exports = async function(locator, timeout) {
var el = aw... | Throw proper error on mob.click in webview context if element is not interactable | oxygenhq_oxygen | train | js |
95b433063e8f9fab383ac8547eddd3ab09f9b117 | diff --git a/lib/celerity/viewer_connection.rb b/lib/celerity/viewer_connection.rb
index <HASH>..<HASH> 100644
--- a/lib/celerity/viewer_connection.rb
+++ b/lib/celerity/viewer_connection.rb
@@ -19,6 +19,10 @@ module Celerity
send_data({'method' => 'save', 'path' => path}.to_json)
end
+ def close
+ ... | Add ViewerConnection#close | jarib_celerity | train | rb |
4909865e29eb4002a39488b630789a517faf6b49 | diff --git a/sharding-proxy/sharding-proxy-bootstrap/src/main/java/org/apache/shardingsphere/shardingproxy/Bootstrap.java b/sharding-proxy/sharding-proxy-bootstrap/src/main/java/org/apache/shardingsphere/shardingproxy/Bootstrap.java
index <HASH>..<HASH> 100644
--- a/sharding-proxy/sharding-proxy-bootstrap/src/main/java... | fix start proxy (#<I>) | apache_incubator-shardingsphere | train | java |
b6f8d3d661f9607b8b12de9afce02f4ef33ce6ff | diff --git a/mpv.js b/mpv.js
index <HASH>..<HASH> 100644
--- a/mpv.js
+++ b/mpv.js
@@ -24,7 +24,7 @@ function mpv(){
// --input-ipc-server IPC socket to communicate with mpv
// --idle always run in the background
// -quite no console prompts. Buffer will overflow otherwise
- var defaultArgs = ['--no-video', '... | Handled error when spawn fails to load mpv | 00SteinsGate00_Node-MPV | train | js |
48f83e208ecc9fbf6b407e9935404669dcfddf75 | diff --git a/example/pure/run.js b/example/pure/run.js
index <HASH>..<HASH> 100644
--- a/example/pure/run.js
+++ b/example/pure/run.js
@@ -1,5 +1,5 @@
var browser = require("../../lib/jsdom/browser/index");
-var dom = new browser.browserAugmentation(require("../../lib/jsdom/level1/core").dom.level1.core);
+var dom = n... | Example requires level 2 as it uses document.getElementById | jsdom_jsdom | train | js,js |
93825d965cb722d9fec475b2f23e5428fe420cf5 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -26,7 +26,8 @@ def load_version(filename='./virtualbox/version.py'):
setup(
name="pyvbox",
version=load_version(),
- packages=["virtualbox"],
+ packages=["virtualbox",
+ "virtualbox._library_ext"]... | moved extension code under _library_ext package | sethmlarson_virtualbox-python | train | py |
2ba345a1f2a8a592b04b19ed88e9b16919b32d25 | diff --git a/extensions/robospice-ui-spicelist-parent/robospice-ui-spicelist/src/main/java/com/octo/android/robospice/spicelist/SpiceListView.java b/extensions/robospice-ui-spicelist-parent/robospice-ui-spicelist/src/main/java/com/octo/android/robospice/spicelist/SpiceListView.java
index <HASH>..<HASH> 100644
--- a/ext... | Attended comments about commit eb2b8b<I>e0ff<I>f<I>da8f6d<I>e4d<I>a1a5d2e. | stephanenicolas_robospice | train | java |
3be3e440f09a9c4bbbcf6d23a682783dcbf634e8 | diff --git a/lib/stairway/stairs.rb b/lib/stairway/stairs.rb
index <HASH>..<HASH> 100644
--- a/lib/stairway/stairs.rb
+++ b/lib/stairway/stairs.rb
@@ -35,6 +35,12 @@ module Stairway
end
end
+ def run_step(name, context={}, options={})
+ notify(context, options)
+
+ @steps[name].run
+ end
+... | Add run_step to run a single step at once | garno_stairway | train | rb |
ee89e15fb741bf77ef0a911271163ce420ae973c | diff --git a/services/datalad/datalad_service/common/annex.py b/services/datalad/datalad_service/common/annex.py
index <HASH>..<HASH> 100644
--- a/services/datalad/datalad_service/common/annex.py
+++ b/services/datalad/datalad_service/common/annex.py
@@ -7,6 +7,8 @@ import io
import stat
import subprocess
+from sen... | Log prase_rmet_line errors to Sentry to debug the missing cases. | OpenNeuroOrg_openneuro | train | py |
aa5722bbc4cccc2ea6e4a4c87e0dd66931c7f715 | diff --git a/armstrong/core/arm_wells/models.py b/armstrong/core/arm_wells/models.py
index <HASH>..<HASH> 100644
--- a/armstrong/core/arm_wells/models.py
+++ b/armstrong/core/arm_wells/models.py
@@ -12,7 +12,7 @@ from .managers import WellManager
class Well(models.Model):
title = models.CharField(max_length=100)
... | make sure that expires isn't required in the admin | armstrong_armstrong.core.arm_wells | train | py |
e689011fd6e1b319c82cbe8897e75b41e578e3f3 | diff --git a/src/python/tmclient/api.py b/src/python/tmclient/api.py
index <HASH>..<HASH> 100644
--- a/src/python/tmclient/api.py
+++ b/src/python/tmclient/api.py
@@ -117,11 +117,15 @@ def check_imagemagick_supported_format(fmt):
fmt = fmt.lower()
if not fmt.startswith('.'):
fmt = '.' + fmt
- dele... | Catch and correctly report error when the format for option `--convert` is not supported by `tm_client`.
Previous code would only report error if the format was not apparently
supported by ImageMagick, and just dump a Python `KeyError` if the
format was not in `tm_client`'s hard-coded list. | TissueMAPS_TmClient | train | py |
a1851a6d3e69d67bfc4e6bfdec85ba58293351b9 | diff --git a/graphdriver/btrfs/btrfs.go b/graphdriver/btrfs/btrfs.go
index <HASH>..<HASH> 100644
--- a/graphdriver/btrfs/btrfs.go
+++ b/graphdriver/btrfs/btrfs.go
@@ -206,6 +206,8 @@ func (d *Driver) Get(id string) (string, error) {
}
func (d *Driver) Put(id string) {
+ // Get() creates no runtime resources (like e... | btrfs: Add comment to Put()
Document why we don't need to do anything in Put().
Docker-DCO-<I>- | moby_moby | train | go |
b404f1895fc047fc0f9226ad0bfbbc276c93f4f2 | diff --git a/lib/netsuite/records/item_fulfillment.rb b/lib/netsuite/records/item_fulfillment.rb
index <HASH>..<HASH> 100644
--- a/lib/netsuite/records/item_fulfillment.rb
+++ b/lib/netsuite/records/item_fulfillment.rb
@@ -11,7 +11,7 @@ module NetSuite
fields :tran_date, :tran_id, :shipping_cost, :memo, :ship_... | Add the status field to ItemFulfillments | NetSweet_netsuite | train | rb |
682d9fba03a7967b6c3048de93530f9d766699a9 | diff --git a/shared/network.go b/shared/network.go
index <HASH>..<HASH> 100644
--- a/shared/network.go
+++ b/shared/network.go
@@ -180,10 +180,10 @@ func WebsocketSendStream(conn *websocket.Conn, r io.Reader, bufferSize int) chan
return ch
}
-func WebsocketRecvStream(w io.WriteCloser, conn *websocket.Conn) chan bo... | relax constraints on WebsocketRecvStream args
We don't use the Close method any more, so let's make these Writers, not
WriteClosers. | lxc_lxd | train | go |
bf50d1dfb602a8f4f7f144d36bfd2648e3c849e1 | diff --git a/doradus-server/src/com/dell/doradus/olap/builder/SegmentBuilder.java b/doradus-server/src/com/dell/doradus/olap/builder/SegmentBuilder.java
index <HASH>..<HASH> 100644
--- a/doradus-server/src/com/dell/doradus/olap/builder/SegmentBuilder.java
+++ b/doradus-server/src/com/dell/doradus/olap/builder/SegmentBu... | fixed NPE if _ID field is not set in a document in OLAP batch | QSFT_Doradus | train | java |
10f77878f110182036eb5fb0822a304cc55399cf | diff --git a/test.js b/test.js
index <HASH>..<HASH> 100644
--- a/test.js
+++ b/test.js
@@ -51,6 +51,7 @@ for (let id in config)
markets[id][key] = config[id][key]
markets['gdax'].urls['api'] = 'https://api-public.sandbox.gdax.com'
+markets['lakebtc'].proxy = proxies[1]
var countryName = function (code) {... | added proxy for lakebtc in test.js | ccxt_ccxt | train | js |
5df127d26e168415edd90feee7c703d88515df22 | diff --git a/daemon/pod.go b/daemon/pod.go
index <HASH>..<HASH> 100644
--- a/daemon/pod.go
+++ b/daemon/pod.go
@@ -476,6 +476,20 @@ func (p *Pod) PrepareServices() error {
return err
}
+/***
+ PrepareDNS() Set the resolv.conf of host to each container, except the following cases:
+
+ - if the pod has a `dns` fie... | add comments to describe the dns insert behavior | hyperhq_hyperd | train | go |
352430569944217018c266668ed799bcf08cc42d | diff --git a/luigi/task.py b/luigi/task.py
index <HASH>..<HASH> 100644
--- a/luigi/task.py
+++ b/luigi/task.py
@@ -561,6 +561,7 @@ class Task(object):
This method gets called when :py:meth:`run` completes without raising any exceptions.
The returned value is json encoded and sent to the scheduler as t... | Add missing `pass` keyword
I have no idea why this compiled before. | spotify_luigi | train | py |
58f68aee9f247751357bf63db88eda8ef82629f5 | diff --git a/deployer/db/task/db:copy.php b/deployer/db/task/db:copy.php
index <HASH>..<HASH> 100644
--- a/deployer/db/task/db:copy.php
+++ b/deployer/db/task/db:copy.php
@@ -46,6 +46,6 @@ task('db:copy', function () {
} else {
runLocally("{{local/bin/deployer}} db:upload $targetInstanceName --dumpcode=$d... | [BUGFIX] Refactor db:copy task - fix for wrong path on import command | sourcebroker_deployer-extended-database | train | php |
b06a3dec4340423a220e55201c51be471fff5604 | diff --git a/pydevd.py b/pydevd.py
index <HASH>..<HASH> 100644
--- a/pydevd.py
+++ b/pydevd.py
@@ -79,7 +79,7 @@ connected = False
bufferStdOutToServer = False
bufferStdErrToServer = False
remote = False
-inside_fork = False
+forked = False
file_system_encoding = getfilesystemencoding()
@@ -1233,8 +1233,8 @@ de... | Renaming after review (PY-<I>)
(cherry picked from commit <I>d<I>) | fabioz_PyDev.Debugger | train | py |
ccb6778f7f470befb890f43d0e1cc897ced5bbc2 | diff --git a/network/default.go b/network/default.go
index <HASH>..<HASH> 100644
--- a/network/default.go
+++ b/network/default.go
@@ -585,6 +585,11 @@ func (n *network) processCtrlChan(client transport.Client, listener tunnel.Liste
}
events = append(events, e)
}
+ // if no events are eligible for p... | Skip processing Advert which carries no events | micro_go-micro | train | go |
d91abb80da0c48c79a06abbceb95c5dbeb0095e4 | diff --git a/vendor/k8s.io/kubernetes/pkg/kubelet/dockertools/docker_manager.go b/vendor/k8s.io/kubernetes/pkg/kubelet/dockertools/docker_manager.go
index <HASH>..<HASH> 100644
--- a/vendor/k8s.io/kubernetes/pkg/kubelet/dockertools/docker_manager.go
+++ b/vendor/k8s.io/kubernetes/pkg/kubelet/dockertools/docker_manager.... | UPSTREAM: <I>: Kubelet: Set PruneChildren when removing image | openshift_origin | train | go |
80cefe7308276314c30a66c8d1f20b5e42d004d2 | diff --git a/src/EventExport/FileWriter/JSONLDFileWriter.php b/src/EventExport/FileWriter/JSONLDFileWriter.php
index <HASH>..<HASH> 100644
--- a/src/EventExport/FileWriter/JSONLDFileWriter.php
+++ b/src/EventExport/FileWriter/JSONLDFileWriter.php
@@ -24,7 +24,7 @@ class JSONLDFileWriter implements FileWriterInterface
... | III-<I>: Pass the correct variable to the event formatter | cultuurnet_udb3-php | train | php |
5c674cdd07c871c0ab4b883417a84a6d55e41151 | diff --git a/upload/admin/controller/marketplace/marketplace.php b/upload/admin/controller/marketplace/marketplace.php
index <HASH>..<HASH> 100644
--- a/upload/admin/controller/marketplace/marketplace.php
+++ b/upload/admin/controller/marketplace/marketplace.php
@@ -853,7 +853,6 @@ class Marketplace extends \Opencart\S... | Cleaned up one line of code. | opencart_opencart | train | php |
5cbbbb5e288951d7b12d3ecb9559a3875cc72cd3 | diff --git a/plugins/provisioners/ansible/provisioner/base.rb b/plugins/provisioners/ansible/provisioner/base.rb
index <HASH>..<HASH> 100644
--- a/plugins/provisioners/ansible/provisioner/base.rb
+++ b/plugins/provisioners/ansible/provisioner/base.rb
@@ -114,7 +114,7 @@ module VagrantPlugins
# Verify if ho... | #<I> - Can't use alphanumeric patterns for box names in ansible.groups: Changed iteration logic for warning message and fixed regex typo | hashicorp_vagrant | train | rb |
4bb82d95ae34592fcf861cdaf02faeca0c6a6249 | diff --git a/websockets/client.py b/websockets/client.py
index <HASH>..<HASH> 100644
--- a/websockets/client.py
+++ b/websockets/client.py
@@ -124,10 +124,6 @@ def connect(uri, *,
It raises :exc:`~websockets.uri.InvalidURI` if ``uri`` is invalid and
:exc:`~websockets.handshake.InvalidHandshake` if the hands... | Remove a misunderstanding of the specification.
As explained properly in the remainder of the library, clients are
allowed to start the WebSocket closing handshake. It's the TCP
connection that should be closed by the server (to allow reuse). | aaugustin_websockets | train | py |
6c8e327be7509f86b336c417a70a82b33130077f | diff --git a/tests/contrib/test_cache.py b/tests/contrib/test_cache.py
index <HASH>..<HASH> 100644
--- a/tests/contrib/test_cache.py
+++ b/tests/contrib/test_cache.py
@@ -181,14 +181,16 @@ class TestFileSystemCache(CacheTests):
assert len(cache_files) <= THRESHOLD
def test_filesystemcache_clear(self, c)... | Fixed the file system test that was broken | pallets_werkzeug | train | py |
f257c8f85d01c2c77f7ac48c5c14cda15b72c4f6 | diff --git a/docs/source/conf.py b/docs/source/conf.py
index <HASH>..<HASH> 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -38,7 +38,7 @@ extensions = [
'sphinx.ext.napoleon',
'sphinx.ext.intersphinx',
'sphinx.ext.githubpages',
- 'nbsphinx',
+# 'nbsphinx',
# 'sphinx_autodoc_typehi... | rm nbsphinx for now (include here + in requirements when needed) | theislab_scvelo | train | py |
e02e4370103672c6d57dedfc1a2448a12ea917d8 | diff --git a/src/Command/Humbug.php b/src/Command/Humbug.php
index <HASH>..<HASH> 100644
--- a/src/Command/Humbug.php
+++ b/src/Command/Humbug.php
@@ -185,8 +185,8 @@ class Humbug extends Command
if ($chDir !== null) {
$this->container->setTestRunDirectory($chDir);
}
- $this->jsonL... | Implemented command line configuration of log files | humbug_humbug | train | php |
1127bd649d907a602b53008bfbd20438f40a3e14 | diff --git a/src/Adapter/DbTable/CallbackCheckAdapter.php b/src/Adapter/DbTable/CallbackCheckAdapter.php
index <HASH>..<HASH> 100644
--- a/src/Adapter/DbTable/CallbackCheckAdapter.php
+++ b/src/Adapter/DbTable/CallbackCheckAdapter.php
@@ -89,7 +89,7 @@ class CallbackCheckAdapter extends AbstractAdapter
$this... | changed a thrown exception to be authentication specific | dotkernel_dot-authentication-service | train | php |
d585420c7b82d1896d29b02f55e6cae33ced8138 | diff --git a/subconvert/cli/MainApp.py b/subconvert/cli/MainApp.py
index <HASH>..<HASH> 100644
--- a/subconvert/cli/MainApp.py
+++ b/subconvert/cli/MainApp.py
@@ -157,6 +157,9 @@ class SubApplication:
outputFormat = self.getOutputFormat()
converter = SubConverter()
+ if len(self._... | Added a warning when no files were selected in CLI mode. | mgoral_subconvert | train | py |
cdb07fef988a9f90f5c6ef201db7414a1b0066a9 | diff --git a/phoebe/atmospheres/limbdark.py b/phoebe/atmospheres/limbdark.py
index <HASH>..<HASH> 100644
--- a/phoebe/atmospheres/limbdark.py
+++ b/phoebe/atmospheres/limbdark.py
@@ -3795,6 +3795,14 @@ def download_atm(atm=None):
destin_folder = get_paths()[0]
+ # Does the directory exist?
+ if n... | fixed bug in plotting lcobs if no errorbars are available | phoebe-project_phoebe2 | train | py |
e08478a6db1a9df34f0e31956a8f4a6d14e42db8 | diff --git a/elifetools/json_rewrite.py b/elifetools/json_rewrite.py
index <HASH>..<HASH> 100644
--- a/elifetools/json_rewrite.py
+++ b/elifetools/json_rewrite.py
@@ -812,8 +812,10 @@ def rewrite_elife_editors_json(json_content, doi):
# Remove affiliations with no name value
for i, ref in enumerate(json_con... | Fix bad rewrite rule that did not pass tests. | elifesciences_elife-tools | train | py |
90f1648af452599970f145747f641384b8aa4dc7 | diff --git a/rets/session.py b/rets/session.py
index <HASH>..<HASH> 100644
--- a/rets/session.py
+++ b/rets/session.py
@@ -114,7 +114,7 @@ class Session(object):
parser.parse(response.text)
parser.parse_headers(response.headers)
- self.session_id = response.cookies['RETS-Session-ID']
+ ... | Correct hashing for user agent auth. | refindlyllc_rets | train | py |
a72f53d1fb214f9300d0acf12fce7ef774c07e67 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -150,7 +150,7 @@ setup(name='motor',
'pymongo == 2.8.0',
],
license='http://www.apache.org/licenses/LICENSE-2.0',
- classifiers=filter(None, classifiers.split('\n')),
+ classifiers=[c for c i... | Fix classifiers in setup.py. | mongodb_motor | train | py |
b1852c2481f5a42c3d7d20c5a16188d352528423 | diff --git a/src/layouts/Flow/fields/flowField.js b/src/layouts/Flow/fields/flowField.js
index <HASH>..<HASH> 100644
--- a/src/layouts/Flow/fields/flowField.js
+++ b/src/layouts/Flow/fields/flowField.js
@@ -48,6 +48,7 @@ export default (FieldComponent) => class FlowField extends React.Component {
visited: PropTy... | add extraProps to flowField creator | Bandwidth_shared-components | train | js |
0b19689b005bfd873bdc5cc97d9c9d5f5df66c6e | diff --git a/src/core/core.js b/src/core/core.js
index <HASH>..<HASH> 100755
--- a/src/core/core.js
+++ b/src/core/core.js
@@ -21,6 +21,8 @@ module.exports = function() {
me.ctx = context;
me.canvas = context.canvas;
+ context.canvas.style.display = context.canvas.style.display || 'block';
+
// Figure out w... | style canvas element `display: block` by default | chartjs_Chart.js | train | js |
a9ef423c210f4fb2e6381fc1989dd849af0799e3 | diff --git a/buffalo/cmd/setup.go b/buffalo/cmd/setup.go
index <HASH>..<HASH> 100644
--- a/buffalo/cmd/setup.go
+++ b/buffalo/cmd/setup.go
@@ -62,7 +62,11 @@ func updateGoDepsCheck(app meta.App) error {
return run(c)
}
if app.WithDep {
- // use github.com/golang/dep
+ if _, err := exec.LookPath("dep"); err != ... | install dep if missing during buffalo setup for dep app (#<I>) | gobuffalo_buffalo | train | go |
d1ab46d6e4fbc955352335182a4759ff2c1bf368 | diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -27,6 +27,8 @@ ActiveRecord::Base.establish_connection(
adapter: 'mysql2',
database: 'active_record_filter_factory_test'
)
+
+# create mysql table if not exists
ActiveRecord:... | Add some comments to spec_helper. | hck_filter_factory | train | rb |
b66f5d4d70380c005c4b915ab03af32534f19e64 | diff --git a/client/src/main/java/com/orientechnologies/orient/client/remote/OStorageRemote.java b/client/src/main/java/com/orientechnologies/orient/client/remote/OStorageRemote.java
index <HASH>..<HASH> 100755
--- a/client/src/main/java/com/orientechnologies/orient/client/remote/OStorageRemote.java
+++ b/client/src/ma... | Minor: removed message about the new server address | orientechnologies_orientdb | train | java |
a6a57de64621a123396f0f3f2b9bf24ab4320d84 | diff --git a/pkg/kubelet/kubelet.go b/pkg/kubelet/kubelet.go
index <HASH>..<HASH> 100644
--- a/pkg/kubelet/kubelet.go
+++ b/pkg/kubelet/kubelet.go
@@ -2161,6 +2161,9 @@ func (kl *Kubelet) generatePodStatus(pod *api.Pod) (api.PodStatus, error) {
glog.V(4).Infof("Cannot get host IP: %v", err)
} else {
podStatu... | Assign host's IPAddress to podIP when pod shares the host's network | kubernetes_kubernetes | train | go |
2ff7054326df1c5d6eef13b22951c2b66ca1bee8 | diff --git a/container/src/main/java/org/jboss/forge/container/modules/AddonModuleLoader.java b/container/src/main/java/org/jboss/forge/container/modules/AddonModuleLoader.java
index <HASH>..<HASH> 100644
--- a/container/src/main/java/org/jboss/forge/container/modules/AddonModuleLoader.java
+++ b/container/src/main/jav... | Changed installMBeanServer name to avoid conflict with super | forge_core | train | java |
daf5eadcdba26f37a958ed943e6fde06ce645972 | diff --git a/src/main/java/com/amazon/carbonado/info/StorableIntrospector.java b/src/main/java/com/amazon/carbonado/info/StorableIntrospector.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/amazon/carbonado/info/StorableIntrospector.java
+++ b/src/main/java/com/amazon/carbonado/info/StorableIntrospector.java
@... | Added command-line introspector. | Carbonado_Carbonado | train | java |
18db87172cffbe48b92e30b70249e304863a70f9 | diff --git a/src/event.js b/src/event.js
index <HASH>..<HASH> 100644
--- a/src/event.js
+++ b/src/event.js
@@ -101,8 +101,6 @@ function on( elem, types, selector, data, fn, one ) {
*/
jQuery.event = {
- global: {},
-
add: function( elem, types, handler, data, selector ) {
var handleObjIn, eventHandle, tmp,
... | Event: remove jQuery.event.global
jQuery.event.global has been write-only in the jQuery source for the past few
years; reading from it was removed in c2d<I>de<I>a<I>f<I>baebc<I>f<I>e<I>ece6d2
when fixing the trac-<I> bug.
Closes gh-<I> | jquery_jquery | train | js,js |
4e73e4632f84874d24e188005cf90dec299567da | diff --git a/spec/user_spec.rb b/spec/user_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/user_spec.rb
+++ b/spec/user_spec.rb
@@ -1,6 +1,6 @@
require File.dirname(__FILE__) + '/spec_helper.rb'
-describe "Twitter::Base" do
+describe "Twitter::User" do
before do
@base = Twitter::Base.new('foo', 'bar')
end | fixed typo in describe of user spec | sferik_twitter | train | rb |
bbdaaf8beaa76ebbd8977b53f38f742ac9e9bd79 | diff --git a/nodeconductor/iaas/tests/factories.py b/nodeconductor/iaas/tests/factories.py
index <HASH>..<HASH> 100644
--- a/nodeconductor/iaas/tests/factories.py
+++ b/nodeconductor/iaas/tests/factories.py
@@ -34,7 +34,7 @@ class TemplateFactory(factory.DjangoModelFactory):
monthly_fee = factory.fuzzy.FuzzyDecima... | InstanceLicenseFactory | opennode_waldur-core | train | py |
cc4db26a068a31b4a9a77e6595bb50ad073b2538 | diff --git a/parser.go b/parser.go
index <HASH>..<HASH> 100644
--- a/parser.go
+++ b/parser.go
@@ -6,10 +6,6 @@ import (
"strings"
)
-type IFilteredEvaluator interface {
- IEvaluator
-}
-
type IEvaluator interface {
Evaluate(*ExecutionContext) (*Value, error)
FilterApplied(name string) bool | Removed an interface added by accident. | flosch_pongo2 | train | go |
75328a078e32831f694ae48c568ea192310bb9d6 | diff --git a/go/libkb/json.go b/go/libkb/json.go
index <HASH>..<HASH> 100644
--- a/go/libkb/json.go
+++ b/go/libkb/json.go
@@ -62,6 +62,11 @@ func (f *JSONFile) Load(warnOnNotFound bool) error {
}
if os.IsPermission(err) {
+ // Let's just panic and die here on mobile, there is no reason to continue, since the... | just bail out of the app if we cant read local files on mobile (#<I>) | keybase_client | train | go |
d0f3f26fffccd16e349518f9a5f83dcce4e37d12 | diff --git a/testing/test_capture.py b/testing/test_capture.py
index <HASH>..<HASH> 100644
--- a/testing/test_capture.py
+++ b/testing/test_capture.py
@@ -134,12 +134,22 @@ def test_capturing_bytes_in_utf8_encoding(testdir, method):
def test_collect_capturing(testdir):
p = testdir.makepyfile(
"""
+ ... | test_collect_capturing: cover captured stderr | pytest-dev_pytest | train | py |
4fdc4fc5f6fb20de3483766712c4800c3e77f4a5 | diff --git a/src/Core/ContentManager/Generator/Taxonomy/TaxonomyGenerator.php b/src/Core/ContentManager/Generator/Taxonomy/TaxonomyGenerator.php
index <HASH>..<HASH> 100644
--- a/src/Core/ContentManager/Generator/Taxonomy/TaxonomyGenerator.php
+++ b/src/Core/ContentManager/Generator/Taxonomy/TaxonomyGenerator.php
@@ -1... | `normalizeTerm` method uses lower method from StringWrapper class | spress_spress | train | php |
ca6179d6b7b08e0f9f5aa1e08720c613f000f105 | diff --git a/go/api-frontend/aaa/authorization.go b/go/api-frontend/aaa/authorization.go
index <HASH>..<HASH> 100644
--- a/go/api-frontend/aaa/authorization.go
+++ b/go/api-frontend/aaa/authorization.go
@@ -21,10 +21,11 @@ type adminRoleMapping struct {
role string
}
+const ALLOW_ANY = "*"
+
var pathAdminRolesM... | handle wildcard for admin role for preferences | inverse-inc_packetfence | train | go |
e6d6e73255d4952cf14b13ec80d2d1541287ef10 | diff --git a/src/FeedIo/Parser/JsonParser.php b/src/FeedIo/Parser/JsonParser.php
index <HASH>..<HASH> 100644
--- a/src/FeedIo/Parser/JsonParser.php
+++ b/src/FeedIo/Parser/JsonParser.php
@@ -30,8 +30,8 @@ class JsonParser extends ParserAbstract
$data = $document->getJsonAsArray();
$feed->setTitle($thi... | Fix home_page_url / feed_url confusion | alexdebril_feed-io | train | php |
169d53b6ac5857fc6181c38e868a2d1f13250317 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -1,4 +1,4 @@
-import ace from 'ace'; // eslint-disable-line
+import ace from 'brace'; // eslint-disable-line
import extend from 'lodash/extend';
import debounce from 'lodash/debounce';
import DiffMatchPatch ... | chore(build): use brace as a default package | ace-diff_ace-diff | train | js,js |
a57ad3b96f914e1ea3842edf47fde425d92e8be7 | diff --git a/lib/grape/dsl/settings.rb b/lib/grape/dsl/settings.rb
index <HASH>..<HASH> 100644
--- a/lib/grape/dsl/settings.rb
+++ b/lib/grape/dsl/settings.rb
@@ -126,7 +126,6 @@ module Grape
# next, within a namespace.
def route_end
inheritable_setting.route_end
- reset_validations!
... | No longer resetting validations twice | ruby-grape_grape | train | rb |
5e4974de5e00082af336df264d132cb2f4809b37 | diff --git a/djstripe/models.py b/djstripe/models.py
index <HASH>..<HASH> 100644
--- a/djstripe/models.py
+++ b/djstripe/models.py
@@ -239,7 +239,7 @@ class Transfer(StripeObject):
event = models.ForeignKey(Event, related_name="transfers")
amount = models.DecimalField(decimal_places=2, max_digits=7)
stat... | Merge branch 'refactor_common_stripeobject_code' into issue_<I>
Conflicts:
djstripe/models.py | dj-stripe_dj-stripe | train | py |
c28d871d934a135df0094e7a38d3f3414e5b0f79 | diff --git a/src/registry/whitelist.js b/src/registry/whitelist.js
index <HASH>..<HASH> 100644
--- a/src/registry/whitelist.js
+++ b/src/registry/whitelist.js
@@ -14,5 +14,7 @@ module.exports = [
'org.apache.cordova.device',
'org.apache.cordova.contacts',
'org.apache.cordova.console',
- 'org.apache.co... | added battery-status + device-motion to whitelist | apache_cordova-plugman | train | js |
501ba9427140a419309b17a73fed7e3dd6f76fb9 | diff --git a/library/src/com/handmark/pulltorefresh/library/PullToRefreshListView.java b/library/src/com/handmark/pulltorefresh/library/PullToRefreshListView.java
index <HASH>..<HASH> 100644
--- a/library/src/com/handmark/pulltorefresh/library/PullToRefreshListView.java
+++ b/library/src/com/handmark/pulltorefresh/libr... | Revert previous change to make over scroll work everywhere. | chrisbanes_Android-PullToRefresh | train | java |
038a11914ae972076e8e5e3ad5b3ceac17b6cd35 | diff --git a/bin/test.py b/bin/test.py
index <HASH>..<HASH> 100755
--- a/bin/test.py
+++ b/bin/test.py
@@ -1,30 +1,6 @@
#!/usr/bin/env python
-import os
import nose
-import sys
-sys.path.append("")
-
-# setup cassandra
-from cqlengine import connection
-
-try:
- CASSANDRA_VERSION = int(os.environ["CASSANDRA_VE... | remove connecting to cassandra in test script since nose handles it in setup_package | cqlengine_cqlengine | train | py |
88a226b82ec47c04a06b321063e5fa862ac2d75e | diff --git a/ghost/admin/views/editor.js b/ghost/admin/views/editor.js
index <HASH>..<HASH> 100644
--- a/ghost/admin/views/editor.js
+++ b/ghost/admin/views/editor.js
@@ -254,7 +254,7 @@
// Add the container view for the Publish Bar
this.addSubview(new PublishBar({el: "#publish-bar", model: th... | Automatically focus title on editor
closes #<I> | TryGhost_Ghost | train | js |
871979abd6cb170315b926696fd26e4894e503c8 | diff --git a/src/ocrmypdf/pipeline.py b/src/ocrmypdf/pipeline.py
index <HASH>..<HASH> 100644
--- a/src/ocrmypdf/pipeline.py
+++ b/src/ocrmypdf/pipeline.py
@@ -1055,9 +1055,8 @@ def metadata_fixup(
_do_merge_ghostscript([layers_file, ps], output_file, log, context)
elif fitz:
_do_merge_mupdf([laye... | Temporarily unbreak without fitz mode | jbarlow83_OCRmyPDF | train | py |
8ccb80bcea43fe2d1dee422aaf8ec761253152a5 | diff --git a/drivers/docker/docklog/docker_logger_test.go b/drivers/docker/docklog/docker_logger_test.go
index <HASH>..<HASH> 100644
--- a/drivers/docker/docklog/docker_logger_test.go
+++ b/drivers/docker/docklog/docker_logger_test.go
@@ -21,12 +21,20 @@ func TestDockerLogger(t *testing.T) {
t.Skip("docker unavailab... | pull alpine image needed for test
The test requires the image to be present locally, so importing it as
part of setup. | hashicorp_nomad | train | go |
bbc8b01f88bccc70d5d327db6f638636a89081f2 | diff --git a/decoder.go b/decoder.go
index <HASH>..<HASH> 100644
--- a/decoder.go
+++ b/decoder.go
@@ -72,7 +72,8 @@ func (r *Decoder) readSlice(delim byte) (data []byte, err error) {
return
}
-// DecodeNext returns the next available object stored in the rencode stream
+// DecodeNext returns the next available ob... | Add precisation about termination of stream of objects (pmezard) | gdm85_go-rencode | train | go |
b2feaee3cd07e19600cf1e920fcc1a2bb884839f | diff --git a/tests/Unit/Drivers/VarDriverTest.php b/tests/Unit/Drivers/VarDriverTest.php
index <HASH>..<HASH> 100644
--- a/tests/Unit/Drivers/VarDriverTest.php
+++ b/tests/Unit/Drivers/VarDriverTest.php
@@ -61,6 +61,15 @@ class VarDriverTest extends TestCase
'',
]);
+ if (version_compare(... | Update VarDriverTest for PHP <I>
Update using version compare for greater than <I> | spatie_phpunit-snapshot-assertions | train | php |
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.