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 |
|---|---|---|---|---|---|
88e21a1231f8658752e9ebe58a7339c6b944ce9d | diff --git a/lurklib/core.py b/lurklib/core.py
index <HASH>..<HASH> 100755
--- a/lurklib/core.py
+++ b/lurklib/core.py
@@ -97,9 +97,6 @@ class _Core(variables._Variables, exceptions._Exceptions,
If an error is found the relevant exception will be raised.
"""
with self.lock:
- if se... | Removed NullChar exception etc. | jamieleshaw_lurklib | train | py,py |
465e406e62b9e291edae69b86a1ce5f6e3a73cb0 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -38,6 +38,8 @@ export default (editor, opts = {}) => {
},
async createDirectory(zip, root) {
+ root = typeof root === 'function' ? await root(editor) : root;
+
for (const name in root) {... | Accept `root` as an async function | artf_grapesjs-plugin-export | train | js |
be57ff7977fae01f23a687968a5330ec6d74590a | diff --git a/samples/quickstart.js b/samples/quickstart.js
index <HASH>..<HASH> 100644
--- a/samples/quickstart.js
+++ b/samples/quickstart.js
@@ -23,7 +23,7 @@ const {Spanner} = require('@google-cloud/spanner');
const projectId = 'YOUR_PROJECT_ID';
// Creates a client
-const spanner = Spanner({
+const spanner = ne... | Update QuickStart to use "new" syntax for creating Spanner client. (#<I>) | googleapis_nodejs-spanner | train | js |
2a68bd84cd047c1f634290239a43702708ae2826 | diff --git a/treebeard/models.py b/treebeard/models.py
index <HASH>..<HASH> 100644
--- a/treebeard/models.py
+++ b/treebeard/models.py
@@ -50,13 +50,16 @@ class NodeQuerySet(models.query.QuerySet):
# already getting removed, since that would be redundant
removed = {}
for node in s... | fixed bug in delete() slowing down... well... deletetion of nodes | django-treebeard_django-treebeard | train | py |
935035b42a437c08f457aeb791f383d4811703fb | diff --git a/tests/test_summarizers/test_kl.py b/tests/test_summarizers/test_kl.py
index <HASH>..<HASH> 100644
--- a/tests/test_summarizers/test_kl.py
+++ b/tests/test_summarizers/test_kl.py
@@ -130,3 +130,19 @@ def test_tf_idf_metric_should_be_real_number():
"words": 0.2,
"jop": 0.2,
}
+
+
+def ... | Add test for the sentence order of KL summarizer #<I> | miso-belica_sumy | train | py |
1e87da1c846e1f5ad40caf4b1b2e8f26df401f53 | diff --git a/src/Schema.php b/src/Schema.php
index <HASH>..<HASH> 100644
--- a/src/Schema.php
+++ b/src/Schema.php
@@ -240,7 +240,7 @@ abstract class Schema
);
foreach ($this->getTables('VIEW') as $view) {
if (!$this->shouldIgnore($view)) {
- $operations[] = "DROP VIEW $vie... | add if exists, it might already have been dropped due to cascade | dbmover_core | train | php |
d575a1d0c97749150799de2d48c40a07695849dc | diff --git a/lib/tuttle/middleware/request_profiler.rb b/lib/tuttle/middleware/request_profiler.rb
index <HASH>..<HASH> 100644
--- a/lib/tuttle/middleware/request_profiler.rb
+++ b/lib/tuttle/middleware/request_profiler.rb
@@ -1,6 +1,4 @@
# frozen-string-literal: true
-require 'tuttle/ruby_prof/fast_call_stack_printer... | defer requiring custom ruby-prof printer in case memory_profiler is installed but not ruby-prof | dgynn_tuttle | train | rb |
1ff60899f741beb5696dd2645f718a5f1b67a5e5 | diff --git a/mod/resource/mod_form.php b/mod/resource/mod_form.php
index <HASH>..<HASH> 100644
--- a/mod/resource/mod_form.php
+++ b/mod/resource/mod_form.php
@@ -37,7 +37,8 @@ class mod_resource_mod_form extends moodleform_mod {
$mform->addElement('htmleditor', 'summary', get_string('summary'));
$mfo... | MDL-<I> resource summary now optional again; merged from MOODLE_<I>_STABLE | moodle_moodle | train | php |
5d27d89bd0cd987cb0f75254db8a445f0f1ec44b | diff --git a/fusionbox/passwords.py b/fusionbox/passwords.py
index <HASH>..<HASH> 100644
--- a/fusionbox/passwords.py
+++ b/fusionbox/passwords.py
@@ -3,9 +3,15 @@ from django.core.exceptions import ValidationError
A list of very common passwords and a function for validating that passwords are not too common.
"""
... | Change password validation message
The password validation message is not clear enough. Change it to
include more specific information about what is wrong with the password. | fusionbox_django-argonauts | train | py |
3c8dbf9df1722999c1aae7a4dbc303b7cb70d051 | diff --git a/repairbox/manager.py b/repairbox/manager.py
index <HASH>..<HASH> 100644
--- a/repairbox/manager.py
+++ b/repairbox/manager.py
@@ -220,7 +220,9 @@ class SourceManager(object):
def remove(self, src: str) -> None:
"""
- Removes an existing source.
+ Removes an existing source. Th... | modified API for SourceManager::remove | squaresLab_BugZoo | train | py |
ffa6c077e549f3b2f70add3ebd2d88a0b40f1a43 | diff --git a/oplus/version.py b/oplus/version.py
index <HASH>..<HASH> 100644
--- a/oplus/version.py
+++ b/oplus/version.py
@@ -1 +1 @@
-version='8.1.0'
+version='8.1.1' | [skip ci] updated version as <I> | openergy_oplus | train | py |
9bf19f28f899b9cd82197d6e0707c78b4e72ecc8 | diff --git a/src/plumb-gulp.js b/src/plumb-gulp.js
index <HASH>..<HASH> 100644
--- a/src/plumb-gulp.js
+++ b/src/plumb-gulp.js
@@ -1,21 +1,17 @@
import gulp from 'gulp';
-import notify from 'gulp-notify';
+import gutil from 'gulp-util';
import plumber from 'gulp-plumber';
const plumberArg = options => {
retur... | Removed gulp-notify, force end of stream
'finish' used to not be necessary | jlenoble_plumb-gulp | train | js |
0d04678353de878428a7c1b992d5187be3fcb55c | diff --git a/repo_collaborator.go b/repo_collaborator.go
index <HASH>..<HASH> 100644
--- a/repo_collaborator.go
+++ b/repo_collaborator.go
@@ -29,7 +29,7 @@ func (c *Client) AddCollaborator(user, repo, collaborator string, opt AddCollabo
if err != nil {
return err
}
- _, err = c.getResponse("PUT", fmt.Sprintf("/... | add jsonHeader to put request (#<I>) | gogs_go-gogs-client | train | go,go |
c14fb79726f280f12c8afd046f92c2b79794c23e | diff --git a/indra/trips/processor.py b/indra/trips/processor.py
index <HASH>..<HASH> 100644
--- a/indra/trips/processor.py
+++ b/indra/trips/processor.py
@@ -73,10 +73,15 @@ class TripsProcessor(object):
to a sentence ID. Here we find and return the full sentence from which
the event was taken.
... | Handle missing text/sentence/paragraph in TRIPS processor | sorgerlab_indra | train | py |
ce1b2ef6b568f1987bdf920e2f5c3f3ecf744dd7 | diff --git a/src/Enum/Fields/ProductImageFields.php b/src/Enum/Fields/ProductImageFields.php
index <HASH>..<HASH> 100644
--- a/src/Enum/Fields/ProductImageFields.php
+++ b/src/Enum/Fields/ProductImageFields.php
@@ -4,6 +4,7 @@ namespace Shopify\Enum\Fields;
class ProductImageFields extends AbstractObjectEnum
{
+ ... | Add attachment to ProductImage (#<I>)
Resolves #<I> | robwittman_shopify-php-sdk | train | php |
96e90dcf94b01786115169481f51ba3c242a0212 | diff --git a/flowcraft/__init__.py b/flowcraft/__init__.py
index <HASH>..<HASH> 100644
--- a/flowcraft/__init__.py
+++ b/flowcraft/__init__.py
@@ -1,6 +1,6 @@
-__version__ = "1.2.3dev"
-__build__ = "29082018"
+__version__ = "1.3.0"
+__build__ = "21092018"
__author__ = "Diogo N. Silva, Tiago F. Jesus, Ines Mendes, Br... | Updated version for <I> release | assemblerflow_flowcraft | train | py |
70965c637bdd988325f3994ca113d261acfd811a | diff --git a/lib/View/Button.php b/lib/View/Button.php
index <HASH>..<HASH> 100644
--- a/lib/View/Button.php
+++ b/lib/View/Button.php
@@ -183,13 +183,13 @@ class View_Button extends View_HtmlElement
$this->owner->add('Order')->move($but, 'after', $this)->now();
// Not very pretty, but works well
- ... | was generating nasty errors. TODO: fix | atk4_atk4 | train | php |
a8915ec327ce55f0d5c5420665c73380b6be0576 | diff --git a/src/Entity.php b/src/Entity.php
index <HASH>..<HASH> 100644
--- a/src/Entity.php
+++ b/src/Entity.php
@@ -61,7 +61,7 @@ class Entity
$this->id = get_id($data[0]['item']);
$this->label = $data[0]['itemLabel'];
$this->wikipedia_article = $data[0]['wikipediaArticle'];
- $this->aliases = expl... | Check that itemAltLabel is string | freearhey_wikidata | train | php |
cadf2bdc22e36f8081a166f508fc29ed4d7205db | diff --git a/src/jalle19/tvheadend/model/ConnectionStatus.php b/src/jalle19/tvheadend/model/ConnectionStatus.php
index <HASH>..<HASH> 100644
--- a/src/jalle19/tvheadend/model/ConnectionStatus.php
+++ b/src/jalle19/tvheadend/model/ConnectionStatus.php
@@ -33,4 +33,12 @@ namespace jalle19\tvheadend\model;
class Connecti... | add a method for checking if a connection belongs to an anonymous
streaming user (i.e. ticket) | Jalle19_php-tvheadend | train | php,php |
4f99c29d8d728fc39129025cc45006ad7ff05790 | diff --git a/src/Query/BulkWrite.php b/src/Query/BulkWrite.php
index <HASH>..<HASH> 100644
--- a/src/Query/BulkWrite.php
+++ b/src/Query/BulkWrite.php
@@ -19,11 +19,6 @@ class BulkWrite extends Query
public function addQuery(Query $query)
{
- if (defined('BLA')) {
- dump($this->repository-... | Fix bug when bulk write operations is empty | JoffreyPoreeCoding_MongoDB-ODM | train | php |
603fbcdb60556990f88ed9e8c415c07c0d033788 | diff --git a/kuyruk/worker.py b/kuyruk/worker.py
index <HASH>..<HASH> 100644
--- a/kuyruk/worker.py
+++ b/kuyruk/worker.py
@@ -339,7 +339,11 @@ class Worker(object):
def _heartbeat_tick(self, connection, stop_event):
while not stop_event.wait(1):
try:
- connection.heartbeat_tic... | handle EINTR on heartbeat thread | cenkalti_kuyruk | train | py |
94650054f38b80ab066a72e945a9e7553c292ff1 | diff --git a/sdk/unix_listener.go b/sdk/unix_listener.go
index <HASH>..<HASH> 100644
--- a/sdk/unix_listener.go
+++ b/sdk/unix_listener.go
@@ -3,10 +3,12 @@
package sdk
import (
+ "fmt"
"net"
"os"
"path/filepath"
+ "github.com/coreos/go-systemd/activation"
"github.com/docker/go-connections/sockets"
)
@... | sdk: support systemd socket activation | docker_go-plugins-helpers | train | go |
6046e638afb8bddbd01b8731368255dd7487c746 | diff --git a/src/grapesjs/index.js b/src/grapesjs/index.js
index <HASH>..<HASH> 100644
--- a/src/grapesjs/index.js
+++ b/src/grapesjs/index.js
@@ -50,6 +50,11 @@ module.exports = (() => {
config.el = els instanceof window.HTMLElement ? els : document.querySelector(els);
const editor = new Editor(config).i... | moved module initialization before plugin initialization | artf_grapesjs | train | js |
19423e9a44dc520c0db2850ec2ab2d8bcef2e928 | diff --git a/javascript/HtmlEditorField.js b/javascript/HtmlEditorField.js
index <HASH>..<HASH> 100644
--- a/javascript/HtmlEditorField.js
+++ b/javascript/HtmlEditorField.js
@@ -293,8 +293,15 @@ ss.editorWrappers['default'] = ss.editorWrappers.tinyMCE;
onremove: function() {
var ed = tinyMCE.get(this.attr('id... | BUG Fix tinymce errors crashing CMS
When removing a tinymce field, internal third party errors should be caught and ignored gracefully rather than breaking the whole CMS. | silverstripe_silverstripe-framework | train | js |
21c85d69c59e6cffb446dc60d96763c1a04bfc8b | diff --git a/src/Cleave.js b/src/Cleave.js
index <HASH>..<HASH> 100644
--- a/src/Cleave.js
+++ b/src/Cleave.js
@@ -326,6 +326,7 @@ Cleave.prototype = {
window.setTimeout(function () {
owner.element.value = pps.result;
owner.setCurrentSelection(endPos, oldValue);
+ ... | Call onValueChanged on android devices as well, fixes #<I> (#<I>) | nosir_cleave.js | train | js |
9e618ca70c799e0586d566692f41d06e68a3e6c1 | diff --git a/django_mobile/conf.py b/django_mobile/conf.py
index <HASH>..<HASH> 100644
--- a/django_mobile/conf.py
+++ b/django_mobile/conf.py
@@ -29,9 +29,14 @@ class defaults(object):
FLAVOURS_SESSION_KEY = u'flavour'
FLAVOURS_TEMPLATE_LOADERS = []
for loader in django_settings.TEMPLATE_LOADERS:
- ... | add support for django cached template loader | gregmuellegger_django-mobile | train | py |
c7b7509bbb19ff5ae3f8d4b72fa859beba36a507 | diff --git a/test/hamlit/static_analyzer_test.rb b/test/hamlit/static_analyzer_test.rb
index <HASH>..<HASH> 100644
--- a/test/hamlit/static_analyzer_test.rb
+++ b/test/hamlit/static_analyzer_test.rb
@@ -33,6 +33,11 @@ describe Hamlit::StaticAnalyzer do
assert_static('"".gsub(/foo/, "bar")', false)
assert_... | Ensure pseudo variable is regarded as dynamic | haml_haml | train | rb |
43345cd21f66d7bb0056cf6764aad2c704867544 | diff --git a/src/PhpConsole/Laravel/ServiceProvider.php b/src/PhpConsole/Laravel/ServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/PhpConsole/Laravel/ServiceProvider.php
+++ b/src/PhpConsole/Laravel/ServiceProvider.php
@@ -77,7 +77,7 @@ class ServiceProvider extends \Illuminate\Support\ServiceProvider {
* @r... | Fix package name to recognize the config files
Fixes #3. | barbushin_php-console-laravel | train | php |
9df19170e99c5db9aada2d162e3af276a21bc1ab | diff --git a/middleware/mailer.js b/middleware/mailer.js
index <HASH>..<HASH> 100644
--- a/middleware/mailer.js
+++ b/middleware/mailer.js
@@ -8,7 +8,7 @@
» References:
- http://www.nodemailer.org/
+ http://github.com/andris9/nodemailer
» SMTP Example: | Updated nodemailer homepage url | derdesign_protos | train | js |
606fa502ff36c126422029d45686c311f20dc322 | diff --git a/source/application/controllers/admin/order_overview.php b/source/application/controllers/admin/order_overview.php
index <HASH>..<HASH> 100644
--- a/source/application/controllers/admin/order_overview.php
+++ b/source/application/controllers/admin/order_overview.php
@@ -165,6 +165,7 @@ class Order_Overview ... | ESDEV-<I> Remove support for: DTAUS | OXID-eSales_oxideshop_ce | train | php |
3f99a3796f77177f0bbf6acf9cc44bf571e22881 | diff --git a/jupyter-js-widgets/src/embed-webpack.js b/jupyter-js-widgets/src/embed-webpack.js
index <HASH>..<HASH> 100644
--- a/jupyter-js-widgets/src/embed-webpack.js
+++ b/jupyter-js-widgets/src/embed-webpack.js
@@ -44,7 +44,7 @@ function renderInlineWidgets(event) {
var tag = tags[i];
var widgetStateObjec... | Widget area is a vbox | jupyter-widgets_ipywidgets | train | js |
0c5a32b6b573b260e94568696dc6bda73b9c1f67 | diff --git a/db/seeds.rb b/db/seeds.rb
index <HASH>..<HASH> 100644
--- a/db/seeds.rb
+++ b/db/seeds.rb
@@ -2,7 +2,7 @@ ip_pool = IPPool.create!(:name => "Shared IP Pool", :type => 'Transactional', :d
ip_pool.ip_addresses.create!(:ipv4 => "10.1.1.1", :ipv6 => "2a03:1234:a:1::1", :hostname => "i2.mx.example.com")
ip_po... | update initial password to something a little less insane | atech_postal | train | rb |
22749ac376b10982eb5fa5a32ba336b20e1e6344 | diff --git a/lib/php/lib/Protocol/TProtocol.php b/lib/php/lib/Protocol/TProtocol.php
index <HASH>..<HASH> 100644
--- a/lib/php/lib/Protocol/TProtocol.php
+++ b/lib/php/lib/Protocol/TProtocol.php
@@ -22,6 +22,8 @@
namespace Thrift\Protocol;
+use Thrift\Exception\TException;
+use Thrift\Transport\TTransport;
use Th... | THRIFT-<I>: Missing imports in TProtocol (phpdoc related only)
Client: php | apache_thrift | train | php |
d3240de3630a8117cd0aaadc6bf11bb6cbf3db27 | diff --git a/lib/oops/tasks.rb b/lib/oops/tasks.rb
index <HASH>..<HASH> 100644
--- a/lib/oops/tasks.rb
+++ b/lib/oops/tasks.rb
@@ -1,7 +1,7 @@
require 'oops/opsworks_deploy'
require 'aws'
namespace :oops do
- task :build, :ref do |t, args|
+ task :build, [:ref] => 'assets:precompile' do |t, args|
args.with_de... | Switch to task dependency on asset:precompile
Rails 3 and 4 handle asset precompiling differently and
assets:precompile:all no longer exists in rails 4.
Doing it this way, we can specify the RAILS_ENV=deploy on a task run and
it will be passed to the shellout assets:precompile:all on rails 3 | StemboltHQ_oops | train | rb,rb |
ddd116fa1990677b2bdb156dbe06f42be328f633 | diff --git a/scriptworker/constants.py b/scriptworker/constants.py
index <HASH>..<HASH> 100644
--- a/scriptworker/constants.py
+++ b/scriptworker/constants.py
@@ -283,7 +283,7 @@ DEFAULT_CONFIG = frozendict({
# mozilla-esr68 too.
'project:releng:googleplay:aurora': 'esr68',
... | Bug <I> - Move Fennec Release to the esr<I> channel | mozilla-releng_scriptworker | train | py |
5b72b4e0078d45d7729a029789af906c762a5073 | diff --git a/test/worker_external_task_test.py b/test/worker_external_task_test.py
index <HASH>..<HASH> 100644
--- a/test/worker_external_task_test.py
+++ b/test/worker_external_task_test.py
@@ -13,7 +13,7 @@
# the License.
import luigi
-from luigi.file import LocalTarget
+from luigi.local_target import LocalTarget... | Avoid warnings in unit tests. (#<I>) | spotify_luigi | train | py |
a59f41b08045b052c24d690e55baa6cfdca429cb | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -49,10 +49,9 @@ setup(
packages=find_packages(exclude=["tests"]),
install_requires=[
"six>=1.10.0",
- "graphene>=2.1,<3",
- "graphql-core>=2.1rc1",
+ "graphene>=2.1.3,<3",
+ "grap... | Remove iso<I> dependency, updated graphql-core | graphql-python_graphene-django | train | py |
dd72a3226e0e6f64bddd7d5c8bc7bc9cae4e429b | diff --git a/languagetool-language-modules/en/src/main/java/org/languagetool/rules/en/AbstractEnglishSpellerRule.java b/languagetool-language-modules/en/src/main/java/org/languagetool/rules/en/AbstractEnglishSpellerRule.java
index <HASH>..<HASH> 100644
--- a/languagetool-language-modules/en/src/main/java/org/languageto... | [en] add suggestions (via user feedback) | languagetool-org_languagetool | train | java |
73321eac4f3cabc0cb349a8a926132fd56a9108a | diff --git a/response.go b/response.go
index <HASH>..<HASH> 100644
--- a/response.go
+++ b/response.go
@@ -96,7 +96,7 @@ type CommonQueryResponses struct {
Locales []string `json:"locales,omitempty"` // ATV 6+
DeviceID string `json:"device_id"` ... | Changed type of LastCloudBackupDate to time.Time (#<I>) | micromdm_mdm | train | go |
b10e7d2bf2ac796621e734e24a8429b45ce483b4 | diff --git a/exdoc/sa/__init__.py b/exdoc/sa/__init__.py
index <HASH>..<HASH> 100644
--- a/exdoc/sa/__init__.py
+++ b/exdoc/sa/__init__.py
@@ -74,6 +74,8 @@ def _model_columns(ins):
# Got to compile it using a dialect
# TODO: support other dialects in addition to Postgres
column_t... | Fix: column_properties gave an error in some cases | kolypto_py-exdoc | train | py,py |
f428928abfc6031aa58a7737f20086e07389f781 | diff --git a/src/Event/DynamoDb/DynamoDbEvent.php b/src/Event/DynamoDb/DynamoDbEvent.php
index <HASH>..<HASH> 100644
--- a/src/Event/DynamoDb/DynamoDbEvent.php
+++ b/src/Event/DynamoDb/DynamoDbEvent.php
@@ -27,7 +27,7 @@ final class DynamoDbEvent implements LambdaEvent
}
/**
- * @return array
+ * @r... | Update src/Event/DynamoDb/DynamoDbEvent.php | mnapoli_bref | train | php |
ae4f72b091cb218842ef26dc032f2bac45ff3cc0 | diff --git a/hugolib/menu_test.go b/hugolib/menu_test.go
index <HASH>..<HASH> 100644
--- a/hugolib/menu_test.go
+++ b/hugolib/menu_test.go
@@ -242,7 +242,8 @@ func doTestPageMenuWithDuplicateName(t *testing.T, menuPageSources []source.Byte
assert.NotNil(t, me2)
assert.True(t, strings.Contains(me1.URL, "doc1"))
- ... | Comment out mystery test
Fails on Travis in Go <I> + <I>.
Will have to look into that one. | gohugoio_hugo | train | go |
9257d2e41679c18ea4f6d51f41c2c43b755840d0 | diff --git a/aiohttp_apispec/decorators.py b/aiohttp_apispec/decorators.py
index <HASH>..<HASH> 100644
--- a/aiohttp_apispec/decorators.py
+++ b/aiohttp_apispec/decorators.py
@@ -43,6 +43,8 @@ def use_kwargs(schema, **kwargs):
def marshal_with(schema, code=200, required=False):
+ if callable(schema):
+ s... | not callable also in marshalling | maximdanilchenko_aiohttp-apispec | train | py |
ab71d65219563772a4ea833704c8a601c3a06bba | diff --git a/idbstore.js b/idbstore.js
index <HASH>..<HASH> 100644
--- a/idbstore.js
+++ b/idbstore.js
@@ -6,7 +6,7 @@
* Copyright (c) 2011 - 2017 Jens Arps
* http://jensarps.de/
*
- * Licensed under the MIT (X11) license
+ * Licensed under the MIT license
*/
(function (name, definition, global) { | Remove X<I> mention from code | jensarps_IDBWrapper | train | js |
2812e369e6f6b95b74c15c7bb2760745033ae014 | diff --git a/src/ProjectX.php b/src/ProjectX.php
index <HASH>..<HASH> 100644
--- a/src/ProjectX.php
+++ b/src/ProjectX.php
@@ -98,6 +98,9 @@ class ProjectX extends Application
*/
public function loadRoboProjectClasses()
{
+ if (!$this->hasProjectXFile()) {
+ return [];
+ }
... | Fix issue where robo files were trying to be loaded before project-x has been initialized. | droath_project-x | train | php |
7772a58ade14fee8cd284d429f341e44c2718d07 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -64,6 +64,8 @@ module.exports = function (source, mnt, isLazy) {
stat.ctime = ctime
stat.mtime = mtime
stat.atime = new Date()
+ stat.uid = process.getuid()
+ stat.gid = process.getgid()
if (file) {... | set uid/gid to not always mount as root | mafintosh_torrent-mount | train | js |
525ad0c75e82f3740a1bbac696b7a96f585c0cba | diff --git a/www/tests/brython_test_utils/unittest.py b/www/tests/brython_test_utils/unittest.py
index <HASH>..<HASH> 100644
--- a/www/tests/brython_test_utils/unittest.py
+++ b/www/tests/brython_test_utils/unittest.py
@@ -78,12 +78,11 @@ class OneTimeTestResult(unittest.TestResult):
def load_brython_test_cases(ba... | BUGFIX: Make CI tests pass again. | brython-dev_brython | train | py |
cc4a6fd9333851c8167b556b39fb46276b05402b | diff --git a/userena/settings.py b/userena/settings.py
index <HASH>..<HASH> 100644
--- a/userena/settings.py
+++ b/userena/settings.py
@@ -6,8 +6,6 @@ from django.conf import settings
gettext = lambda s: s
-# This will sign a user in after they signup successfully.
-# USERENA_ACTIVATION_REQUIRED must be False.
US... | Removes comments in settings.py | bread-and-pepper_django-userena | train | py |
28720dc39c6562f812f8af54669e8cccd157e5ef | diff --git a/Imager.js b/Imager.js
index <HASH>..<HASH> 100644
--- a/Imager.js
+++ b/Imager.js
@@ -65,6 +65,8 @@
this.cache = {};
this.scrollDelay = opts.scrollDelay || 250;
this.lazyload = opts.lazyload || false;
+ this.transforms = Imager.transforms;
+
... | Pixel ratio implementation
- added Imager.transforms to let room to customise things further on
- replacing {pixel_ratio} pattern in `data-src` URI | BBC-News_Imager.js | train | js |
450c7b0f353e3d41f3346f5c6c6e1dfb66489bc9 | diff --git a/core/Controller.php b/core/Controller.php
index <HASH>..<HASH> 100644
--- a/core/Controller.php
+++ b/core/Controller.php
@@ -100,7 +100,8 @@ abstract class Controller extends core\Controller
)) {
return false;
}
- $parts = explode('/', ... | handle this better so query strings get ignored | monomelodies_monad | train | php |
8cc9d1709e52df44e1874497cebb650e6d47ab2f | diff --git a/internal/goofys_test.go b/internal/goofys_test.go
index <HASH>..<HASH> 100644
--- a/internal/goofys_test.go
+++ b/internal/goofys_test.go
@@ -364,7 +364,7 @@ func (s *GoofysTest) setupBlobs(cloud StorageBackend, t *C, env map[string]*stri
// double check, except on AWS S3, because there we sometimes
//... | incorrect condition, meant to NOT run this in AWS | kahing_goofys | train | go |
83c72b78187af8c0c592bf8453b7a18d56dd6538 | diff --git a/tests/test_compare.py b/tests/test_compare.py
index <HASH>..<HASH> 100644
--- a/tests/test_compare.py
+++ b/tests/test_compare.py
@@ -252,6 +252,32 @@ class TestCompare(unittest.TestCase):
self.assertIsNone(c._df_a_indexed)
self.assertIsNone(c._df_b_indexed)
+ def test_series_argumen... | TESTS: Test passing data to compare method instead of label | J535D165_recordlinkage | train | py |
cb45dd9f618fcc6588f3ea89fe40dff453cbf04a | diff --git a/test/test_helper.rb b/test/test_helper.rb
index <HASH>..<HASH> 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -15,7 +15,10 @@ module TestHelper
jobs['pending'] = jobs['expected'].select{|j| j['confirmed_ats'].length < j['count']}
start_time = Time.now.utc
total_time = 0
- w... | fixed test helper to ignore jobtracker | DeNA_mobilize-base | train | rb |
baf75b6968ef39a8f5f492a70b1731ed85921bdd | diff --git a/bitex/api/rest.py b/bitex/api/rest.py
index <HASH>..<HASH> 100644
--- a/bitex/api/rest.py
+++ b/bitex/api/rest.py
@@ -498,14 +498,8 @@ class QuoineREST(APIClient):
class QuadrigaCXREST(APIClient):
- """
- The Quoine Api requires the API version to be designated in each requests's
- header as ... | removed copy-pasta error when initializing quadriga exchange | Crypto-toolbox_bitex | train | py |
ff43b1ff6f6c29671a1fe4da09fcf066a8302b8d | diff --git a/rundeck/project.go b/rundeck/project.go
index <HASH>..<HASH> 100644
--- a/rundeck/project.go
+++ b/rundeck/project.go
@@ -4,13 +4,31 @@ import (
"encoding/xml"
)
+// Project represents a project within Rundeck.
type Project struct {
- XMLName xml.Name `xml:"project"`
Name ... | Document some of the attributes of Project. | apparentlymart_go-rundeck-api | train | go |
05373425f3d150e2bac2d1b48f7682eeb081c82b | diff --git a/source/Core/Database/Adapter/Doctrine/Database.php b/source/Core/Database/Adapter/Doctrine/Database.php
index <HASH>..<HASH> 100644
--- a/source/Core/Database/Adapter/Doctrine/Database.php
+++ b/source/Core/Database/Adapter/Doctrine/Database.php
@@ -117,9 +117,9 @@ class Database implements DatabaseInterfa... | ESDEV-<I> Add ping check for master/slave connection.
Cause the doctrine master slave connection object doesn't have a working isConnected method, we try to overcome this issue with the ping method.
(cherry picked from commit fa<I>f2) | OXID-eSales_oxideshop_ce | train | php |
0c2fe3aac19408ae0e6aa4bb786903083d955709 | diff --git a/repository/filepicker.js b/repository/filepicker.js
index <HASH>..<HASH> 100644
--- a/repository/filepicker.js
+++ b/repository/filepicker.js
@@ -1737,7 +1737,7 @@ M.core_filepicker.init = function(Y, options) {
setAttrs({id:'fp-tb-help-'+client_id+'-link', target:'_blank'}).
... | MDL-<I> fixed mistype causing wrong link in some browsers | moodle_moodle | train | js |
d8651487fc4625448fade64f797a1cd621143cb5 | diff --git a/pgmpy/readwrite/XMLBIF.py b/pgmpy/readwrite/XMLBIF.py
index <HASH>..<HASH> 100644
--- a/pgmpy/readwrite/XMLBIF.py
+++ b/pgmpy/readwrite/XMLBIF.py
@@ -301,7 +301,7 @@ class XMLBIFWriter:
outcome_tag[var] = []
for state in cpd.variables[var]:
state_tag = etree.SubEl... | fixes error in XMLBIF writer class | pgmpy_pgmpy | train | py |
01f2b016c19fc525a9c6c559b0116793f5f35f1a | diff --git a/doc/conf.py b/doc/conf.py
index <HASH>..<HASH> 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -101,6 +101,10 @@ html_theme_path = ["."]
html_theme_options = {'collapsiblesidebar': True}
html_static_path = ['static']
+html_sidebars = {
+ 'index': ['globaltoc.html', 'searchbox.html'],
+}
+
# The name f... | MOTOR-<I> Global table of contents in sidebar.
Just for the index page; other pages have their own ToCs in the sidebar. | mongodb_motor | train | py |
fe3d301989c129d49baf6fa7a2654769657ec279 | diff --git a/java/src/main/java/com/google/appengine/tools/mapreduce/MapSettings.java b/java/src/main/java/com/google/appengine/tools/mapreduce/MapSettings.java
index <HASH>..<HASH> 100644
--- a/java/src/main/java/com/google/appengine/tools/mapreduce/MapSettings.java
+++ b/java/src/main/java/com/google/appengine/tools/... | Changing the slice time to be below the query iterator timeout (can be as low as <I> seconds).
Otherwise long job/mappers currently keep failing.
Revision created by MOE tool push_codebase.
MOE_MIGRATION=<I> | GoogleCloudPlatform_appengine-mapreduce | train | java |
70db3070ead7b4ac53deec2d156e3e8757ec7630 | diff --git a/identification-authorization/plugin-api/src/main/java/io/motown/identificationauthorization/pluginapi/AuthorizationProvider.java b/identification-authorization/plugin-api/src/main/java/io/motown/identificationauthorization/pluginapi/AuthorizationProvider.java
index <HASH>..<HASH> 100644
--- a/identificatio... | Javadoc on AuthorizationProvider interface | motown-io_motown | train | java |
81dd913712288c1f5aa2ae5c67504f214dff5fee | diff --git a/flux_led/models_db.py b/flux_led/models_db.py
index <HASH>..<HASH> 100755
--- a/flux_led/models_db.py
+++ b/flux_led/models_db.py
@@ -694,7 +694,7 @@ MODELS = [
),
LEDENETModel(
model_num=0x07,
- # "AK001-ZJ2146" == v2 has RF remote support
+ # "AK001-ZJ2146" == v2.06 has R... | Small model db tweaks (#<I>) | Danielhiversen_flux_led | train | py |
c1ac3d410fdd0a5c0d050d4eee23ed442a408a0c | diff --git a/lfs/lfs.go b/lfs/lfs.go
index <HASH>..<HASH> 100644
--- a/lfs/lfs.go
+++ b/lfs/lfs.go
@@ -12,7 +12,7 @@ import (
)
const (
- Version = "0.5.3"
+ Version = "0.6.0-pre"
tempDirPerms = 0755
localMediaDirPerms = 0755
localLogDirPerms = 0755 | change the version so pre-releases don't look like <I>.x releases | git-lfs_git-lfs | train | go |
229444f4365f03b3febc14efcd112e3229cd7e90 | diff --git a/src/deep-di/lib/DI.js b/src/deep-di/lib/DI.js
index <HASH>..<HASH> 100644
--- a/src/deep-di/lib/DI.js
+++ b/src/deep-di/lib/DI.js
@@ -14,6 +14,7 @@ import Core from 'deep-core';
export class DI {
constructor() {
this._bottle = new Bottle();
+ this._localBackend = false;
}
/**
@@ -88,4 +... | Added localBackend property for deep-di service (#<I>) | MitocGroup_deep-framework | train | js,js |
bacbdd415f1b7d5b3a5c4617ee720586c931a404 | diff --git a/grifts/release.go b/grifts/release.go
index <HASH>..<HASH> 100644
--- a/grifts/release.go
+++ b/grifts/release.go
@@ -23,16 +23,6 @@ var _ = grift.Add("release", func(c *grift.Context) error {
return err
}
- err = grift.Run("shoulders", c)
- if err != nil {
- return err
- }
-
- err = grift.Run("dep... | re-ordered the release task a bit | gobuffalo_buffalo | train | go |
d3503a28816598caae35974fec1471c7365497b5 | diff --git a/test/e2e/framework/pv/pv.go b/test/e2e/framework/pv/pv.go
index <HASH>..<HASH> 100644
--- a/test/e2e/framework/pv/pv.go
+++ b/test/e2e/framework/pv/pv.go
@@ -749,7 +749,8 @@ func WaitForPersistentVolumeClaimsPhase(phase v1.PersistentVolumeClaimPhase, c c
pvc, err := c.CoreV1().PersistentVolumeClaims(ns... | Fix waiting for PVCs to get Bound
When Get() returns error, the loop should not return with nil. Make sure
that the faulty Get() marks phaseFoundInAllClaims as not satisfied. | kubernetes_kubernetes | train | go |
20e17b73732605fac37533421fd75c38b13b4540 | diff --git a/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php b/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php
+++ b/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php
@@ -82,13 +82,19 ... | Be super careful making sure the csrf tokens are strings | laravel_framework | train | php |
3dd274d40d6c75bc5a6719c9ebcf44bffef476a0 | diff --git a/src/ui/common/dom-el.js b/src/ui/common/dom-el.js
index <HASH>..<HASH> 100644
--- a/src/ui/common/dom-el.js
+++ b/src/ui/common/dom-el.js
@@ -28,6 +28,9 @@ var el = function (x, attributes) {
}
}
+// utils
+el.isElement = isElement
+
export default el
// helpers
diff --git a/src/ui/create-message... | Added support for html elements as argument in ui messages | archilogic-com_3dio-js | train | js,js |
26202511b488664d6258b45cd363139f1601e679 | diff --git a/client.go b/client.go
index <HASH>..<HASH> 100644
--- a/client.go
+++ b/client.go
@@ -58,7 +58,7 @@ var (
jsonContentType = "application/json; charset=utf-8"
formContentType = "application/x-www-form-urlencoded"
- jsonCheck = regexp.MustCompile(`(?i:(application|text)/(problem\+json|json))`)
+ jsonCh... | Adding content type "application/hal+json" into json automatic unmarshal #<I> (#<I>) | go-resty_resty | train | go |
2eaa705118c34457786279ebf8ffb1e2b68d0bf6 | diff --git a/src/__init__.py b/src/__init__.py
index <HASH>..<HASH> 100644
--- a/src/__init__.py
+++ b/src/__init__.py
@@ -207,6 +207,7 @@ _ignore = set([
'resource',
# this trips up many extension authors
'gtk',
+ 'sip',
# setuptools' pkg_resources.py expects "from __main__ import x" to
# r... | Add sip to ignore list. Closes #6 | bwesterb_py-demandimport | train | py |
bb975413a3297502d3070a80fef8d2df867f5d9c | diff --git a/crosscat/utils/plot_utils.py b/crosscat/utils/plot_utils.py
index <HASH>..<HASH> 100644
--- a/crosscat/utils/plot_utils.py
+++ b/crosscat/utils/plot_utils.py
@@ -184,7 +184,7 @@ def do_gen_feature_z(X_L_list, X_D_list, M_c, filename, tablename=''):
z_matrix /= float(num_latent_states)
# hierach... | z matrix plotting has broken variable name
Also don't leave a broken dangling plot window around.
We're saving to a file, so clean up the screen. | probcomp_crosscat | train | py |
1612636de6a214375ccb912bd373acc2ca7363e1 | diff --git a/src/main/java/org/opensky/libadsb/Decoder.java b/src/main/java/org/opensky/libadsb/Decoder.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/opensky/libadsb/Decoder.java
+++ b/src/main/java/org/opensky/libadsb/Decoder.java
@@ -144,7 +144,7 @@ public class Decoder {
} else if (modes.getDownlinkF... | Fixed minor (currently ineffective) bug | openskynetwork_java-adsb | train | java |
cead937e60f398011d9549072360b317679aa140 | diff --git a/api.go b/api.go
index <HASH>..<HASH> 100644
--- a/api.go
+++ b/api.go
@@ -473,7 +473,8 @@ func NewRaft(conf *Config, fsm FSM, logs LogStore, stable StableStore, snaps Sna
}
r.processConfigurationLogEntry(&entry)
}
- r.logger.Printf("[INFO] raft: Initial configurations: %+v", r.configurations)
+ r.l... | Makes the initial configuration log a little nicer. | hashicorp_raft | train | go |
249ebe07bf7975a54e87a89c1d73538677ef5d56 | diff --git a/WiFi.js b/WiFi.js
index <HASH>..<HASH> 100644
--- a/WiFi.js
+++ b/WiFi.js
@@ -314,7 +314,7 @@ function onWiFiPropertyChanged(name, value) {
break;
case WIFI_STATES.FAILURE:
debug('[FAILURE] WiFi connection failure, open hotspot');
- openHotspot();
+ _self.o... | fix internal openHotspot call | Doodle3D_connman-simplified | train | js |
4dc884cccb70c6bb6b0f7bacc183c3bb34a6b751 | diff --git a/phoenix-build.js b/phoenix-build.js
index <HASH>..<HASH> 100644
--- a/phoenix-build.js
+++ b/phoenix-build.js
@@ -30,6 +30,7 @@ exports.watch = function(server, mocks) {
exports.build({
dir: 'build/dev',
+ sourceMap: true,
watch: true,
complete: function(code) {
... | Output source maps in dev mode | walmartlabs_phoenix-build | train | js |
cf1bc10c6c8c5ab9034a57ec728562ea0a15d46d | diff --git a/plugins/API/API.php b/plugins/API/API.php
index <HASH>..<HASH> 100644
--- a/plugins/API/API.php
+++ b/plugins/API/API.php
@@ -1360,7 +1360,7 @@ class Piwik_API_API
private function getRowEvolutionMetaData($idSite, $period, $date, $apiModule, $apiAction, $language, $idGoal = false)
{
$apiParameters =... | Fixing Row Evolution changing "Periods to Plot" was not working
git-svn-id: <URL> | matomo-org_matomo | train | php |
9eb1d32345c70a7280d33dbaf1adbf0d69cf5f74 | diff --git a/gatling-maven-plugin/src/main/java/com/excilys/ebi/gatling/mojo/GatlingMojo.java b/gatling-maven-plugin/src/main/java/com/excilys/ebi/gatling/mojo/GatlingMojo.java
index <HASH>..<HASH> 100644
--- a/gatling-maven-plugin/src/main/java/com/excilys/ebi/gatling/mojo/GatlingMojo.java
+++ b/gatling-maven-plugin/s... | Fix regression in last tentative for #<I> | gatling_gatling | train | java |
f45788c13b18cea8c6ba62e95e80e403bfe6728c | diff --git a/backbone.js b/backbone.js
index <HASH>..<HASH> 100644
--- a/backbone.js
+++ b/backbone.js
@@ -647,12 +647,6 @@
// initialization logic.
initialize: function(){},
- // Method for checking whether an object should be considered a model for
- // the purposes of adding to the collection.
- ... | rename to _isModel, add semi-colon, move to be next to other internal methods | jashkenas_backbone | train | js |
2341db2f1b67151f6b48bd3616967c580e60737f | diff --git a/lib/solargraph/pin/base_variable.rb b/lib/solargraph/pin/base_variable.rb
index <HASH>..<HASH> 100644
--- a/lib/solargraph/pin/base_variable.rb
+++ b/lib/solargraph/pin/base_variable.rb
@@ -40,6 +40,7 @@ module Solargraph
types = []
returns_from(@assignment).each do |node|
chai... | Avoid infinite loops from self-referential variable assignments. | castwide_solargraph | train | rb,rb |
9319efe60dda74bea5b43b8929d394acf74b853e | diff --git a/src/WebWorkers/ImageIOWorker.js b/src/WebWorkers/ImageIOWorker.js
index <HASH>..<HASH> 100644
--- a/src/WebWorkers/ImageIOWorker.js
+++ b/src/WebWorkers/ImageIOWorker.js
@@ -59,7 +59,7 @@ const readImage = (input, withTransferList) => {
}
}
if (io === null) {
- return new Error('Could not fin... | fix(ImageIOWorker): Wrap the returned errors in a Promise
This improves how the error is handled downstream and improves the message. | InsightSoftwareConsortium_itk-js | train | js |
43b2b813660196ea450747f62afc1aee503691be | diff --git a/lib/jekyll/multiple/languages/plugin.rb b/lib/jekyll/multiple/languages/plugin.rb
index <HASH>..<HASH> 100644
--- a/lib/jekyll/multiple/languages/plugin.rb
+++ b/lib/jekyll/multiple/languages/plugin.rb
@@ -72,11 +72,12 @@ module Jekyll
end
translation = Jekyll.langs[lang].access(key) if key.i... | default translation
- if no translation exists for the current language, return the
translation from the default language | Anthony-Gaudino_jekyll-multiple-languages-plugin | train | rb |
8591bf7ce52d585145b126f949eaed20547bf824 | diff --git a/babel/index.js b/babel/index.js
index <HASH>..<HASH> 100644
--- a/babel/index.js
+++ b/babel/index.js
@@ -5,6 +5,7 @@ const getDistLocation = importName => {
// apis
case 'Animated':
case 'AppRegistry':
+ case 'AppState':
case 'AsyncStorage':
case 'BackAndroid':
case 'Clipb... | [fix] add AppState to Babel plugin list | necolas_react-native-web | train | js |
ceaba663b4567133ce0fdfb5877079692d7150e2 | diff --git a/spec/src/resource.spec.js b/spec/src/resource.spec.js
index <HASH>..<HASH> 100644
--- a/spec/src/resource.spec.js
+++ b/spec/src/resource.spec.js
@@ -134,4 +134,9 @@ describe('fdom.resources.httpResolver', function() {
resources.httpResolver('http://www.example.com/path/manifest.json', '../../test.htm... | Added a small test to check for weird cca chrome-extension URLs | freedomjs_freedom | train | js |
bef2b6d38b45c783a2318ee7f381476825a50eb0 | diff --git a/lib/debitech_soap.rb b/lib/debitech_soap.rb
index <HASH>..<HASH> 100644
--- a/lib/debitech_soap.rb
+++ b/lib/debitech_soap.rb
@@ -36,7 +36,7 @@ module DebitechSoap
@client = SOAP::WSDLDriverFactory.new('https://secure.incab.se/axis2/services/DTServerModuleService_v1?wsdl').create_rpc_driver
... | Java is probably a better name for it right now. | joakimk_debitech_soap | train | rb |
e59629f1cbc8eeb397e9deedbe0814c2d8a48e19 | diff --git a/salt/modules/gnomedesktop.py b/salt/modules/gnomedesktop.py
index <HASH>..<HASH> 100644
--- a/salt/modules/gnomedesktop.py
+++ b/salt/modules/gnomedesktop.py
@@ -13,6 +13,9 @@ try:
except ImportError:
HAS_PWD = False
+# Import Salt libs
+import salt.utils.path
+
# Import 3rd-party libs
try:
... | Update old utils paths to new utils paths | saltstack_salt | train | py |
53751878704b81769c90b2ab2e998cd7518585a4 | diff --git a/lib/onebox/version.rb b/lib/onebox/version.rb
index <HASH>..<HASH> 100644
--- a/lib/onebox/version.rb
+++ b/lib/onebox/version.rb
@@ -1,3 +1,3 @@
module Onebox
- VERSION = "1.0.0"
-end
\ No newline at end of file
+ VERSION = "1.0.1"
+end | update version to <I> after merging root behavior | discourse_onebox | train | rb |
677243dd15a611ab537003e139a391eb4040a7d6 | diff --git a/gimmemotifs/config.py b/gimmemotifs/config.py
index <HASH>..<HASH> 100644
--- a/gimmemotifs/config.py
+++ b/gimmemotifs/config.py
@@ -57,7 +57,10 @@ class MotifConfig:
self.config.set("params", k, v)
def get_default_params(self):
- return dict(self.config.items("params"))
+ ... | fixed issue with boolean in config file | vanheeringen-lab_gimmemotifs | train | py |
e2ae6a8651156a37d38904a53ef1e979a2b81703 | diff --git a/src/Context/Argument/PageObjectArgumentResolver.php b/src/Context/Argument/PageObjectArgumentResolver.php
index <HASH>..<HASH> 100644
--- a/src/Context/Argument/PageObjectArgumentResolver.php
+++ b/src/Context/Argument/PageObjectArgumentResolver.php
@@ -3,7 +3,9 @@
namespace SensioLabs\Behat\PageObjectExt... | Update PageObjectArgumentResolver.php
As PHP minimum supported version is 7, it's perfectly safe to refactor this as you see in this PR | sensiolabs_BehatPageObjectExtension | train | php |
577c5fc30a623309eaeb4cf5b0d910005c780eaf | diff --git a/pyontutils/scigraph_codegen.py b/pyontutils/scigraph_codegen.py
index <HASH>..<HASH> 100755
--- a/pyontutils/scigraph_codegen.py
+++ b/pyontutils/scigraph_codegen.py
@@ -776,7 +776,16 @@ class State:
def gencode(self):
""" Run this to generate the code """
- ledict = requests.get(sel... | scigraph codegen support for swagger.json requiring an api key | tgbugs_pyontutils | train | py |
cf5010ca6e50cc9c3b873781921b771ff0cf4a14 | diff --git a/pkg/apimachinery/registered/registered.go b/pkg/apimachinery/registered/registered.go
index <HASH>..<HASH> 100644
--- a/pkg/apimachinery/registered/registered.go
+++ b/pkg/apimachinery/registered/registered.go
@@ -22,6 +22,7 @@ import (
"os"
"sort"
"strings"
+ "sync"
"github.com/golang/glog"
@@... | Fix a problem with multiple APIs clobbering each other in registration. | kubernetes_kubernetes | train | go |
ad3b675bf9fbbd49ca5bba8e8ea324ff49808d61 | diff --git a/src/Lib/DefaultFilters.php b/src/Lib/DefaultFilters.php
index <HASH>..<HASH> 100644
--- a/src/Lib/DefaultFilters.php
+++ b/src/Lib/DefaultFilters.php
@@ -227,7 +227,7 @@ class DefaultFilters
*/
function filter_lower ($v)
{
- return mb_strtolower ($str) ($v);
+ return mb_strtolower ($v);
... | FIX: lower and upper filters. | electro-modules_matisse | train | php |
4f2fad5058bfeb0a8d45981cf610fec6d4949824 | diff --git a/src/bosh-director/spec/spec_helper.rb b/src/bosh-director/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/src/bosh-director/spec/spec_helper.rb
+++ b/src/bosh-director/spec/spec_helper.rb
@@ -132,10 +132,12 @@ module SpecHelper
Sequel.default_timezone = :utc
@director_db = Sequel.connec... | Include database connection ID in spec logs
For consistency with the main runtime logger which changed in e<I>b<I>c7d | cloudfoundry_bosh | train | rb |
18fbe564627b70334efc84638f4ce7371877be57 | diff --git a/superset/assets/src/explore/controlPanels/Table.js b/superset/assets/src/explore/controlPanels/Table.js
index <HASH>..<HASH> 100644
--- a/superset/assets/src/explore/controlPanels/Table.js
+++ b/superset/assets/src/explore/controlPanels/Table.js
@@ -59,4 +59,12 @@ export default {
validators: [],
... | [fix] Adding time grains to Table (#<I>) | apache_incubator-superset | train | js |
79ec1a884cef183440e97499879b2e0ab34ca036 | diff --git a/js/jcf.js b/js/jcf.js
index <HASH>..<HASH> 100755
--- a/js/jcf.js
+++ b/js/jcf.js
@@ -448,5 +448,10 @@
}
};
+ // we need to make JCF available globally if we're in AMD environment
+ if (typeof define === 'function' && define.amd) {
+ window.jcf = api;
+ }
+
return api;
})); | fixed usage with require.js
(previous commit improved compatibility with CommonJS but AMD was
broken) | w3co_jcf | train | js |
f4cc30b72b58ffaec8a7a10897da2cfbadc19353 | diff --git a/src/Symfony/Component/Security/Core/Encoder/PasswordEncoderInterface.php b/src/Symfony/Component/Security/Core/Encoder/PasswordEncoderInterface.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/Security/Core/Encoder/PasswordEncoderInterface.php
+++ b/src/Symfony/Component/Security/Core/Encoder/Pa... | Declare exceptions that are already thrown by implementations | symfony_symfony | train | php |
4a0066238144b7013e80f96500d5bd2e60dda789 | diff --git a/rollbar/contrib/fastapi/utils.py b/rollbar/contrib/fastapi/utils.py
index <HASH>..<HASH> 100644
--- a/rollbar/contrib/fastapi/utils.py
+++ b/rollbar/contrib/fastapi/utils.py
@@ -45,15 +45,25 @@ def get_installed_middlewares(app):
ASGIReporterMiddleware,
)
- if not hasattr(app, 'user_midd... | Fix get_installed_middlewares() for older FastAPI versions | rollbar_pyrollbar | train | py |
e01a94cc276ff88ca9d0d6c2a418e9c427e46c1c | diff --git a/lib/ecwid_api/api.rb b/lib/ecwid_api/api.rb
index <HASH>..<HASH> 100644
--- a/lib/ecwid_api/api.rb
+++ b/lib/ecwid_api/api.rb
@@ -22,7 +22,7 @@ module EcwidApi
#
def raise_on_failure(response)
if response.success?
- yield if block_given?
+ yield(response) if block_given?
... | Fixes Product creation
The Product ID is supplied in the body of the response, so that
is what we need to get in order to find the most recent details
of the Product.
The raise_on_failuer method will yield the response if it is
successful. | davidbiehl_ecwid_api | train | rb,rb |
d621af226a78bd4748183ac7e21aeb1f9138d0a4 | diff --git a/tests/Http/RequestTest.php b/tests/Http/RequestTest.php
index <HASH>..<HASH> 100644
--- a/tests/Http/RequestTest.php
+++ b/tests/Http/RequestTest.php
@@ -258,6 +258,7 @@ class RequestTest extends PHPUnit_Framework_TestCase
$this->assertEquals(null, $request->getHeader('Request-Method', null, 'Only... | [#9] RequestTest: Add test to ensure getHeader($key) is case-insensitive | roydejong_Enlighten | train | php |
b475b6e6cf44400ed48808d42160833b850b5e22 | diff --git a/lib/commander/user_interaction.rb b/lib/commander/user_interaction.rb
index <HASH>..<HASH> 100644
--- a/lib/commander/user_interaction.rb
+++ b/lib/commander/user_interaction.rb
@@ -327,7 +327,7 @@ module Commander
# const_get(:Config) issues a deprecation warning on ruby 1.8.7
Object.con... | Avoid triggering ActiveSupport deprecation warning (#<I>) | commander-rb_commander | train | rb |
1575ff4df1b41da059e8eeb7b0cd9ce59e0cc6bc | diff --git a/lib/puppet_library/version.rb b/lib/puppet_library/version.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet_library/version.rb
+++ b/lib/puppet_library/version.rb
@@ -16,5 +16,5 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
module PuppetLibrary
- VERSION = "0.17.0"
+ V... | [release] Incremented version number | drrb_puppet-library | train | rb |
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.