hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
a50c348f3463d3a33cebec2d8cbad0b23c6c8e6f | diff --git a/lib/processes.js b/lib/processes.js
index <HASH>..<HASH> 100644
--- a/lib/processes.js
+++ b/lib/processes.js
@@ -156,9 +156,21 @@ function services(srv, callback) {
srvs = srvString.split('|');
}
} catch (f) {
- // allSrv = [];
- ... | added service list on RHEL, CentOS 7.x/8.x | sebhildebrandt_systeminformation | train |
f23fb84318325121c3be1cf1c12e00a33e4c5794 | diff --git a/nomenclate/core/configurator.py b/nomenclate/core/configurator.py
index <HASH>..<HASH> 100644
--- a/nomenclate/core/configurator.py
+++ b/nomenclate/core/configurator.py
@@ -53,7 +53,7 @@ class ConfigParse(object):
self.data = OrderedDict(sorted(items, key=lambda x: x[0], reverse=True))
s... | modified the format_result method so it's a staticmethod, we don't need to instantiate the formatter to use it. Also changed the way the registry updates its CONVERSION_TABLE. | AndresMWeber_Nomenclate | train |
4356e951e10795fcb9b73ac6b67540fbfeda2001 | diff --git a/moto/organizations/models.py b/moto/organizations/models.py
index <HASH>..<HASH> 100644
--- a/moto/organizations/models.py
+++ b/moto/organizations/models.py
@@ -181,7 +181,7 @@ class OrganizationsBackend(BaseBackend):
def validate_parent_id(self, parent_id):
try:
self.get_organi... | [issue #<I>] Add support for AWS Organizations
fix travis build error | spulec_moto | train |
9d2175ea4b43cf7557f10fd4324affe0b6f28a28 | diff --git a/lib/poise_service/providers/base.rb b/lib/poise_service/providers/base.rb
index <HASH>..<HASH> 100644
--- a/lib/poise_service/providers/base.rb
+++ b/lib/poise_service/providers/base.rb
@@ -55,7 +55,7 @@ module PoiseService
#
# @returns [Hash]
def options
- @options ||= Chef::Ma... | Fix the symbol, Chef really does declare this globally. Sigh. | poise_poise-service | train |
713837d865d6174df2ee2131643748932182384a | diff --git a/restygwt/src/main/java/org/fusesource/restygwt/rebind/JsonEncoderDecoderClassCreator.java b/restygwt/src/main/java/org/fusesource/restygwt/rebind/JsonEncoderDecoderClassCreator.java
index <HASH>..<HASH> 100644
--- a/restygwt/src/main/java/org/fusesource/restygwt/rebind/JsonEncoderDecoderClassCreator.java
+... | fix for issue #<I>. JsonTypeInfo and JsonSubTypes annotations must not be searched on current class only.
Theses annotations must be searched on the current class, on all parent classes and interfaces. | resty-gwt_resty-gwt | train |
a7ee8b5e72ae8f188f99c9aacdbb6e2aa62dc873 | diff --git a/dragula.js b/dragula.js
index <HASH>..<HASH> 100644
--- a/dragula.js
+++ b/dragula.js
@@ -275,11 +275,11 @@ function dragula (initialContainers, options) {
var immediate = getImmediateChild(dropTarget, elementBehindCursor);
if (immediate !== null) {
reference = getReference(dropTarget, imm... | Fix shadow behaviour when both copy and revertOnSpill === true | bevacqua_dragula | train |
826e56e45f638f047db586005790ebf3f35c3993 | diff --git a/lib/Associations/Many.js b/lib/Associations/Many.js
index <HASH>..<HASH> 100644
--- a/lib/Associations/Many.js
+++ b/lib/Associations/Many.js
@@ -118,6 +118,15 @@ function extendInstance(Model, Instance, Driver, association, opts) {
var cb = Instances.pop();
var conditions = {}, options = {};
+ ... | Changes hasMany associations helper to use driver helper if defined | dresende_node-orm2 | train |
e1afc9e5f3a82d61e5cdf089734d12e9305540e6 | diff --git a/tests/integration/article/articleTest.php b/tests/integration/article/articleTest.php
index <HASH>..<HASH> 100644
--- a/tests/integration/article/articleTest.php
+++ b/tests/integration/article/articleTest.php
@@ -36,14 +36,6 @@ class Integration_Article_ArticleTest extends OxidTestCase
parent::se... | code review: Added new call to to add articles with maps to shop for testing. It takes care of teardown too, so teardown is removed. | OXID-eSales_oxideshop_ce | train |
a5e8308c3826868a76dd70cb29627e0d695d2ac3 | diff --git a/src/Services/Air/AirParser.js b/src/Services/Air/AirParser.js
index <HASH>..<HASH> 100644
--- a/src/Services/Air/AirParser.js
+++ b/src/Services/Air/AirParser.js
@@ -467,10 +467,18 @@ const AirErrorHandler = function (rsp) {
case '3003':
throw new AirRuntimeError.InvalidRequestData(rsp);
c... | :hammer: throw TicketInfoIncomplete error when code <I> has no AirSegmentError | Travelport-Ukraine_uapi-json | train |
d6dcca6ff73b266a6e3e69337d267e303e1d04b5 | diff --git a/tools/astCreator/src/main/java/com/lausdahl/ast/creator/CreateOnParse.java b/tools/astCreator/src/main/java/com/lausdahl/ast/creator/CreateOnParse.java
index <HASH>..<HASH> 100644
--- a/tools/astCreator/src/main/java/com/lausdahl/ast/creator/CreateOnParse.java
+++ b/tools/astCreator/src/main/java/com/lausd... | fixed problem with java boolean in aspect declerationas in ast creator
git-svn-id: <URL> | overturetool_overture | train |
b014b318ae48411f8c0af68e042eb56b83d3c7cb | diff --git a/liquid/liquid.py b/liquid/liquid.py
index <HASH>..<HASH> 100644
--- a/liquid/liquid.py
+++ b/liquid/liquid.py
@@ -83,8 +83,11 @@ class Liquid:
# pylint: enable=unused-argument
def __del__(self):
- if self.meta.should_close:
- self.meta.stream.close()
+ try:
+ ... | Use try-except for liquid destructor | pwwang_liquidpy | train |
0794a593757519a5eac4a035142099bad84cf0ff | diff --git a/lib/write.js b/lib/write.js
index <HASH>..<HASH> 100644
--- a/lib/write.js
+++ b/lib/write.js
@@ -246,24 +246,17 @@ function getSetFromGraph(graph, opts, params) {
// this will create the required relationships
function getCreateUniqueFromGraph(graph, opts, params) {
if (graph.children.length == 0) re... | don't try to create relationships transitively | brikteknologier_seraph-model | train |
c4d287e5cc2ec814bbc36aad64a96081aad2ec1d | diff --git a/go/vt/tabletmanager/healthcheck.go b/go/vt/tabletmanager/healthcheck.go
index <HASH>..<HASH> 100644
--- a/go/vt/tabletmanager/healthcheck.go
+++ b/go/vt/tabletmanager/healthcheck.go
@@ -334,11 +334,6 @@ func (agent *ActionAgent) terminateHealthChecks() {
return
}
- if *gracePeriod == 0 {
- log.Info... | Now always entering lameduck on shutdown.
Independently of grace period, we need to enter lameduck (and possibly
exit right away), to communicate to vtgate. There is then the servenv
lameduck that will make sure the state change gets sent to vtgate. | vitessio_vitess | train |
f4fabfa96861a97779ab910788055e9ca3d79d21 | diff --git a/includes/class-freemius.php b/includes/class-freemius.php
index <HASH>..<HASH> 100644
--- a/includes/class-freemius.php
+++ b/includes/class-freemius.php
@@ -2600,6 +2600,9 @@
if ( $this->_parent->is_registered() && ! $this->is_registered() ) {
// If parent plugin activated, automatically in... | [add-on] [activation] If skipped the parent plugin opt-in and then typed a license key of an add-on, leverage the add-ons context user to auto opt-in the parent module. | Freemius_wordpress-sdk | train |
539444ffabc71c206755daab370af577dd5bfecf | diff --git a/component-3-patt-A-service.js b/component-3-patt-A-service.js
index <HASH>..<HASH> 100644
--- a/component-3-patt-A-service.js
+++ b/component-3-patt-A-service.js
@@ -75,6 +75,28 @@ $cs.pattern.service = $cs.trait({
return id;
},
+ /* determine registration existence */
+ ... | add registration and registrations methods to align services with events | rse_componentjs | train |
5fe79d9d88d5ea8160d61616b6baa6f3224f5c8c | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,16 @@
Changes to this gem will be noted here.
+## [0.4.1] - 2021-01-13
+
+### Changed
+
+- Allowed for the possibility that the Filebound API may return an empty string in the response body
+
+### ... | Allowed for the possibility that the Filebound API may return an empty string in the response body
Spec for creating a document note
Updated httpi version
Updated CHANGELOG.md | JDHeiskell_filebound_client | train |
3bc2461c77ecba3e1a95301dd440a9bef56b1283 | diff --git a/datasette/utils/asgi.py b/datasette/utils/asgi.py
index <HASH>..<HASH> 100644
--- a/datasette/utils/asgi.py
+++ b/datasette/utils/asgi.py
@@ -147,33 +147,6 @@ class AsgiLifespan:
await self.app(scope, receive, send)
-class AsgiView:
- async def dispatch_request(self, request, *args, **k... | Refactored AsgiView into BaseView, refs #<I> | simonw_datasette | train |
1bbe7e128efc989489ae30b3928a5a1206fb42b3 | diff --git a/photutils/segmentation/core.py b/photutils/segmentation/core.py
index <HASH>..<HASH> 100644
--- a/photutils/segmentation/core.py
+++ b/photutils/segmentation/core.py
@@ -36,13 +36,6 @@ class SegmentationImage:
def __init__(self, data):
self.data = data
- def __getitem__(self, index):
- ... | Remove slicing of SegmentationImage | astropy_photutils | train |
06cf01d98d373f392cb06233db0dae466fbb4576 | diff --git a/pymc/distributions/continuous.py b/pymc/distributions/continuous.py
index <HASH>..<HASH> 100644
--- a/pymc/distributions/continuous.py
+++ b/pymc/distributions/continuous.py
@@ -185,19 +185,40 @@ class Beta(Continuous):
beta : float
beta > 0
+ Alternative parameterization:
+ mu : floa... | ENH: Add alternative parameterizations in terms of mean and standard deviation to Beta and Gamma. This is a technique often used in Kruschke's Doing Bayesian Data Analysis. | pymc-devs_pymc | train |
70b4b8bf7021ee948e2d000791645573732936bb | diff --git a/src/main/java/org/jenkinsci/plugins/ghprb/GhprbPullRequestMerge.java b/src/main/java/org/jenkinsci/plugins/ghprb/GhprbPullRequestMerge.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/jenkinsci/plugins/ghprb/GhprbPullRequestMerge.java
+++ b/src/main/java/org/jenkinsci/plugins/ghprb/GhprbPullRequest... | Mark the build as passed if the trigger phrase is required, but not sent. Just don't merge it | jenkinsci_ghprb-plugin | train |
8a7897993317c775f2ac2ba16551faf44a709105 | diff --git a/library/src/main/java/com/tokenautocomplete/TokenCompleteTextView.java b/library/src/main/java/com/tokenautocomplete/TokenCompleteTextView.java
index <HASH>..<HASH> 100644
--- a/library/src/main/java/com/tokenautocomplete/TokenCompleteTextView.java
+++ b/library/src/main/java/com/tokenautocomplete/TokenCom... | Make use of findTokenEnd | splitwise_TokenAutoComplete | train |
01c5003adb61dc1f63b5865906613deeeecb25c8 | diff --git a/pwkit/inifile.py b/pwkit/inifile.py
index <HASH>..<HASH> 100644
--- a/pwkit/inifile.py
+++ b/pwkit/inifile.py
@@ -103,7 +103,7 @@ def read_stream (stream):
def read (stream_or_path):
if isinstance (stream_or_path, basestring):
- return read_stream (io.open (stream_or_path, 'rb'))
+ re... | pwkit/inifile.py: read ini files as text by default | pkgw_pwkit | train |
42bf54949bd47a6d5d8f49ebc66b50ab5a2300ed | diff --git a/app/Http/Middleware/CheckForNewVersion.php b/app/Http/Middleware/CheckForNewVersion.php
index <HASH>..<HASH> 100644
--- a/app/Http/Middleware/CheckForNewVersion.php
+++ b/app/Http/Middleware/CheckForNewVersion.php
@@ -68,7 +68,12 @@ class CheckForNewVersion implements MiddlewareInterface
public functi... | Skip upgrade check on AJAX requests | fisharebest_webtrees | train |
d99795f6c0bc4aad255bd35dbaff4ecb1f8d7773 | diff --git a/tests/Controller/CategoryAdminControllerTest.php b/tests/Controller/CategoryAdminControllerTest.php
index <HASH>..<HASH> 100644
--- a/tests/Controller/CategoryAdminControllerTest.php
+++ b/tests/Controller/CategoryAdminControllerTest.php
@@ -261,7 +261,7 @@ final class CategoryAdminControllerTest extends T... | Update tests/Controller/CategoryAdminControllerTest.php | sonata-project_SonataClassificationBundle | train |
b0935f82d05a1f311731309a2d10488a9fb87e29 | diff --git a/titan-core/src/main/java/com/thinkaurelius/titan/graphdb/configuration/GraphDatabaseConfiguration.java b/titan-core/src/main/java/com/thinkaurelius/titan/graphdb/configuration/GraphDatabaseConfiguration.java
index <HASH>..<HASH> 100644
--- a/titan-core/src/main/java/com/thinkaurelius/titan/graphdb/configur... | Edit the runtime-vs-backend version error message
The old message didn't clearly label which version was the runtime
Titan version and which was the storage-backend version in case of a
mismatch. Now they're labeled in the error message. The logic is
unchanged; this commit just tweaks the exception string. | thinkaurelius_titan | train |
802d41d66e6ca4061c5ddb66e7240df7d26e1ad9 | diff --git a/keymap/emacs.js b/keymap/emacs.js
index <HASH>..<HASH> 100644
--- a/keymap/emacs.js
+++ b/keymap/emacs.js
@@ -18,6 +18,7 @@
"Alt-Y": function(cm) {cm.replaceSelection(popFromRing());},
"Ctrl-/": "undo", "Shift-Ctrl--": "undo", "Shift-Alt-,": "goDocStart", "Shift-Alt-.": "goDocEnd",
"Ctrl-S":... | Bind ctrl-z to undo in emacs mode to prevent textarea from handling it
Issue #<I> | codemirror_CodeMirror | train |
bbde20d6b02a9e1900e5a8f549d642d05f2d13ab | diff --git a/tests/qpu/test_dwavesampler.py b/tests/qpu/test_dwavesampler.py
index <HASH>..<HASH> 100644
--- a/tests/qpu/test_dwavesampler.py
+++ b/tests/qpu/test_dwavesampler.py
@@ -136,14 +136,19 @@ class TestMissingQubits(unittest.TestCase):
@classmethod
def setUpClass(cls):
try:
- # se... | Make "missing qubits test" insensitive to QPU selection | dwavesystems_dwave-system | train |
ca0616ecf987daeb9c02e5a8489c128a8b9b39d9 | diff --git a/src/rules/javascript/deprecated_entities.js b/src/rules/javascript/deprecated_entities.js
index <HASH>..<HASH> 100644
--- a/src/rules/javascript/deprecated_entities.js
+++ b/src/rules/javascript/deprecated_entities.js
@@ -26,17 +26,18 @@ export const DEPRECATED_ENTITIES = [
export function deprecated_enti... | Covers edge case for deprecated entities
This commit now covers the edge case for aliasing a variable to inner
properties such as `var foo = document.write; foo()`. | mozilla_addons-linter | train |
97c9cb7e80e72f13befc4cc7effb11402b238df9 | diff --git a/i3pystatus/pianobar.py b/i3pystatus/pianobar.py
index <HASH>..<HASH> 100644
--- a/i3pystatus/pianobar.py
+++ b/i3pystatus/pianobar.py
@@ -8,6 +8,9 @@ class Pianobar(IntervalModule):
In pianobar config file must be setted the fifo and event_command options
(see man pianobar for more information)
... | Add optional event_cmd bash file into the docs | enkore_i3pystatus | train |
97a16dfe36df6d3df36c7abac94aa1d3d6be0941 | diff --git a/lib/nobspw/password_checker.rb b/lib/nobspw/password_checker.rb
index <HASH>..<HASH> 100644
--- a/lib/nobspw/password_checker.rb
+++ b/lib/nobspw/password_checker.rb
@@ -11,7 +11,7 @@ module NOBSPW
def initialize(name: nil, username: nil, email: nil, password:)
@name, @username, @email, @pass... | Don't fail on nil | cmer_nobspw | train |
65ef16ba619517ab8144a5190a03d2e13a91192c | diff --git a/AbstractParser.php b/AbstractParser.php
index <HASH>..<HASH> 100644
--- a/AbstractParser.php
+++ b/AbstractParser.php
@@ -3,7 +3,7 @@ namespace O3Co\Query\Extension\Http;
use O3Co\Query\Parser as ParserInterface;
use O3Co\Query\Query;
-use O3Co\Query\Query\Term\Statement;
+use O3Co\Query\Query\Part\Sta... | once rename Term to Part | o3co_query.extension.http | train |
ef3a7cfb2696eddb71d5572b0a2461e8816efffe | diff --git a/lib/hub/context.rb b/lib/hub/context.rb
index <HASH>..<HASH> 100644
--- a/lib/hub/context.rb
+++ b/lib/hub/context.rb
@@ -18,7 +18,8 @@ module Hub
@executable = executable || 'git'
# caches output when shelling out to git
read_proc ||= lambda { |cache, cmd|
- result = %x... | Avoid shell redirection to silence stderr when shelling out
Shelling out to `git`, which by itself takes ~6ms, used to consistently
take 8-<I>ms in hub. Due to the number of different data we have to
collect from git, this overhead is the leading cause of slow execution.
Turns out, when we don't use shell redirection... | github_hub | train |
5eec3d13b3c94cbd81890db4231aa8a26ab08324 | diff --git a/src/cli_help.js b/src/cli_help.js
index <HASH>..<HASH> 100644
--- a/src/cli_help.js
+++ b/src/cli_help.js
@@ -12,34 +12,36 @@ module.exports = {
console.log("By default, magellan will run all available tests in parallel with phantomjs.");
console.log("");
console.log(" Parallelism, Workflow ... | add help for new cmd param | TestArmada_magellan | train |
5138f545d6e83fca0f618c6c3125306e0dbaf682 | diff --git a/src/views/site/package-details.php b/src/views/site/package-details.php
index <HASH>..<HASH> 100644
--- a/src/views/site/package-details.php
+++ b/src/views/site/package-details.php
@@ -17,6 +17,10 @@ use yii\helpers\Html;
]) ?>
<?php } ?>
+ <br><br>
+ <b>Last updated:</b> <?= Yii::$a... | added displaying last updated at package details | hiqdev_asset-packagist | train |
fff446b4a445eb03557c6b2f2a5694bc09873f00 | diff --git a/test/adapters/shared_tests.rb b/test/adapters/shared_tests.rb
index <HASH>..<HASH> 100644
--- a/test/adapters/shared_tests.rb
+++ b/test/adapters/shared_tests.rb
@@ -89,8 +89,8 @@ module Vanity::Adapters::SharedTests
refute(@subject.experiment_persisted?(experiment))
end
- ... | Adapter test for `#is_persisted?` should use created_at
While MockAdapter tests for the presence of any experiment data at all to
check persistence, other adapters check specifically for the created_at date,
so the test needs to match this behaviour. | assaf_vanity | train |
160d89722458b5ab4b6da6ef315ede48a6691ab0 | diff --git a/test/modules/boolean.js b/test/modules/boolean.js
index <HASH>..<HASH> 100755
--- a/test/modules/boolean.js
+++ b/test/modules/boolean.js
@@ -175,7 +175,7 @@ exports.testBooleanDelete = function (test) {
};
exports.testBooleanAndOr = function (test) {
- test.expect(3);
+ test.expect(2);
var a = tru... | only emit when you have a change. | Wizcorp_node-tomes | train |
2cc5c2ed582ca42d0d19e183b3fd5f65514ea64e | diff --git a/python/orca/test/bigdl/orca/tfpark/test_tfpark_model.py b/python/orca/test/bigdl/orca/tfpark/test_tfpark_model.py
index <HASH>..<HASH> 100644
--- a/python/orca/test/bigdl/orca/tfpark/test_tfpark_model.py
+++ b/python/orca/test/bigdl/orca/tfpark/test_tfpark_model.py
@@ -322,6 +322,23 @@ class TestTFPark(Zoo... | support tensorflow optimizer in keras model (#<I>)
* support tensorflow optimizer in keras model
* fix style | intel-analytics_BigDL | train |
a13be623b51c041065b079d5185857299f44ba02 | 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
@@ -462,16 +462,16 @@ class Model extends Object {
$this->Behaviors = new BehaviorCollection();
if ($this->useTable !== false) {
- $this->setDataSource... | Making the model require database connection only wen needed or requested | cakephp_cakephp | train |
323ee819c57cd2c726e7170b0cf6ccea7ce4dea7 | diff --git a/controller.go b/controller.go
index <HASH>..<HASH> 100644
--- a/controller.go
+++ b/controller.go
@@ -1,7 +1,6 @@
package revel
import (
- "database/sql"
"errors"
"fmt"
"net/http"
@@ -31,7 +30,6 @@ type Controller struct {
Args map[string]interface{} // Per-request scratch space.
Render... | Remove sql.Tx from Controller
Convert db filter to a mixin. Controllers that want to use a sql.Tx
can mix-in db.Transactional | revel_revel | train |
9814b6555dfbd4225bd6ddb1b41636d5eb46dbf0 | diff --git a/eZ/Publish/API/Repository/Tests/SetupFactory/LegacySolr.php b/eZ/Publish/API/Repository/Tests/SetupFactory/LegacySolr.php
index <HASH>..<HASH> 100644
--- a/eZ/Publish/API/Repository/Tests/SetupFactory/LegacySolr.php
+++ b/eZ/Publish/API/Repository/Tests/SetupFactory/LegacySolr.php
@@ -22,6 +22,8 @@ use eZ\... | [PHPDoc] Add missing type hint and phpdoc in SetupFactory/LegacySolr | ezsystems_ezpublish-kernel | train |
622af7f2c3d141c2c6519ea1a3cdfddda93960bc | diff --git a/test/helper/AbstractWorkServerAdapterTest.php b/test/helper/AbstractWorkServerAdapterTest.php
index <HASH>..<HASH> 100644
--- a/test/helper/AbstractWorkServerAdapterTest.php
+++ b/test/helper/AbstractWorkServerAdapterTest.php
@@ -65,15 +65,7 @@ abstract class AbstractWorkServerAdapterTest
protected sta... | cleanup test instantiation
Now testGetServerInstance() only needs to be called once. | mle86_php-wq | train |
ec44ca4c4bc883aae1652df76fa1c97c17a35069 | diff --git a/cobra/io/mat.py b/cobra/io/mat.py
index <HASH>..<HASH> 100644
--- a/cobra/io/mat.py
+++ b/cobra/io/mat.py
@@ -114,7 +114,9 @@ def create_mat_dict(model):
mat["ub"] = array(rxns.list_attr("upper_bound"))
mat["b"] = array(mets.list_attr("_bound"))
mat["c"] = array(rxns.list_attr("objective_coe... | fix reversibility bug in mat export
Fixes #<I>
This is a workaround to scipy/scipy#<I> | opencobra_cobrapy | train |
ae9c06db14c7b8bffddbba30b209475ffc619c24 | diff --git a/repl/system.go b/repl/system.go
index <HASH>..<HASH> 100644
--- a/repl/system.go
+++ b/repl/system.go
@@ -51,7 +51,7 @@ func SystemFunction(env *Glisp, name string, args []Sexp) (Sexp, error) {
var out []byte
if runtime.GOOS == "windows" {
- out, err = exec.Command(cmd, "/k", joined).CombinedOutput(... | should be /c not /k | glycerine_zygomys | train |
b90e88f69f61616b1f5479b1d7519341ea6e45f1 | diff --git a/isvcs/es.go b/isvcs/es.go
index <HASH>..<HASH> 100644
--- a/isvcs/es.go
+++ b/isvcs/es.go
@@ -150,7 +150,7 @@ func elasticsearchHealthCheck(port int) func() error {
}
time.Sleep(time.Millisecond * 1000)
}
- glog.Infof("elasticsearch container started, browser at %s/_plugin/head/", baseUrl)
+ g... | Reduce log level for iservice healthcheck messages | control-center_serviced | train |
b536fc5e0a961256a407bdc6863f330e369a4a7a | diff --git a/lib/fastlane/actions/deliver.rb b/lib/fastlane/actions/deliver.rb
index <HASH>..<HASH> 100644
--- a/lib/fastlane/actions/deliver.rb
+++ b/lib/fastlane/actions/deliver.rb
@@ -20,7 +20,7 @@ module Fastlane
is_beta_ipa: beta,
skip_deploy: skip... | Fixed not correctly settings the path to the IPA | fastlane_fastlane | train |
77cc714bfd2c36fa82d77ebd1e60c880a159f6f4 | diff --git a/tests/integration/modules/test_pip.py b/tests/integration/modules/test_pip.py
index <HASH>..<HASH> 100644
--- a/tests/integration/modules/test_pip.py
+++ b/tests/integration/modules/test_pip.py
@@ -1,10 +1,8 @@
-# -*- coding: utf-8 -*-
"""
tests.integration.modules.pip
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
"""... | Drop Py2 and six on tests/integration/modules/test_pip.py | saltstack_salt | train |
8ec983d02d3020094ec62a63c1d5ec946c3dc1fe | diff --git a/doctr/__main__.py b/doctr/__main__.py
index <HASH>..<HASH> 100644
--- a/doctr/__main__.py
+++ b/doctr/__main__.py
@@ -259,6 +259,11 @@ def deploy(args, parser):
full_key_path=args.key_path,
branch_whitelist=branch_whitelist)
+ ... | Run the command before syncing
That way it can affect the build docs files before they are synced. | drdoctr_doctr | train |
44aca75d10c41d14465949f9d2a4ca80a1d00fb7 | diff --git a/styx-scheduler-service/src/main/java/com/spotify/styx/state/QueuedStateManager.java b/styx-scheduler-service/src/main/java/com/spotify/styx/state/QueuedStateManager.java
index <HASH>..<HASH> 100644
--- a/styx-scheduler-service/src/main/java/com/spotify/styx/state/QueuedStateManager.java
+++ b/styx-schedule... | fix dequeue event type check
Including resource ID's in type equality check seems fragile. | spotify_styx | train |
1d821a70ba0855256272a2469c3c57937d592986 | diff --git a/it-serialization/src/main/java/net/morimekta/providence/it/serialization/TestOptions.java b/it-serialization/src/main/java/net/morimekta/providence/it/serialization/TestOptions.java
index <HASH>..<HASH> 100644
--- a/it-serialization/src/main/java/net/morimekta/providence/it/serialization/TestOptions.java
+... | IT Serialization: Add option to filter by format. | morimekta_providence | train |
9564debff3934c414f8535839fe432d4eab9bb68 | diff --git a/dom/events/delegate/delegate-test.js b/dom/events/delegate/delegate-test.js
index <HASH>..<HASH> 100644
--- a/dom/events/delegate/delegate-test.js
+++ b/dom/events/delegate/delegate-test.js
@@ -27,3 +27,37 @@ test("basics", 2, function () {
domEvents.addDelegateListener.call(ul, "click", "li", handler);
... | add delegated event handler in capturing phase for events that do not bubble | canjs_can-util | train |
e876cec766906f76896380a3b0e8e84f54d32138 | diff --git a/src/Backend/Schema/Action.php b/src/Backend/Schema/Action.php
index <HASH>..<HASH> 100644
--- a/src/Backend/Schema/Action.php
+++ b/src/Backend/Schema/Action.php
@@ -33,7 +33,7 @@ use PSX\Schema\SchemaAbstract;
*/
class Action extends SchemaAbstract
{
- const NAME_PATTERN = '[a-zA-Z0-9\-\_]{3,64}';
... | increase action, connection and schema name max length | apioo_fusio-impl | train |
bd638bd692c140148013ad6af0425c3c3c25b911 | diff --git a/driver_beagle.go b/driver_beagle.go
index <HASH>..<HASH> 100644
--- a/driver_beagle.go
+++ b/driver_beagle.go
@@ -383,7 +383,7 @@ func (d *BeagleBoneDriver) Init() error {
// }
// Set up the memory mapped file giving us access to hardware registers
- file, e := os.OpenFile("/dev/mem", os.O_RDWR|... | Added O_SYNC to mmap open so that memory is not cached.
Thanks to rickb<I> for pointing this out: <URL> | mrmorphic_hwio | train |
8fb926ba87883c62077a820613128cbdae540478 | diff --git a/test/codegen/src/java/com/amd/aparapi/test/ClassHasStaticMethodSimple.java b/test/codegen/src/java/com/amd/aparapi/test/ClassHasStaticMethodSimple.java
index <HASH>..<HASH> 100644
--- a/test/codegen/src/java/com/amd/aparapi/test/ClassHasStaticMethodSimple.java
+++ b/test/codegen/src/java/com/amd/aparapi/te... | This was incorrectly tagged as expecting an error. | Syncleus_aparapi | train |
475bed5e19ea867b143cf3a0602fa78b3a32adc9 | diff --git a/bridge/discord/discord.go b/bridge/discord/discord.go
index <HASH>..<HASH> 100644
--- a/bridge/discord/discord.go
+++ b/bridge/discord/discord.go
@@ -4,16 +4,18 @@ import (
"github.com/42wim/matterbridge/bridge/config"
log "github.com/Sirupsen/logrus"
"github.com/bwmarrin/discordgo"
+ "strings"
)
... | Add support for discord channel ID. See #<I> | 42wim_matterbridge | train |
1a807e585d79bc01eeeaffd4bdd24b96f129f743 | diff --git a/src/rez/build_process.py b/src/rez/build_process.py
index <HASH>..<HASH> 100644
--- a/src/rez/build_process.py
+++ b/src/rez/build_process.py
@@ -291,6 +291,13 @@ class LocalSequentialBuildProcess(StandardBuildProcess):
"""A BuildProcess that sequentially builds the variants of the current
packag... | + Only reuse the context if the package.yaml hasn't changed. | nerdvegas_rez | train |
3ca2976afc65f3dcd307b82d4d0f1ed72830106b | diff --git a/Classes/Domain/Dto/Asset.php b/Classes/Domain/Dto/Asset.php
index <HASH>..<HASH> 100644
--- a/Classes/Domain/Dto/Asset.php
+++ b/Classes/Domain/Dto/Asset.php
@@ -25,8 +25,8 @@ class Asset extends AbstractMetaDataDto
'FileName' => '',
'Identifier' => '',
'Tags' => [],
- 'Ti... | TASK: Add assetObject to DTO | neos_metadata | train |
e1becf69271aa7a6f5e4523afeea679ff9e15ef0 | diff --git a/dom/src/test/java/org/incode/module/commchannel/dom/api/geocoding/GeocodingServiceTest.java b/dom/src/test/java/org/incode/module/commchannel/dom/api/geocoding/GeocodingServiceTest.java
index <HASH>..<HASH> 100644
--- a/dom/src/test/java/org/incode/module/commchannel/dom/api/geocoding/GeocodingServiceTest.... | Fixing broken tests resulting from changes in output from the actual (google) GeocodingService. | incodehq-legacy_incode-module-commchannel | train |
59407b6991ef621327b26d1783ed47e62d16076d | diff --git a/guava/src/com/google/common/cache/RemovalListener.java b/guava/src/com/google/common/cache/RemovalListener.java
index <HASH>..<HASH> 100644
--- a/guava/src/com/google/common/cache/RemovalListener.java
+++ b/guava/src/com/google/common/cache/RemovalListener.java
@@ -41,6 +41,9 @@ import com.google.common.an... | Adds a small clarifying comment to the Javadoc of common.cache.RemovalListener.
My team was previously assuming that calls to CacheLoader.load and RemovalListener.onRemoval would always be paired, but we found out this is not the case.
In retrospect, the existing Javadoc already hints at this, but I think it can be m... | google_guava | train |
99e3f7d462172f6379aaf66d9873ea88a6365aba | diff --git a/localization_flow/jtlocalize/core/localization_utils.py b/localization_flow/jtlocalize/core/localization_utils.py
index <HASH>..<HASH> 100755
--- a/localization_flow/jtlocalize/core/localization_utils.py
+++ b/localization_flow/jtlocalize/core/localization_utils.py
@@ -26,7 +26,13 @@ def rewrite_localizati... | Allow supplying array in modification func of rewrite | joytunes_JTLocalize | train |
27d31c6ae816bdee2473f8463b17b9f2d54c2bbc | diff --git a/src/main/java/com/treasure_data/client/DefaultClientAdaptorImpl.java b/src/main/java/com/treasure_data/client/DefaultClientAdaptorImpl.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/treasure_data/client/DefaultClientAdaptorImpl.java
+++ b/src/main/java/com/treasure_data/client/DefaultClientAdapto... | SubmitJobRequest: added validation for checking that required parameters are null or not | treasure-data_td-client-java | train |
19a239a7a2a1d0dee9891ac7a0828937f135ded1 | diff --git a/aws/resource_aws_rds_cluster.go b/aws/resource_aws_rds_cluster.go
index <HASH>..<HASH> 100644
--- a/aws/resource_aws_rds_cluster.go
+++ b/aws/resource_aws_rds_cluster.go
@@ -516,6 +516,9 @@ func resourceAwsRDSClusterCreate(d *schema.ResourceData, meta interface{}) error
}
return nil
})
+ if isR... | Final retries for RDS cluster functions | terraform-providers_terraform-provider-aws | train |
d59cd188783a242cd12655c0f15ce214852a00db | diff --git a/bundles/org.eclipse.orion.client.core/web/orion/extensionCommands.js b/bundles/org.eclipse.orion.client.core/web/orion/extensionCommands.js
index <HASH>..<HASH> 100644
--- a/bundles/org.eclipse.orion.client.core/web/orion/extensionCommands.js
+++ b/bundles/org.eclipse.orion.client.core/web/orion/extensionC... | Bug <I> - Can't open a file whose name contains a comma - Undoing change. Had further reaching effects than simply the file navigation | eclipse_orion.client | train |
5bf501a4e54a14da15895e9da2eb75798852e9bb | diff --git a/environs/cloudinit/cloudinit_test.go b/environs/cloudinit/cloudinit_test.go
index <HASH>..<HASH> 100644
--- a/environs/cloudinit/cloudinit_test.go
+++ b/environs/cloudinit/cloudinit_test.go
@@ -381,11 +381,11 @@ func (*cloudinitSuite) TestCloudInit(c *gc.C) {
if test.cfg.StateServer {
checkPackage(c... | Update cloudinit tests to check key contents | juju_juju | train |
8663306d8f5ce4bc735b0c6fe5bbb0ad8fc5ea19 | diff --git a/src/test/java/software/coolstuff/springframework/owncloud/service/impl/AbstractOwncloudUserModificationServiceRestTest.java b/src/test/java/software/coolstuff/springframework/owncloud/service/impl/AbstractOwncloudUserModificationServiceRestTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/software/... | and now also the negative tests of OwncloudUserModificationService.deleteUser() exists | coolstuffsoftware_owncloud-spring-boot-starter | train |
f41d2bd237d039119b0edcd27edf2b42a0ec62ec | diff --git a/poco/drivers/android/utils/installation.py b/poco/drivers/android/utils/installation.py
index <HASH>..<HASH> 100644
--- a/poco/drivers/android/utils/installation.py
+++ b/poco/drivers/android/utils/installation.py
@@ -23,8 +23,10 @@ def install(adb_client, localpath, force_reinstall=False):
except (Ru... | fix log
(cherry picked from commit bbaacaafda6fa<I>ae4e<I>dda<I>c5fa8dd<I>e9d) | AirtestProject_Poco | train |
64bc0381b244e6127d349b67ad652c92b7594119 | diff --git a/modules/rubiconBidAdapter.js b/modules/rubiconBidAdapter.js
index <HASH>..<HASH> 100644
--- a/modules/rubiconBidAdapter.js
+++ b/modules/rubiconBidAdapter.js
@@ -270,8 +270,13 @@ export const spec = {
cpm: ad.cpm || 0,
dealId: ad.deal,
ttl: 300, // 5 minutes
- netRevenue: ... | added advertiserId and networkId for rubiconBidAdapter (#<I>)
* added advertiserId and networkId for rubiconBidAdapter
* move advertiserId and networkId into custom rubicon property | prebid_Prebid.js | train |
7efd75812114f7bcdcb56840ab5531c977414895 | diff --git a/biz/webui/cgi-bin/history.js b/biz/webui/cgi-bin/history.js
index <HASH>..<HASH> 100644
--- a/biz/webui/cgi-bin/history.js
+++ b/biz/webui/cgi-bin/history.js
@@ -1,5 +1,6 @@
+var util = require('./util');
var properties = require('../../../lib/rules/util').properties;
module.exports = function(req, res... | refactor: add gzip | avwo_whistle | train |
efa52ba42b2843d3c947143055667b35d8f61623 | diff --git a/client/config/config.go b/client/config/config.go
index <HASH>..<HASH> 100644
--- a/client/config/config.go
+++ b/client/config/config.go
@@ -80,7 +80,7 @@ func (c *Config) ReadDefault(id string, defaultValue string) string {
func (c *Config) ReadBool(id string) (bool, error) {
val, ok := c.Options[id]
... | Add missing param and error in the missing case so default will work as expected | hashicorp_nomad | train |
9ccaabf4bbbe1545707f1724bd1ab449d9427f36 | diff --git a/commands/command_fsck.go b/commands/command_fsck.go
index <HASH>..<HASH> 100644
--- a/commands/command_fsck.go
+++ b/commands/command_fsck.go
@@ -14,6 +14,7 @@ import (
"github.com/git-lfs/git-lfs/v3/git"
"github.com/git-lfs/git-lfs/v3/lfs"
"github.com/git-lfs/git-lfs/v3/tools"
+ "github.com/git-lfs/... | commands/fsck: make strings translatable
Translate the messages of our fsck failures, but not the prefix or kind,
which are designed for automatic parsing. | git-lfs_git-lfs | train |
88ed0c9fa51a9415d9b7ac259532681d66e62f44 | diff --git a/src/test/org/openscience/cdk/geometry/cip/CIPSMILESTest.java b/src/test/org/openscience/cdk/geometry/cip/CIPSMILESTest.java
index <HASH>..<HASH> 100644
--- a/src/test/org/openscience/cdk/geometry/cip/CIPSMILESTest.java
+++ b/src/test/org/openscience/cdk/geometry/cip/CIPSMILESTest.java
@@ -28,6 +28,7 @@ imp... | Can also now apply basic CIP rules to sulfinyl. | cdk_cdk | train |
f0c37d1a43096e5d63017fb8bca4e7bb5e15e96b | diff --git a/core/src/main/java/jlibs/core/lang/BeanUtil.java b/core/src/main/java/jlibs/core/lang/BeanUtil.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/jlibs/core/lang/BeanUtil.java
+++ b/core/src/main/java/jlibs/core/lang/BeanUtil.java
@@ -79,9 +79,9 @@ public class BeanUtil{
/*---------------------... | GET, SET && IS are made public | santhosh-tekuri_jlibs | train |
ff284b713af318d4f07d757e40a0634d9302efbe | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -44,13 +44,21 @@ Linter.prototype = {
verify: function(options) {
var messages = [];
- compile(options.source, {
- moduleName: options.moduleId,
- rawSource: options.source,
- plugin... | Prevent errors when calling `.verify`.
This change adds a small amount of error handling to the linter, so that
calling `linter.verify` on broken templates still returns an array of
objects. In this case the result object would include the following
properties:
* `fatal` -- `true`
* `message` -- The `error.message` f... | ember-template-lint_ember-template-lint | train |
713d35d9a31600ac829ef194be5f4d5ff3f2ae04 | diff --git a/tests/HybridSessionTest.php b/tests/HybridSessionTest.php
index <HASH>..<HASH> 100644
--- a/tests/HybridSessionTest.php
+++ b/tests/HybridSessionTest.php
@@ -2,40 +2,90 @@
namespace SilverStripe\HybridSessions\Tests;
-use SilverStripe\ORM\DB;
-use SilverStripe\ORM\Connect\MySQLDatabase;
-use SilverStr... | Rewrite HybridSession tests | silverstripe_silverstripe-hybridsessions | train |
cc0e354af40772275d831c5726c422a3905f09ed | diff --git a/test/test_f90nml.py b/test/test_f90nml.py
index <HASH>..<HASH> 100644
--- a/test/test_f90nml.py
+++ b/test/test_f90nml.py
@@ -765,11 +765,10 @@ class Test(unittest.TestCase):
# CLI tests
def test_cli_help(self):
- old_argv = sys.argv
- old_stdout = sys.stdout
+ argv, stdout... | CLI input/read test
New CLI test which confirms that the parsed output matches the expected
output of a user-defined input file. | marshallward_f90nml | train |
f5cd079edb219de5ad03a71448d578f5f477da9c | diff --git a/docs/configuration.rst b/docs/configuration.rst
index <HASH>..<HASH> 100644
--- a/docs/configuration.rst
+++ b/docs/configuration.rst
@@ -22,3 +22,7 @@ All configuration described here belongs in ``setup.cfg`` in a section:
If set to true the status of the head commit will be
checked and a releas... | feat(pypi): Add option to disable pypi upload | relekang_python-semantic-release | train |
3e218ee4ca588362623599c83be0842d250c710c | diff --git a/packages/webiny-ui/src/Tabs/Tabs.js b/packages/webiny-ui/src/Tabs/Tabs.js
index <HASH>..<HASH> 100644
--- a/packages/webiny-ui/src/Tabs/Tabs.js
+++ b/packages/webiny-ui/src/Tabs/Tabs.js
@@ -1,11 +1,15 @@
// @flow
import * as React from "react";
+import classNames from "classnames";
import { TabBar, Ta... | Improved style handling inside Tabs component | Webiny_webiny-js | train |
d23fe742a5c84535c90f5ea757e16a8651ba2268 | diff --git a/components/Commands/src/Wrappers/ConsoleIoWrapper.php b/components/Commands/src/Wrappers/ConsoleIoWrapper.php
index <HASH>..<HASH> 100644
--- a/components/Commands/src/Wrappers/ConsoleIoWrapper.php
+++ b/components/Commands/src/Wrappers/ConsoleIoWrapper.php
@@ -46,6 +46,78 @@ class ConsoleIoWrapper impleme... | Add implementation for in/out methods. | limoncello-php_framework | train |
8ff3e04a9b49a492ad7e9952fd0702140c6c13f9 | diff --git a/src/java/voldemort/serialization/avro/AvroGenericSerializer.java b/src/java/voldemort/serialization/avro/AvroGenericSerializer.java
index <HASH>..<HASH> 100644
--- a/src/java/voldemort/serialization/avro/AvroGenericSerializer.java
+++ b/src/java/voldemort/serialization/avro/AvroGenericSerializer.java
@@ -3... | Flesh out javadoc for Avro serializers and include links. | voldemort_voldemort | train |
822691428de48184b269fb44587752410f5b299f | diff --git a/api/src/test/java/com/messagebird/MessageBirdClientTest.java b/api/src/test/java/com/messagebird/MessageBirdClientTest.java
index <HASH>..<HASH> 100644
--- a/api/src/test/java/com/messagebird/MessageBirdClientTest.java
+++ b/api/src/test/java/com/messagebird/MessageBirdClientTest.java
@@ -122,35 +122,6 @@ ... | Remove premium SMS test. Premium is no longer supported. | messagebird_java-rest-api | train |
49c0a5adfc631b47371ec8a294659bb2e4d32ee2 | diff --git a/src/menu/Item.php b/src/menu/Item.php
index <HASH>..<HASH> 100644
--- a/src/menu/Item.php
+++ b/src/menu/Item.php
@@ -48,6 +48,8 @@ use yii\base\ArrayableTrait;
* @property boolean $isHome Returns true if the item is the home item, otherwise false.
* @property string $absoluteLink The link path with pr... | add phpdoc block for getter methods | luyadev_luya-module-cms | train |
02592d42e26a100e8f737500afec62d872f195d1 | diff --git a/tests/serializer.py b/tests/serializer.py
index <HASH>..<HASH> 100644
--- a/tests/serializer.py
+++ b/tests/serializer.py
@@ -4,15 +4,42 @@ import slumber.serialize
class ResourceTestCase(unittest.TestCase):
+ def setUp(self):
+ self.data = {
+ "foo": "bar",
+ "baz": [1... | Some bonus tests to replace my coverage divet | samgiles_slumber | train |
ecf4797936b62a9cdb6d4f5ef12855b959cc3a93 | diff --git a/src/Valuator/AbstractValuator.php b/src/Valuator/AbstractValuator.php
index <HASH>..<HASH> 100644
--- a/src/Valuator/AbstractValuator.php
+++ b/src/Valuator/AbstractValuator.php
@@ -8,6 +8,7 @@
namespace Roomify\Bat\Valuator;
use Roomify\Bat\Valuator\ValuatorInterface;
+use Roomify\Bat\Unit\Unit;
ab... | Add basic getters and setters for AbstractValuator | Roomify_bat | train |
eac6f4f4a35eeb4efa1ca2434db8bab96b2c0fd6 | diff --git a/nationstates/objects.py b/nationstates/objects.py
index <HASH>..<HASH> 100644
--- a/nationstates/objects.py
+++ b/nationstates/objects.py
@@ -6,11 +6,23 @@ from xml.parsers.expat import ExpatError
from time import sleep
from .info import nation_shards, region_shards, world_shards, wa_shards
+class NSDi... | Added NSdict to <I> | DolphDev_pynationstates | train |
b7845e07c6f7ecb3861c5d2e95581c5c2e96e364 | diff --git a/redisco/containers.py b/redisco/containers.py
index <HASH>..<HASH> 100644
--- a/redisco/containers.py
+++ b/redisco/containers.py
@@ -423,10 +423,16 @@ class Hash(Container, collections.MutableMapping):
def values(self):
return self.hvals()
- @property
- def dict(self):
+ def _get_... | Adds Hash.dict setter. | iamteem_redisco | train |
7ef17ae804c8e63056c8b43549c7684b100af738 | diff --git a/examples/quick-start/components/user-form.js b/examples/quick-start/components/user-form.js
index <HASH>..<HASH> 100644
--- a/examples/quick-start/components/user-form.js
+++ b/examples/quick-start/components/user-form.js
@@ -26,7 +26,7 @@ class UserForm extends React.Component {
<Form model="user" ... | Simplifying and optimizing behavior of DOM constraint validation | davidkpiano_react-redux-form | train |
130cd60c2c2764c8cf5e774e9d790a2093cd7a53 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -724,7 +724,7 @@ is.string = function (value) {
*/
is.base64 = function (value) {
- return is.string(value) && base64Regex.test(value);
+ return is.string(value) && (!value.length || base64Regex.test(value));
};
/**... | Allow empty string as base<I> or hex | enricomarino_is | train |
974cb6cb62f2620b85c3b6ab863245870bbcb7cf | diff --git a/lib/pdk/validate/base_validator.rb b/lib/pdk/validate/base_validator.rb
index <HASH>..<HASH> 100644
--- a/lib/pdk/validate/base_validator.rb
+++ b/lib/pdk/validate/base_validator.rb
@@ -1,5 +1,6 @@
require 'pdk'
require 'pdk/cli/exec'
+require 'pdk/module'
module PDK
module Validate
@@ -36,7 +37,6 ... | (PDK-<I>) Exclude DEFAULT_IGNORED files from validator globbed targets | puppetlabs_pdk | train |
2b9e5587a817e6999e518888f86fe16a1ebaa0e1 | diff --git a/source/android/adaptivecards/src/main/java/io/adaptivecards/renderer/readonly/TextRendererUtil.java b/source/android/adaptivecards/src/main/java/io/adaptivecards/renderer/readonly/TextRendererUtil.java
index <HASH>..<HASH> 100644
--- a/source/android/adaptivecards/src/main/java/io/adaptivecards/renderer/re... | add ability to inject custom typefaces into TextRendererUtil.java (#<I>) | Microsoft_AdaptiveCards | train |
c75de72a683c9fac3deb0d01db32d202f03dbf39 | diff --git a/src/Berthe/DAL/AbstractWriter.php b/src/Berthe/DAL/AbstractWriter.php
index <HASH>..<HASH> 100644
--- a/src/Berthe/DAL/AbstractWriter.php
+++ b/src/Berthe/DAL/AbstractWriter.php
@@ -15,8 +15,17 @@ abstract class AbstractWriter implements Writer {
protected $identityColumn = 'id';
+ protected $e... | Add field/table name escaping and base writer | Evaneos_berthe | train |
fcdce7b6282ca71aab5710025c2b11c7eda723ae | diff --git a/pyrax/utils.py b/pyrax/utils.py
index <HASH>..<HASH> 100644
--- a/pyrax/utils.py
+++ b/pyrax/utils.py
@@ -118,13 +118,14 @@ class DotDict(dict):
If the key is not present, an AttributeError is raised.
"""
- _strict = True
+ _att_mapper = {}
_fail = object()
def __init__(self, ... | Added att mapping to the DotDict class. | pycontribs_pyrax | train |
c9ea06d6bc5220f00f392ea7651d6eb67993984a | diff --git a/nodeconductor/vm/models.py b/nodeconductor/vm/models.py
index <HASH>..<HASH> 100644
--- a/nodeconductor/vm/models.py
+++ b/nodeconductor/vm/models.py
@@ -6,9 +6,26 @@ from nodeconductor.structure.models import Environment
class VM(models.Model):
hostname = models.CharField(max_length=80)
environ... | Added extended attributes for VM model (NC-<I>) | opennode_waldur-core | train |
918f9c6897a89dd64b290b81129526eaa00277fa | diff --git a/django_mako_plus/management/commands/dmp_webpack.py b/django_mako_plus/management/commands/dmp_webpack.py
index <HASH>..<HASH> 100644
--- a/django_mako_plus/management/commands/dmp_webpack.py
+++ b/django_mako_plus/management/commands/dmp_webpack.py
@@ -159,13 +159,14 @@ class Command(BaseCommand):
... | updated the dmp_webpack management command to do subdirs last | doconix_django-mako-plus | train |
2f208a2285240a91afd4990038d1ce9d295f139c | diff --git a/tests/test_pipeline_config_manager.py b/tests/test_pipeline_config_manager.py
index <HASH>..<HASH> 100644
--- a/tests/test_pipeline_config_manager.py
+++ b/tests/test_pipeline_config_manager.py
@@ -47,8 +47,10 @@ class BaseTestPipelineConfigManager(AbstractTestManager):
def expected_accept_headers(sel... | Update version in accordance to documentation. | grundic_yagocd | train |
781de2940177af61751ab7acb9db30b5a42f746f | diff --git a/src/ConfigBuilder.php b/src/ConfigBuilder.php
index <HASH>..<HASH> 100644
--- a/src/ConfigBuilder.php
+++ b/src/ConfigBuilder.php
@@ -2,6 +2,8 @@
namespace SpeedyConfig;
+use SpeedyConfig\Schema\Schema;
+
/**
* ConfigBuilder loads resources using the supplied loaders, processes
* the configuratio... | Optionally pass a schema to getConfig() for processors to use | glynnforrest_speedy-config | train |
317c64274e3c40f2458ca63091b9df0d68403552 | diff --git a/pyup/providers/github.py b/pyup/providers/github.py
index <HASH>..<HASH> 100644
--- a/pyup/providers/github.py
+++ b/pyup/providers/github.py
@@ -90,7 +90,7 @@ class Provider(object):
return self.bundle.get_pull_request_class()(
state=pr.state,
title=pr.title,... | use the html_url instead of the arbitrary url that points to the api | pyupio_pyup | train |
4fb5fc72d7956db5d99518bd963e09855a1601e1 | diff --git a/cmd/gateway-gcs.go b/cmd/gateway-gcs.go
index <HASH>..<HASH> 100644
--- a/cmd/gateway-gcs.go
+++ b/cmd/gateway-gcs.go
@@ -42,6 +42,9 @@ const (
// ZZZZMinioPrefix is used for metadata and multiparts. The prefix is being filtered out,
// hence the naming of ZZZZ (last prefix)
ZZZZMinioPrefix = "ZZZZ-M... | GCS gateway allows apps to supply their own marker (#<I>)
Most s3 compatible apps use object keys returned in listing as
marker. This change allows this behaviour with gateway-gcs too. | minio_minio | train |
3208a2737c3112dd41343a2fad1c31ffe9d95bab | diff --git a/mount/init.go b/mount/init.go
index <HASH>..<HASH> 100644
--- a/mount/init.go
+++ b/mount/init.go
@@ -12,6 +12,7 @@ import (
"github.com/dotcloud/docker/pkg/libcontainer"
"github.com/dotcloud/docker/pkg/libcontainer/mount/nodes"
"github.com/dotcloud/docker/pkg/system"
+ "github.com/dotcloud/docker/ut... | libcontainer: Ensure bind mount target files are inside rootfs
Before we create any files to bind-mount on, make sure they are
inside the container rootfs, handling for instance absolute symbolic
links inside the container.
Docker-DCO-<I>- | opencontainers_runc | train |
b76f83e7e1c0c63783580ad6553704778e9f9baf | diff --git a/virtualchain/lib/blockchain/session.py b/virtualchain/lib/blockchain/session.py
index <HASH>..<HASH> 100644
--- a/virtualchain/lib/blockchain/session.py
+++ b/virtualchain/lib/blockchain/session.py
@@ -153,11 +153,11 @@ def connect_bitcoind_impl( bitcoind_opts ):
Create a connection to bitcoind, using... | fix logic test for presence/absence of bitcoind host and portt | blockstack_virtualchain | train |
6437d4158420133f48a205d8197da521153c7c63 | diff --git a/ics/component.py b/ics/component.py
index <HASH>..<HASH> 100644
--- a/ics/component.py
+++ b/ics/component.py
@@ -3,7 +3,7 @@
from __future__ import unicode_literals, absolute_import
-from six import PY2, PY3, StringIO, string_types, text_type, integer_types
+from six import PY3, StringIO, string_type... | Remove every indirection on six.PY2 | C4ptainCrunch_ics.py | train |
08411140f3894e2a5cdb5efca5312042f53ce73b | diff --git a/src/ServiceContainer/NoExtension.php b/src/ServiceContainer/NoExtension.php
index <HASH>..<HASH> 100644
--- a/src/ServiceContainer/NoExtension.php
+++ b/src/ServiceContainer/NoExtension.php
@@ -51,9 +51,9 @@ final class NoExtension implements Extension
{
$basePath = $container->getParameter('... | Register the yaml loader as the first one as it is the mostly used one | jakzal_BehatNoExtension | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.