hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
33042cf104f05a5f4205f15930b308070604952c | diff --git a/test/testSerialRequestResponseD0-20.js b/test/testSerialRequestResponseD0-20.js
index <HASH>..<HASH> 100644
--- a/test/testSerialRequestResponseD0-20.js
+++ b/test/testSerialRequestResponseD0-20.js
@@ -57,10 +57,6 @@ describe('test SerialRequestResponseTransport with D0Protocol x20', function() {
... | try fix tests (running "too fast" on GitHub Actions) | Apollon77_smartmeter-obis | train |
c98c3e2e7145bf633465f1c7fcd8417f069062e7 | diff --git a/certificate.js b/certificate.js
index <HASH>..<HASH> 100644
--- a/certificate.js
+++ b/certificate.js
@@ -22,7 +22,8 @@ var AttributeTypeValue = asn.define('AttributeTypeValue', function () {
var AlgorithmIdentifier = asn.define('AlgorithmIdentifier', function () {
this.seq().obj(
this.key('algori... | Add curve as parameter to certificate algorithm (#<I>)
This fixes crypto-browserify/browserify-sign#<I> | crypto-browserify_parse-asn1 | train |
a1dd8ef26c6e05343b88c316071daaee6a2ff7d4 | 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
@@ -87,9 +87,11 @@
},
toggleStatus: function () {
- var keys = Object.keys(this.statusMap),
+ var view = this,
... | Show validation error when saving post
Show the model.validationError if one is present and also coalesce the
empty title for a more meaningful message. Also, reset the button text
after failure. | TryGhost_Ghost | train |
239be41b2c5e8a310ba9f36162c4571ba810b649 | diff --git a/mqlight/src/main/java/com/ibm/mqlight/api/impl/timer/TimerPromiseImpl.java b/mqlight/src/main/java/com/ibm/mqlight/api/impl/timer/TimerPromiseImpl.java
index <HASH>..<HASH> 100644
--- a/mqlight/src/main/java/com/ibm/mqlight/api/impl/timer/TimerPromiseImpl.java
+++ b/mqlight/src/main/java/com/ibm/mqlight/ap... | Remove the ClientException when timer is cancelled | mqlight_java-mqlight | train |
03a8b4cc50f02d588e55b2d69e362512170076ac | diff --git a/lib/chef/provider/remote_file/fetcher.rb b/lib/chef/provider/remote_file/fetcher.rb
index <HASH>..<HASH> 100644
--- a/lib/chef/provider/remote_file/fetcher.rb
+++ b/lib/chef/provider/remote_file/fetcher.rb
@@ -43,7 +43,7 @@ class Chef
def self.network_share?(source)
case source
... | Allow unc to have ip address | chef_chef | train |
ac9bf4117b95094c72fb86e19f91bfa7302d73fe | diff --git a/bundles/org.eclipse.orion.client.git/web/orion/git/gitCommands.js b/bundles/org.eclipse.orion.client.git/web/orion/git/gitCommands.js
index <HASH>..<HASH> 100644
--- a/bundles/org.eclipse.orion.client.git/web/orion/git/gitCommands.js
+++ b/bundles/org.eclipse.orion.client.git/web/orion/git/gitCommands.js
@... | Bug <I> - new icons for <I>. Remove refresh/reload icon from git reset. Shouldn't use such an innocuous icon for such a dangerous command. | eclipse_orion.client | train |
a9641eb301664c4cbff9feb4777dee3f957d589c | diff --git a/fedmsg/text/__init__.py b/fedmsg/text/__init__.py
index <HASH>..<HASH> 100644
--- a/fedmsg/text/__init__.py
+++ b/fedmsg/text/__init__.py
@@ -65,6 +65,7 @@ from fedmsg.text.default import DefaultProcessor
class ProcessorsNotInitialized(Exception):
def __iter__(self):
raise self
+ __len__ ... | Add __len__ to the ProcessorsNotInitialized exception | fedora-infra_fedmsg | train |
4cd03403e0e9d1c8b955b9d9881e77e77a481eb4 | diff --git a/src/Zofe/Rapyd/DataFilter/DataFilter.php b/src/Zofe/Rapyd/DataFilter/DataFilter.php
index <HASH>..<HASH> 100644
--- a/src/Zofe/Rapyd/DataFilter/DataFilter.php
+++ b/src/Zofe/Rapyd/DataFilter/DataFilter.php
@@ -96,8 +96,9 @@ class DataFilter extends DataForm
{
... | demo cleanup customfilter, queryscope moved to model | zofe_rapyd-laravel | train |
de56d5d83fe6a9bc50a72368a287bd44fa31a640 | diff --git a/test/StoragelessSessionTest/Session/DataTest.php b/test/StoragelessSessionTest/Session/DataTest.php
index <HASH>..<HASH> 100644
--- a/test/StoragelessSessionTest/Session/DataTest.php
+++ b/test/StoragelessSessionTest/Session/DataTest.php
@@ -37,4 +37,9 @@ final class DataTest extends PHPUnit_Framework_Test... | Container is not supposed to be empty when data is given to it | psr7-sessions_storageless | train |
f236126a49f6ec8c52a3c6b91ec8873a45a1b047 | diff --git a/src/Rah/Sitemap.php b/src/Rah/Sitemap.php
index <HASH>..<HASH> 100644
--- a/src/Rah/Sitemap.php
+++ b/src/Rah/Sitemap.php
@@ -287,14 +287,14 @@ class Rah_Sitemap
}
$rs = safe_rows_start(
- '*, unix_timestamp(Posted) as uPosted, unix_timestamp(LastMod) as uLastMod',
+ ... | Fix /year/month/day/title permlinks.
permlinkurl() expects a UNIX timestamp.
Fixes #2 | gocom_rah_sitemap | train |
47c331e0fb93d3859b7870cf7e80a3c69785f837 | diff --git a/lib/ancestry/has_ancestry.rb b/lib/ancestry/has_ancestry.rb
index <HASH>..<HASH> 100644
--- a/lib/ancestry/has_ancestry.rb
+++ b/lib/ancestry/has_ancestry.rb
@@ -68,6 +68,7 @@ class << ActiveRecord::Base
# Cache depth in depth cache column before save
before_validation :cache_depth
+ b... | Added a before_save callback for cache_depth as well as the existing before_validation callback. This ensures that all descendants in a subtree have their depth cache updated when the subtree is moved. | stefankroes_ancestry | train |
fd53bf00c1eb6cd2f4a11edce2c8d30284f460c2 | diff --git a/dallinger/deployment.py b/dallinger/deployment.py
index <HASH>..<HASH> 100644
--- a/dallinger/deployment.py
+++ b/dallinger/deployment.py
@@ -308,8 +308,8 @@ def _handle_launch_data(url, error, delay=INITIAL_DELAY, attempts=MAX_ATTEMPTS):
launch_data = launch_request.json()
except Val... | When there are launch errors, show the URL | Dallinger_Dallinger | train |
7885c32ef8d46b4e1c0f4f8574f2fd1311555971 | diff --git a/src/Model/Environment.php b/src/Model/Environment.php
index <HASH>..<HASH> 100644
--- a/src/Model/Environment.php
+++ b/src/Model/Environment.php
@@ -310,4 +310,27 @@ class Environment extends Resource
{
return Route::getCollection($this->getLink('#manage-routes'), 0, [], $this->client);
... | Initialize is an environment operation, not project | platformsh_platformsh-client-php | train |
2a35ad428b4b34f96d6d36e6d1b390505a9af1e2 | diff --git a/IPython/html/widgets/widget.py b/IPython/html/widgets/widget.py
index <HASH>..<HASH> 100644
--- a/IPython/html/widgets/widget.py
+++ b/IPython/html/widgets/widget.py
@@ -197,7 +197,7 @@ class Widget(LoggingConfigurable):
keys = self.keys if key is None else [key]
state = {}
for k... | Change serialization terminology to serialize/deserialize | jupyter-widgets_ipywidgets | train |
ba7b653854cbabacc35cee466976634bc1b3f442 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -6,7 +6,7 @@ import truncate from 'semver-truncate'
import numberRange from 'range-function'
import last from 'array-last'
-export default function majors (range) {
+export default function majors (range, m... | Allow an unbound range to be constrained by a maximum verion number | bendrucker_major-versions | train |
cadcfb6830228113ef541d2ead43f50c8e11679f | diff --git a/src/routesManager.js b/src/routesManager.js
index <HASH>..<HASH> 100644
--- a/src/routesManager.js
+++ b/src/routesManager.js
@@ -79,7 +79,7 @@ RoutesManager.prototype.addRoute = function(route){
};
route.when = route.when || "GET";//set default
context.route.maxLength = context.route.maxLen... | fix routes manager when handler can be a method or an object | node-muneem_muneem | train |
09f9f99d0ddec158baa649b5aedc5125b76ff8c7 | diff --git a/howdoi/howdoi.py b/howdoi/howdoi.py
index <HASH>..<HASH> 100755
--- a/howdoi/howdoi.py
+++ b/howdoi/howdoi.py
@@ -649,11 +649,14 @@ def _sanity_check(engine, test_query=None):
if not test_query:
test_query = 'format date bash'
- args = vars(parser.parse_args(('-j ' + test_query).split())... | An option for fixing the sanity check issue | gleitz_howdoi | train |
29bc9e44c4ad40a4f2739646a4a44bf2747d1637 | diff --git a/tasks/build.js b/tasks/build.js
index <HASH>..<HASH> 100644
--- a/tasks/build.js
+++ b/tasks/build.js
@@ -8,6 +8,7 @@ var gulp = require('gulp'),
path = require('path');
var argv = global.argv;
+var appiumRoot = global.appiumRoot;
gulp.task('download-build', ['prepare-dirs'], function () {
va... | adds ios build upload/download logic | appium_appium-ci | train |
af65ee08202dcb4372b24d79b20813791b72c05f | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -31,6 +31,7 @@ setup(
],
install_requires=[
'requests>=2.3.0',
+ 'six>=1.7.3'
],
tests_require=[
'mock>=1.0.1',
diff --git a/tbk/webpay/payment.py b/tbk/webpay/payment.py
index <HAS... | added six for python3 support | pedroburon_tbk | train |
0f0e676b38439850297c878e631f5bcaa8e3813e | diff --git a/supervisord/tests/common.py b/supervisord/tests/common.py
index <HASH>..<HASH> 100644
--- a/supervisord/tests/common.py
+++ b/supervisord/tests/common.py
@@ -21,7 +21,7 @@ URL = "http://{}:{}".format(HOST, PORT)
PROCESSES_BY_STATE_BY_ITERATION = [dict(up=PROCESSES[x:], down=PROCESSES[:x], unknown=[]) for ... | Make e2e work on non-localhost setup (#<I>) | DataDog_integrations-core | train |
aeec154a3dccddf7abb14ae5dc1236918618f9ef | diff --git a/livesync/indico_livesync/models/queue.py b/livesync/indico_livesync/models/queue.py
index <HASH>..<HASH> 100644
--- a/livesync/indico_livesync/models/queue.py
+++ b/livesync/indico_livesync/models/queue.py
@@ -16,12 +16,15 @@
from __future__ import unicode_literals
+from werkzeug.datastructures import... | Add object and object_ref properties | indico_indico-plugins | train |
5256f2f40d31888b6afe82dcc261b22b30760e56 | diff --git a/steamfiles/acf.py b/steamfiles/acf.py
index <HASH>..<HASH> 100644
--- a/steamfiles/acf.py
+++ b/steamfiles/acf.py
@@ -1,21 +1,20 @@
-from collections import OrderedDict
-
__all__ = ('load', 'loads', 'dump', 'dumps')
SECTION_START = '{'
SECTION_END = '}'
-def loads(data):
+def loads(data, wrapper=d... | Implement custom containers for ACF.
load() & loads() now parse data into a `dict` instead of `OrderedDict`.
Additionally, they now take an optional argument `wrapper`.
Parsed key-value pairs are processed with `wrapper`, so you can
choose any container for the data, provided it's somewhat compatible
with `dict`. `dic... | leovp_steamfiles | train |
65184e98492433213ccf8c7a370dcb5c35187f52 | diff --git a/java/client/test/org/openqa/selenium/FormHandlingTest.java b/java/client/test/org/openqa/selenium/FormHandlingTest.java
index <HASH>..<HASH> 100644
--- a/java/client/test/org/openqa/selenium/FormHandlingTest.java
+++ b/java/client/test/org/openqa/selenium/FormHandlingTest.java
@@ -27,7 +27,6 @@ import stat... | AlexeiBarantsev: Unignoring more file uploading tests for Chrome.
r<I> | SeleniumHQ_selenium | train |
56c32c0a30efd3d7c4e7c6600a0ca39e51eecc97 | diff --git a/src/main/java/com/tomgibara/bits/BitVector.java b/src/main/java/com/tomgibara/bits/BitVector.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/tomgibara/bits/BitVector.java
+++ b/src/main/java/com/tomgibara/bits/BitVector.java
@@ -2913,12 +2913,13 @@ public final class BitVector implements BitStore,... | Fixes removal and sizing on zero bit integer set implementations. | tomgibara_bits | train |
2740792df3144e205dc84f71dd0db1b04479ead3 | diff --git a/src/viewer.js b/src/viewer.js
index <HASH>..<HASH> 100644
--- a/src/viewer.js
+++ b/src/viewer.js
@@ -2546,11 +2546,16 @@ function onCanvasDragEnd( event ) {
if ( !event.preventDefaultAction && this.viewport ) {
gestureSettings = this.gestureSettingsByDeviceType( event.pointerType );
- ... | Fix flick gesture with rotation. Fix #<I> | openseadragon_openseadragon | train |
b26d3c758d465bf65a9f016facfe51526b6d303d | diff --git a/test/smoketest.py b/test/smoketest.py
index <HASH>..<HASH> 100644
--- a/test/smoketest.py
+++ b/test/smoketest.py
@@ -39,7 +39,9 @@ class RunTC(TestCase):
try:
Run(args, reporter=reporter)
except SystemExit, ex:
- self.assertEqual(ex.code, code)
+ ... | [test] display output when some test fail to ease debugging on CI platform | PyCQA_pylint | train |
47e9a2c332d32d734f2b5073b935362df6193866 | diff --git a/test/testsuite/generator/behavior/versionable/VersionableBehaviorObjectBuilderModifierTest.php b/test/testsuite/generator/behavior/versionable/VersionableBehaviorObjectBuilderModifierTest.php
index <HASH>..<HASH> 100644
--- a/test/testsuite/generator/behavior/versionable/VersionableBehaviorObjectBuilderMod... | add tests to versionnable behavior whit foreign key | propelorm_Propel | train |
064bfa1f12710dc4448a2b224b1527ed67df267f | diff --git a/anytemplate/utils.py b/anytemplate/utils.py
index <HASH>..<HASH> 100644
--- a/anytemplate/utils.py
+++ b/anytemplate/utils.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
"""
-:copyright: (c) 2012 - 2015 by Satoru SATOH <ssato@redhat.com>
+:copyright: (c) 2012 - 2018 by Satoru SATOH <ssato@redhat.com>
:licen... | enhancement: support to load context from stdin '-' | ssato_python-anytemplate | train |
4ede24a23d6f2ee26f527f9dbb509752ca160802 | diff --git a/lib/sass/util/multibyte_string_scanner.rb b/lib/sass/util/multibyte_string_scanner.rb
index <HASH>..<HASH> 100644
--- a/lib/sass/util/multibyte_string_scanner.rb
+++ b/lib/sass/util/multibyte_string_scanner.rb
@@ -8,6 +8,11 @@ else
# characters, for methods like [#pos] and [#matched_size]. This class de... | Avoid the extra cost of MultibyteStringScanner when not dealing with multibyte strings. | sass_ruby-sass | train |
93fa2c8f872ec44afe2dad42c556a8b0f751977f | diff --git a/client/isolate/isolate_test.go b/client/isolate/isolate_test.go
index <HASH>..<HASH> 100644
--- a/client/isolate/isolate_test.go
+++ b/client/isolate/isolate_test.go
@@ -11,6 +11,7 @@ import (
"net/http/httptest"
"os"
"path/filepath"
+ "strings"
"testing"
"github.com/luci/luci-go/client/archive... | Fix test on Windows.
The error message is slightly different.
R=<EMAIL>
BUG=
Review URL: <URL> | luci_luci-go | train |
57725da8527275b916ffe5aa81c1dd92cba7f291 | diff --git a/command/validate/commang.go b/command/validate/commang.go
index <HASH>..<HASH> 100644
--- a/command/validate/commang.go
+++ b/command/validate/commang.go
@@ -64,7 +64,7 @@ func (c Command) Run(env packer.Environment, args []string) int {
// Otherwise, get all the builds
buildNames := tpl.BuildNames()
... | command/validate: Validate configuration | hashicorp_packer | train |
f17b1ee837a2d9e4b8beea5d6957ae7baa42870a | diff --git a/nupic/research/connections.py b/nupic/research/connections.py
index <HASH>..<HASH> 100644
--- a/nupic/research/connections.py
+++ b/nupic/research/connections.py
@@ -316,6 +316,17 @@ class Connections(object):
return True
+ def __ne__(self, other):
+ """
+ Non-equality operator for Connecti... | Refactor TemporalMemory equality checking into __eq__ function | numenta_nupic | train |
ed89f8ef405249ac52340f60d1a823b1cc7f457a | diff --git a/flickr/flickr.go b/flickr/flickr.go
index <HASH>..<HASH> 100644
--- a/flickr/flickr.go
+++ b/flickr/flickr.go
@@ -1,7 +1,9 @@
package flickr
import (
+ "bytes"
"crypto/hmac"
+ "crypto/md5"
"crypto/sha1"
"encoding/base64"
"encoding/xml"
@@ -11,6 +13,7 @@ import (
"math/rand"
"net/http"
"ne... | added method implementing api signature process | masci_flickr | train |
5304503a12cba051df03e2c34ce18e7b5da43471 | diff --git a/packages/strickland/src/length.js b/packages/strickland/src/length.js
index <HASH>..<HASH> 100644
--- a/packages/strickland/src/length.js
+++ b/packages/strickland/src/length.js
@@ -21,7 +21,7 @@ export default function length(minLengthParam, maxLengthParam, validatorContext)
}
return every([
-... | refactor: clean up validator context handling code | jeffhandley_strickland | train |
7a52bba65409584a59aa3f3ac7368b8482c3fd45 | diff --git a/jupytext/cell_reader.py b/jupytext/cell_reader.py
index <HASH>..<HASH> 100644
--- a/jupytext/cell_reader.py
+++ b/jupytext/cell_reader.py
@@ -58,6 +58,15 @@ def count_lines_to_next_cell(cell_end_marker, next_cell_start,
return 1
+def last_two_lines_blank(source):
+ """Are the two last lines bla... | Empty code cells are preserved #<I> | mwouts_jupytext | train |
372e52b8cf89ede9f8774210aac793a13ae2d352 | diff --git a/code/libraries/koowa/components/com_koowa/template/helper/behavior.php b/code/libraries/koowa/components/com_koowa/template/helper/behavior.php
index <HASH>..<HASH> 100644
--- a/code/libraries/koowa/components/com_koowa/template/helper/behavior.php
+++ b/code/libraries/koowa/components/com_koowa/template/h... | Put back the koowa class to the select2 dropdown | timble_kodekit | train |
9384abafcc18ea7fbfe9a838aebc1dbc1933211f | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -245,8 +245,8 @@ module.exports = function(Sequelize) {
} else {
// make through table
var fields = {};
- fields[foreignKey1] = {type: definitions[modelName1].fields[key1].type, allowNull: ... | Do not auto-reference through table keys | overlookmotel_sequelize-definer | train |
f5dd6c888a5e5011d2dac074373984604506ab12 | diff --git a/lib/puppet/util/rdoc/generators/puppet_generator.rb b/lib/puppet/util/rdoc/generators/puppet_generator.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/util/rdoc/generators/puppet_generator.rb
+++ b/lib/puppet/util/rdoc/generators/puppet_generator.rb
@@ -1,5 +1,7 @@
require 'rdoc/generators/html_generator'... | Fix #<I> - puppetdoc doesn't cope with regex node
The problem is that regex node contains '/' which is a directory
separator on unix.
Since puppetdoc writes a file for each node this was creating empty
directories and documentation for such node couldn't be stored.
This patch removes the slashes in the node names. | puppetlabs_puppet | train |
a94b5785ebe1e82040611a2d7f608ff2f17be29f | diff --git a/src/Codeception/Module/REST.php b/src/Codeception/Module/REST.php
index <HASH>..<HASH> 100644
--- a/src/Codeception/Module/REST.php
+++ b/src/Codeception/Module/REST.php
@@ -17,6 +17,7 @@ use Codeception\Exception\ModuleConfig as ModuleConfigException;
* ## Configuration
*
* * url *optional* - the ur... | ability to set timeout for the cURL | Codeception_Codeception | train |
bc2294d7f18977028b349058a9ac6d88313e5e2e | diff --git a/spacy/cli/train.py b/spacy/cli/train.py
index <HASH>..<HASH> 100644
--- a/spacy/cli/train.py
+++ b/spacy/cli/train.py
@@ -7,6 +7,7 @@ import cytoolz
from pathlib import Path
import dill
import tqdm
+from thinc.neural.optimizers import linear_decay
from ..tokens.doc import Doc
from ..scorer import Sc... | Add support for fiddly hyper-parameters to train func | explosion_spaCy | train |
1d43a29904162d89b85ae0bc4b7f663cf2cd0456 | diff --git a/lib/roo/excelx/shared_strings.rb b/lib/roo/excelx/shared_strings.rb
index <HASH>..<HASH> 100755
--- a/lib/roo/excelx/shared_strings.rb
+++ b/lib/roo/excelx/shared_strings.rb
@@ -109,17 +109,23 @@ module Roo
elem.children.each do |rPr_elem|
case rPr_elem.name
when ... | Added initial support to support HTML formatting. | roo-rb_roo | train |
d13b57ca44694919b2526df0a2f26ffb81c50fdd | diff --git a/packages/bonde-admin-canary/public/index.html b/packages/bonde-admin-canary/public/index.html
index <HASH>..<HASH> 100644
--- a/packages/bonde-admin-canary/public/index.html
+++ b/packages/bonde-admin-canary/public/index.html
@@ -21,7 +21,7 @@
-->
<title>BONDE</title>
</head>
- <body>
+ <bod... | chore(admin-canary): change page layout and add background with fixed color | nossas_bonde-client | train |
e76fffa5387eefdb60f3eec6d3b241bc74c2ac1e | diff --git a/src/lib/KevinGH/Box/Console/Command/Info.php b/src/lib/KevinGH/Box/Console/Command/Info.php
index <HASH>..<HASH> 100644
--- a/src/lib/KevinGH/Box/Console/Command/Info.php
+++ b/src/lib/KevinGH/Box/Console/Command/Info.php
@@ -65,7 +65,7 @@
catch (UnexpectedValueException $exception)
... | Slightly better Info command testing. | box-project_box2 | train |
48554b8da0580bb6766803081b33ac2e88973711 | diff --git a/integrationtest/src/test/java/org/chorusbdd/chorus/selftest/jmxexecutionlistener/TestJmxExecutionListener.java b/integrationtest/src/test/java/org/chorusbdd/chorus/selftest/jmxexecutionlistener/TestJmxExecutionListener.java
index <HASH>..<HASH> 100644
--- a/integrationtest/src/test/java/org/chorusbdd/choru... | Fix TestJmxExecutionListener for Travis builds | Chorus-bdd_Chorus | train |
76529875a2b519a2c22d8276689faef3db17e9a9 | diff --git a/lib/pem/manager.rb b/lib/pem/manager.rb
index <HASH>..<HASH> 100644
--- a/lib/pem/manager.rb
+++ b/lib/pem/manager.rb
@@ -6,6 +6,7 @@ module PEM
class Manager
class << self
def start
+ FastlaneCore::PrintTable.print_values(config: PEM.config, hide_keys: [], title: "Summary")
... | Added table summary when running PEM | fastlane_fastlane | train |
75d3279d559af764a10628686aabfc840d8eb38d | diff --git a/pyqode/core/api/code_edit.py b/pyqode/core/api/code_edit.py
index <HASH>..<HASH> 100644
--- a/pyqode/core/api/code_edit.py
+++ b/pyqode/core/api/code_edit.py
@@ -687,10 +687,9 @@ class CodeEdit(QtWidgets.QPlainTextEdit):
implement onStyleChanged and trigger an update.
"""
self.zo... | pyQode/pyQode#9 cleanup + comment | pyQode_pyqode.core | train |
275c5b4ebfc429b6925ad163fb75f9402fb6a964 | diff --git a/src/Controllers/Backend.php b/src/Controllers/Backend.php
index <HASH>..<HASH> 100644
--- a/src/Controllers/Backend.php
+++ b/src/Controllers/Backend.php
@@ -1318,16 +1318,16 @@ class Backend implements ControllerProviderInterface
$app['session']->getFlashBag()->set('error', Trans::__(... | Fix for #<I>. Remove changed self message when creating first user. | bolt_bolt | train |
c7319f5fa0de8e51a2dac0963292370f7adbfdab | diff --git a/activesupport/lib/active_support/multibyte/chars.rb b/activesupport/lib/active_support/multibyte/chars.rb
index <HASH>..<HASH> 100644
--- a/activesupport/lib/active_support/multibyte/chars.rb
+++ b/activesupport/lib/active_support/multibyte/chars.rb
@@ -385,7 +385,7 @@ module ActiveSupport #:nodoc:
... | Fixed french sentence so it actually makes sense. | rails_rails | train |
1def65b1f129457e2be1a0db2fb33fd75a5f570b | diff --git a/cmd/argo/commands/cron/get_test.go b/cmd/argo/commands/cron/get_test.go
index <HASH>..<HASH> 100644
--- a/cmd/argo/commands/cron/get_test.go
+++ b/cmd/argo/commands/cron/get_test.go
@@ -70,7 +70,7 @@ func TestNextRuntime(t *testing.T) {
if assert.NoError(t, err) {
next, err := cronWf.GetNextRuntime()
... | fix: Create global scope before workflow-level realtime metrics (#<I>) | argoproj_argo | train |
05b1ffd57227985e5043ee37b59443fd214d6dbd | diff --git a/src/elements/Segment/Segment.js b/src/elements/Segment/Segment.js
index <HASH>..<HASH> 100644
--- a/src/elements/Segment/Segment.js
+++ b/src/elements/Segment/Segment.js
@@ -87,7 +87,7 @@ Segment.propTypes = {
/** Attach segment to other content, like a header. */
attached: PropTypes.oneOfType([
... | fix(Modal|Popup): fix propTypes usage (#<I>) | Semantic-Org_Semantic-UI-React | train |
dfb7633453104cf376378528c31e4769fcec66d5 | diff --git a/core/src/main/java/hudson/util/ArgumentListBuilder.java b/core/src/main/java/hudson/util/ArgumentListBuilder.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/hudson/util/ArgumentListBuilder.java
+++ b/core/src/main/java/hudson/util/ArgumentListBuilder.java
@@ -205,7 +205,7 @@ public class Argument... | [FIXED HUDSON-<I>] add comma to list of characters that need escaping on windows
git-svn-id: <URL> | jenkinsci_jenkins | train |
d97fbea2ad4c3535efc5d1743b52393818f04a39 | diff --git a/dashbuilder-client/dashbuilder-displayer-editor/src/main/java/org/dashbuilder/client/editor/DisplayerPerspectiveEditorComponent.java b/dashbuilder-client/dashbuilder-displayer-editor/src/main/java/org/dashbuilder/client/editor/DisplayerPerspectiveEditorComponent.java
index <HASH>..<HASH> 100644
--- a/dashb... | Perspective Editor: displayer component preferred size | dashbuilder_dashbuilder | train |
8f35e9e0f9bcd10723ee272f348cf2a8db4ef3fa | diff --git a/pathio.go b/pathio.go
index <HASH>..<HASH> 100644
--- a/pathio.go
+++ b/pathio.go
@@ -22,8 +22,10 @@ import (
"github.com/aws/aws-sdk-go/service/s3"
)
-const defaultLocation = "us-east-1"
-const aesAlgo = "AES256"
+const (
+ defaultLocation = "us-east-1"
+ aesAlgo = "AES256"
+)
// generate ... | allow creating client with pre-created aws config | Clever_pathio | train |
e025a3b52f64f1910fb8132cd6447a47c4cfe849 | diff --git a/pipenv/patched/pipfile/api.py b/pipenv/patched/pipfile/api.py
index <HASH>..<HASH> 100644
--- a/pipenv/patched/pipfile/api.py
+++ b/pipenv/patched/pipfile/api.py
@@ -147,11 +147,11 @@ class Pipfile(object):
raise RuntimeError('No Pipfile found!')
@classmethod
- def load(klass, filename):... | don't propogate env vars to pipfile.lock | pypa_pipenv | train |
034564f03a45ce5defc8473d973ed9441a1dc472 | diff --git a/sqlauth/__init__.py b/sqlauth/__init__.py
index <HASH>..<HASH> 100644
--- a/sqlauth/__init__.py
+++ b/sqlauth/__init__.py
@@ -16,4 +16,4 @@
##
###############################################################################
-__version__ = "0.1.202"
+__version__ = "0.1.203"
diff --git a/sqlauth/scripts/b... | sync with pypi version: <I> | lgfausak_sqlauth | train |
afeb4c7a6e34016cf8962fa43d7dbbd398e61aed | diff --git a/libnetwork/drivers/macvlan/macvlan_joinleave.go b/libnetwork/drivers/macvlan/macvlan_joinleave.go
index <HASH>..<HASH> 100644
--- a/libnetwork/drivers/macvlan/macvlan_joinleave.go
+++ b/libnetwork/drivers/macvlan/macvlan_joinleave.go
@@ -94,6 +94,7 @@ func (d *driver) Join(nid, eid string, sboxKey string, ... | libnetwork: macvlan: use single ipSubnet type | moby_moby | train |
6c968dbf544c4ce62cb265ac7562f230bcaac9f9 | diff --git a/run_fluxanalysis.py b/run_fluxanalysis.py
index <HASH>..<HASH> 100755
--- a/run_fluxanalysis.py
+++ b/run_fluxanalysis.py
@@ -3,4 +3,4 @@
from metnet import command
if __name__ == '__main__':
- command.main(command.FluxAnalysisCommand())
+ command.main(command.FluxBalanceCommand()) | run_fluxanalysis: Fix invocation of command | zhanglab_psamm | train |
a5fb00564119c6c3c34cf94468902c2e91968811 | diff --git a/xchange-bitmex/src/main/java/org/knowm/xchange/bitmex/Bitmex.java b/xchange-bitmex/src/main/java/org/knowm/xchange/bitmex/Bitmex.java
index <HASH>..<HASH> 100755
--- a/xchange-bitmex/src/main/java/org/knowm/xchange/bitmex/Bitmex.java
+++ b/xchange-bitmex/src/main/java/org/knowm/xchange/bitmex/Bitmex.java
@... | [BitMex] Fix for QueryParams | knowm_XChange | train |
76c795b3f2419e2a5fa8b2d1e2bc6effe3aa9752 | diff --git a/goatools/go_enrichment.py b/goatools/go_enrichment.py
index <HASH>..<HASH> 100755
--- a/goatools/go_enrichment.py
+++ b/goatools/go_enrichment.py
@@ -253,8 +253,8 @@ class GOEnrichmentStudy(object):
objprtres = GoeaPrintFunctions()
def __init__(self, pop, assoc, obo_dag, propagate_counts=True, ... | Made info messages more generic to support Human Phenotype Ontology. Moved logging into its own fnc | tanghaibao_goatools | train |
7c842a2b4b1b9d94140c269e82392b6422f54ae4 | diff --git a/py/testdir_hosts/test_rf_311M_rows_fvec.py b/py/testdir_hosts/test_rf_311M_rows_fvec.py
index <HASH>..<HASH> 100644
--- a/py/testdir_hosts/test_rf_311M_rows_fvec.py
+++ b/py/testdir_hosts/test_rf_311M_rows_fvec.py
@@ -26,14 +26,14 @@ class Basic(unittest.TestCase):
for trials in range(2):
... | Increased polling interval, increased timeouts, but this test is really long running > <I>minutes. | h2oai_h2o-2 | train |
dfb5c0d64157ff502854abe40a4e191d01306673 | diff --git a/pyt/__main__.py b/pyt/__main__.py
index <HASH>..<HASH> 100644
--- a/pyt/__main__.py
+++ b/pyt/__main__.py
@@ -48,7 +48,7 @@ def discover_files(targets, excluded_files, recursive=False):
return included_files
-def main(command_line_args=sys.argv[1:]):
+def main(command_line_args=sys.argv[1:]): # n... | Add noqa: C<I> back to def main | python-security_pyt | train |
254564bba025b0918bf57c7c9d54e6a5a025d72b | diff --git a/src/Migrations/2018_11_16_000000_add_meta_fields.php b/src/Migrations/2018_11_16_000000_add_meta_fields.php
index <HASH>..<HASH> 100644
--- a/src/Migrations/2018_11_16_000000_add_meta_fields.php
+++ b/src/Migrations/2018_11_16_000000_add_meta_fields.php
@@ -38,19 +38,19 @@ class AddMetaFields extends Migra... | Removed unused ->nullable() in dropColumn | writingink_wink | train |
70a41e9695f8b9d10bb6f121c987cf9641eda830 | diff --git a/js/jquery.fileupload.js b/js/jquery.fileupload.js
index <HASH>..<HASH> 100644
--- a/js/jquery.fileupload.js
+++ b/js/jquery.fileupload.js
@@ -520,6 +520,30 @@
return this._enhancePromise(promise);
},
+ // Adds convenience methods to the callback arguments:
+ _addConven... | Make sure the submit and abort convenience methods always return a jqXHR object. | blueimp_jQuery-File-Upload | train |
720e349d6f5cefcfbb4f90f64c15dc168e01816e | diff --git a/timed.py b/timed.py
index <HASH>..<HASH> 100644
--- a/timed.py
+++ b/timed.py
@@ -3,7 +3,11 @@ import os.path
import time
import datetime
+DATA_FILE = os.path.expanduser('~/.timed')
+
def main():
+ if not os.path.exists(DATA_FILE):
+ open(DATA_FILE, 'w').close()
if len(sys.argv) == 1:
Cont... | create .timed file if it doesn't exist + close file handlers | adeel_timed | train |
f9eb494858b3a4d87386e3cbe93a071b964f1921 | diff --git a/jlib-container/src/main/java/org/jlib/container/binaryrelation/Pair.java b/jlib-container/src/main/java/org/jlib/container/binaryrelation/Pair.java
index <HASH>..<HASH> 100644
--- a/jlib-container/src/main/java/org/jlib/container/binaryrelation/Pair.java
+++ b/jlib-container/src/main/java/org/jlib/containe... | Pair extends AbstractCloneable but not AutoCloneable | jlib-framework_jlib-operator | train |
e390427dc8416e5d8fbbeccfb0bcfe5a4d85e2a6 | diff --git a/AntiSpoof_i18n.php b/AntiSpoof_i18n.php
index <HASH>..<HASH> 100644
--- a/AntiSpoof_i18n.php
+++ b/AntiSpoof_i18n.php
@@ -66,6 +66,9 @@ $wgAntiSpoofMessages['ca'] = array(
'antispoof-mixedscripts' => 'Conté una mescla incompatible d\'escriptures',
'antispoof-tooshort' => 'Nom canònic massa curt',... | * (Bug <I>) Add Min Dong localisation and its extension messages | wikimedia_mediawiki-extensions-AntiSpoof | train |
749c721d70ad392b52746edaf99a2bb6c67ce903 | diff --git a/contribs/gmf/src/print/component.js b/contribs/gmf/src/print/component.js
index <HASH>..<HASH> 100644
--- a/contribs/gmf/src/print/component.js
+++ b/contribs/gmf/src/print/component.js
@@ -487,6 +487,13 @@ exports.Controller_ = class {
this.setRotation(/** @type {number} */ (rotation));
}
... | Workaround for IE<I> in print rotation slider | camptocamp_ngeo | train |
b2c7172516adf31abfbe61ffb5f4b871b3238b88 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -43,7 +43,7 @@ Guard.prototype = {
}))
}
- var user = req[options.requestProperty]
+ var user = get(req, options.requestProperty, undefined)
if (!user) {
return next(new Unauthorized... | FIX set requestProperty (#<I>)
* Extended requestProperty (deep properties) | MichielDeMey_express-jwt-permissions | train |
e0557c2e62e63f8103496b82e62b3d9186e477de | diff --git a/js/examples/main.js b/js/examples/main.js
index <HASH>..<HASH> 100644
--- a/js/examples/main.js
+++ b/js/examples/main.js
@@ -14,6 +14,7 @@ const htmlContent = `<button onClick="app.connect()">Connect</button>
<button onClick="app.sendBinary()">Send Binary</button>
<button onClick="app.toggleStream()">Su... | fix(WebsocketConnection): Support sending binary attachments | Kitware_wslink | train |
b01eaf7e86358f02c8340a420af97ce5024f6841 | diff --git a/commands/command_smudge.go b/commands/command_smudge.go
index <HASH>..<HASH> 100644
--- a/commands/command_smudge.go
+++ b/commands/command_smudge.go
@@ -74,7 +74,7 @@ func smudgeCommand(cmd *cobra.Command, args []string) {
ptr.Encode(os.Stdout)
// Download declined error is ok to skip if we weren't ... | "media" word is left over from "git media" days | git-lfs_git-lfs | train |
f72af2c8b2fbef98144325505a9afe3186d0e205 | diff --git a/ontobio/io/differ.py b/ontobio/io/differ.py
index <HASH>..<HASH> 100644
--- a/ontobio/io/differ.py
+++ b/ontobio/io/differ.py
@@ -1,4 +1,4 @@
-from ontobio.io import assocparser, gafparser, gpadparser, entityparser
+from ontobio.io import assocparser, gpadparser
from ontobio import ecomap
import click
i... | add restrict_to_decreases | biolink_ontobio | train |
98ba2e69daa3ebf460516f5b57f5340ae71fe830 | diff --git a/i3pystatus/battery.py b/i3pystatus/battery.py
index <HASH>..<HASH> 100644
--- a/i3pystatus/battery.py
+++ b/i3pystatus/battery.py
@@ -145,12 +145,12 @@ class BatteryChecker(IntervalModule):
}
status = battery.status()
- if status in ["Discharging", "Charging"]:
+ if status... | battery: Use alert_percentage for coloring the entry red | enkore_i3pystatus | train |
83dce0105e1ae2443f630ddd01c0e94a848eb2d5 | diff --git a/src/metapensiero/signal/user.py b/src/metapensiero/signal/user.py
index <HASH>..<HASH> 100644
--- a/src/metapensiero/signal/user.py
+++ b/src/metapensiero/signal/user.py
@@ -169,7 +169,10 @@ class SignalAndHandlerInitMeta(InheritanceToolsMeta):
aname = avalue.name
else... | Allow a signal with the same name but distinct to be on subclasses bodies | metapensiero_metapensiero.signal | train |
6150fa37a2441ca754eae92bb7e5a7338fe75a5c | diff --git a/topologies/server.js b/topologies/server.js
index <HASH>..<HASH> 100644
--- a/topologies/server.js
+++ b/topologies/server.js
@@ -902,10 +902,7 @@ var Server = function(options) {
// , showDiskLoc: <boolean>
// , comment: <string>
// , maxTimeMS: <n>
- // }
- // // Options
- // {
- // ... | Changed virtual find command to be more like server spec | mongodb_node-mongodb-native | train |
3d98d623e73891533e56ddd84d8894424e6f41bd | diff --git a/Twig/CmsExtension.php b/Twig/CmsExtension.php
index <HASH>..<HASH> 100644
--- a/Twig/CmsExtension.php
+++ b/Twig/CmsExtension.php
@@ -177,7 +177,11 @@ class CmsExtension extends \Twig_Extension
}
}
}
-
+
+ if (null === $content) {
+ throw new... | Undefined content in twig extension | ekyna_CmsBundle | train |
eb6e17e45d68f538555e4c403883afc91fb97250 | diff --git a/master/buildbot/data/connector.py b/master/buildbot/data/connector.py
index <HASH>..<HASH> 100644
--- a/master/buildbot/data/connector.py
+++ b/master/buildbot/data/connector.py
@@ -104,7 +104,7 @@ class DataConnector(service.AsyncService):
try:
return self.matcher[path]
exce... | better debug for <I> | buildbot_buildbot | train |
030093d79daebac71c3922bb8fb692597766775e | diff --git a/lib/elasticsearch/client/abstract_client.rb b/lib/elasticsearch/client/abstract_client.rb
index <HASH>..<HASH> 100644
--- a/lib/elasticsearch/client/abstract_client.rb
+++ b/lib/elasticsearch/client/abstract_client.rb
@@ -7,17 +7,17 @@ module ElasticSearch
:transport => ElasticSearch::Transport::HTT... | rename @server_list to @servers | grantr_rubberband | train |
6174bcb388799c2035752f92ee9684281ea0fd89 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -39,6 +39,7 @@ c = get_config()
c.NotebookApp.contents_manager_class = S3ContentsManager
c.S3ContentsManager.access_key_id = <AWS Access Key ID / IAM Access Key ID>
c.S3ContentsManager.secret_access_key = <AWS Secret Ac... | Added session token (#<I>) | danielfrg_s3contents | train |
c31ae13a69100d095332cac8c07b0293445ff45d | diff --git a/app/chat.js b/app/chat.js
index <HASH>..<HASH> 100644
--- a/app/chat.js
+++ b/app/chat.js
@@ -14,7 +14,7 @@ var models = require('./models/models.js');
var ChatServer = function (app, sessionStore) {
var self = this;
-
+
// Set moment date formatting
moment.calendar.sameDay = 'LT';
... | Fix Sessions timing out
Now we refresh Sessions so long as websocket is open | sdelements_lets-chat | train |
ff97cdd6d589ef67bcd4fc7a6741274314a46737 | diff --git a/library/src/main/java/com/pengrad/telegrambot/model/Message.java b/library/src/main/java/com/pengrad/telegrambot/model/Message.java
index <HASH>..<HASH> 100644
--- a/library/src/main/java/com/pengrad/telegrambot/model/Message.java
+++ b/library/src/main/java/com/pengrad/telegrambot/model/Message.java
@@ -1... | Added the field sender_chat to the class Message. | pengrad_java-telegram-bot-api | train |
e7425338e7f2d6085f84f757f051846c6ea41279 | diff --git a/src/sap.m/src/sap/m/ProgressIndicator.js b/src/sap.m/src/sap/m/ProgressIndicator.js
index <HASH>..<HASH> 100644
--- a/src/sap.m/src/sap/m/ProgressIndicator.js
+++ b/src/sap.m/src/sap/m/ProgressIndicator.js
@@ -117,6 +117,10 @@ sap.ui.define(['jquery.sap.global', './library', 'sap/ui/core/Control', 'sap/ui/... | [INTERNAL][FIX] sap.m.ProgressIndicator: stacked progress animations corrected
Issue
In case of multiple setPercentValue calls all animations will run
and it will take some time until the last value is animated
Solution
Stop currently running animation and start new one.
BCP: <I>
Change-Id: Ic<I>b4d<I>b0a<I>d9ab8e<... | SAP_openui5 | train |
c1662356e968453f037300fee698e2d1f1dbe8e2 | diff --git a/cli/cmd/service.go b/cli/cmd/service.go
index <HASH>..<HASH> 100644
--- a/cli/cmd/service.go
+++ b/cli/cmd/service.go
@@ -1976,7 +1976,7 @@ func (c *ServicedCli) cmdServiceClearEmergency(ctx *cli.Context) {
// serviced service tune SERVICEID
func (c *ServicedCli) cmdServiceTune(ctx *cli.Context) {
args... | ZING-<I>: Unit test adjustments | control-center_serviced | train |
4c4aed49b3575589c21dbe7e0887bc24e29ebf48 | diff --git a/bounces.go b/bounces.go
index <HASH>..<HASH> 100644
--- a/bounces.go
+++ b/bounces.go
@@ -12,31 +12,31 @@ import (
"time"
)
-type BounceItem struct {
+type Bounce struct {
CreatedAt string `json:"created_at"`
Code string `json:"code"`
Address string `json:"address"`
Error string `js... | Changed some struct to be more Go-like. | mailgun_mailgun-go | train |
44c7aa5ab99bba77e4f2af9b5aa974563e08345f | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -3,7 +3,6 @@
*/
var utf8 = require('utf8');
-var hasBinary = require('has-binary');
var after = require('after');
var keys = require('./keys');
@@ -227,7 +226,7 @@ exports.encodePayload = function (pac... | Fix parse error
We always need to send binary when encoding payloads when sending from
server to client, because the polling transport has to know the response
type ahead of time. | socketio_engine.io-parser | train |
b2c6eb0f484b076f9d6977eb9d78d4362cacd960 | diff --git a/jsx-translator.js b/jsx-translator.js
index <HASH>..<HASH> 100644
--- a/jsx-translator.js
+++ b/jsx-translator.js
@@ -137,6 +137,7 @@ assertion:
list (with rep) of capitalized component names must be the same in original and translated
TODO:
+- Bail out if the translation has non-safe attributes; refac... | Added to todo list. | drd_jsxlate | train |
feb1cf91ea2b2ec1c3b4667d8e94cdb4f8ee117f | diff --git a/pygsp/graphs/graph.py b/pygsp/graphs/graph.py
index <HASH>..<HASH> 100644
--- a/pygsp/graphs/graph.py
+++ b/pygsp/graphs/graph.py
@@ -130,7 +130,7 @@ class Graph(fourier.GraphFourier, difference.GraphDifference):
def to_networkx(self):
r"""Export the graph to an `Networkx <https://networkx.gi... | Update pygsp/graphs/graph.py
accept change | epfl-lts2_pygsp | train |
51f91f89f6f80e6f4b737605871eb6faef7f25f8 | diff --git a/docs/plugins.md b/docs/plugins.md
index <HASH>..<HASH> 100644
--- a/docs/plugins.md
+++ b/docs/plugins.md
@@ -125,10 +125,6 @@ end
This will return a class and cache the client object accordingly if caching is enabled. You can call this from a inspec resource by calling `inspec.backend.aws_client(AWS::T... | Remove `#local?` (#<I>)
* Remove `#local?`
It was used only once and provides more confusion than benefit.
* Respond to feedback | inspec_train | train |
19afbefde4fa8ab2e55822c3e8ea3f3252b642b0 | diff --git a/spline/tools/adapter.py b/spline/tools/adapter.py
index <HASH>..<HASH> 100644
--- a/spline/tools/adapter.py
+++ b/spline/tools/adapter.py
@@ -42,7 +42,7 @@ class Adapter(object):
else:
try:
value = getattr(self.data, key)
- except AttributeError as _:
+ ... | #<I>: missing 'variables' for templating in 'docker(image)' task (fixed other style issues) | Nachtfeuer_pipeline | train |
4cd445253e42eb21bfce401f05b2201ecf87e7dc | diff --git a/src/basis/ui/paginator.js b/src/basis/ui/paginator.js
index <HASH>..<HASH> 100644
--- a/src/basis/ui/paginator.js
+++ b/src/basis/ui/paginator.js
@@ -257,7 +257,7 @@
/**
* @param {number} pageCount
*/
- setPageCount: function(pageCount){
+ setPageCount: function(pageCount, spotlight){
... | basis.ui.paginator: fixes
- auto-spotlight on page count or span changes
- add missed spanStartPageChanged event emit
- make consistent event emit place | basisjs_basisjs | train |
83bcc1da60847e6ab443287c1fd4e783de2c47c2 | diff --git a/src/store.js b/src/store.js
index <HASH>..<HASH> 100644
--- a/src/store.js
+++ b/src/store.js
@@ -448,7 +448,7 @@ function setupModel(Model, nested) {
if (key === "id") {
if (Model[key] !== true) {
throw TypeError(
- "The 'id' property in model definition must be set t... | fix(store): factory with id resolving to undefined, draft models without id | hybridsjs_hybrids | train |
1c8a2f232bbe66cce3d0915b7f91d5b1ad16b100 | diff --git a/cake/libs/model/model.php b/cake/libs/model/model.php
index <HASH>..<HASH> 100644
--- a/cake/libs/model/model.php
+++ b/cake/libs/model/model.php
@@ -1948,7 +1948,6 @@ class Model extends Overloadable {
list($type, $query) = array($conditions, $fields);
}
- $db =& ConnectionManager::getDataSource... | Changes Model::find() to allow modification of DataSource connection during callbacks. | cakephp_cakephp | train |
8a109e061b4815b778129ab2e4b877e9e02a9228 | diff --git a/promql/engine.go b/promql/engine.go
index <HASH>..<HASH> 100644
--- a/promql/engine.go
+++ b/promql/engine.go
@@ -595,6 +595,9 @@ func (ev *evaluator) eval(expr Expr) Value {
if e.Op == itemLAND {
return ev.vectorAnd(lhs.(Vector), rhs.(Vector), e.VectorMatching)
}
+ if e.Op == itemLOR {
+ ... | Extract OR operation into own eval method. | prometheus_prometheus | train |
3443b63bd41a75839ebc1cded472acf91fe87c11 | diff --git a/rejected/__init__.py b/rejected/__init__.py
index <HASH>..<HASH> 100644
--- a/rejected/__init__.py
+++ b/rejected/__init__.py
@@ -4,7 +4,7 @@ Rejected is a Python RabbitMQ Consumer Framework and Controller Daemon
"""
__author__ = 'Gavin M. Roy <gavinmroy@gmail.com>'
__since__ = '2009-09-10'
-__version__... | The str(error) causes issues with Influx | gmr_rejected | train |
d4490b3e14cef78ad63559df3d8bf316723e25ee | diff --git a/lib/reporters/tap.js b/lib/reporters/tap.js
index <HASH>..<HASH> 100644
--- a/lib/reporters/tap.js
+++ b/lib/reporters/tap.js
@@ -25,10 +25,10 @@ function TAP(runner) {
var self = this
, stats = this.stats
- , total = runner.total
, n = 1;
runner.on('start', function(){
+ var tota... | Fix to TAP output when grep is used to filter out tests: these tests should not contribute to the overall total in the TAP plan. | mochajs_mocha | train |
9ab3d5e6461862d76ca5e53f179eeda2152bcf54 | diff --git a/core/model/DataObject.php b/core/model/DataObject.php
index <HASH>..<HASH> 100644
--- a/core/model/DataObject.php
+++ b/core/model/DataObject.php
@@ -734,14 +734,13 @@ class DataObject extends Controller implements DataObjectInterface {
* @param string $sort A sort expression to be inserted into the ORD... | Remove HAVING clause from methods where it doesn't make sense to have them
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@<I> <I>b<I>ca-7a2a-<I>-9d3b-<I>d<I>a<I>a9 | silverstripe_silverstripe-framework | train |
16d09d32a68a4124497964923f4febcc13bfd698 | diff --git a/estnltk/layer_operations/splitting.py b/estnltk/layer_operations/splitting.py
index <HASH>..<HASH> 100644
--- a/estnltk/layer_operations/splitting.py
+++ b/estnltk/layer_operations/splitting.py
@@ -85,6 +85,17 @@ def extract_sections(text: Text,
elif span_start < start or end < spa... | Fixed extract_sections: now it should work with discontinouos spans & trim_overlapping=True | estnltk_estnltk | train |
fd5b955466d2ef558c5fa83c7bc5f2ecc48f7e44 | diff --git a/app/controllers/rails_db/tables_controller.rb b/app/controllers/rails_db/tables_controller.rb
index <HASH>..<HASH> 100755
--- a/app/controllers/rails_db/tables_controller.rb
+++ b/app/controllers/rails_db/tables_controller.rb
@@ -41,5 +41,10 @@ module RailsDb
end
end
+ def xlsx
+ @tab... | TablesController renders Excel file | igorkasyanchuk_rails_db | train |
43455cc4098cdedc6699237d594723ae28718766 | diff --git a/lib/plugin/components/services/users/index.js b/lib/plugin/components/services/users/index.js
index <HASH>..<HASH> 100644
--- a/lib/plugin/components/services/users/index.js
+++ b/lib/plugin/components/services/users/index.js
@@ -28,45 +28,35 @@ class UsersService {
* }
* )
*/
- getUserRoles... | refactor: user service getUserRoles is now async, rather than simply wrapped in a promise
affects: tymly | wmfs_tymly-core | train |
fe51d92748453212298fb0de5a01e8f29d06bde4 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -52,7 +52,7 @@ setup(
author = 'Brian May',
author_email = 'brian@vpac.org',
description = 'Collection of Django apps to manage a clusters',
- licence = "GPL3+",
+ license = "GPL3+",
packages = packag... | Rename licence to license.
Change-Id: Icbb<I>aececa<I>f<I>b7a0bd<I>c6be<I>ff | Karaage-Cluster_karaage | train |
e6747a78eb1d2b12a5d3f53b3519ab68b05c8fba | diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php
index <HASH>..<HASH> 100644
--- a/DependencyInjection/Configuration.php
+++ b/DependencyInjection/Configuration.php
@@ -89,7 +89,16 @@ class Configuration implements ConfigurationInterface
{
$node = new ArrayNodeDef... | Allow wildcard headers by feeding back the requested headers to the response, fixes #7 | nelmio_NelmioCorsBundle | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.