hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
2202fd1714854524ac07ef4f232297e1a124175b | diff --git a/lib/dryice/index.js b/lib/dryice/index.js
index <HASH>..<HASH> 100644
--- a/lib/dryice/index.js
+++ b/lib/dryice/index.js
@@ -1072,10 +1072,10 @@ copy.filter.addDefines = function(input, source) {
var module = source.isLocation ? source.path : source;
- input = input.replace(/\\/g, "\\\\").replace(... | Use ' when adding define lines rather than " | mozilla_dryice | train |
d09467f59443ac4f52eec1a1c1a00670047a6658 | diff --git a/thriftrw/idl/lexer.py b/thriftrw/idl/lexer.py
index <HASH>..<HASH> 100644
--- a/thriftrw/idl/lexer.py
+++ b/thriftrw/idl/lexer.py
@@ -56,6 +56,8 @@ THRIFT_KEYWORDS = (
'const',
'required',
'optional',
+ 'true',
+ 'false',
)
@@ -67,7 +69,6 @@ class LexerSpec(object):
literals ... | Fix parser bug that prevented starting variable names with true or false | thriftrw_thriftrw-python | train |
e66238e6eac296a466855647df2c38ea0b97315a | diff --git a/nomad/structs/structs.go b/nomad/structs/structs.go
index <HASH>..<HASH> 100644
--- a/nomad/structs/structs.go
+++ b/nomad/structs/structs.go
@@ -2421,7 +2421,15 @@ type Plan struct {
func (p *Plan) AppendUpdate(alloc *Allocation, status, desc string) {
newAlloc := new(Allocation)
*newAlloc = *alloc
-... | Store the job on allocations that are from stopped jobs | hashicorp_nomad | train |
21c43348d6b2d50580ea6e8898ba138a4d4f3762 | diff --git a/tests/BreadcrumbTest.php b/tests/BreadcrumbTest.php
index <HASH>..<HASH> 100644
--- a/tests/BreadcrumbTest.php
+++ b/tests/BreadcrumbTest.php
@@ -2,6 +2,8 @@
class BreadcrumbTest extends PHPUnit_Framework_TestCase
{
+
+ /** @var \Noherczeg\Breadcrumb\Breadcrumb */
private $bread = null;
... | added type hint for better IDE support | noherczeg_breadcrumb | train |
cc551e3523b17fc874aaaaf5703ee7b44f3d453a | diff --git a/src/components/CheckboxGroup/__test__/checkboxList.spec.js b/src/components/CheckboxGroup/__test__/checkboxList.spec.js
index <HASH>..<HASH> 100644
--- a/src/components/CheckboxGroup/__test__/checkboxList.spec.js
+++ b/src/components/CheckboxGroup/__test__/checkboxList.spec.js
@@ -1,11 +1,12 @@
import Rea... | test: add tests to description in Checkbox and Radio groups (#<I>)
* test: add test to RadioGroup description
* test: add test to CheckboxGroup description | 90milesbridge_react-rainbow | train |
899ecf60d27d618655fb5d19666a6863e82a0f87 | diff --git a/eZ/Publish/API/Repository/RoleService.php b/eZ/Publish/API/Repository/RoleService.php
index <HASH>..<HASH> 100644
--- a/eZ/Publish/API/Repository/RoleService.php
+++ b/eZ/Publish/API/Repository/RoleService.php
@@ -189,7 +189,7 @@ interface RoleService
*
* @param \eZ\Publish\API\Repository\Value... | Fixed: Some return types in doc comments. | ezsystems_ezpublish-kernel | train |
45a776692cbdee9b7239b0b2453a0e1a1c896ae0 | diff --git a/test/faker/avatar.spec.js b/test/faker/avatar.spec.js
index <HASH>..<HASH> 100644
--- a/test/faker/avatar.spec.js
+++ b/test/faker/avatar.spec.js
@@ -22,7 +22,9 @@ describe('Avatar', () => {
});
it('should return url with specified format', () => {
- expect(Avatar.image('test', '300x300', ... | Added testing for all supported formats in Avatar tests. | mrstebo_fakergem | train |
7331d2b6f503eb72f4b732bf0baa05dc4f6a56b6 | diff --git a/examples/public/index.php b/examples/public/index.php
index <HASH>..<HASH> 100644
--- a/examples/public/index.php
+++ b/examples/public/index.php
@@ -8,7 +8,10 @@ require __DIR__ . '/../../vendor/autoload.php';
$app = new \Slim\Slim();
// setup freebird Client with application keys
-$client = new Made\... | updating for options of setting only the bearer token if already aquired | corbanb_freebird-php | train |
8ab2b7b348a7252733e3cbd095d763f84bca433e | diff --git a/src/module.js b/src/module.js
index <HASH>..<HASH> 100644
--- a/src/module.js
+++ b/src/module.js
@@ -5,10 +5,17 @@
angular.module("firebase.config", []);
angular.module("firebase.auth", ["firebase.utils"]);
angular.module("firebase.database", ["firebase.utils"]);
+ angular.module("firebase.stora... | fix(storage): Linting errors | firebase_angularfire | train |
a4d04cbb7279b9b7209e1ca14dab7722f010fe73 | diff --git a/cli/app.go b/cli/app.go
index <HASH>..<HASH> 100644
--- a/cli/app.go
+++ b/cli/app.go
@@ -47,7 +47,10 @@ func NewApp() *cli.App {
return
}
- if len(c.Args()) == 0 {
+ args := c.Args()
+ if len(args) > 0 {
+ cli.ShowCommandHelp(c, args[0])
+ } else {
cli.ShowAppHelp(c)
}
} | Print help when task is not matched | jingweno_gotask | train |
93e67edb2cac09ce16ece3ac594203d2cdaf0b5b | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ with open('README.rst') as f:
setup(
name='uber_rides',
- version='0.5.0',
+ version='0.5.1',
packages=find_packages(),
description='Official Uber Rides API Python SDK',
long_descrip... | Bumped package version to <I> for release | uber_rides-python-sdk | train |
1a9fe67b07797c5a8b2d19ce438beb8aa99f9516 | diff --git a/chi.go b/chi.go
index <HASH>..<HASH> 100644
--- a/chi.go
+++ b/chi.go
@@ -45,9 +45,9 @@ func (ms *Middlewares) Use(middlewares ...func(http.Handler) http.Handler) Middl
}
func (ms Middlewares) Handler(h http.Handler) http.HandlerFunc {
- return chain(ms, h).ServeHTTP
+ return Chain(ms, h).ServeHTTP
}
... | Export Chain() method for mws and endpoint for app use | go-chi_chi | train |
9e41bb39643757343dddd7f164d76ab755537777 | diff --git a/sprinter/environment.py b/sprinter/environment.py
index <HASH>..<HASH> 100644
--- a/sprinter/environment.py
+++ b/sprinter/environment.py
@@ -12,7 +12,7 @@ import sprinter.lib as lib
from sprinter.core import PHASE, load_global_config, Directory, Injections, Manifest, load_manifest, FeatureDict
from spri... | If fail in remove(), continue rest of feature removal instead of raising SprinterException | toumorokoshi_sprinter | train |
93fad0a09ebb2e76563ef5f065f6bdcf677ec1a3 | diff --git a/javascript/FrontEndGridField.js b/javascript/FrontEndGridField.js
index <HASH>..<HASH> 100644
--- a/javascript/FrontEndGridField.js
+++ b/javascript/FrontEndGridField.js
@@ -43,7 +43,41 @@
}
});
- $('.ss-gridfield a.edit-link, .ss-gridfield a.new-link').entwine({
+ ... | Fixed issue when clicking on a row in the gridfield would not lightbox
the form | webbuilders-group_silverstripe-frontendgridfield | train |
54284d2b2637951eb97598d4030beffdf3fd6ea6 | diff --git a/findbugs/src/java/edu/umd/cs/findbugs/ba/ValueNumberFrame.java b/findbugs/src/java/edu/umd/cs/findbugs/ba/ValueNumberFrame.java
index <HASH>..<HASH> 100644
--- a/findbugs/src/java/edu/umd/cs/findbugs/ba/ValueNumberFrame.java
+++ b/findbugs/src/java/edu/umd/cs/findbugs/ba/ValueNumberFrame.java
@@ -62,17 +62... | Modified mergeValues() to actually do what it is supposed to do.
git-svn-id: <URL> | spotbugs_spotbugs | train |
b620b73361a94bbacc051fb5fe9fec6ce2bc3459 | diff --git a/katharsis-core/src/main/java/io/katharsis/jackson/serializer/include/IncludedRelationshipExtractor.java b/katharsis-core/src/main/java/io/katharsis/jackson/serializer/include/IncludedRelationshipExtractor.java
index <HASH>..<HASH> 100644
--- a/katharsis-core/src/main/java/io/katharsis/jackson/serializer/in... | #<I> loop over resource properties that are an iterable | katharsis-project_katharsis-framework | train |
fe954f807eedb5e2f7acfbe33c5d78c60983babb | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -47,6 +47,7 @@ function composeInto(first){
function mixInto(src, target, propHash){
var key, val, inSrc, isRequired, decorator;
+ //console.log(src.traits)
_.each(target, function(value, key){
define(value, key... | include props from src object in descriptors | jquense_cobble | train |
14c1e9f4bb38bb2a7b01b25130b349e84947290b | diff --git a/src/Flint/Provider/FlintServiceProvider.php b/src/Flint/Provider/FlintServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/Flint/Provider/FlintServiceProvider.php
+++ b/src/Flint/Provider/FlintServiceProvider.php
@@ -16,8 +16,10 @@ class FlintServiceProvider implements \Silex\ServiceProviderInterface
... | Allow to override the controller used for excetion handling | flint_flint | train |
56e5597ad5a0eb453f54482e563b096d48cf2b76 | diff --git a/src/iTunes/PurchaseItem.php b/src/iTunes/PurchaseItem.php
index <HASH>..<HASH> 100644
--- a/src/iTunes/PurchaseItem.php
+++ b/src/iTunes/PurchaseItem.php
@@ -80,9 +80,9 @@ class PurchaseItem
/**
* @return array
*/
- public function getData()
+ public function getRawResponse()
{
- return ... | Fix undefined _data attribute. Replaced with function which gives access to the raw json response | aporat_store-receipt-validator | train |
d6e9da7ab05bdafa2b2ed38b8b4e4a3a42eaefa9 | diff --git a/src/ossos-pipeline/ossos/gui/errorhandling.py b/src/ossos-pipeline/ossos/gui/errorhandling.py
index <HASH>..<HASH> 100644
--- a/src/ossos-pipeline/ossos/gui/errorhandling.py
+++ b/src/ossos-pipeline/ossos/gui/errorhandling.py
@@ -11,6 +11,8 @@ class DownloadErrorHandler(object):
def __init__(self, app... | Only allow one pop-up to retry downloads at a time. Selecting retry
will cause all failed downloads to be requeued. | OSSOS_MOP | train |
54c7442de11f383e698f885466e3f9729249be8e | diff --git a/app/plates/errors/error.php b/app/plates/errors/error.php
index <HASH>..<HASH> 100644
--- a/app/plates/errors/error.php
+++ b/app/plates/errors/error.php
@@ -2,9 +2,14 @@
/** @var Template $this */
/** @var DataView $view */
use League\Plates\Template\Template;
+use Tuum\Form\Components\NavBar;
use Tuu... | highlight navigation for error pages as well. | TuumPHP_Respond | train |
935fd33aadd270b91dad0afc8ad934e29748155a | diff --git a/app/lib/security/PlayAuthenticationListener.java b/app/lib/security/PlayAuthenticationListener.java
index <HASH>..<HASH> 100644
--- a/app/lib/security/PlayAuthenticationListener.java
+++ b/app/lib/security/PlayAuthenticationListener.java
@@ -38,8 +38,8 @@ public class PlayAuthenticationListener implements ... | don't log people out just because the connection to server failed
fixes #<I> | Graylog2_graylog2-server | train |
19b591da138537097f082dc2979c0b1ab05b77e4 | diff --git a/src/Charcoal/Source/StorableTrait.php b/src/Charcoal/Source/StorableTrait.php
index <HASH>..<HASH> 100644
--- a/src/Charcoal/Source/StorableTrait.php
+++ b/src/Charcoal/Source/StorableTrait.php
@@ -8,9 +8,6 @@ use InvalidArgumentException;
// From 'charcoal-factory'
use Charcoal\Factory\FactoryInterface;... | Set save(), update(), delete() and load() as final, even if PHP doesnt enfore final keywords for Traits... | locomotivemtl_charcoal-core | train |
28222438af3ddffcd69a18e9c215f8e37d9fc453 | diff --git a/lib/locomotive/steam/liquid/tags/editable/base.rb b/lib/locomotive/steam/liquid/tags/editable/base.rb
index <HASH>..<HASH> 100644
--- a/lib/locomotive/steam/liquid/tags/editable/base.rb
+++ b/lib/locomotive/steam/liquid/tags/editable/base.rb
@@ -39,10 +39,16 @@ module Locomotive
page = ... | implement suggestions in locomotivecms/engine#<I> | locomotivecms_steam | train |
345578deb0c6d97d0f1f71dd5270bf9061dcc723 | diff --git a/lib/zold/node/farmers.rb b/lib/zold/node/farmers.rb
index <HASH>..<HASH> 100755
--- a/lib/zold/node/farmers.rb
+++ b/lib/zold/node/farmers.rb
@@ -124,19 +124,18 @@ for #{after.host}:#{after.port} in #{Age.new(start)}: #{after.suffixes}")
def up(score)
start = Time.now
- read, write... | Issue #<I> - Few fixes on naming | zold-io_zold | train |
33bf20e4499f474fb4f31a062b8a6fcd0cd5869e | diff --git a/business_error.gemspec b/business_error.gemspec
index <HASH>..<HASH> 100644
--- a/business_error.gemspec
+++ b/business_error.gemspec
@@ -21,6 +21,8 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
+ spec.add_... | F / [I<I>n] Support by RequestStore | zhandao_business_error | train |
0851ee7e8c70d22a7f1b4f3d0e3496b1b23f86e0 | diff --git a/pkg/deploy/cmd/scale.go b/pkg/deploy/cmd/scale.go
index <HASH>..<HASH> 100644
--- a/pkg/deploy/cmd/scale.go
+++ b/pkg/deploy/cmd/scale.go
@@ -1,8 +1,6 @@
package cmd
import (
- "fmt"
- "os"
"time"
kapi "k8s.io/kubernetes/pkg/api"
@@ -11,7 +9,6 @@ import (
"k8s.io/kubernetes/pkg/util/wait"
"... | Scale helpers: always fetch scale object for DCs
The scale helper for DeploymentConfigs previously would fetch the raw
deployment, covert that into a scale object, and then submit that scale
object as an update to the scale subresource of the DeploymentConfig.
This caused issues when using recent clients against older... | openshift_origin | train |
9a30c631ec742f54b7ee638a3ca8ce1431ec4b97 | diff --git a/src/main/java/org/dasein/cloud/cloudstack/compute/Volumes.java b/src/main/java/org/dasein/cloud/cloudstack/compute/Volumes.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/dasein/cloud/cloudstack/compute/Volumes.java
+++ b/src/main/java/org/dasein/cloud/cloudstack/compute/Volumes.java
@@ -243,11 +2... | fixed createVolume request to use all available disk offerings | greese_dasein-cloud-cloudstack | train |
6e179d444a981f810490abfb4f5fa4c1d5758a2d | diff --git a/lib/active_admin/pages/show.rb b/lib/active_admin/pages/show.rb
index <HASH>..<HASH> 100644
--- a/lib/active_admin/pages/show.rb
+++ b/lib/active_admin/pages/show.rb
@@ -24,7 +24,7 @@ module ActiveAdmin
else
default_main_content
end
- html + comments
+ html + (com... | Dont show the admin notes form if admin notes are disabled. | activeadmin_activeadmin | train |
45cbc922867ef32b08f9b4cddb5271c1269d628a | diff --git a/tests/builder_test.py b/tests/builder_test.py
index <HASH>..<HASH> 100644
--- a/tests/builder_test.py
+++ b/tests/builder_test.py
@@ -892,6 +892,12 @@ class ToUfosTest(unittest.TestCase):
ufo = to_ufos(font)[0]
self.assertEqual(ufo.lib[GLYPHS_PREFIX + 'customName'], 'FooBar')
+ def t... | Check that 'Disable Last Change' is cast to bool | googlefonts_glyphsLib | train |
8067b476d3153ba4b300a93c1aa83a27dea5ddac | diff --git a/jupyterdrive/__init__.py b/jupyterdrive/__init__.py
index <HASH>..<HASH> 100644
--- a/jupyterdrive/__init__.py
+++ b/jupyterdrive/__init__.py
@@ -2,6 +2,7 @@
import IPython
import IPython.html.nbextensions as nbe
from IPython.utils.path import locate_profile
+from IPython.utils.py3compat import cast_uni... | Fix writing JSON file on Python 3
Addresses gh-<I>
This is admittedly inelegant, but since the json module on Python 2 can
serialise to either bytes or unicode depending on the input, it seems
like the most robust way to write json to a file. | jupyter_jupyter-drive | train |
1398eafa6d972e510d39a03cb594345fe4e6fdbb | diff --git a/modules/grid/src/test/java/integration/AbstractGridTest.java b/modules/grid/src/test/java/integration/AbstractGridTest.java
index <HASH>..<HASH> 100644
--- a/modules/grid/src/test/java/integration/AbstractGridTest.java
+++ b/modules/grid/src/test/java/integration/AbstractGridTest.java
@@ -5,12 +5,18 @@ imp... | stabilize flaky Selenium Grid tests
re-try to start Grid if the port is occasionally already used | selenide_selenide | train |
e6533225d5e16290157a3f563e1aa4059db5c8ab | diff --git a/pyfritzhome/fritzhome.py b/pyfritzhome/fritzhome.py
index <HASH>..<HASH> 100644
--- a/pyfritzhome/fritzhome.py
+++ b/pyfritzhome/fritzhome.py
@@ -95,15 +95,18 @@ class Fritzhome(object):
def login(self):
"""Login and get a valid session ID."""
- (sid, challenge) = self._login_request... | LoginError when connect to non fritzbox
If connection is tried to an other device other then fitzbox
the returen value cannot be parsed. Throw a LoginError exception. | hthiery_python-fritzhome | train |
3558d88cebcb2f0abc98169441482de7252574ec | diff --git a/pymola/backends/casadi/api.py b/pymola/backends/casadi/api.py
index <HASH>..<HASH> 100644
--- a/pymola/backends/casadi/api.py
+++ b/pymola/backends/casadi/api.py
@@ -136,7 +136,7 @@ def _save_model(model_folder: str, model_name: str, model: Model):
compiler = distutils.ccompiler.new_compiler()
... | Fix extraneous compilation directory on Linux
Closes #<I> | pymoca_pymoca | train |
70b00557253624ab0d917be146a55ca0aeba376a | diff --git a/db_adapter.go b/db_adapter.go
index <HASH>..<HASH> 100644
--- a/db_adapter.go
+++ b/db_adapter.go
@@ -6,9 +6,9 @@ import (
)
type dbAdapter struct {
- driverName string
+ driverName string
dataSourceName string
- db *sql.DB
+ db *sql.DB
}
func newDbAdapter(driverName string, dataS... | Improve code with gofmt. | casbin_casbin | train |
ff4e7929e1cccbb27f53e68a56a7c538fbceb658 | diff --git a/driver/src/test/acceptance/org/mongodb/acceptancetest/crud/ReplaceAcceptanceTest.java b/driver/src/test/acceptance/org/mongodb/acceptancetest/crud/ReplaceAcceptanceTest.java
index <HASH>..<HASH> 100644
--- a/driver/src/test/acceptance/org/mongodb/acceptancetest/crud/ReplaceAcceptanceTest.java
+++ b/driver/... | It's true, one shouldn't rely on error message strings to determine the correctness of the error. | mongodb_mongo-java-driver | train |
9433cb992903b74e6a18e0d9b96a5da45f426d5a | diff --git a/salt/modules/virt.py b/salt/modules/virt.py
index <HASH>..<HASH> 100644
--- a/salt/modules/virt.py
+++ b/salt/modules/virt.py
@@ -3506,6 +3506,7 @@ def update(
# Update the kernel boot parameters
data = {k: v for k, v in locals().items() if bool(v)}
+ data["stop_on_reboot"] = stop_on_reboot
... | Ensure virt.update stop_on_reboot is updated with its default value
While all virt.update properties default values should not be used when
updating the XML definition, the stop_on_reboot default value (False)
needs to be passed still or the user will never be able to update with
this value. | saltstack_salt | train |
6b76c0355562890b74553c85e688223d772f1c92 | diff --git a/core/src/main/java/org/infinispan/marshall/AbstractDelegatingMarshaller.java b/core/src/main/java/org/infinispan/marshall/AbstractDelegatingMarshaller.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/infinispan/marshall/AbstractDelegatingMarshaller.java
+++ b/core/src/main/java/org/infinispan/... | ISPN-<I> Reintroduce previous method version deprecating it | infinispan_infinispan | train |
59baa34e793f8ae3ed933769b76c699f5440a2dd | diff --git a/lib/srv/regular/sshserver.go b/lib/srv/regular/sshserver.go
index <HASH>..<HASH> 100644
--- a/lib/srv/regular/sshserver.go
+++ b/lib/srv/regular/sshserver.go
@@ -308,16 +308,12 @@ func (s *Server) isAuditedAtProxy() bool {
type ServerOption func(s *Server) error
func (s *Server) close() {
- s.Lock()
- ... | Fix possible deadlock during server close (#<I>)
fix server close deadlock | gravitational_teleport | train |
ac4da4156c332cbac89ba042b1f566fceb63110a | diff --git a/src/GameQ/Buffer.php b/src/GameQ/Buffer.php
index <HASH>..<HASH> 100644
--- a/src/GameQ/Buffer.php
+++ b/src/GameQ/Buffer.php
@@ -352,27 +352,4 @@ class Buffer
return $float['float'];
}
-
- /**
- * Conversion to float
- *
- * @access public
- *
- * @param str... | Removed unused toFloat function. Same reasons apply as previous commit. | Austinb_GameQ | train |
0ba636911235d28a75d3fd45bf490d3b7a019929 | diff --git a/tests/integration/misc/usingUnboundModelsByPassingKnex.js b/tests/integration/misc/usingUnboundModelsByPassingKnex.js
index <HASH>..<HASH> 100644
--- a/tests/integration/misc/usingUnboundModelsByPassingKnex.js
+++ b/tests/integration/misc/usingUnboundModelsByPassingKnex.js
@@ -235,6 +235,21 @@ module.expor... | add test for static relatedQuery with unbound model | Vincit_objection.js | train |
304e9323fbd9e0b53525c9ecae460978242865ca | diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -4,6 +4,7 @@ require 'database_cleaner'
require 'support/factory_girl'
Mongoid.load!('./spec/config/mongoid.yml', :test)
+#Mongo::Logger.logger.level = ::Logger::DEBUG
RSpec.c... | Set (commented out) mongo querying logger level to default | neiljohari_scram | train |
9aa58bc1ce3f6dffff0a687a33ab3a6079cb3290 | diff --git a/code/libraries/joomlatools/component/koowa/template/filter/document.php b/code/libraries/joomlatools/component/koowa/template/filter/document.php
index <HASH>..<HASH> 100644
--- a/code/libraries/joomlatools/component/koowa/template/filter/document.php
+++ b/code/libraries/joomlatools/component/koowa/templa... | #<I>: Inject custom head scripts right before </head> | joomlatools_joomlatools-framework | train |
352c4dd9c06e562eb7fcf5bc2f04068d0cc3b39c | diff --git a/lib/seraph.js b/lib/seraph.js
index <HASH>..<HASH> 100644
--- a/lib/seraph.js
+++ b/lib/seraph.js
@@ -248,8 +248,6 @@ Seraph.prototype._parseQueryResult = function(result) {
namedResults = namedResults.map(function(namedResult) {
return namedResult[result.columns[0]];
});
- } else... | got rid of automatic array unboxing | brikteknologier_seraph | train |
21650eb12762e1df1eb9af61b301b733501244d4 | diff --git a/vault/datadog_checks/vault/vault.py b/vault/datadog_checks/vault/vault.py
index <HASH>..<HASH> 100644
--- a/vault/datadog_checks/vault/vault.py
+++ b/vault/datadog_checks/vault/vault.py
@@ -5,6 +5,7 @@ import warnings
from time import time as timestamp
import requests
+from simplejson import JSONDecode... | Submit critical service check with <I> server errors (#<I>) | DataDog_integrations-core | train |
81818f36fc3b37a550f1aedfb218a5cb729d9ddd | diff --git a/plugins/providers/docker/action.rb b/plugins/providers/docker/action.rb
index <HASH>..<HASH> 100644
--- a/plugins/providers/docker/action.rb
+++ b/plugins/providers/docker/action.rb
@@ -53,9 +53,16 @@ module VagrantPlugins
next
end
- b2.use Call, GracefulHalt, :stop... | providers/docker: graceful halt only if SSH is available | hashicorp_vagrant | train |
f950373b5067d747ad949e45abeb711ccda06b88 | diff --git a/vyper/parser/context.py b/vyper/parser/context.py
index <HASH>..<HASH> 100644
--- a/vyper/parser/context.py
+++ b/vyper/parser/context.py
@@ -1,6 +1,7 @@
import contextlib
import enum
import itertools
+from typing import Tuple
from vyper.ast import VyperNode
from vyper.exceptions import CompilerPani... | feat: new_sequential_vars | ethereum_vyper | train |
c9c2d6697119fcbe9b0f4e8285852f62a4dbccda | diff --git a/src/stores/GuildChannelStore.js b/src/stores/GuildChannelStore.js
index <HASH>..<HASH> 100644
--- a/src/stores/GuildChannelStore.js
+++ b/src/stores/GuildChannelStore.js
@@ -34,6 +34,7 @@ class GuildChannelStore extends DataStore {
* @param {string} name The name of the new channel
* @param {Object... | feat(GuildChannelStore): add topic to create options (#<I>)
The API provides the ability to send the topic, or description, of the channel within the creation post. Discord.js will now send it if its provided. | discordjs_discord.js | train |
10284c2ab78e87e3c406b4d8f568d2b94dc30389 | diff --git a/lib/service_double/version.rb b/lib/service_double/version.rb
index <HASH>..<HASH> 100644
--- a/lib/service_double/version.rb
+++ b/lib/service_double/version.rb
@@ -1,3 +1,3 @@
module ServiceDouble
- VERSION = "0.0.2"
+ VERSION = "0.0.3"
end | Bump to version <I> | yourkarma_service_double | train |
02cfcfe3d40f2759d51dd98ffddbfd2cec04c99e | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,7 @@
* [#5234](https://github.com/bbatsov/rubocop/issues/5234): Fix a false positive for `Rails/HasManyOrHasOneDependent` when using `class_name` option. ([@koic][])
* [#5273](https://github.com/bba... | [Fix #<I>] Fix false positive for `Style/MixinUsage` when using inside module
Fixes #<I>.
Correspondence to use case for `include` belonging to module was
insufficient. This PR added a reproduction test and fixed it. | rubocop-hq_rubocop | train |
25cb2c4638f904eaeac41d060eae54fbee7b73dd | diff --git a/spec/unit/network/http/connection_spec.rb b/spec/unit/network/http/connection_spec.rb
index <HASH>..<HASH> 100755
--- a/spec/unit/network/http/connection_spec.rb
+++ b/spec/unit/network/http/connection_spec.rb
@@ -76,7 +76,46 @@ describe Puppet::Network::HTTP::Connection do
end
end
- context "wh... | (maint) Refactor HTTPS verification tests into a shared examples
This commit refactors the spec tests that ensure puppet displays
meaningful error messages when SSL verification fails, e.g. when the
server certificate doesn't match the hostname we connected to. | puppetlabs_puppet | train |
492d4c31343c30440ff289f0538b75e27db03b96 | diff --git a/alerta/utils/config.py b/alerta/utils/config.py
index <HASH>..<HASH> 100644
--- a/alerta/utils/config.py
+++ b/alerta/utils/config.py
@@ -156,7 +156,8 @@ class Config(object):
handler = RotatingFileHandler(
filename=app.config['LOG_FILE'],
maxBytes=app.config[... | Explicitly set logfile encoding to utf-8 (#<I>) | alerta_alerta | train |
53b7b05d0d45aade047f28105af9cbb55b3284b1 | diff --git a/shoebot/ide/ide.py b/shoebot/ide/ide.py
index <HASH>..<HASH> 100755
--- a/shoebot/ide/ide.py
+++ b/shoebot/ide/ide.py
@@ -623,7 +623,7 @@ class ShoebotEditorWindow(Gtk.Window):
)
if chooser.run() == Gtk.ResponseType.ACCEPT:
- self.open_file(chooser.filename)
+ self... | Fix bug triggered by opening a file in the IDE. | shoebot_shoebot | train |
96e4a8500c9bd741f2873729f3183c55fdb19c2b | diff --git a/coursera/credentials.py b/coursera/credentials.py
index <HASH>..<HASH> 100644
--- a/coursera/credentials.py
+++ b/coursera/credentials.py
@@ -27,7 +27,7 @@ def _getenv_or_empty(s):
return os.getenv(s) or ""
-def get_config_paths(config_name): # pragma: no test
+def get_config_paths(config_name): ... | cosmetics: PEP-8 conventions. | coursera-dl_coursera-dl | train |
4ba760a14ea20cb2551fdbc68ed3f93facf7c8e4 | diff --git a/template/app/view/DocTree.js b/template/app/view/DocTree.js
index <HASH>..<HASH> 100644
--- a/template/app/view/DocTree.js
+++ b/template/app/view/DocTree.js
@@ -23,11 +23,8 @@ Ext.define('Docs.view.DocTree', {
"urlclick"
);
- // Expand the main tree
+ // Expand root
... | New logic for expaning Ext namespace in class tree.
Now the expansion happens only when there's just one expandable
item at root level. Basically this means that when we have two
namespaces like Ext and Blah, then neither gets expanded by default,
but if there's just Blah, it will be expanded. | senchalabs_jsduck | train |
ef6a4bc3b26c0fee0158ff53724677cdf2057967 | diff --git a/classes/PodsUI.php b/classes/PodsUI.php
index <HASH>..<HASH> 100644
--- a/classes/PodsUI.php
+++ b/classes/PodsUI.php
@@ -2204,8 +2204,11 @@ class PodsUI {
$this->data = $data;
- if ( !empty( $this->data ) )
- $this->data_keys = array_keys( $this->data... | Fix for referencing first row instead of assuming $data[ 0 ] exists | pods-framework_pods | train |
a546844147a3261fe7f4f779602713160ae76cee | diff --git a/cherrypy/test/test.py b/cherrypy/test/test.py
index <HASH>..<HASH> 100644
--- a/cherrypy/test/test.py
+++ b/cherrypy/test/test.py
@@ -370,6 +370,7 @@ def run():
'test_tools',
'test_encoding',
'test_etags',
+ 'test_http',
'test_httpauth',
'test_httplib',
... | Moved test_http.py back into the test suite since it runs fast here. | cherrypy_cheroot | train |
7d5ab5790ae08de4e2dda83be456a2fd297515f0 | diff --git a/lib/ronin/ui/cli/commands/wordlist.rb b/lib/ronin/ui/cli/commands/wordlist.rb
index <HASH>..<HASH> 100644
--- a/lib/ronin/ui/cli/commands/wordlist.rb
+++ b/lib/ronin/ui/cli/commands/wordlist.rb
@@ -43,7 +43,7 @@ module Ronin
#
# ## Arguments
#
- # TEMPLATE ... | Added an example for TEMPLATE in the wordlist command. | ronin-ruby_ronin | train |
0a414cfea17a9b8429638e4f0a194a8374cfecf3 | diff --git a/breakerbox-service/src/main/resources/assets/js/breakerbox.js b/breakerbox-service/src/main/resources/assets/js/breakerbox.js
index <HASH>..<HASH> 100644
--- a/breakerbox-service/src/main/resources/assets/js/breakerbox.js
+++ b/breakerbox-service/src/main/resources/assets/js/breakerbox.js
@@ -111,7 +111,7 ... | 2s is pretty small again for a sync state request, this again should scale off the number of hosts, but for now, fixed is fine. | yammer_breakerbox | train |
58f11a5a7883a58edadee00a9a780b27ff6e3ab3 | diff --git a/lib/jsduck/lexer.rb b/lib/jsduck/lexer.rb
index <HASH>..<HASH> 100644
--- a/lib/jsduck/lexer.rb
+++ b/lib/jsduck/lexer.rb
@@ -53,6 +53,9 @@ module JsDuck
#
# {:type => :ident, :value => "foo"}
#
+ # For doc-comments the full token also contains the field :linenr,
+ # pointing to th... | Added line-number support to Lexer.
Currently we only need line-number information for doc-comment tokens.
Line-number detection was inspired by ruby_parser library:
<URL> | senchalabs_jsduck | train |
65c0491af03cbdbd3ad76f494ac185ca1475dc0d | diff --git a/dynamic_rest/filters.py b/dynamic_rest/filters.py
index <HASH>..<HASH> 100644
--- a/dynamic_rest/filters.py
+++ b/dynamic_rest/filters.py
@@ -2,7 +2,7 @@
from django.core.exceptions import ValidationError as InternalValidationError
from django.core.exceptions import ImproperlyConfigured
-from django.db... | make sure queryset isn't a Manager | AltSchool_dynamic-rest | train |
41838c8e8632ba78791996fbc697080b2764bb6a | diff --git a/src/platforms/web/compiler/modules/model.js b/src/platforms/web/compiler/modules/model.js
index <HASH>..<HASH> 100644
--- a/src/platforms/web/compiler/modules/model.js
+++ b/src/platforms/web/compiler/modules/model.js
@@ -26,8 +26,19 @@ import {
function preTransformNode (el: ASTElement, options: Compiler... | feat: support v-model dynamic type binding for v-bind="object"
close #<I> | kaola-fed_megalo | train |
bc739173c0540f58de98da08e8e5ab9b5cd0ffcd | diff --git a/api/models/request.go b/api/models/request.go
index <HASH>..<HASH> 100644
--- a/api/models/request.go
+++ b/api/models/request.go
@@ -52,6 +52,25 @@ type Req struct {
// PNGroup is an identifier for a pre-normalization group: data that can be pre-normalized together
type PNGroup uint64
+// NewReq creat... | Newreq for dataprocessor and | grafana_metrictank | train |
9b6618b9bc1a16847868cade51098244437bf617 | diff --git a/mod/assignment/backuplib.php b/mod/assignment/backuplib.php
index <HASH>..<HASH> 100644
--- a/mod/assignment/backuplib.php
+++ b/mod/assignment/backuplib.php
@@ -45,6 +45,7 @@
fwrite ($bf,full_tag("ASSIGNMENTTYPE",4,false,$assignment->assignmenttype));
fwrite ($bf,full_tag... | timeavailable was missing in backup and restore. :-) | moodle_moodle | train |
22e0e0354b47f13ba62949df3c1c0861a1b15446 | diff --git a/lib/server-lib.js b/lib/server-lib.js
index <HASH>..<HASH> 100644
--- a/lib/server-lib.js
+++ b/lib/server-lib.js
@@ -26,20 +26,16 @@ function ensureConnected(remote, callback) {
*/
function isConnected(remote) {
- // if (!(remote instanceof ripple.Remote)) {
- // return false;
- // }
+ var resu... | Safer server isConnected check | ripple_ripple-rest | train |
42ea0d4770faeb84a13c284395626545161eb51c | diff --git a/pkg/apis/kops/componentconfig.go b/pkg/apis/kops/componentconfig.go
index <HASH>..<HASH> 100644
--- a/pkg/apis/kops/componentconfig.go
+++ b/pkg/apis/kops/componentconfig.go
@@ -217,7 +217,9 @@ type KubeletConfigSpec struct {
// one must set --hairpin-mode=veth-flag, because bridge assumes the
// exist... | Remove babysit-daemons flag from <I> | kubernetes_kops | train |
c580882403d6f85ea2797ba15ef133d34c7cc3e7 | diff --git a/mill-db-repo/src/test/java/org/duracloud/mill/auditor/jpa/JpaAuditLogStoreTest.java b/mill-db-repo/src/test/java/org/duracloud/mill/auditor/jpa/JpaAuditLogStoreTest.java
index <HASH>..<HASH> 100644
--- a/mill-db-repo/src/test/java/org/duracloud/mill/auditor/jpa/JpaAuditLogStoreTest.java
+++ b/mill-db-repo/... | Ensures that easymock.expectLastCall references are working properly. | duracloud_duracloud-db | train |
eb4da830c4dd6bd5bfb9e833a45d0a01ba8f2f9b | diff --git a/securegraph-elasticsearch-base/src/main/java/org/securegraph/elasticsearch/ElasticSearchSearchIndexBase.java b/securegraph-elasticsearch-base/src/main/java/org/securegraph/elasticsearch/ElasticSearchSearchIndexBase.java
index <HASH>..<HASH> 100644
--- a/securegraph-elasticsearch-base/src/main/java/org/secu... | better error checking when getting property info from es | lumifyio_securegraph | train |
79c905e6d0b03b075eef5339b73a6e8c55acd620 | diff --git a/core/src/main/java/jenkins/model/JenkinsLocationConfiguration.java b/core/src/main/java/jenkins/model/JenkinsLocationConfiguration.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/jenkins/model/JenkinsLocationConfiguration.java
+++ b/core/src/main/java/jenkins/model/JenkinsLocationConfiguration.ja... | [FIXED SECURITY-<I>]
If Jenkins URL is set to https, force the secure flag. Also force the
cookie to be HTTP only, which mitigates the damage that XSS can cause.
See <URL> | jenkinsci_jenkins | train |
fbbc98f569c135add8f95a5a1e2f8f6b7ad53750 | diff --git a/distutils/command/install.py b/distutils/command/install.py
index <HASH>..<HASH> 100644
--- a/distutils/command/install.py
+++ b/distutils/command/install.py
@@ -431,11 +431,7 @@ class install(Command):
'VIRTUAL_ENV' in os.environ
)
- # fedora:
- def is_rpm_bui... | Remove is_rpm_build, unneeded. | pypa_setuptools | train |
2ccfaed4068a24e47a9f822eea3d60f3ff53a62d | diff --git a/webcam-capture/src/main/java/com/github/sarxos/webcam/ds/buildin/WebcamDefaultDevice.java b/webcam-capture/src/main/java/com/github/sarxos/webcam/ds/buildin/WebcamDefaultDevice.java
index <HASH>..<HASH> 100644
--- a/webcam-capture/src/main/java/com/github/sarxos/webcam/ds/buildin/WebcamDefaultDevice.java
+... | Set timeout once, after grabber is open, fixes #<I> | sarxos_webcam-capture | train |
1558bd25417dd42bf82177a104a4d1207eba8726 | diff --git a/server/src/test/java/com/orientechnologies/orient/server/tx/RemoteTransactionSupportTest.java b/server/src/test/java/com/orientechnologies/orient/server/tx/RemoteTransactionSupportTest.java
index <HASH>..<HASH> 100644
--- a/server/src/test/java/com/orientechnologies/orient/server/tx/RemoteTransactionSuppor... | add some test case for some possible corner case | orientechnologies_orientdb | train |
e7c706e6b94e27d5978cc7aabe9202e0a5bd5f1e | diff --git a/lib/rubocop/cop/style/collection_methods.rb b/lib/rubocop/cop/style/collection_methods.rb
index <HASH>..<HASH> 100644
--- a/lib/rubocop/cop/style/collection_methods.rb
+++ b/lib/rubocop/cop/style/collection_methods.rb
@@ -19,11 +19,30 @@ module Rubocop
find_all: 'select'
}
+ de... | Refine CollectionMethods cop
Now we actually check if the method was passed a block or received a
single proc argument. This reduces greatly the likelihood of false positives. | rubocop-hq_rubocop | train |
15d834bb8aef788cf0795b974720382daba29f9e | diff --git a/geoviews/operation/projection.py b/geoviews/operation/projection.py
index <HASH>..<HASH> 100644
--- a/geoviews/operation/projection.py
+++ b/geoviews/operation/projection.py
@@ -74,7 +74,7 @@ class project_path(_project_operation):
Handle case of iso-contour
"""
xdim, ydim = cont... | Handle scalar values in project_path better (#<I>) | pyviz_geoviews | train |
0f66ed6eedf8d0233d2741b134bc0a715bdff2ae | diff --git a/sprinter/formula/ssh.py b/sprinter/formula/ssh.py
index <HASH>..<HASH> 100644
--- a/sprinter/formula/ssh.py
+++ b/sprinter/formula/ssh.py
@@ -38,9 +38,9 @@ class SSHFormula(FormulaBase):
def prompt(self):
if self.environment.phase in (PHASE.INSTALL, PHASE.UPDATE):
if os.path.exis... | Fixing #<I>, ssh always prompts now | toumorokoshi_sprinter | train |
bf6e4feeb3e8171f26835c07cdc34c1a0ccb7156 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -181,7 +181,7 @@ class ClosureCompilerPlugin {
try {
errors = JSON.parse(stdErrData);
} catch (e1) {
- const exceptionIndex = stdErrData.indexOf(']java.lang... | refactor: Better logic for when error data does not parse | webpack-contrib_closure-webpack-plugin | train |
634e256d3de1a0f504331bcb9e6be11bd712eefc | diff --git a/components/Flute/src/Api/Crud.php b/components/Flute/src/Api/Crud.php
index <HASH>..<HASH> 100644
--- a/components/Flute/src/Api/Crud.php
+++ b/components/Flute/src/Api/Crud.php
@@ -39,6 +39,7 @@ use Limoncello\Flute\Http\Query\FilterParameterCollection;
use Neomerx\JsonApi\Contracts\Document\DocumentInte... | Add container support to CRUD constructor. | limoncello-php_framework | train |
cc661e0c2fcc06ea0158be364a76c5074bfaef85 | diff --git a/executor/join_test.go b/executor/join_test.go
index <HASH>..<HASH> 100644
--- a/executor/join_test.go
+++ b/executor/join_test.go
@@ -1879,6 +1879,15 @@ func (s *testSuiteJoin2) TestNullEmptyAwareSemiJoin(c *C) {
result.Check(results[i].result)
}
}
+
+ tk.MustExec("drop table if exists t1, t2")
+ ... | planner: make a copy of column before modifying its InOperand (#<I>) | pingcap_tidb | train |
8ab7711ad1e3f4b0394d1f9d24064b5597961476 | diff --git a/externs/html5.js b/externs/html5.js
index <HASH>..<HASH> 100644
--- a/externs/html5.js
+++ b/externs/html5.js
@@ -768,6 +768,12 @@ DOMApplicationCache.prototype.DOWNLOADING = 3;
DOMApplicationCache.prototype.UPDATEREADY = 4;
/**
+ * The cache is obsolete.
+ * @type {number}
+ */
+DOMApplicationCache.pr... | Add OBSOLETE to DOMApplicationCache prototype.
R=nicksantos
DELTA=6 (6 added, 0 deleted, 0 changed)
Revision created by MOE tool push_codebase.
MOE_MIGRATION=<I>
git-svn-id: <URL> | google_closure-compiler | train |
d79aca706226499cab1bbeb4d27431393411cd6f | diff --git a/src/main/java/hex/glm/GLM2.java b/src/main/java/hex/glm/GLM2.java
index <HASH>..<HASH> 100644
--- a/src/main/java/hex/glm/GLM2.java
+++ b/src/main/java/hex/glm/GLM2.java
@@ -66,7 +66,7 @@ public class GLM2 extends ModelJob {
@API(help="use lambda search starting at lambda max, given lambda is then int... | Updated GLM2 xvalidation to be distributed on remote nodes. | h2oai_h2o-2 | train |
a50786fd2ba7e18fe247feb21b514a9558282bb0 | diff --git a/indra/databases/lincs_client.py b/indra/databases/lincs_client.py
index <HASH>..<HASH> 100644
--- a/indra/databases/lincs_client.py
+++ b/indra/databases/lincs_client.py
@@ -29,6 +29,9 @@ class LincsClient(object):
def __init__(self):
with open(lincs_sm, 'r') as fh:
self._sm_data... | Integrate extra naming and mappings from HMS LINCS | sorgerlab_indra | train |
e3f3001b110baa0837f103b00f9cf732b9f2ccf6 | diff --git a/api/cloudcontroller/ccv2/service_instance.go b/api/cloudcontroller/ccv2/service_instance.go
index <HASH>..<HASH> 100644
--- a/api/cloudcontroller/ccv2/service_instance.go
+++ b/api/cloudcontroller/ccv2/service_instance.go
@@ -37,6 +37,10 @@ type ServiceInstance struct {
// features of the service instanc... | Fix for CF cli not displaying route service url on "cf service <service name>"
Github issue: <URL> | cloudfoundry_cli | train |
b723fdfafd0c0ae90c3d3e587f99f54334309592 | diff --git a/lib/EarthIT/CMIPREST/ActionUnauthorized.php b/lib/EarthIT/CMIPREST/ActionUnauthorized.php
index <HASH>..<HASH> 100644
--- a/lib/EarthIT/CMIPREST/ActionUnauthorized.php
+++ b/lib/EarthIT/CMIPREST/ActionUnauthorized.php
@@ -2,6 +2,8 @@
class EarthIT_CMIPREST_ActionUnauthorized extends Exception
{
+ /** T... | Fix ActionUnauthorized throwing and handling. | EarthlingInteractive_PHPCMIPREST | train |
209dab26595a75444b5b916c997e96a7e196438e | diff --git a/src/Controller/ConfigurableBase.php b/src/Controller/ConfigurableBase.php
index <HASH>..<HASH> 100644
--- a/src/Controller/ConfigurableBase.php
+++ b/src/Controller/ConfigurableBase.php
@@ -160,7 +160,7 @@ abstract class ConfigurableBase extends Base
$callbackResolver = $this->callbackResolver;
... | Fix middleware parsing for arrays, strings not starting with '::', and for class names that have __invoke method. | bolt_bolt | train |
cf16ccb24e2f244b6202f7b6e48dd287f58b7df7 | diff --git a/controls/radio-image/class-kirki-control-radio-image.php b/controls/radio-image/class-kirki-control-radio-image.php
index <HASH>..<HASH> 100644
--- a/controls/radio-image/class-kirki-control-radio-image.php
+++ b/controls/radio-image/class-kirki-control-radio-image.php
@@ -95,8 +95,13 @@ class Kirki_Contro... | Allow defining a style for the label on radio-image controls | aristath_kirki | train |
9681cfe47d8e7413e0d8aed520666679bcfeca23 | diff --git a/src/commands.js b/src/commands.js
index <HASH>..<HASH> 100644
--- a/src/commands.js
+++ b/src/commands.js
@@ -34,14 +34,18 @@ commands.insertHardBreak = pm => {
return pm.apply({name: "insertInline", pos: pos, type: "hard_break"})
}
-commands.makeStrong = pm => pm.setInlineStyle(style.strong, true)... | Add commands for code-styling inline text | ProseMirror_prosemirror-markdown | train |
4fc7c3a3dd2b3bd14dd52a200f4950cae88f777c | diff --git a/src/Contao/View/Contao2BackendView/Widget/FileTree.php b/src/Contao/View/Contao2BackendView/Widget/FileTree.php
index <HASH>..<HASH> 100644
--- a/src/Contao/View/Contao2BackendView/Widget/FileTree.php
+++ b/src/Contao/View/Contao2BackendView/Widget/FileTree.php
@@ -243,7 +243,7 @@ class FileTree extends Ab... | I had the app directory instead of the root directory | contao-community-alliance_dc-general | train |
ed3f86087dd5d648a0397e18bdfa645797ea0419 | diff --git a/findbugs/src/java/edu/umd/cs/findbugs/BugInstance.java b/findbugs/src/java/edu/umd/cs/findbugs/BugInstance.java
index <HASH>..<HASH> 100644
--- a/findbugs/src/java/edu/umd/cs/findbugs/BugInstance.java
+++ b/findbugs/src/java/edu/umd/cs/findbugs/BugInstance.java
@@ -185,7 +185,7 @@ public class BugInstance ... | Don't complain about do being able to find bug type MISSING
git-svn-id: <URL> | spotbugs_spotbugs | train |
07aaa3f99d2062ee1a35d013eb91cb3efbcedfaa | diff --git a/src/Psalm/Internal/Codebase/Populator.php b/src/Psalm/Internal/Codebase/Populator.php
index <HASH>..<HASH> 100644
--- a/src/Psalm/Internal/Codebase/Populator.php
+++ b/src/Psalm/Internal/Codebase/Populator.php
@@ -444,8 +444,8 @@ class Populator
$this->populateClassLikeStorage($mixin_storage, $d... | Don’t complain about method mismatches for @mixin | vimeo_psalm | train |
740cf3a600ee73baffb3ce0c914f4388d7c8101d | diff --git a/ofp/v0x01/common/port.py b/ofp/v0x01/common/port.py
index <HASH>..<HASH> 100644
--- a/ofp/v0x01/common/port.py
+++ b/ofp/v0x01/common/port.py
@@ -148,7 +148,7 @@ class OFPPortFeatures(enum.Enum):
# Classes (Structs)
-class OFPPort(base.GenericStruct):
+class Port(base.GenericStruct):
"""
Des... | Renamed class OFPPort to Port, according to our convention | kytos_python-openflow | train |
213fcacf4d634896d978e049f381767d65c90fa0 | diff --git a/shared/desktop/webpack.config.babel.js b/shared/desktop/webpack.config.babel.js
index <HASH>..<HASH> 100644
--- a/shared/desktop/webpack.config.babel.js
+++ b/shared/desktop/webpack.config.babel.js
@@ -26,6 +26,7 @@ const config = (_, {mode}) => {
loader: 'babel-loader',
options: {
c... | ignore native files on webpack so errors are easier to understand (#<I>) | keybase_client | train |
2f24d02a02b44f32e8ce0ba32cf396b3a79e037c | diff --git a/features/s3/step_definitions.rb b/features/s3/step_definitions.rb
index <HASH>..<HASH> 100644
--- a/features/s3/step_definitions.rb
+++ b/features/s3/step_definitions.rb
@@ -31,11 +31,11 @@ def create_bucket(options = {})
end
When(/^I force path style requests$/) do
- @client = Aws.s3(force_path_style... | Fixed a few more deprecation warnings in the integration tests for S3. | aws_aws-sdk-ruby | train |
df0f37ce1132a9310ef65ebcf45a3fccb16d3fe3 | diff --git a/lib/mongoid/multi_parameter_attributes.rb b/lib/mongoid/multi_parameter_attributes.rb
index <HASH>..<HASH> 100644
--- a/lib/mongoid/multi_parameter_attributes.rb
+++ b/lib/mongoid/multi_parameter_attributes.rb
@@ -51,7 +51,7 @@ module Mongoid
def process_attributes(attrs = nil, role = :default, guard_... | made attributes class same as attrs | mongodb_mongoid | train |
f875c794d0763efa9ce270a51c743acacb82ed57 | diff --git a/lib/hiki2latex.rb b/lib/hiki2latex.rb
index <HASH>..<HASH> 100644
--- a/lib/hiki2latex.rb
+++ b/lib/hiki2latex.rb
@@ -41,7 +41,7 @@ module Hiki2latex
def plain_doc(file)
if @listings==true then
- puts listings_str
+ puts listings_preamble
elsif @pre==nil then
put... | put mod_abstarct for plain_tex, and kill_head_tableofcontents for bare_text. | daddygongon_hiki2latex | train |
2bf06c149ca10020b59f7286029c8b8f7ab737ec | diff --git a/structr-neo4j-bolt-driver/src/main/java/org/structr/bolt/BoltDatabaseService.java b/structr-neo4j-bolt-driver/src/main/java/org/structr/bolt/BoltDatabaseService.java
index <HASH>..<HASH> 100644
--- a/structr-neo4j-bolt-driver/src/main/java/org/structr/bolt/BoltDatabaseService.java
+++ b/structr-neo4j-bolt-... | Adds a retry with timeout to beginTx for the BoltDatabaseService. | structr_structr | train |
b9a9abe10d569f15755bf8a6833adc9f425a2b2d | diff --git a/searx/engines/gigablast.py b/searx/engines/gigablast.py
index <HASH>..<HASH> 100644
--- a/searx/engines/gigablast.py
+++ b/searx/engines/gigablast.py
@@ -19,11 +19,21 @@ from time import time
# engine dependent config
categories = ['general']
paging = True
-number_of_results = 5
+number_of_results = 10
... | [enh] improve gigablast engine
add language and safesearch support | asciimoo_searx | train |
a7f079d5b950404970dc2bd98cc68de823b10753 | diff --git a/client/allocrunner/taskrunner/task_runner.go b/client/allocrunner/taskrunner/task_runner.go
index <HASH>..<HASH> 100644
--- a/client/allocrunner/taskrunner/task_runner.go
+++ b/client/allocrunner/taskrunner/task_runner.go
@@ -999,6 +999,11 @@ func (tr *TaskRunner) buildTaskConfig() *drivers.TaskConfig {
... | tr: set cpuset cpus if reserved | hashicorp_nomad | train |
09205f9e8e62a9d8af36812665009e5fcce9e175 | diff --git a/salt/modules/state.py b/salt/modules/state.py
index <HASH>..<HASH> 100644
--- a/salt/modules/state.py
+++ b/salt/modules/state.py
@@ -293,6 +293,7 @@ def request(mods=None,
salt '*' state.request test
salt '*' state.request test,pkgs
'''
+ kwargs['test'] = True
ret = apply_(m... | Fix error in state.request
We were not running the initial request in test=True.
This changes things so we now run the state in testing mode when it is requested and then actually apply it when it is run.
Partially reverts #<I> | saltstack_salt | train |
d707222b9e7ec5dcd51992037809d22ee241d316 | diff --git a/javamelody-core/src/main/java/net/bull/javamelody/JsfActionHelper.java b/javamelody-core/src/main/java/net/bull/javamelody/JsfActionHelper.java
index <HASH>..<HASH> 100644
--- a/javamelody-core/src/main/java/net/bull/javamelody/JsfActionHelper.java
+++ b/javamelody-core/src/main/java/net/bull/javamelody/Js... | fix for issue <I> and issue <I>: delegate the JSF ActionListener to the next JSF ActionListener if one was defined in the faces-config.xml file | javamelody_javamelody | train |
0594046ea04be724556fcaa12d76534fbc099a42 | diff --git a/lib/chef/mixin/powershell_out.rb b/lib/chef/mixin/powershell_out.rb
index <HASH>..<HASH> 100644
--- a/lib/chef/mixin/powershell_out.rb
+++ b/lib/chef/mixin/powershell_out.rb
@@ -85,7 +85,7 @@ class Chef
"-NoProfile",
# always set the ExecutionPolicy flag
# see http://techne... | change executionpolicy to unrestricted | chef_chef | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.