hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
d8973922ac6d3bee82255e2b9703ad8c9fa68f71 | diff --git a/commands/args.go b/commands/args.go
index <HASH>..<HASH> 100644
--- a/commands/args.go
+++ b/commands/args.go
@@ -59,13 +59,28 @@ func (a *Args) Replace(executable, command string, params ...string) {
}
func (a *Args) Commands() []*cmd.Cmd {
- result := a.beforeChain
+ result := []*cmd.Cmd{}
+ appendFr... | Propagate global git arguments to Before/After chains
This fixes `hub -C mydir merge <URL>` and other commands that might be
invoked with git global arguments by ensuring that those global
arguments are also fowarded to any accompanying `git` commands within
`Before()` and `After()` chains. | github_hub | train |
476da848fa7e601175bf2f3a49ecd59fa298c211 | diff --git a/src/Definition/Plugin/MutationFormResolverPlugin.php b/src/Definition/Plugin/MutationFormResolverPlugin.php
index <HASH>..<HASH> 100644
--- a/src/Definition/Plugin/MutationFormResolverPlugin.php
+++ b/src/Definition/Plugin/MutationFormResolverPlugin.php
@@ -116,7 +116,7 @@ class MutationFormResolverPlugin ... | Fix mutation form resolver for mutation not related to specific node | ynloultratech_graphql-bundle | train |
7f0ea55d67f07b20dda5e7591e6b348bf5c7c3fd | diff --git a/master/buildbot/process/buildstep.py b/master/buildbot/process/buildstep.py
index <HASH>..<HASH> 100644
--- a/master/buildbot/process/buildstep.py
+++ b/master/buildbot/process/buildstep.py
@@ -123,9 +123,6 @@ class RemoteCommand(pb.Referenceable):
# Allow use of WithProperties in logfile path n... | Properly handle rendering of logfiles. | buildbot_buildbot | train |
932617495d67d3d24bfcc4d14409d1a5f677206a | diff --git a/packages/driver/src/cypress/browser.js b/packages/driver/src/cypress/browser.js
index <HASH>..<HASH> 100644
--- a/packages/driver/src/cypress/browser.js
+++ b/packages/driver/src/cypress/browser.js
@@ -1,29 +1,26 @@
-/*
- * decaffeinate suggestions:
- * DS102: Remove unnecessary code created because of imp... | decaffeinate: Run post-processing cleanups on browser.coffee | cypress-io_cypress | train |
009098e1c1dab11529ab4d9c1c85cdac106dfa97 | diff --git a/src/Log/Handler/SlackHandler.php b/src/Log/Handler/SlackHandler.php
index <HASH>..<HASH> 100644
--- a/src/Log/Handler/SlackHandler.php
+++ b/src/Log/Handler/SlackHandler.php
@@ -3,6 +3,7 @@ namespace GMO\Common\Log\Handler;
use GMO\Common\Log\Formatter\SlackFormatter;
use GMO\Common\Str;
+use Monolog\F... | Fix slack handler having object conditionally defined on parent | gmo_common | train |
3c3a2e680796e84c6229b9a6115e9e07e10437c1 | diff --git a/irc3/plugins/storage.py b/irc3/plugins/storage.py
index <HASH>..<HASH> 100644
--- a/irc3/plugins/storage.py
+++ b/irc3/plugins/storage.py
@@ -35,6 +35,8 @@ Usage::
Then use it::
>>> bot.db['mykey'] = dict(key='value')
+ >>> 'mykey' in bot.db
+ True
>>> bot.db['mykey']
{'key': 'value... | improve storage: can test the existence of a key | gawel_irc3 | train |
630503c12534cb2218c863f3a52b95dd1f936b80 | diff --git a/codenerix/models.py b/codenerix/models.py
index <HASH>..<HASH> 100644
--- a/codenerix/models.py
+++ b/codenerix/models.py
@@ -342,6 +342,10 @@ if not (hasattr(settings, "PQPRO_CASSANDRA") and settings.PQPRO_CASSANDRA):
class CodenerixMeta(CodenerixModel.CodenerixMeta):
log_full = Fals... | Custom post save from application in GenLog | codenerix_django-codenerix | train |
c4b7e47b921c56d1204b423838eb4482d73ebe55 | diff --git a/src/EventListener/GeneralListener.php b/src/EventListener/GeneralListener.php
index <HASH>..<HASH> 100644
--- a/src/EventListener/GeneralListener.php
+++ b/src/EventListener/GeneralListener.php
@@ -41,9 +41,15 @@ class GeneralListener implements EventSubscriberInterface
$request = $event->getReque... | Remove the Whoops exception event when the user isn't logged in and
debug_show_loggedoff is false | bolt_bolt | train |
53e275b237bfdca01782c338462ea4eff2576e4f | diff --git a/code/services/QueuedJobService.php b/code/services/QueuedJobService.php
index <HASH>..<HASH> 100644
--- a/code/services/QueuedJobService.php
+++ b/code/services/QueuedJobService.php
@@ -261,7 +261,6 @@ class QueuedJobService
$job->prepareForRestart();
}
-
// make sure the descriptor is up to ... | Added additional call to 'write' after setting broken job | symbiote_silverstripe-queuedjobs | train |
d701847ba4defaf215824e449f67a4a2df5769b3 | diff --git a/README.rst b/README.rst
index <HASH>..<HASH> 100644
--- a/README.rst
+++ b/README.rst
@@ -7,7 +7,6 @@ interface that queries the server and returns results based on the query.
.. _`Apache Solr`: http://lucene.apache.org/solr/
-
Status
======
@@ -64,12 +63,21 @@ Basic usage looks like:
{
... | Support for nested documents (closes #<I>) | django-haystack_pysolr | train |
524c274551215af01c2f4b53a50ceead6b1498e3 | diff --git a/climlab/model/ebm.py b/climlab/model/ebm.py
index <HASH>..<HASH> 100644
--- a/climlab/model/ebm.py
+++ b/climlab/model/ebm.py
@@ -30,18 +30,18 @@ def global_mean(field, lat_radians):
class NewEBM(EnergyBudget):
- def __init__(self,
+ def __init__(self,
num_points=90,
- ... | Fixed bug with P2Insolation (not returning correct field size). Now have a working EBM! | brian-rose_climlab | train |
ff6683d3197d9c38fef69387f75aa186b11fc77b | diff --git a/app/Console/Install.php b/app/Console/Install.php
index <HASH>..<HASH> 100644
--- a/app/Console/Install.php
+++ b/app/Console/Install.php
@@ -34,7 +34,7 @@ class Install extends Command
$this->comment('**********************************************');
$this->comment('');
- if ($t... | - Menssage: database created for execute migration | alfredoem_ragnarok | train |
5a655d5a1380c24aae65085cd9b629942aa6cf8d | diff --git a/java/org/gem/hdf5/HDF5Util.java b/java/org/gem/hdf5/HDF5Util.java
index <HASH>..<HASH> 100644
--- a/java/org/gem/hdf5/HDF5Util.java
+++ b/java/org/gem/hdf5/HDF5Util.java
@@ -90,7 +90,11 @@ public class HDF5Util
long[] maxDims = dataset.getMaxDims();
long[] selectedDims = dataset.getSelectedDims();
... | Added some comments to a slightly obscure bit of code | gem_oq-engine | train |
f66687eef948693acf9f77fa2b7e6889851af6a8 | diff --git a/common/src/main/java/com/groupbyinc/api/AbstractQuery.java b/common/src/main/java/com/groupbyinc/api/AbstractQuery.java
index <HASH>..<HASH> 100755
--- a/common/src/main/java/com/groupbyinc/api/AbstractQuery.java
+++ b/common/src/main/java/com/groupbyinc/api/AbstractQuery.java
@@ -245,8 +245,9 @@ public ab... | update docs regarding cross-collection searching and relevancy | groupby_api-java | train |
0f071fd2dbbbb5eb7efccc16a8121eb22ebabf12 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,6 @@ with open("README.md") as readme_file:
long_description = readme_file.read()
tests_require = [
- "mock>=1.0.1",
"nose>=1.3.3",
"vcrpy>=1.10.3",
] | Remove mock from tests_require and test extra | tweepy_tweepy | train |
893cf78eeb6df36928b986eae5d6fab29ba6145f | diff --git a/src/model/RootModel.js b/src/model/RootModel.js
index <HASH>..<HASH> 100755
--- a/src/model/RootModel.js
+++ b/src/model/RootModel.js
@@ -160,7 +160,7 @@ function attachImplicits(model, fragment) {
// look for virtual children to relink and cascade
for (const k in model.childByKey) {
- if (k in ... | verify model value exists before checking for keys when attaching implicits - fixes #<I> | ractivejs_ractive | train |
74a5a0a077b558501e83c8e9e070e637bbec23da | diff --git a/indra/assemblers/pysb_assembler.py b/indra/assemblers/pysb_assembler.py
index <HASH>..<HASH> 100644
--- a/indra/assemblers/pysb_assembler.py
+++ b/indra/assemblers/pysb_assembler.py
@@ -13,6 +13,7 @@ import pysb.export
from indra import statements as ist
from indra.databases import context_client
from i... | Get top-level parent to construct binding site | sorgerlab_indra | train |
41cfabaa4aa3ff529a8bc2c6f50c5686b1430158 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -39,7 +39,7 @@ func main() {
IN nodes
FILTER n._key == %s
RETURN n
- `, key).Run(db)
+ `, key).Cache(true).Run(db) // The caching feature is unavailable prior to ArangoDB 2.7
if err != nil {
pani... | Caching feature added. Waiting for ArangoDB <I>... | solher_arangolite | train |
969fb6c8062859a7947271859af682d62cb776c8 | diff --git a/src/Listener/ApiListener.php b/src/Listener/ApiListener.php
index <HASH>..<HASH> 100644
--- a/src/Listener/ApiListener.php
+++ b/src/Listener/ApiListener.php
@@ -124,10 +124,13 @@ class ApiListener extends BaseListener
return null;
}
- $response = $this->render($event->subjec... | Ensure response's status code doesn't get set to null.
Closes #<I>. | FriendsOfCake_crud | train |
021abdc12a44631ec112c1e3f768caed183d6838 | diff --git a/internal/service/workspaces/tags_gen.go b/internal/service/workspaces/tags_gen.go
index <HASH>..<HASH> 100644
--- a/internal/service/workspaces/tags_gen.go
+++ b/internal/service/workspaces/tags_gen.go
@@ -6,13 +6,14 @@ import (
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/works... | gen/tags: Use interface type as generated AWS Go SDK v1 client type for workspaces. | terraform-providers_terraform-provider-aws | train |
d4071c557849e688483efcbcc829ea986027ba91 | diff --git a/lib/rio.js b/lib/rio.js
index <HASH>..<HASH> 100644
--- a/lib/rio.js
+++ b/lib/rio.js
@@ -222,7 +222,9 @@ function connect(host, port, callback) {
client.on("close", function (had_error) {
log("Closed from Rserve");
- callback(false); // hack for auth failed
+ if (had_error) {... | Calling the callback in close event only if there is an error. | albertosantini_node-rio | train |
9839354d1bc61c91250d723d41515245e13f83f2 | diff --git a/shinken/misc/regenerator.py b/shinken/misc/regenerator.py
index <HASH>..<HASH> 100644
--- a/shinken/misc/regenerator.py
+++ b/shinken/misc/regenerator.py
@@ -461,7 +461,7 @@ class Regenerator:
print "Len after", len(hg.members)
for s in to_del_srv:
- print "Deleting", s.g... | Fix : (reported by Olivier Hanesse ) typo and WebUI crash. | Alignak-monitoring_alignak | train |
762cd0295eb99dcae10e730202cc3dce7150e8ea | diff --git a/tests/test_kerberos.py b/tests/test_kerberos.py
index <HASH>..<HASH> 100644
--- a/tests/test_kerberos.py
+++ b/tests/test_kerberos.py
@@ -65,7 +65,7 @@ def test_gssapi():
def test_http_endpoint():
service = "HTTP@%s" % hostname
- url = "http://%s:%d/" % (hostname, port)
+ url = "http://%s:%s/... | because we parsing from the environment this is a string not int | apple_ccs-pykerberos | train |
27891e87a10d2156c415f6139a1121858ac96546 | diff --git a/src/CodeInspector/StatementsChecker.php b/src/CodeInspector/StatementsChecker.php
index <HASH>..<HASH> 100644
--- a/src/CodeInspector/StatementsChecker.php
+++ b/src/CodeInspector/StatementsChecker.php
@@ -208,7 +208,6 @@ class StatementsChecker
$this->_checkCondition($stmt->cond, $vars_in_scope, ... | Use elseif type assertions within body of elseif | vimeo_psalm | train |
c969cd3b7a704e7b3b4a0f888512d9e190ef93bc | diff --git a/quasar/src/components/pagination/QPagination.js b/quasar/src/components/pagination/QPagination.js
index <HASH>..<HASH> 100644
--- a/quasar/src/components/pagination/QPagination.js
+++ b/quasar/src/components/pagination/QPagination.js
@@ -3,6 +3,7 @@ import Vue from 'vue'
import QBtn from '../btn/QBtn.js'
... | fix(QPagination): [v1] QPagination - Error while entering page number #<I> | quasarframework_quasar | train |
4953fb542fd31fa8ad30b970fbd2d268dd3e14dc | diff --git a/assets/scss/admin/_themes.scss b/assets/scss/admin/_themes.scss
index <HASH>..<HASH> 100644
--- a/assets/scss/admin/_themes.scss
+++ b/assets/scss/admin/_themes.scss
@@ -4,9 +4,25 @@
{
.theme
{
- .fs-badge.fs-premium-theme-badge
- {
- font-size: 1.1em;
+ .fs-... | [beta-list] [themes] Add a "Beta" badge on the "Themes" page to premium beta themes. | Freemius_wordpress-sdk | train |
0400fb1bdeba9f2d32b466d8a3348398140fca9e | diff --git a/src/browserbox.js b/src/browserbox.js
index <HASH>..<HASH> 100644
--- a/src/browserbox.js
+++ b/src/browserbox.js
@@ -1446,7 +1446,7 @@
curNode.parameters = {};
[].concat(node[i] || []).forEach(function(val, j) {
if (j % 2) {
- ... | [WO-<I>] Decode filenames in bodystructure | emailjs_emailjs-imap-client | train |
36d20e834210f407812575f6784bc6d5dc312ecb | diff --git a/examples/middleware/main.go b/examples/middleware/main.go
index <HASH>..<HASH> 100644
--- a/examples/middleware/main.go
+++ b/examples/middleware/main.go
@@ -4,6 +4,7 @@ import (
"fmt"
"github.com/pilu/traffic"
"net/http"
+ "log"
)
type PingMiddleware struct {}
@@ -30,6 +31,9 @@ func (c *Ping... | logger middleware only for development env | gravityblast_traffic | train |
dd60b9d5b8004397dda54cfb8a3eb46efd2417da | diff --git a/glfw/library.py b/glfw/library.py
index <HASH>..<HASH> 100644
--- a/glfw/library.py
+++ b/glfw/library.py
@@ -133,6 +133,7 @@ def _get_library_search_paths():
'/usr/lib64',
'/usr/local/lib64',
'/usr/lib', '/usr/local/lib',
+ '/opt/homebrew/lib',
'/run/current-syst... | Update library search path for m1 Macs
The apple silicon homebrew installs libraries to `/opt/homebrew/lib` instead of `/usr/local/lib`. | FlorianRhiem_pyGLFW | train |
e06dd2381b65317586f1ca4f385bef7848a69d1c | diff --git a/hpcbench/api.py b/hpcbench/api.py
index <HASH>..<HASH> 100644
--- a/hpcbench/api.py
+++ b/hpcbench/api.py
@@ -246,6 +246,11 @@ class Benchmark(with_metaclass(ABCMeta, object)):
is considered as a shell command.
* *cwd* (optional):
directory where the command is executed.
+ ... | Do not extract metrics if command fails
* New `expected_exit_statuses` optional key in result of
Benchmark.execution_matrix to provide list of valid
exit statuses (default is [0])
* New `command_succeeded` boolean key in report set to False
if command's exit status was unexpected.
* Do not extract metrics if `co... | BlueBrain_hpcbench | train |
03c4c335193e61d48ecb53b5351ac7eec3b4ac09 | diff --git a/app/assets/javascripts/releaf/include/common.js b/app/assets/javascripts/releaf/include/common.js
index <HASH>..<HASH> 100644
--- a/app/assets/javascripts/releaf/include/common.js
+++ b/app/assets/javascripts/releaf/include/common.js
@@ -139,7 +139,7 @@ jQuery(function(){
{
return;
... | added clearerrors event to validation script | cubesystems_releaf | train |
4b34c3b7ede8d100e12d3465bcd0f3de62bb036c | diff --git a/geomet/tests/wkt_test.py b/geomet/tests/wkt_test.py
index <HASH>..<HASH> 100644
--- a/geomet/tests/wkt_test.py
+++ b/geomet/tests/wkt_test.py
@@ -157,8 +157,8 @@ class PolygonDumpsTestCase(unittest.TestCase):
poly = dict(type='Polygon', coordinates=[
[[100.001, 0.001], [101.001, 0.001... | tests/wkt_test:
Indentation cleanup. | geomet_geomet | train |
da662275d0aa71e71b43949d207caab9bc29dd03 | diff --git a/build.py b/build.py
index <HASH>..<HASH> 100755
--- a/build.py
+++ b/build.py
@@ -850,7 +850,7 @@ def printHelp():
print " advice"
print ""
print "Tasks:"
- print " checkout -- Checks out the source from SVN"
+ print " checkout -- Checks out the sources"
print... | minor tweak to usage statement in build script | validator_validator | train |
b5882336d6d34897ef65929df192aff471ba1eb6 | diff --git a/test/accessibility.js b/test/accessibility.js
index <HASH>..<HASH> 100644
--- a/test/accessibility.js
+++ b/test/accessibility.js
@@ -3,8 +3,8 @@ import colorable from "colorable"
import themes from "../lib/themes"
-var foregrounds = ["foreground", "caret", "invisibles"]
-
+var foregrounds = ["foregro... | Updating accessibility tests
This updates for the new global settings backgrounds and fixes
comparing a scope background to the global background | primer_github-syntax-theme-generator | train |
c9c9d55b9357a7e698939f84c7659c5a4eafab5b | diff --git a/productmd/common.py b/productmd/common.py
index <HASH>..<HASH> 100644
--- a/productmd/common.py
+++ b/productmd/common.py
@@ -263,6 +263,13 @@ class MetadataBase(object):
class Header(MetadataBase):
+ """
+ This class represents the header used in serialized metadata files.
+
+ It consists of... | Add docstring to Header class | release-engineering_productmd | train |
4d8903bfd3930174cb9d8312209238f0b5fa16e3 | diff --git a/resources/views/adminarea/pages/tag.blade.php b/resources/views/adminarea/pages/tag.blade.php
index <HASH>..<HASH> 100644
--- a/resources/views/adminarea/pages/tag.blade.php
+++ b/resources/views/adminarea/pages/tag.blade.php
@@ -26,7 +26,7 @@
<section class="content">
<div class="n... | Replace hardcoded resource name with language phrase | rinvex_cortex-tags | train |
797334f312a8e09f4803848d1b10be4a3706a449 | diff --git a/bin/spm-client-diagnostics.js b/bin/spm-client-diagnostics.js
index <HASH>..<HASH> 100755
--- a/bin/spm-client-diagnostics.js
+++ b/bin/spm-client-diagnostics.js
@@ -28,5 +28,5 @@ zip.folder(config.logger.dir)
var archFileName = path.join(os.tmpdir(), 'spm-diagnose.zip')
zip.writeToFile(archFileName)
co... | spm-support@ ==> support@ | sematext_spm-agent-nodejs | train |
d462df9f1f3fb4c0185fd13ec5490721555913f9 | diff --git a/geomdl/abstract.py b/geomdl/abstract.py
index <HASH>..<HASH> 100644
--- a/geomdl/abstract.py
+++ b/geomdl/abstract.py
@@ -143,6 +143,8 @@ class SplineGeometry(Geometry):
* :py:attr:`degree`
* :py:attr:`knotvector`
* :py:attr:`ctrlpts`
+ * :py:attr:`ctrlpts_size`
+ * :py:attr:`weights` ... | Add weights property to abstract.SplineGeometry
Added for making the abstraction complete with the rational splines | orbingol_NURBS-Python | train |
e295e203115d1f024c30117bd7f6f1fd8bf21164 | diff --git a/darksky/data.py b/darksky/data.py
index <HASH>..<HASH> 100644
--- a/darksky/data.py
+++ b/darksky/data.py
@@ -27,8 +27,8 @@ class Data_point(object):
setval(Data_block(val) if 'data' in val.keys() else Data_point(val))
def __getattr__(self, name):
- # return none if attribute does no... | fixed data_block call with index returning super() | lukaskubis_darkskylib | train |
834186cd1de6b23743f2770b70931c94b0976f48 | diff --git a/src/Codeception/Configuration.php b/src/Codeception/Configuration.php
index <HASH>..<HASH> 100644
--- a/src/Codeception/Configuration.php
+++ b/src/Codeception/Configuration.php
@@ -135,7 +135,7 @@ class Configuration
$configDistFile = $dir . DIRECTORY_SEPARATOR . 'codeception.dist.yml';
... | Added a error code. In order to distinguish between not exist configration and wrong path. | Codeception_Codeception | train |
cfaf2808b860a26ecf45f828fa8e7d88be5fc496 | diff --git a/ui/Component.js b/ui/Component.js
index <HASH>..<HASH> 100644
--- a/ui/Component.js
+++ b/ui/Component.js
@@ -872,14 +872,27 @@ class Component extends EventEmitter {
}
}
+ // ATTENTION: we had problems here, that using
+ // component.el.empty() instead of component.empty()
+ // did cause the ... | Fix component.empty()
Clearing refs and __foreignRefs__ not relying on proper disposal of children. | substance_substance | train |
e81a8b333fd269b1f87cc665243caa43d8cdeba3 | diff --git a/spoon-runner/src/main/java/com/squareup/spoon/SpoonUtils.java b/spoon-runner/src/main/java/com/squareup/spoon/SpoonUtils.java
index <HASH>..<HASH> 100644
--- a/spoon-runner/src/main/java/com/squareup/spoon/SpoonUtils.java
+++ b/spoon-runner/src/main/java/com/squareup/spoon/SpoonUtils.java
@@ -18,6 +18,7 @@... | Reuse ADB instance
When we force a new debug bridge, `kill-server` command will be sent to an existing instance.
There are some difficulties to proper start adb server after this.
This results in <URL> | square_spoon | train |
31189dbf321a943cdd778ea8a815d4a2ab24ffc2 | diff --git a/go/kbfs/libkbfs/md_ops.go b/go/kbfs/libkbfs/md_ops.go
index <HASH>..<HASH> 100644
--- a/go/kbfs/libkbfs/md_ops.go
+++ b/go/kbfs/libkbfs/md_ops.go
@@ -893,7 +893,7 @@ func (md *MDOpsStandard) getForHandle(ctx context.Context, handle *tlfhandle.Han
}
// Check for handle readership, to give a nice error... | md_ops: strip local conflict suffix when fetching ID from server
If we need to get a TLF ID from the server, make sure we don't send
the server a local conflict suffix, because it won't know what to do
with it.
Issue: KBFS-<I> | keybase_client | train |
401c7dcae4f7cf4eee6dd2f9c1aff1b1757c01a3 | diff --git a/app/models/renalware/hd/sessions/auditable_sessions_by_period_query.rb b/app/models/renalware/hd/sessions/auditable_sessions_by_period_query.rb
index <HASH>..<HASH> 100644
--- a/app/models/renalware/hd/sessions/auditable_sessions_by_period_query.rb
+++ b/app/models/renalware/hd/sessions/auditable_sessions_... | Scopes for session auditing
Not tested yet and can’t integrate this til other PR merged | airslie_renalware-core | train |
86acb823c33789e7ce4849c2981be1b6daea8849 | diff --git a/archunit/src/main/java/com/tngtech/archunit/library/Architectures.java b/archunit/src/main/java/com/tngtech/archunit/library/Architectures.java
index <HASH>..<HASH> 100644
--- a/archunit/src/main/java/com/tngtech/archunit/library/Architectures.java
+++ b/archunit/src/main/java/com/tngtech/archunit/library/... | only constrain targets with `mayOnlyAccessLayers(..)`
The method previously constrained origins as well, which was unexpected. I.e. a call to `layeredArchitecture()...whereLayer("SomeLayer").mayOnlyAccessLayers("OtherLayer")` would suddenly cause violations like `SomeUnrelatedLayer -> SomeLayer`, because the method wo... | TNG_ArchUnit | train |
929019989e77b753756ff2cbfdb02f2d7f218294 | diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -37,8 +37,9 @@ gulp.task('scripts', function() {
});
gulp.task('styles', function() {
- return gulp.src('src/vModal/styles/*.scss')
+ return gulp.src('src/vModal/styles/vModal.scss')
.pipe(sass({style: '... | rename css file | LukaszWatroba_v-modal | train |
3e283e6db06d396a1c972f2fe7b9b8d3f2d1d983 | diff --git a/baseftapp.go b/baseftapp.go
index <HASH>..<HASH> 100644
--- a/baseftapp.go
+++ b/baseftapp.go
@@ -6,7 +6,6 @@ import (
"net"
"net/http"
"os"
- "os/signal"
"time"
"github.com/Financial-Times/go-fthealth/v1a"
@@ -25,7 +24,12 @@ import (
// Endpoints are wrapped in a metrics timer and request log... | Refactor initialisation of each service to be handled by the service | Financial-Times_base-ft-rw-app-go | train |
dd8233430681aa55f2ebbd1899a641e400c551fb | diff --git a/decode.go b/decode.go
index <HASH>..<HASH> 100644
--- a/decode.go
+++ b/decode.go
@@ -96,29 +96,34 @@ func (de *decoder) message(buf []byte, sval reflect.Value) error {
for fieldi < len(fields) && fields[fieldi].ID < int64(fieldnum) {
fieldi++
}
- // For fields within embedded structs, ensure th... | Better error messages
Changed error messages and added a working debug-message to find out what's wrong
in decode.go:<I> | dedis_protobuf | train |
7910df2e1957d6dd99ba8ff260da7a3505be7a99 | diff --git a/src/Accompanist.php b/src/Accompanist.php
index <HASH>..<HASH> 100644
--- a/src/Accompanist.php
+++ b/src/Accompanist.php
@@ -83,6 +83,10 @@ class Accompanist implements JsonSerializable
'extra' => $this->extra,
];
+ if(!empty($this->version)) {
+ $json['version'] = $this->ver... | fix bugs with time or version not being included | smmccabe_accompanist | train |
74d9c60b9ef0a06c047d1d9a383232b2b879ce8b | diff --git a/src/Types/MandateMethod.php b/src/Types/MandateMethod.php
index <HASH>..<HASH> 100644
--- a/src/Types/MandateMethod.php
+++ b/src/Types/MandateMethod.php
@@ -6,9 +6,14 @@ class MandateMethod
{
const DIRECTDEBIT = "directdebit";
const CREDITCARD = "creditcard";
+ const PAYPAL = "paypal";
... | Add paypal to valid first payment methods | mollie_mollie-api-php | train |
942370c967e11e113021928ceadb214a5e35b06d | diff --git a/neomodel/match.py b/neomodel/match.py
index <HASH>..<HASH> 100644
--- a/neomodel/match.py
+++ b/neomodel/match.py
@@ -109,6 +109,9 @@ class NodeSet(object):
self.dont_match.update(dont_match)
return self
+ def run(self):
+ return QueryBuilder(self).execute()
+
class Travers... | Temporary helper to execute query | neo4j-contrib_neomodel | train |
1dfe0b5e33bb3490dbfd4ed7edb61bbddd19e90a | diff --git a/src/main/java/jcifs/smb/SmbTransportPoolImpl.java b/src/main/java/jcifs/smb/SmbTransportPoolImpl.java
index <HASH>..<HASH> 100644
--- a/src/main/java/jcifs/smb/SmbTransportPoolImpl.java
+++ b/src/main/java/jcifs/smb/SmbTransportPoolImpl.java
@@ -271,21 +271,23 @@ public class SmbTransportPoolImpl implement... | fixed #<I> keep connections to be closed in a temporary list and process
outside synchronized block. | AgNO3_jcifs-ng | train |
064ef8da6a1d5e97af03a510d466f509b906cb6c | diff --git a/aeron-archiver/src/test/java/io/aeron/archiver/ReplaySessionTest.java b/aeron-archiver/src/test/java/io/aeron/archiver/ReplaySessionTest.java
index <HASH>..<HASH> 100644
--- a/aeron-archiver/src/test/java/io/aeron/archiver/ReplaySessionTest.java
+++ b/aeron-archiver/src/test/java/io/aeron/archiver/ReplaySe... | [Java] field ordering/redundant filed removal | real-logic_aeron | train |
6e79c5c2427afbc5ca2d7bf0e4cc6f90fe36d97c | diff --git a/lib/devise/models/confirmable.rb b/lib/devise/models/confirmable.rb
index <HASH>..<HASH> 100644
--- a/lib/devise/models/confirmable.rb
+++ b/lib/devise/models/confirmable.rb
@@ -50,6 +50,12 @@ module Devise
# add errors
def confirm!
pending_any_confirmation do
+ if confirmat... | Ensure a new token is generated if the previous one expired | plataformatec_devise | train |
c439905b72b2068a425dabe5c7ee7e1cff419dd2 | diff --git a/packages/bonde-admin-canary/src/services/i18n/index.js b/packages/bonde-admin-canary/src/services/i18n/index.js
index <HASH>..<HASH> 100644
--- a/packages/bonde-admin-canary/src/services/i18n/index.js
+++ b/packages/bonde-admin-canary/src/services/i18n/index.js
@@ -1,3 +1,3 @@
export { default as i18n } f... | fix(admin-canary): export Interpolate component from react-i<I>next | nossas_bonde-client | train |
3c7fe33760de5b5a314b4926590341b6ab46ca06 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -3,57 +3,62 @@
import { find } from './util'
import modalWrapperFactory from './dialogs-wrapper'
-let Vue = null
-let modalWrapper = null
-let modalFunctions = []
-
-function findModalByName (name) {
- ret... | refactor: wrap methods from index.js into a class | hjkcai_vue-modal-dialogs | train |
c0f4f520b7b467e48c3547b3b527a8d53f0a12d4 | 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
@@ -25,6 +25,7 @@ import (
"github.com/gorhill/cronexpr"
"github.com/hashicorp/consul/api"
multierror "github.com/hashicorp/go-multierror"
+ "github.com/hashic... | Review feedback + re-add dropped import | hashicorp_nomad | train |
18391374f6006c118b9e33fc46de8b59cb7b7602 | diff --git a/tests/api/test_people.py b/tests/api/test_people.py
index <HASH>..<HASH> 100644
--- a/tests/api/test_people.py
+++ b/tests/api/test_people.py
@@ -17,12 +17,8 @@ __license__ = "MIT"
# Helper Functions
-def is_valid_person(obj):
- return isinstance(obj, ciscosparkapi.Person) and obj.id is not None
-
... | Update test suite to use new accounts
Tests have been failing because Spark is unable to "sideboard" the testing user accounts that are rapidly created (invited) but never logged into.
Create a new Spark organization for the ciscosparkapi package testing, and provision the users that are regularly used by the test su... | CiscoDevNet_webexteamssdk | train |
134e8e8e65cb3f5f11b4b575884fa9b0691f1d9f | diff --git a/client.js b/client.js
index <HASH>..<HASH> 100644
--- a/client.js
+++ b/client.js
@@ -9,13 +9,17 @@
var build_model = function (init_dict) {
want_file_pos = init_dict["want_file_pos"]
- want_file_pos.forEach( function(file_pos) {
+ ... | Storing bitfields as arrays of ints instead of strings | jefflovejapan_drench | train |
c7242587e6f89b6235d1964801825b0a970eade9 | diff --git a/ChromeController/__init__.py b/ChromeController/__init__.py
index <HASH>..<HASH> 100644
--- a/ChromeController/__init__.py
+++ b/ChromeController/__init__.py
@@ -3,6 +3,7 @@ from .transport import ChromeSocketManager
from .manager import ChromeRemoteDebugInterface
from .Generator import gen
+from .cr_e... | Add a timeout specific exceptions. | fake-name_ChromeController | train |
27e4f88e0868b03c505f998dfd353172504dd0e3 | diff --git a/lib/Browser.php b/lib/Browser.php
index <HASH>..<HASH> 100644
--- a/lib/Browser.php
+++ b/lib/Browser.php
@@ -906,8 +906,8 @@ class Browser
*/
protected function checkBrowserEdge()
{
- if (stripos($this->_agent, 'Edge/') !== false) {
- $aresult = explode('/', stristr($this... | Support newer Edge version
In newer versions of Edge the user agent is "Edg/..." | cbschuld_Browser.php | train |
429d0f0eee0070b3bb7759d93cdffd80a095f498 | diff --git a/rllib/env/multi_agent_env.py b/rllib/env/multi_agent_env.py
index <HASH>..<HASH> 100644
--- a/rllib/env/multi_agent_env.py
+++ b/rllib/env/multi_agent_env.py
@@ -132,7 +132,20 @@ class MultiAgentEnv(gym.Env):
self._check_if_space_maps_agent_id_to_sub_space()
)
if self... | [RLlib] Fix multi agent environment checks for observations that contain only some agents' obs each step. (#<I>) | ray-project_ray | train |
59438f4fffea6868081133c5cb7b62eeced504df | diff --git a/uritools/compose.py b/uritools/compose.py
index <HASH>..<HASH> 100644
--- a/uritools/compose.py
+++ b/uritools/compose.py
@@ -3,6 +3,7 @@ from __future__ import unicode_literals
import ipaddress
import itertools
import re
+import warnings
from collections import Iterable, Mapping
@@ -28,8 +29,10 @@... | Fix #<I>: Deprecate uricompose() support for string authority. | tkem_uritools | train |
079d2b7a324899e793c002df3a2ad111a6a65cd9 | diff --git a/openpnm/models/physics/diffusive_conductance.py b/openpnm/models/physics/diffusive_conductance.py
index <HASH>..<HASH> 100644
--- a/openpnm/models/physics/diffusive_conductance.py
+++ b/openpnm/models/physics/diffusive_conductance.py
@@ -138,7 +138,7 @@ def mixed_diffusion(target,
@_doctxt
def taylor_ari... | updated throat.area name in valvante blunt and taylor aris models | PMEAL_OpenPNM | train |
f89846667d4902af7dbd131bff825e0d6017ce27 | diff --git a/nlpipe/tasks.py b/nlpipe/tasks.py
index <HASH>..<HASH> 100644
--- a/nlpipe/tasks.py
+++ b/nlpipe/tasks.py
@@ -7,7 +7,7 @@ from .celery import app
def morphosyntactic(text):
cmd = "$NEWSREADER_HOME/run_parser.sh"
p2 = Popen(cmd, stdin=PIPE, stdout=PIPE, shell=True)
- (out, err) = p2.communicat... | Send text as utf-8 | amcat_nlpipe | train |
205fe344c35ff8ef5943e3b52ba48c36498589c8 | diff --git a/parser/__init__.py b/parser/__init__.py
index <HASH>..<HASH> 100644
--- a/parser/__init__.py
+++ b/parser/__init__.py
@@ -1,2 +1,2 @@
from .element import Element
-from .common import schema, weighted_choice
\ No newline at end of file
+from .common import schema, weighted_choice, normalize
\ No newline a... | Trigger match method, normalize moved to common | FujiMakoto_AgentML | train |
69f17ff384190704372cc353f090401ee87c9b3c | diff --git a/lib/github_api/constants.rb b/lib/github_api/constants.rb
index <HASH>..<HASH> 100644
--- a/lib/github_api/constants.rb
+++ b/lib/github_api/constants.rb
@@ -54,9 +54,6 @@ module Github
PARAM_START_PAGE = "start_page".freeze
- # URI parsing
- QUERY_STR_SEP = '?'.freeze
-
end # Constants... | also use the URI module to parse query strings | piotrmurach_github | train |
ab795506938ca943d2e1552fb0c48308c4d1db89 | diff --git a/raft/raft.go b/raft/raft.go
index <HASH>..<HASH> 100644
--- a/raft/raft.go
+++ b/raft/raft.go
@@ -305,7 +305,7 @@ func (sm *stateMachine) Step(m Message) {
sm.lead = sm.addr
sm.sendAppend()
case len(sm.votes) - gr:
- sm.state = stateFollower
+ sm.becomeFollower(sm.term, none)
}
}... | raft: use becomeFollower in cadidate state | etcd-io_etcd | train |
a20d1ba7f524eb3aa4a1e4a30b2cf94c9d47581f | diff --git a/test/transport/test_algorithms.rb b/test/transport/test_algorithms.rb
index <HASH>..<HASH> 100644
--- a/test/transport/test_algorithms.rb
+++ b/test/transport/test_algorithms.rb
@@ -46,7 +46,9 @@ module Transport
end
def test_constructor_with_known_hosts_reporting_known_host_key_should_use_that... | test_algorithm should not depeng on known host file contents | net-ssh_net-ssh | train |
137af244ee561bd350797c8ce6e159fbd46b6a02 | diff --git a/mount_test.go b/mount_test.go
index <HASH>..<HASH> 100644
--- a/mount_test.go
+++ b/mount_test.go
@@ -8,6 +8,41 @@ import (
"testing"
)
+// Look for inconsistencies in a store.
+func healthCheck(store *Store) error {
+ parents := make(map[string]bool)
+ paths, err := store.Paths()
+ if err != nil {
+ ... | Add the health check to mount_test | containers_storage | train |
27f30ff6d5acaf267e031f87ebe15f96cd88d9c3 | diff --git a/translator/src/main/java/com/google/devtools/j2objc/translate/NilCheckResolver.java b/translator/src/main/java/com/google/devtools/j2objc/translate/NilCheckResolver.java
index <HASH>..<HASH> 100644
--- a/translator/src/main/java/com/google/devtools/j2objc/translate/NilCheckResolver.java
+++ b/translator/sr... | Skip nil-check generation for static field references from instances. | google_j2objc | train |
5e9889c3bb2b4e0d99899b1b58a3f3eb1f19c6a5 | diff --git a/tests/test_getters.py b/tests/test_getters.py
index <HASH>..<HASH> 100755
--- a/tests/test_getters.py
+++ b/tests/test_getters.py
@@ -12,10 +12,6 @@ from marcxml_parser import MARCXMLQuery
from test_parser import unix_file
-# Variables ==================================================================... | #7: Removed unused `Variables` field. | edeposit_marcxml_parser | train |
4a29094ccb96ecd75f52348e0f9c15df8ccda02f | diff --git a/spring-cloud-sleuth-instrumentation/src/main/java/org/springframework/cloud/sleuth/instrument/jdbc/TraceListenerStrategy.java b/spring-cloud-sleuth-instrumentation/src/main/java/org/springframework/cloud/sleuth/instrument/jdbc/TraceListenerStrategy.java
index <HASH>..<HASH> 100644
--- a/spring-cloud-sleuth... | fixing issue #<I> (#<I>) | spring-cloud_spring-cloud-sleuth | train |
7344693ca81add5098973753f701585c00a447f9 | diff --git a/plugins/inputs/dns_query/dns_query.go b/plugins/inputs/dns_query/dns_query.go
index <HASH>..<HASH> 100644
--- a/plugins/inputs/dns_query/dns_query.go
+++ b/plugins/inputs/dns_query/dns_query.go
@@ -97,6 +97,8 @@ func (d *DnsQuery) Gather(acc telegraf.Accumulator) error {
}
acc.AddFields("dns_qu... | Fix hang in dns_query plugin (#<I>) | influxdata_telegraf | train |
6a1d7ac9427f73293760256af78e2178bfcf3e40 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@
from setuptools import setup
setup(name="taskc",
- version="0.0.1a2",
+ version="0.0.2a1",
packages=["taskc"],
author="Jack Laxson",
author_email="jackjrabbit@gmail.com",
diff --... | this version actually syncs :) version bump | jrabbit_taskd-client-py | train |
940f7351933ef3dc8178c7a93d07f1f55e298fff | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,7 @@
### Bug fixes
* Fix false positive in `Style/TrailingCommaInArguments` & `Style/TrailingCommaInLiteral` cops with consistent_comma style. ([@meganemura][])
+* [#2861](https://github.com/bbatsov... | Fix false positive in SpaceAroundKeyword for rescue with a parentheses | rubocop-hq_rubocop | train |
8e0be4d7ad7db1f5bd6dafa8333851a61350bbb2 | diff --git a/src/Gn36/OoPostingApi/post.php b/src/Gn36/OoPostingApi/post.php
index <HASH>..<HASH> 100644
--- a/src/Gn36/OoPostingApi/post.php
+++ b/src/Gn36/OoPostingApi/post.php
@@ -118,7 +118,10 @@ class post extends posting_base
$post->enable_sig = $post_data['enable_sig'];
$post->post_subject = $post_data['... | from_array returns a post, doesn't update... | gn36_phpbb-oo-posting-api | train |
30d0c1c7f82af083edf73ec0649dbeac6f8152d3 | diff --git a/holoviews/core/pprint.py b/holoviews/core/pprint.py
index <HASH>..<HASH> 100644
--- a/holoviews/core/pprint.py
+++ b/holoviews/core/pprint.py
@@ -66,25 +66,45 @@ class InfoPrinter(object):
obj_info = cls.object_info(obj, ansi=ansi)
heading = '%s Information' % obj.__class__.__name__
... | Added 'object' option for info in OutputMagic | pyviz_holoviews | train |
90438fead8e3430ca012714d98c4298ec744a1f6 | diff --git a/Command/LoadDataFixturesDoctrineODMCommand.php b/Command/LoadDataFixturesDoctrineODMCommand.php
index <HASH>..<HASH> 100644
--- a/Command/LoadDataFixturesDoctrineODMCommand.php
+++ b/Command/LoadDataFixturesDoctrineODMCommand.php
@@ -72,6 +72,8 @@ EOT
}
}
+ $paths = array_fil... | [DoctrineMongoDBBundle] fixed merge problem | doctrine_DoctrineMongoDBBundle | train |
c326818ca6175dd88bdc904463c87a0dd7ec1f5f | diff --git a/raiden/tests/smart_contracts/netting_channel/test_withdraw.py b/raiden/tests/smart_contracts/netting_channel/test_withdraw.py
index <HASH>..<HASH> 100644
--- a/raiden/tests/smart_contracts/netting_channel/test_withdraw.py
+++ b/raiden/tests/smart_contracts/netting_channel/test_withdraw.py
@@ -362,6 +362,7 ... | Fix tests affected by adding the recipient check | raiden-network_raiden | train |
38962bcdefd16ce14f03125adae4ad677556f6e2 | diff --git a/js/forum/dist/extension.js b/js/forum/dist/extension.js
index <HASH>..<HASH> 100644
--- a/js/forum/dist/extension.js
+++ b/js/forum/dist/extension.js
@@ -1,7 +1,7 @@
'use strict';
-System.register('flarum/approval/main', ['flarum/extend', 'flarum/app', 'flarum/models/Discussion', 'flarum/models/Post', '... | Generalise the potential for unapproved state to all posts, rather than just comments
This is just more future-proofing, in case any other extensions introduce new post types which can be queued for approval. | flarum_approval | train |
562ce349371bc34f5d2a287811a61587b27d6b6c | diff --git a/test/unit/einhorn/client.rb b/test/unit/einhorn/client.rb
index <HASH>..<HASH> 100644
--- a/test/unit/einhorn/client.rb
+++ b/test/unit/einhorn/client.rb
@@ -15,12 +15,18 @@ class ClientTest < EinhornTestCase
"---%0A:foo:%0A- ! '%25bar'%0A- ! '%25baz'%0A\n"
end
+ def serialized_2_1
+ "---%0A:... | Apparently YAML serialization changed again some time between <I> and <I> | stripe_einhorn | train |
3fbc935d896c18c0f6e9764860d3c03fa219f8d9 | diff --git a/core/src/main/java/com/orientechnologies/orient/core/sql/parser/OParenthesisExpression.java b/core/src/main/java/com/orientechnologies/orient/core/sql/parser/OParenthesisExpression.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/orientechnologies/orient/core/sql/parser/OParenthesisExpression.... | Fix usage of positional parameters in subqueries
(too much aggressive usage of the execution plan cache)
Resolves: #<I> | orientechnologies_orientdb | train |
f26af746e718fd04de92f22aa33bc81b0fb02838 | diff --git a/src/XeroPHP/Models/Accounting/Invoice.php b/src/XeroPHP/Models/Accounting/Invoice.php
index <HASH>..<HASH> 100644
--- a/src/XeroPHP/Models/Accounting/Invoice.php
+++ b/src/XeroPHP/Models/Accounting/Invoice.php
@@ -785,5 +785,46 @@ class Invoice extends Remote\Object
}
+ /**
+ * Retrieve... | add ability to get the online invoice url [#<I>] | calcinai_xero-php | train |
59fddc446f9614605fe7b614a1db03a0450b3f44 | diff --git a/resource_aws_s3_bucket_object.go b/resource_aws_s3_bucket_object.go
index <HASH>..<HASH> 100644
--- a/resource_aws_s3_bucket_object.go
+++ b/resource_aws_s3_bucket_object.go
@@ -4,6 +4,8 @@ import (
"fmt"
"log"
"os"
+ "io"
+ "bytes"
"github.com/hashicorp/terraform/helper/schema"
@@ -34,1... | adding content field to s3_bucket_object | terraform-providers_terraform-provider-aws | train |
07fd293223905fdda7298b9330399fa0da365b41 | diff --git a/xmlnuke-php5/bin/com.xmlnuke/net.oauthclient.class.php b/xmlnuke-php5/bin/com.xmlnuke/net.oauthclient.class.php
index <HASH>..<HASH> 100644
--- a/xmlnuke-php5/bin/com.xmlnuke/net.oauthclient.class.php
+++ b/xmlnuke-php5/bin/com.xmlnuke/net.oauthclient.class.php
@@ -79,38 +79,62 @@ class OAuthClient
pro... | Changes in OAuthClient to save the access token in the profile | byjg_xmlnuke | train |
f048c4f0c4502d95045f50b2313f429216001361 | diff --git a/tests.go b/tests.go
index <HASH>..<HASH> 100644
--- a/tests.go
+++ b/tests.go
@@ -7,6 +7,7 @@ import (
"net/http"
"net/url"
"strings"
+ "code.google.com/p/go.net/websocket"
)
type TestSuite struct {
@@ -23,14 +24,23 @@ func NewTestSuite() TestSuite {
return TestSuite{Client: &http.Client{}}
}
... | adding a test method to create a websocket connection | revel_revel | train |
a0ce4c453c53ba9e9ee5b29e58f854fa48e516ea | diff --git a/src/Database/Schema/PostgresSchema.php b/src/Database/Schema/PostgresSchema.php
index <HASH>..<HASH> 100644
--- a/src/Database/Schema/PostgresSchema.php
+++ b/src/Database/Schema/PostgresSchema.php
@@ -46,6 +46,8 @@ class PostgresSchema extends BaseSchema
c.collation_name,
d.descr... | Improve support for `decimal` type in Postgres schema management | cakephp_cakephp | train |
af9f770146d7fe7783c610b2a6452f98168ac6fb | diff --git a/pefile.py b/pefile.py
index <HASH>..<HASH> 100644
--- a/pefile.py
+++ b/pefile.py
@@ -31,7 +31,7 @@ from builtins import str
from builtins import zip
__author__ = 'Ero Carrera'
-__version__ = '2017.8.1'
+__version__ = '2017.9.3'
__contact__ = 'ero.carrera@gmail.com'
import os
diff --git a/setup.py ... | Updated version, preparing for release. | erocarrera_pefile | train |
2bd3ed4d007cd3f9158a6652c3d28503141f0da7 | diff --git a/stdlib/source_map/map.rb b/stdlib/source_map/map.rb
index <HASH>..<HASH> 100644
--- a/stdlib/source_map/map.rb
+++ b/stdlib/source_map/map.rb
@@ -193,7 +193,7 @@ module SourceMap
sources_index = Hash[sources.each_with_index.to_a]
names_index = Hash[names.each_with_index.to_a]
- ... | Backport maccman/sourcemap#<I> | opal_opal | train |
8b0031be778eb4fc5b77f595648e620ad438fc7b | diff --git a/python/dllib/src/bigdl/dllib/utils/nncontext.py b/python/dllib/src/bigdl/dllib/utils/nncontext.py
index <HASH>..<HASH> 100644
--- a/python/dllib/src/bigdl/dllib/utils/nncontext.py
+++ b/python/dllib/src/bigdl/dllib/utils/nncontext.py
@@ -335,10 +335,11 @@ def init_nncontext(conf=None, spark_log_level="WARN... | fix log_output logic called twice (#<I>) | intel-analytics_BigDL | train |
121ac88b45ba7469c48ad0071bbe27e7a6b0e176 | diff --git a/lib/mongoid/relations/embedded/one.rb b/lib/mongoid/relations/embedded/one.rb
index <HASH>..<HASH> 100644
--- a/lib/mongoid/relations/embedded/one.rb
+++ b/lib/mongoid/relations/embedded/one.rb
@@ -38,7 +38,7 @@ module Mongoid
def substitute(replacement)
if replacement != self
... | No more duplicate $unset/$set with embeds_one.
[ fix mongoid/moped#<I> ] | mongodb_mongoid | train |
4c05d27bcf6031b424a00cdaf4b302a90cdfc1cb | diff --git a/src/ScaffoldPackageCommand.php b/src/ScaffoldPackageCommand.php
index <HASH>..<HASH> 100644
--- a/src/ScaffoldPackageCommand.php
+++ b/src/ScaffoldPackageCommand.php
@@ -228,7 +228,7 @@ EOT;
'package_name' => $composer_obj['name'],
'package_short_name' => $bits[1],
'package_name_border'... | Check composer_obj['description'] set before using. | wp-cli_scaffold-package-command | train |
bf63ddfebe80eb47f9a5e560288cb0ed446a9a87 | diff --git a/src/ol/browserfeature.js b/src/ol/browserfeature.js
index <HASH>..<HASH> 100644
--- a/src/ol/browserfeature.js
+++ b/src/ol/browserfeature.js
@@ -15,5 +15,6 @@ ol.BrowserFeature = {
* @type {boolean} True if browser supports touch events
*/
HAS_TOUCH: ol.ASSUME_TOUCH ||
- (document && 'onto... | Test if browser supports Windows Pointer events | openlayers_openlayers | train |
486362196e42efaac76d33ca3c6726dfa16f5667 | diff --git a/lib/dice_bag/project.rb b/lib/dice_bag/project.rb
index <HASH>..<HASH> 100644
--- a/lib/dice_bag/project.rb
+++ b/lib/dice_bag/project.rb
@@ -10,18 +10,25 @@ module DiceBag
end
def self.config_files(filename)
- File.join(Dir.pwd, filename)
+ File.join(self.config_dir, filename)
+ e... | In rails our files should go into config/ | mdsol_dice_bag | train |
c9a1dc137993a80f844e8370ea5642d2bf1cbb75 | diff --git a/src/Engines/BaseEngine.php b/src/Engines/BaseEngine.php
index <HASH>..<HASH> 100644
--- a/src/Engines/BaseEngine.php
+++ b/src/Engines/BaseEngine.php
@@ -104,6 +104,14 @@ abstract class BaseEngine implements DataTableEngineContract
* @var bool
*/
protected $autoFilter = true;
+
+ /*... | support of using soft deletes trait in models | yajra_laravel-datatables | train |
354e64f4274281c0a7ddcc0525c8009c597da93b | diff --git a/service.go b/service.go
index <HASH>..<HASH> 100644
--- a/service.go
+++ b/service.go
@@ -70,12 +70,14 @@ import (
)
const (
- optionKeepAlive = "KeepAlive"
- optionKeepAliveDefault = true
- optionRunAtLoad = "RunAtLoad"
- optionRunAtLoadDefault = false
- optionUserService ... | service: on darwin add ServiceCreate option.
OS X launchd doesn't create a full session for most services.
This may be a performance or security decision. Regardless
in order to create a full user session for a service set
this option to true. Leaving as false as this is the os
and historical default. | kardianos_service | train |
1f10dfe63ce9d0cd63975013af820ec32fdfe5f9 | diff --git a/onecodex/lib/upload.py b/onecodex/lib/upload.py
index <HASH>..<HASH> 100644
--- a/onecodex/lib/upload.py
+++ b/onecodex/lib/upload.py
@@ -673,7 +673,7 @@ def _direct_upload(file_obj, file_name, fields, session, samples_resource):
except requests.exceptions.HTTPError as e:
raise_api_er... | Fix bug handling connectivity exception during uploads | onecodex_onecodex | train |
17e455d415a88e607e245f5c507c12bc3ae96d9d | diff --git a/test_pytest_cov.py b/test_pytest_cov.py
index <HASH>..<HASH> 100644
--- a/test_pytest_cov.py
+++ b/test_pytest_cov.py
@@ -375,3 +375,50 @@ def test_cover_conftest_dist(testdir):
script)
assert result.ret == 0
result.stdout.fnmatch_lines([CONF_RESULT])
+
+
+COVERAGE... | Added test for coveragerc handling. | pytest-dev_pytest-cov | train |
95022e80b4eb86df02b77a7122c33bc272c19eaf | diff --git a/patchwork/expect.py b/patchwork/expect.py
index <HASH>..<HASH> 100644
--- a/patchwork/expect.py
+++ b/patchwork/expect.py
@@ -114,5 +114,7 @@ class Expect():
Run command and expect specified return valud
'''
retval = connection.recv_exit_status(command, timeout)
+ if conne... | Report in expect_retval as well | RedHatQE_python-stitches | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.