hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
fa3d90b8a5c181979333c7a3f2d84d2cd162fbff | diff --git a/lib/web3/providers/utility_ws.js b/lib/web3/providers/utility_ws.js
index <HASH>..<HASH> 100644
--- a/lib/web3/providers/utility_ws.js
+++ b/lib/web3/providers/utility_ws.js
@@ -15,12 +15,7 @@ const rootPrefix = '../../..'
, OstWeb3 = OstCore.OstWeb3
;
-const web3UtilityWsProvider = new OstWeb3... | Removed the config for ws webproviders, used rpc for openst_utility and openst_value deployment, version bumpup | OpenSTFoundation_openst-platform | train |
bc8dff0230922e44e45548e127abca8c956f2e5a | diff --git a/bundles/BlockManagerBundle/Controller/API/BlockController.php b/bundles/BlockManagerBundle/Controller/API/BlockController.php
index <HASH>..<HASH> 100644
--- a/bundles/BlockManagerBundle/Controller/API/BlockController.php
+++ b/bundles/BlockManagerBundle/Controller/API/BlockController.php
@@ -24,24 +24,31 ... | Refactor API block controller to use block types | netgen-layouts_layouts-core | train |
31b693da1f1298da334d33a5ee37a22a2ed3e176 | diff --git a/core/index.js b/core/index.js
index <HASH>..<HASH> 100644
--- a/core/index.js
+++ b/core/index.js
@@ -17,13 +17,19 @@ function startGhost(options) {
options = options || {};
bootstrap(options.config).then(function () {
- var ghost = require('./server');
- return ghost(options.app)... | Add try-catch to startup
- Should prevent Ghost from exiting without an error message | TryGhost_Ghost | train |
bfda3e0bdb81637e0b41fed2205e1682562c3738 | diff --git a/libraries/mako/database/orm/Hydrator.php b/libraries/mako/database/orm/Hydrator.php
index <HASH>..<HASH> 100755
--- a/libraries/mako/database/orm/Hydrator.php
+++ b/libraries/mako/database/orm/Hydrator.php
@@ -77,7 +77,7 @@ class Hydrator
* @return \mako\database\orm\Hydrator
*/
- public function ... | Renamed includes method to including and added excluding method to ORM | mako-framework_framework | train |
c2e93aa54465bb7be3071b9b508cce8fbab7e7b9 | diff --git a/master/buildbot/changes/gitpoller.py b/master/buildbot/changes/gitpoller.py
index <HASH>..<HASH> 100644
--- a/master/buildbot/changes/gitpoller.py
+++ b/master/buildbot/changes/gitpoller.py
@@ -313,8 +313,10 @@ class GitPoller(base.PollingChangeSource, StateMixin):
# check for failures
... | raising a Failure does not work. need to reraise using the Failure API | buildbot_buildbot | train |
299aab9345b4bc2abb3e4f529b86e8406f3c03cd | diff --git a/nameko/extensions.py b/nameko/extensions.py
index <HASH>..<HASH> 100644
--- a/nameko/extensions.py
+++ b/nameko/extensions.py
@@ -30,7 +30,7 @@ class Extension(object):
container = None
def __new__(cls, *args, **kwargs):
- inst = super(Extension, cls).__new__(cls, *args, **kwargs)
+ ... | (temp) workaround for __new__ | nameko_nameko | train |
d58e5699be134e4c42f09cce4a43adea2267cf40 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -21,6 +21,8 @@ var pg = (function() {
var PGPubsub = function (conString) {
var self = this;
+ this.setMaxListeners(0);
+
this.conString = conString;
this.channels = [];
this.conFails = 0; | fix(main): don’t warn about many listeners | voxpelli_node-pg-pubsub | train |
18f5e36de57a989e92018c362dba30e3330c7f54 | diff --git a/examples/Commands/HelpHandler.php b/examples/Commands/HelpHandler.php
index <HASH>..<HASH> 100644
--- a/examples/Commands/HelpHandler.php
+++ b/examples/Commands/HelpHandler.php
@@ -36,7 +36,7 @@ class HelpHandler extends ConsoleApplication implements CommandInterface
$this->writeln('Commands:');
... | Corrects the help output to display the correct command name for the flags commands. | allebb_clip | train |
a5824817df1fed9a89cdd4ccd28f94fcd9dc5b56 | diff --git a/impl/src/main/java/org/jboss/weld/util/BeanMethods.java b/impl/src/main/java/org/jboss/weld/util/BeanMethods.java
index <HASH>..<HASH> 100644
--- a/impl/src/main/java/org/jboss/weld/util/BeanMethods.java
+++ b/impl/src/main/java/org/jboss/weld/util/BeanMethods.java
@@ -48,6 +48,14 @@ import com.google.comm... | WELD-<I> Cache filter predicate | weld_core | train |
fbd66c72e27bd24bb7d0cda7340b9e9bd413fe2f | diff --git a/java/src/com/google/template/soy/basicfunctions/LegacyObjectMapToMapFunction.java b/java/src/com/google/template/soy/basicfunctions/LegacyObjectMapToMapFunction.java
index <HASH>..<HASH> 100644
--- a/java/src/com/google/template/soy/basicfunctions/LegacyObjectMapToMapFunction.java
+++ b/java/src/com/google... | Roll forward [] (Soy JS runtime: move $$legacyObjectMapToMap to separate file) with fix.
The tasks tests were failing because they load the Soy JS runtime uncompiled via goog.require, and the OCL did not add the new file (legacy_object_map_to_map.js) to the corresponding filegroup. Verified this fixes the tests.
GITH... | google_closure-templates | train |
ed30dc4642776652a30bb06cf303e4caeaf65519 | diff --git a/salt/modules/systemd.py b/salt/modules/systemd.py
index <HASH>..<HASH> 100644
--- a/salt/modules/systemd.py
+++ b/salt/modules/systemd.py
@@ -345,7 +345,8 @@ def status(name, sig=None):
'''
if _untracked_custom_unit_found(name) or _unit_file_changed(name):
systemctl_reload()
- return ... | Fix for #<I>. No error reporting. Exitcode !=0 are ok | saltstack_salt | train |
71c25de9869063c6b11eade523fc4270e69e993f | diff --git a/lib/rules/no-global-jquery.js b/lib/rules/no-global-jquery.js
index <HASH>..<HASH> 100644
--- a/lib/rules/no-global-jquery.js
+++ b/lib/rules/no-global-jquery.js
@@ -32,7 +32,7 @@ module.exports = {
VariableDeclarator(node) {
if (emberImportAliasName) {
- if (utils.isMemberExpres... | Fix "no-global-jquery" (#<I>)
* Fix collectObjectPatternBindings
* Fix error with declarations without assignments | ember-cli_eslint-plugin-ember | train |
a24efcd790d62c24a85fe5eacef58932f310dd17 | diff --git a/lib/ronin.rb b/lib/ronin.rb
index <HASH>..<HASH> 100644
--- a/lib/ronin.rb
+++ b/lib/ronin.rb
@@ -40,7 +40,7 @@ module Ronin
RONIN_ENV = Environment.new
# Load a new object cache
- def Ronin.load_object_cache(path)
+ def Ronin.load_object_cache(path=ObjectCache.STORE_PATH)
@object_cache = Ob... | * Added a default path to Ronin.object_cache_load. | ronin-ruby_ronin | train |
311d5eb1571b35a9883108dcb9a58022e383267a | diff --git a/safe/definitions.py b/safe/definitions.py
index <HASH>..<HASH> 100644
--- a/safe/definitions.py
+++ b/safe/definitions.py
@@ -80,26 +80,19 @@ layer_mode_continuous = {
'key': 'continuous',
'name': tr('Continuous'),
'description': tr(
- '<b>Continuous</b> data can be hazard or exposure... | Update description for layer mode classified and continuous. | inasafe_inasafe | train |
d43314eebb1678c86d1e410f47ec00dc71291e71 | diff --git a/riabdock.py b/riabdock.py
index <HASH>..<HASH> 100644
--- a/riabdock.py
+++ b/riabdock.py
@@ -226,29 +226,33 @@ class RiabDock(QtGui.QDockWidget):
self.ui.wvResults.setHtml(myMessage)
self.hideBusy()
return
- try:
- myHazardIndex = self.ui.cboHazard.... | Run in single threaded mode for now pending resolution of issues on Ole's pc. | inasafe_inasafe | train |
93bd531b5bf9b905d6c294f0df3d50ca21b9214e | diff --git a/test/events_controller_spec.rb b/test/events_controller_spec.rb
index <HASH>..<HASH> 100644
--- a/test/events_controller_spec.rb
+++ b/test/events_controller_spec.rb
@@ -10,6 +10,10 @@ describe Stripe::EventsController do
end
describe 'the events interface' do
+ subject { post '/stripe/events', ... | adds an integration test to make sure it calls stripe events | tansengming_stripe-rails | train |
13e93d7836b670b8b0a459af039064e6cdaf38d4 | diff --git a/app/index.js b/app/index.js
index <HASH>..<HASH> 100644
--- a/app/index.js
+++ b/app/index.js
@@ -14,6 +14,7 @@ export default function() {
.option('-m, --models [value]', 'A comma-delimited list of models to use, by default all models in a directory are used.', process.cwd())
.option('-d, --dest... | Allowed the number of documents generated to be overridden
Closes #<I> The number of documents to generate can now be specified from the command-line by using the `-n [value]` option. When specified this will override whatever values are specified by the model. | bentonam_fakeit | train |
29d74ae599452c94118f932468115a8548b49234 | diff --git a/src/org/zaproxy/zap/ZAP.java b/src/org/zaproxy/zap/ZAP.java
index <HASH>..<HASH> 100644
--- a/src/org/zaproxy/zap/ZAP.java
+++ b/src/org/zaproxy/zap/ZAP.java
@@ -237,6 +237,7 @@ public class ZAP {
private Locale determineUsersSystemLocale() {
Locale userloc = null;
final Locale systloc = Locale.g... | Fixed Issue <I>
Added fallback: when country is different, example de_DE and de_AT, in Austria de_DE will be used as fallback. | zaproxy_zaproxy | train |
ad466471dcc7251db38d0cfab43e2b4472e28833 | diff --git a/robolectric/src/test/java/org/robolectric/shadows/ShadowTypefaceTest.java b/robolectric/src/test/java/org/robolectric/shadows/ShadowTypefaceTest.java
index <HASH>..<HASH> 100644
--- a/robolectric/src/test/java/org/robolectric/shadows/ShadowTypefaceTest.java
+++ b/robolectric/src/test/java/org/robolectric/s... | Fix Resources$NotFoundException when using ShadowTypeface.nativeCreateFromArray
Previously ShadowTypeface.nativeCreateFromArray always returned 1, which would
fail after the ShadowTypeface resetter would be called, as the default system
typefaces get cleared.
PiperOrigin-RevId: <I> | robolectric_robolectric | train |
7f5db4e6fb4afd8ed1a15a02ceba5179a24e2cc5 | diff --git a/closure/goog/editor/plugins/linkdialogplugin.js b/closure/goog/editor/plugins/linkdialogplugin.js
index <HASH>..<HASH> 100644
--- a/closure/goog/editor/plugins/linkdialogplugin.js
+++ b/closure/goog/editor/plugins/linkdialogplugin.js
@@ -332,15 +332,14 @@ goog.editor.plugins.LinkDialogPlugin.prototype.hand... | Automated g4 rollback of changelist <I>.
*** Reason for rollback ***
Didn't help fix b/<I>
*** Original change description ***
Have LinkDialogPlugin fire selectionChange event immediately after moving cursor by moving the focus call to after the dispatch call (as well as after the change event dispatch call). Fixes... | google_closure-library | train |
1b89ba7614b03499d3618cb9a5854b1a014c9ce7 | diff --git a/tests/unit/model/ModelBase.js b/tests/unit/model/ModelBase.js
index <HASH>..<HASH> 100644
--- a/tests/unit/model/ModelBase.js
+++ b/tests/unit/model/ModelBase.js
@@ -417,6 +417,38 @@ describe('ModelBase', function () {
expect(model).to.not.have.property('c');
});
+ it('should throw with er... | Tests for solution described in #<I>. | Vincit_objection.js | train |
ce002a22146f60337443d752ed60fb5a8bfc3068 | diff --git a/framework/widgets/Pjax.php b/framework/widgets/Pjax.php
index <HASH>..<HASH> 100644
--- a/framework/widgets/Pjax.php
+++ b/framework/widgets/Pjax.php
@@ -89,15 +89,17 @@ class Pjax extends Widget
$this->options['id'] = $this->getId();
}
- ob_start();
- ob_implicit_flush(false);
-
if ($this->r... | refactored Pjax. Added title change support. [skip ci] | yiisoft_yii-core | train |
3b4892f9267e89160de94529bc27201289f2aa58 | diff --git a/server.go b/server.go
index <HASH>..<HASH> 100644
--- a/server.go
+++ b/server.go
@@ -565,12 +565,6 @@ func (s *Server) monitorDiagnostics() {
// monitorRuntime periodically polls the Go runtime metrics.
func (s *Server) monitorRuntime() {
- s.Holder.Stats.Set("Host", s.Host, 1.0)
- s.Holder.Stats.Set(... | simplifying the diagnostics client. Using circuit breaker to manage the diagnostics http connection. | pilosa_pilosa | train |
a75cbba1436bc714d8e6c42a8a83c628cce752f6 | diff --git a/pitch.go b/pitch.go
index <HASH>..<HASH> 100644
--- a/pitch.go
+++ b/pitch.go
@@ -97,6 +97,10 @@ func (p Pitch) MIDI() int {
return p.Semitones() + 24
}
+func (p Pitch) String() string {
+ return fmt.Sprintf("%s %s", p.Name(AscNames), p.Interval)
+}
+
func modifierName(i int) string {
return modifi... | Provide name when printing Pitches, not just interval. | brettbuddin_musictheory | train |
e4ed484e71b1c0357d34a2ff30d4e1215db06912 | diff --git a/pymzn/mzn/model.py b/pymzn/mzn/model.py
index <HASH>..<HASH> 100644
--- a/pymzn/mzn/model.py
+++ b/pymzn/mzn/model.py
@@ -216,10 +216,7 @@ class MiniZincModel(object):
self._statements = []
self._solve_stmt = None
self._output_stmt = None
- self._free_vars = set()
- ... | model: remove output statement construction from free variables; not used anymore | paolodragone_pymzn | train |
37663d5cabb0b9a33de40b5d7a6032ab595dbfc2 | diff --git a/ratcave/shader.py b/ratcave/shader.py
index <HASH>..<HASH> 100644
--- a/ratcave/shader.py
+++ b/ratcave/shader.py
@@ -139,6 +139,4 @@ class Shader(ugl.BindingContextMixin, ugl.BindNoTargetMixin):
# obtain the uniform location
if not loc:
loc = self.get_uniform_location(name)
... | Performed transpose directly in OpenGL function. | ratcave_ratcave | train |
fef9e3d82a4874c5c4151946173dc2efd7020e32 | diff --git a/ariane_clip3/mapping.py b/ariane_clip3/mapping.py
index <HASH>..<HASH> 100644
--- a/ariane_clip3/mapping.py
+++ b/ariane_clip3/mapping.py
@@ -2727,25 +2727,28 @@ class LinkService(object):
elif sep_id is not None and sep_id and tep_id is not None and tep_id:
params = SessionService.co... | [ACC-<I>] complex link finder | echinopsii_net.echinopsii.ariane.community.cli.python3 | train |
6bb350bdfc98a2709bb30f91c9128f2a816f3e72 | diff --git a/lib/wadl/cli.rb b/lib/wadl/cli.rb
index <HASH>..<HASH> 100644
--- a/lib/wadl/cli.rb
+++ b/lib/wadl/cli.rb
@@ -210,8 +210,8 @@ module WADL
return unless access_token && token_secret
if File.writable?(options[:config])
- config[:token] = access_token
- config[:token_secre... | lib/wadl/cli.rb (oauthorize): [FIX] No comment. Seriously. | blackwinter_wadl | train |
b6cd9fe7a2700b4c04d1a4c2febad76b2fedc6c9 | diff --git a/cli/cmd/script.go b/cli/cmd/script.go
index <HASH>..<HASH> 100644
--- a/cli/cmd/script.go
+++ b/cli/cmd/script.go
@@ -81,7 +81,7 @@ func (c *ServicedCli) cmdScriptRun(ctx *cli.Context) {
if svcID := ctx.String("service"); svcID != "" {
//verify service or translate to ID
var err error
- svc, _, er... | Use buffered channels with signal.Notify
Fixes CC-<I>. | control-center_serviced | train |
8b6fbbe42991f4a92fea3543d394d6365299b162 | diff --git a/packages/d3fc-webgl/src/series/area.js b/packages/d3fc-webgl/src/series/area.js
index <HASH>..<HASH> 100644
--- a/packages/d3fc-webgl/src/series/area.js
+++ b/packages/d3fc-webgl/src/series/area.js
@@ -4,7 +4,6 @@ import drawModes from '../program/drawModes';
import areaShader from '../shaders/area/shader... | refactor: use array-based rendering for area | d3fc_d3fc | train |
d33abd8262a428ec2c21db3abe1d9f642a825bb7 | diff --git a/videogrep.py b/videogrep.py
index <HASH>..<HASH> 100755
--- a/videogrep.py
+++ b/videogrep.py
@@ -36,9 +36,8 @@ def convert_timestamp(timestamp):
def clean_srt(srt):
"""Removes damaging line breaks and numbers from srt files and returns a dictionary"""
- f = open(srt, 'r')
- text = f.read()
-... | Use `with` statement in order to always close the file. | antiboredom_videogrep | train |
ec5f69ba2030deab43c775f4d216097852798168 | diff --git a/lib/discordrb/gateway.rb b/lib/discordrb/gateway.rb
index <HASH>..<HASH> 100644
--- a/lib/discordrb/gateway.rb
+++ b/lib/discordrb/gateway.rb
@@ -491,14 +491,19 @@ module Discordrb
if secure_uri?(uri)
ctx = OpenSSL::SSL::SSLContext.new
- ctx.ssl_version = 'SSLv23'
- ctx.veri... | Enable SSLSocket certificate verification, enforce TLS<I> (#<I>) | meew0_discordrb | train |
40ac8d362a2f9d0f076ea1ba4d4ccec0b8ee274a | diff --git a/tornado/httpclient.py b/tornado/httpclient.py
index <HASH>..<HASH> 100644
--- a/tornado/httpclient.py
+++ b/tornado/httpclient.py
@@ -438,7 +438,7 @@ def _curl_header_callback(headers, header_line):
return
if header_line == "\r\n":
return
- parts = header_line.split(":")
+ part... | Fix header parsing in httpclient for headers whose value contains ':' | tornadoweb_tornado | train |
08458f8637528b71beed573c1f13e36d15c4d18a | diff --git a/sos/plugins/smartcard.py b/sos/plugins/smartcard.py
index <HASH>..<HASH> 100644
--- a/sos/plugins/smartcard.py
+++ b/sos/plugins/smartcard.py
@@ -33,7 +33,6 @@ class Smartcard(Plugin, RedHatPlugin):
"/etc/reader.conf.d/",
"/etc/pam_pkcs11/"])
self.add_cmd_output([
- ... | [smartcard] Stop collecting pkcs<I>_inspect debug
The tool always requires PIN to be entered manually. That contradicts the aim
of sosreport to collect data as automatically as possible.
Once smartcar community allows providing the PIN e.g. via an env.variable,
we can add the command back.
Resolves: #<I> | sosreport_sos | train |
2e8bcf8ba48ea94e30a362e1a57e5e3de8dbd2d0 | diff --git a/torchvision/ops/boxes.py b/torchvision/ops/boxes.py
index <HASH>..<HASH> 100644
--- a/torchvision/ops/boxes.py
+++ b/torchvision/ops/boxes.py
@@ -24,7 +24,7 @@ def nms(boxes, scores, iou_threshold):
scores for each one of the boxes
iou_threshold : float
discards all overlapping
- ... | Fix documentation for NMS (#<I>) | pytorch_vision | train |
80b44dc41a04a667fe08f924cc7cc677390326b9 | diff --git a/simpleclient_hotspot/src/main/java/io/prometheus/client/hotspot/VersionInfoExports.java b/simpleclient_hotspot/src/main/java/io/prometheus/client/hotspot/VersionInfoExports.java
index <HASH>..<HASH> 100644
--- a/simpleclient_hotspot/src/main/java/io/prometheus/client/hotspot/VersionInfoExports.java
+++ b/s... | Adding info for the java runtime name (#<I>) | prometheus_client_java | train |
55852bd7800f8ce04cd73830d70727fd9d3f1aa3 | diff --git a/content/repo/sql/db/db.go b/content/repo/sql/db/db.go
index <HASH>..<HASH> 100644
--- a/content/repo/sql/db/db.go
+++ b/content/repo/sql/db/db.go
@@ -3,6 +3,9 @@ package db
import (
"database/sql"
"fmt"
+ "net/url"
+ "os"
+ "path/filepath"
"strings"
"github.com/jmoiron/sqlx"
@@ -26,13 +29,20 @@ ... | Create the sqlite3 db location if it does not exist
Related to #<I> | urandom_readeef | train |
ab7f9988622842c0547b1ad625ba8a6745991963 | diff --git a/helper/communicator/config.go b/helper/communicator/config.go
index <HASH>..<HASH> 100644
--- a/helper/communicator/config.go
+++ b/helper/communicator/config.go
@@ -62,16 +62,13 @@ type Config struct {
// config for connecting to the instance created over SSH using the private key
// or password.
func ... | SSHConfigFunc: use struct fields instead of copying them locally | hashicorp_packer | train |
971bf9620dda08f44437d4dcafea30f736c514c3 | diff --git a/dht.go b/dht.go
index <HASH>..<HASH> 100644
--- a/dht.go
+++ b/dht.go
@@ -12,9 +12,10 @@ import (
"math/rand"
"net"
"os"
- "sync"
"time"
+ "bitbucket.org/anacrolix/sync"
+
"bitbucket.org/anacrolix/go.torrent/iplist"
"bitbucket.org/anacrolix/go.torrent/logonce"
@@ -22,10 +23,16 @@ import (
... | dht: Store transactions by key, and fix partial deadlock | anacrolix_dht | train |
e734a919a81b9bda551a93e2f180060222ced145 | diff --git a/tmuxp/exc.py b/tmuxp/exc.py
index <HASH>..<HASH> 100644
--- a/tmuxp/exc.py
+++ b/tmuxp/exc.py
@@ -41,7 +41,7 @@ class BeforeLoadScriptNotExists(OSError):
class BeforeLoadScriptError(Exception):
"""Exception replacing :py:class:`subprocess.CalledProcessError` for
- :meth:`util.run_before_script`.... | docs: Fix link to run_before_script | tmux-python_tmuxp | train |
014b87f00adde66e73d50f8aa31ab423de99727d | diff --git a/goatools/gosubdag/godag_rcnt_init.py b/goatools/gosubdag/godag_rcnt_init.py
index <HASH>..<HASH> 100644
--- a/goatools/gosubdag/godag_rcnt_init.py
+++ b/goatools/gosubdag/godag_rcnt_init.py
@@ -2,11 +2,12 @@
from __future__ import print_function
-__copyright__ = "Copyright (C) 2016-2018, DV Klopfenste... | Parent terms (all upper) now can load user-specified subset of relationships.
<URL> | tanghaibao_goatools | train |
c26f2fe438b69f8ba48c76cf046b7296b9ade747 | diff --git a/src/Stevebauman/Maintenance/Controllers/Inventory/NoteController.php b/src/Stevebauman/Maintenance/Controllers/Inventory/NoteController.php
index <HASH>..<HASH> 100644
--- a/src/Stevebauman/Maintenance/Controllers/Inventory/NoteController.php
+++ b/src/Stevebauman/Maintenance/Controllers/Inventory/NoteCont... | Moving towards HTML tables for displaying profiles | stevebauman_maintenance | train |
2b422fbc7589add5dd4030658e68b1def2526b06 | diff --git a/sos/hosts.py b/sos/hosts.py
index <HASH>..<HASH> 100755
--- a/sos/hosts.py
+++ b/sos/hosts.py
@@ -498,8 +498,6 @@ class Host:
raise ValueError('No hosts definition for local host {}'.format(LOCAL))
if REMOTE not in env.sos_dict['CONFIG']['hosts']:
raise ValueE... | Test for existence of key address only for remote hosts | vatlab_SoS | train |
381310043852a9213f1abb62f5f0a7046d806286 | diff --git a/src/socket-to-conn.js b/src/socket-to-conn.js
index <HASH>..<HASH> 100644
--- a/src/socket-to-conn.js
+++ b/src/socket-to-conn.js
@@ -78,7 +78,10 @@ module.exports = (socket, options) => {
resolve()
}, CLOSE_TIMEOUT)
- socket.once('close', () => clearTimeout(timeout))
+ ... | fix: hanging close promise (#<I>) | libp2p_js-libp2p-tcp | train |
f78c0915e5c403c925e48c714fd1fd671a4c35f0 | diff --git a/test/lint.js b/test/lint.js
index <HASH>..<HASH> 100644
--- a/test/lint.js
+++ b/test/lint.js
@@ -3,7 +3,8 @@ var blint = require("blint");
["mode", "lib", "addon", "keymap"].forEach(function(dir) {
blint.checkDir(dir, {
browser: true,
- allowedGlobals: ["CodeMirror", "define", "test", "require... | Lint addons and modes with ecmaVersion 5 | codemirror_CodeMirror | train |
a53e56edcf11d0659381a48fab4c45cf2b737ace | diff --git a/cloudshell/networking/operations/configuration_operations.py b/cloudshell/networking/operations/configuration_operations.py
index <HASH>..<HASH> 100644
--- a/cloudshell/networking/operations/configuration_operations.py
+++ b/cloudshell/networking/operations/configuration_operations.py
@@ -78,7 +78,15 @@ cl... | add support for case when Backup Location doesn't have scheme(ftp/tftp) | QualiSystems_cloudshell-networking | train |
f916e5dd8743a898da667d51d7a0b96f9c4eaff5 | diff --git a/hazelcast/src/test/java/com/hazelcast/map/NearCacheLocalInvalidationTest.java b/hazelcast/src/test/java/com/hazelcast/map/NearCacheLocalInvalidationTest.java
index <HASH>..<HASH> 100644
--- a/hazelcast/src/test/java/com/hazelcast/map/NearCacheLocalInvalidationTest.java
+++ b/hazelcast/src/test/java/com/haz... | fixes issue #<I> cleanup cont. | hazelcast_hazelcast | train |
604fb2dcd66612cc59ce5dace749e7930d329710 | diff --git a/lib/ffmpeg/io_monkey.rb b/lib/ffmpeg/io_monkey.rb
index <HASH>..<HASH> 100644
--- a/lib/ffmpeg/io_monkey.rb
+++ b/lib/ffmpeg/io_monkey.rb
@@ -1,17 +1,5 @@
-if RUBY_VERSION =~ /1\.8/
- # Useful when `timeout.rb`, which, on M.R.I 1.8, relies on green threads, does not work consistently.
- begin
- require 's... | My own implementation of io timeout hack.
- greatly simplified
- avoid spawning a new thread for each line of output
- should therefore use less cpu and memory
- removed ruby <I> support hacks | streamio_streamio-ffmpeg | train |
fbbe78477c557509227d65a8d5e9dff89c0b7b96 | diff --git a/test/dummy/app/models/article.rb b/test/dummy/app/models/article.rb
index <HASH>..<HASH> 100644
--- a/test/dummy/app/models/article.rb
+++ b/test/dummy/app/models/article.rb
@@ -1,5 +1,5 @@
class Article < ActiveRecord::Base
- belongs_to :admin_user
+ belongs_to :admin_user, optional: true
has_many :... | Run test app under default configuration for active rails version | varvet_godmin | train |
e3c9b629a8c496185687f560a400b3c9e07e2496 | diff --git a/android/src/main/java/com/polidea/reactnativeble/BleModule.java b/android/src/main/java/com/polidea/reactnativeble/BleModule.java
index <HASH>..<HASH> 100644
--- a/android/src/main/java/com/polidea/reactnativeble/BleModule.java
+++ b/android/src/main/java/com/polidea/reactnativeble/BleModule.java
@@ -658,6... | Add verbose logging for characteristic writes, reads and notification displaying raw value. | Polidea_react-native-ble-plx | train |
33f5255c8de6e06d5850caa50aaa22ca92d107d5 | diff --git a/cmd/notary-server/bootstrap.go b/cmd/notary-server/bootstrap.go
index <HASH>..<HASH> 100644
--- a/cmd/notary-server/bootstrap.go
+++ b/cmd/notary-server/bootstrap.go
@@ -9,6 +9,9 @@ import (
func bootstrap(ctx context.Context) error {
s := ctx.Value("metaStore")
+ if s == nil {
+ return fmt.Errorf("n... | need a passthrough bootstrap on TufMetaStore | theupdateframework_notary | train |
7678c5bc9f0ee1a5bde3d8d847da1d734a6a1386 | diff --git a/lib/tern.js b/lib/tern.js
index <HASH>..<HASH> 100644
--- a/lib/tern.js
+++ b/lib/tern.js
@@ -480,8 +480,8 @@
rec.doc = val.doc || type && type.doc;
if (query.urls)
rec.url = val.url || type && type.url;
- if (query.origins && type)
- rec.origin = type.origin;... | Also use AVal origins when attaching origins to completions
Also return origins for type and definition queries | ternjs_tern | train |
ceddae474252a67bfbf1d0e5c03c93978db5cb4a | diff --git a/config/webpack/base.config.js b/config/webpack/base.config.js
index <HASH>..<HASH> 100644
--- a/config/webpack/base.config.js
+++ b/config/webpack/base.config.js
@@ -2,32 +2,12 @@ const isProd = cubic.config.local.environment !== 'development'
const webpack = require('webpack')
const fs = require('fs')
... | refactor: Remove old timeplugin fix for HMR | cubic-js_cubic | train |
dd51fd4f2fd2b121acfb69f2f01a2612286842e1 | diff --git a/src/Network.php b/src/Network.php
index <HASH>..<HASH> 100644
--- a/src/Network.php
+++ b/src/Network.php
@@ -236,7 +236,7 @@ class Network
}
$start += $limit;
- } while(!$data["TotalMatches"] || count($items) < $data["TotalMatches"]);
+ } while($data["TotalMatches... | Correction to <I>c<I>f<I>fd<I>aa<I>dc<I>f5feda<I>c0af<I>b<I>
Inverted logic caused an infinite loop when fetching from empty playlists | duncan3dc_sonos | train |
c54f3d245ca606ed43ef833d6b1f05dcbbff88fc | diff --git a/snapshot/lib/snapshot/runner.rb b/snapshot/lib/snapshot/runner.rb
index <HASH>..<HASH> 100644
--- a/snapshot/lib/snapshot/runner.rb
+++ b/snapshot/lib/snapshot/runner.rb
@@ -118,7 +118,7 @@ module Snapshot
unless content.include?(current_version)
UI.error "Your '#{path}' is outdated, pl... | Update update instructions of snapshot (#<I>) | fastlane_fastlane | train |
a90e886101deb6c16f210f8c0138425781ec5bd3 | diff --git a/src/includes/admin/class-papi-admin.php b/src/includes/admin/class-papi-admin.php
index <HASH>..<HASH> 100644
--- a/src/includes/admin/class-papi-admin.php
+++ b/src/includes/admin/class-papi-admin.php
@@ -252,7 +252,7 @@ final class Papi_Admin {
$view = new Papi_Admin_View;
$view->render( $page_vi... | Changed from h2 to h1 | wp-papi_papi | train |
14d3af25ebc06da561e72e8a624919b7f8513f7c | diff --git a/tests/git_test.py b/tests/git_test.py
index <HASH>..<HASH> 100644
--- a/tests/git_test.py
+++ b/tests/git_test.py
@@ -38,6 +38,17 @@ def test_get_root_bare_worktree(tmpdir):
assert git.get_root() == os.path.abspath('.')
+def test_get_root_worktree_in_git(tmpdir):
+ src = tmpdir.join('src').... | add test for worktree inside of .git dir | pre-commit_pre-commit | train |
6c2a306ec67fe1a2bd7bc2e248cf46ab09638a17 | diff --git a/compiler/grammar.py b/compiler/grammar.py
index <HASH>..<HASH> 100644
--- a/compiler/grammar.py
+++ b/compiler/grammar.py
@@ -214,6 +214,9 @@ component_scope = (Literal("{").suppress() + Group(ZeroOrMore(scope_declaration)
component_declaration << (component_type + component_scope)
component_declaration.... | added textual replacement for unary % operator, <I>% is translated to parent.<property-name> * (<I> / <I>) | pureqml_qmlcore | train |
18c672f194a89942caa632090123c9529f56db91 | diff --git a/lib/fog/dynect/requests/dns/post_record.rb b/lib/fog/dynect/requests/dns/post_record.rb
index <HASH>..<HASH> 100644
--- a/lib/fog/dynect/requests/dns/post_record.rb
+++ b/lib/fog/dynect/requests/dns/post_record.rb
@@ -27,10 +27,7 @@ module Fog
def post_record(type, zone, fqdn, rdata, options = {})... | Tidy up a bit. | fog_fog | train |
09b1520f5c73b5649ed43fe5ae4afb95cf80ea3f | diff --git a/src/basic/lines.js b/src/basic/lines.js
index <HASH>..<HASH> 100644
--- a/src/basic/lines.js
+++ b/src/basic/lines.js
@@ -136,7 +136,7 @@ Line.getStyle = function(c3ss, id, ord) {
base: 'lines',
blend: getBlending(c3ss),
dash: getDashed(c3ss),
- blend_order: isFinite(ord) ? ord + 1 : 1
+ ... | Change isInfinity for typeof, wrong language :P | CartoDB_tangram-cartocss | train |
72a35e3e24650fcea4009a958cdec075ee2fdb29 | diff --git a/src/main/java/org/jboss/netty/channel/socket/nio/NioDatagramWorker.java b/src/main/java/org/jboss/netty/channel/socket/nio/NioDatagramWorker.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/jboss/netty/channel/socket/nio/NioDatagramWorker.java
+++ b/src/main/java/org/jboss/netty/channel/socket/nio/... | A workaround for <I>% CPU consumption issue in NIO selectors, suggested by David M. Lloyd | netty_netty | train |
faf69c9c26ba9dbefcac22c6e1aa615550a2fcf3 | diff --git a/pyana/examples/gp_rdiff.py b/pyana/examples/gp_rdiff.py
index <HASH>..<HASH> 100644
--- a/pyana/examples/gp_rdiff.py
+++ b/pyana/examples/gp_rdiff.py
@@ -3,7 +3,7 @@ import numpy as np
from fnmatch import fnmatch
from collections import OrderedDict
from .utils import getWorkDirs, checkSymLink
-from .uti... | gp_rdiff: calc excess yields + errors | tschaume_ccsgp_get_started | train |
83a89b25df7226bdf13db9815cb0016d847a14f2 | diff --git a/lib/assert/view/terminal.rb b/lib/assert/view/terminal.rb
index <HASH>..<HASH> 100644
--- a/lib/assert/view/terminal.rb
+++ b/lib/assert/view/terminal.rb
@@ -45,9 +45,15 @@ module Assert::View
end
def detailed_results
- details = self.suite.ordered_results.reverse.collect do |result|
- ... | terminal view shows any test output along with the results details | redding_assert | train |
5096a9b0dc4fc3fdca6f3ff21b4d10201e96add5 | diff --git a/src/Accompanist.php b/src/Accompanist.php
index <HASH>..<HASH> 100644
--- a/src/Accompanist.php
+++ b/src/Accompanist.php
@@ -1,6 +1,6 @@
<?php
-namespace Composerer;
+namespace Accompanist;
use JsonSerializable; | Fix namespace to Accompanist | smmccabe_accompanist | train |
030e0e87c58324618647e43fe0392fdc75675717 | 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
@@ -43,6 +43,7 @@ VCR.configure do |c|
c.hook_into :webmock # or :fakeweb
c.configure_rspec_metadata!
c.filter_sensitive_data('<SA_PASSWORD>') { ENV["SERMONAUDIO_PASSWORD"] }
+... | Filter out any references to an API key
SermonAudio has recently added a JSON API that does not behave in quite
the same way as the SOAP API. To prepare some extra goodies for the next
version of the gem, we don't want anyone's API key leaking into the
recorded cassettes | mdespuits_sermonaudio | train |
04600e1b273cb60a6657efe0453ae4cea33d490c | diff --git a/Tests/DaftObject/TypeParanoiaTest.php b/Tests/DaftObject/TypeParanoiaTest.php
index <HASH>..<HASH> 100644
--- a/Tests/DaftObject/TypeParanoiaTest.php
+++ b/Tests/DaftObject/TypeParanoiaTest.php
@@ -14,44 +14,6 @@ use SignpostMarv\DaftObject\TypeParanoia;
class TypeParanoiaTest extends TestCase
{
- p... | working on deprecating code that was introduced solely to suppress infection mutation errors | SignpostMarv_daft-object | train |
bc3434c084e405769417a08195700cd6be02211f | diff --git a/staging/src/k8s.io/apiextensions-apiserver/test/integration/registration_test.go b/staging/src/k8s.io/apiextensions-apiserver/test/integration/registration_test.go
index <HASH>..<HASH> 100644
--- a/staging/src/k8s.io/apiextensions-apiserver/test/integration/registration_test.go
+++ b/staging/src/k8s.io/api... | change the default storage location to avoid double prefixing | kubernetes_kubernetes | train |
d44b0759061051bbb305569a6676d84d681e5355 | diff --git a/SixFlags/SixFlagsBase.js b/SixFlags/SixFlagsBase.js
index <HASH>..<HASH> 100644
--- a/SixFlags/SixFlagsBase.js
+++ b/SixFlags/SixFlagsBase.js
@@ -123,7 +123,7 @@ function SixFlagsBase(config) {
rideTimes.push({
id: ride.rideId,
name: rideNames[ride.rideId] ? rideN... | SixFlags API returns wait times as strings, parse them into ints | cubehouse_themeparks | train |
3573eb06655758cff43b9c7773b646364d258de3 | diff --git a/code/app/be/objectify/deadbolt/java/ExecutionContextProvider.java b/code/app/be/objectify/deadbolt/java/ExecutionContextProvider.java
index <HASH>..<HASH> 100644
--- a/code/app/be/objectify/deadbolt/java/ExecutionContextProvider.java
+++ b/code/app/be/objectify/deadbolt/java/ExecutionContextProvider.java
@... | Changed logging level from info to debug | schaloner_deadbolt-2-java | train |
f4f591f4fc44deba3d31c44cbc40d91144395cb0 | diff --git a/impala/hiveserver2.py b/impala/hiveserver2.py
index <HASH>..<HASH> 100644
--- a/impala/hiveserver2.py
+++ b/impala/hiveserver2.py
@@ -248,7 +248,10 @@ class HiveServer2Cursor(Cursor):
# multiple rows into a buffer if arraysize hasn't been set. (otherwise, we'd
# get an unbuffered impl be... | Bump fetch size to <I> (from <I>) (#<I>)
This can lead to much better performance if the network has delay
and result spooling is enabled on Impala side. <I> was chosen
because impala-shell uses the same value by default.
Note that this doesn't affect "arraysize", which is the number of
rows returned by fetchman... | cloudera_impyla | train |
2d4098d41bd35f31f9fabd710060f3ad45d8b7fd | diff --git a/web/concrete/core/models/permission/assignments/block.php b/web/concrete/core/models/permission/assignments/block.php
index <HASH>..<HASH> 100644
--- a/web/concrete/core/models/permission/assignments/block.php
+++ b/web/concrete/core/models/permission/assignments/block.php
@@ -91,7 +91,7 @@ class Concrete5... | urlencode area in block permissions to fix setting permissions on blocks in areas with spaces, layouts
Former-commit-id: <I>c<I>d<I>e4fde<I>a<I>d2ad5b1d | concrete5_concrete5 | train |
888a4636f5035acea129f525d3a434bb376e7a9a | diff --git a/library/src/main/java/com/mikepenz/materialdrawer/AccountHeaderBuilder.java b/library/src/main/java/com/mikepenz/materialdrawer/AccountHeaderBuilder.java
index <HASH>..<HASH> 100644
--- a/library/src/main/java/com/mikepenz/materialdrawer/AccountHeaderBuilder.java
+++ b/library/src/main/java/com/mikepenz/ma... | * if we only display the small profile images we do not have to set the currentProfile to the third profile
* FIX #<I> | mikepenz_MaterialDrawer | train |
7401d87159aa1be7735021675ab461d501d5e949 | diff --git a/TODO b/TODO
index <HASH>..<HASH> 100644
--- a/TODO
+++ b/TODO
@@ -13,7 +13,7 @@ Add Eclipse support to DefaultReporter (2).
Mock objects
------------
-Add throwOn() method for generating exceptions (4).
+Add throwOn() method for generating exceptions (4/6).
Parser
------
diff --git a/mock_objects.p... | Added PHP4 patches for new mock code | simpletest_simpletest | train |
766a5ee876487608c72fcc97168b73a67afd2435 | diff --git a/autopep8.py b/autopep8.py
index <HASH>..<HASH> 100755
--- a/autopep8.py
+++ b/autopep8.py
@@ -1741,6 +1741,13 @@ def filter_results(source, results, aggressive=False):
elif issue_id in ['e501', 'w191']:
continue
+ # Do not modify doctests and multiline strings at ... | Ignore trailing whitespace in multiline strings
One exception is if the multiline string is a non-doctest docstring. In
that case we remove the trailing whitespace. We also remove the trailing
whitespace if we are in aggressive mode. | hhatto_autopep8 | train |
0d655426a8c930f2520ae3907c6cf6fd13905ce2 | diff --git a/src/lib/Format.js b/src/lib/Format.js
index <HASH>..<HASH> 100644
--- a/src/lib/Format.js
+++ b/src/lib/Format.js
@@ -41,21 +41,29 @@ exports.niceNumDecimals = function niceNumDecimals(input) {
// Input a date object and output a formatted date object for display purposes
// EX: { time: 11:15 AM, date: 1... | Handle errors in History more gracefully | stellarterm_stellarterm | train |
736fdb1ed460a9665f7125ef3e60cb427eb65fa1 | diff --git a/salt/master.py b/salt/master.py
index <HASH>..<HASH> 100644
--- a/salt/master.py
+++ b/salt/master.py
@@ -1437,7 +1437,7 @@ class ClearFuncs(object):
'to enable the ConCache with \'con_cache: True\' '
'in the masters configuration file.')
- ... | also deny minion if limit is reached, not just below | saltstack_salt | train |
10661867657203f4deea060ab734c82bcd9c328b | diff --git a/src/java/com/samskivert/jdbc/depot/DepotRepository.java b/src/java/com/samskivert/jdbc/depot/DepotRepository.java
index <HASH>..<HASH> 100644
--- a/src/java/com/samskivert/jdbc/depot/DepotRepository.java
+++ b/src/java/com/samskivert/jdbc/depot/DepotRepository.java
@@ -211,8 +211,9 @@ public abstract class... | Use the SelectClause to obtain our types so that the main record class is
always properly added. Also made SelectClause freak out if it's provided with
bogus clauses.
git-svn-id: <URL> | samskivert_samskivert | train |
adc1969d6c9eb006e1cbf31ea9d0b0e237e11760 | diff --git a/src/main/java/org/jboss/netty/channel/DefaultChannelConfig.java b/src/main/java/org/jboss/netty/channel/DefaultChannelConfig.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/jboss/netty/channel/DefaultChannelConfig.java
+++ b/src/main/java/org/jboss/netty/channel/DefaultChannelConfig.java
@@ -29,6 ... | Fixed issue: NETTY-<I> Connection timeout does not work with the NIO socket transport.
* DefaultChannelConfig.setOption() does not handle connectTimeoutMillis | netty_netty | train |
64a540ccc4106bf020e21fe3ecf0126b04fc2e09 | diff --git a/source/application/models/oxarticlelist.php b/source/application/models/oxarticlelist.php
index <HASH>..<HASH> 100644
--- a/source/application/models/oxarticlelist.php
+++ b/source/application/models/oxarticlelist.php
@@ -839,12 +839,7 @@ class oxArticleList extends oxList
*/
public function ren... | ESDEV-<I> Remove edition based code from oxArticleList | OXID-eSales_oxideshop_ce | train |
7ca842664896cf23979b5e9a23ff21a021c57af8 | diff --git a/demo/Demo.react.js b/demo/Demo.react.js
index <HASH>..<HASH> 100644
--- a/demo/Demo.react.js
+++ b/demo/Demo.react.js
@@ -53,11 +53,13 @@ class Demo extends Component {
<hr/>
<h2>Loading dialog</h2>
- <button onClick={() => {this.setState({showLoadingDialo... | Added show prop to LoadingDialog | Grasia_grasia-dash-components | train |
dc4be0a5dd13f020ff05b1ed2a5dfd9bdc28282e | diff --git a/Xlib/protocol/display.py b/Xlib/protocol/display.py
index <HASH>..<HASH> 100644
--- a/Xlib/protocol/display.py
+++ b/Xlib/protocol/display.py
@@ -1,4 +1,4 @@
-# $Id: display.py,v 1.23 2006-07-19 21:51:03 mggrant Exp $
+# $Id: display.py,v 1.24 2006-07-19 23:05:52 mggrant Exp $
# -*- coding: latin-1 -*-
#... | Fix for <I> - flushing was blocking and waiting for a read operation | python-xlib_python-xlib | train |
94df8c4cfb931b4617b616e874f48a4d043bd559 | diff --git a/postgres/returning_test.go b/postgres/returning_test.go
index <HASH>..<HASH> 100644
--- a/postgres/returning_test.go
+++ b/postgres/returning_test.go
@@ -5,6 +5,12 @@ import (
"testing"
)
+type user struct {
+ ID int64 `db:"id"`
+ Name string `db:"name"`
+ Password string `db:"password"`
+}... | Added another test case for postgres returning inserts | aodin_aspect | train |
b6937ebaa80e95a1f5edc89011d2119c0ab6a4cf | diff --git a/salt/utils/process.py b/salt/utils/process.py
index <HASH>..<HASH> 100644
--- a/salt/utils/process.py
+++ b/salt/utils/process.py
@@ -378,19 +378,12 @@ class ProcessManager(object):
try:
# in case someone died while we were waiting...
self.check_children()
-
-... | Don't use os.wait() on subprocesses managed by `multiprocessing`.
See #<I> for details. | saltstack_salt | train |
a892459f5ec05116186ee77e6755c92cc3493bdf | diff --git a/r3/vector.go b/r3/vector.go
index <HASH>..<HASH> 100644
--- a/r3/vector.go
+++ b/r3/vector.go
@@ -21,7 +21,7 @@ func (v Vector) ApproxEqual(ov Vector) bool {
func (v Vector) String() string { return fmt.Sprintf("(%v, %v, %v)", v.X, v.Y, v.Z) }
// Norm returns the vector's norm.
-func (v Vector) Norm() ... | Add Euclidean distance between r3 vectors. | golang_geo | train |
d663e7a8a32d6c24a0d378280404b0d29e1d5df7 | diff --git a/examples/aws.go b/examples/aws.go
index <HASH>..<HASH> 100644
--- a/examples/aws.go
+++ b/examples/aws.go
@@ -73,7 +73,7 @@ func getCluster(name string) *cluster.Cluster {
MinCount: 1,
Image: "ami-835b4efa",
Size: "t2.medium",
- BootstrapScript: "1.7.0_ubuntu_1... | Fix bootstrap script name to existing one | kubicorn_kubicorn | train |
7228bcee6128e1edfa22e4eeef3834be7a1de213 | diff --git a/atomic_reactor/plugins/pre_koji_parent.py b/atomic_reactor/plugins/pre_koji_parent.py
index <HASH>..<HASH> 100644
--- a/atomic_reactor/plugins/pre_koji_parent.py
+++ b/atomic_reactor/plugins/pre_koji_parent.py
@@ -1,5 +1,5 @@
"""
-Copyright (c) 2017 Red Hat, Inc
+Copyright (c) 2017, 2019 Red Hat, Inc
All... | Fix typo in class docstring for KojiParentPlugin | projectatomic_atomic-reactor | train |
30c6d6360f04156b36c48b84122e8660ad24ea5b | diff --git a/src/client/index.js b/src/client/index.js
index <HASH>..<HASH> 100644
--- a/src/client/index.js
+++ b/src/client/index.js
@@ -236,7 +236,7 @@ const _useSessionHook = (session) => {
// Client side method
export const signIn = async (provider, args = {}, authorizationParams = {}) => {
const baseUrl = _a... | fix: send /authorize params through url | iaincollins_next-auth | train |
8fc7e339dcc443aeec74e62dbf2eec583caef40f | diff --git a/pylint_django/transforms/transforms/django_views_generic_base.py b/pylint_django/transforms/transforms/django_views_generic_base.py
index <HASH>..<HASH> 100644
--- a/pylint_django/transforms/transforms/django_views_generic_base.py
+++ b/pylint_django/transforms/transforms/django_views_generic_base.py
@@ -1... | Fix view.args and view.kwargs types
Args should be a tuple and kwargs a dict so that Pylint gets the types correct. | PyCQA_pylint-django | train |
5ae1852b83e82a33c3e01dd8e30405947ab52258 | diff --git a/lib/Thelia/Core/Event/TheliaEvents.php b/lib/Thelia/Core/Event/TheliaEvents.php
index <HASH>..<HASH> 100755
--- a/lib/Thelia/Core/Event/TheliaEvents.php
+++ b/lib/Thelia/Core/Event/TheliaEvents.php
@@ -64,7 +64,7 @@ final class TheliaEvents
/**
* sent on customer account update
*/
- con... | choose UPDATE word for name actions | thelia_core | train |
090abc006ad6d12779f1499662423421ffb0e07a | diff --git a/lib/metadata/MIQExtract/MIQExtract.rb b/lib/metadata/MIQExtract/MIQExtract.rb
index <HASH>..<HASH> 100644
--- a/lib/metadata/MIQExtract/MIQExtract.rb
+++ b/lib/metadata/MIQExtract/MIQExtract.rb
@@ -126,7 +126,7 @@ class MIQExtract
def extract(category, &blk)
xml = nil
- Array.wrap(category).ea... | add presence check to handle the nil discrepancy
thanks Keenan | ManageIQ_manageiq-smartstate | train |
c503654ec14c13f7b9e5505b3abf1a6cbd007509 | diff --git a/bin/parser/train.py b/bin/parser/train.py
index <HASH>..<HASH> 100755
--- a/bin/parser/train.py
+++ b/bin/parser/train.py
@@ -148,8 +148,9 @@ def train(Language, gold_tuples, model_dir, n_iter=15, feat_set=u'basic',
nlp.end_training(model_dir)
print('done')
+
def evaluate(Language, gold_tuples... | * Update bin/parser/train for printing output. | explosion_spaCy | train |
29729af7967248fe1db968a5a212d56f0551291c | diff --git a/packages/ra-ui-materialui/src/input/AutocompleteArrayInput.js b/packages/ra-ui-materialui/src/input/AutocompleteArrayInput.js
index <HASH>..<HASH> 100644
--- a/packages/ra-ui-materialui/src/input/AutocompleteArrayInput.js
+++ b/packages/ra-ui-materialui/src/input/AutocompleteArrayInput.js
@@ -111,6 +111,8 ... | Added choicesMaxHeight property to AutocompleteArrayInput used to limit the size of the choices container | marmelab_react-admin | train |
82fd98c61236556a28a48ce844bf65b4f338e0b8 | diff --git a/lib/escher.js b/lib/escher.js
index <HASH>..<HASH> 100644
--- a/lib/escher.js
+++ b/lib/escher.js
@@ -55,7 +55,7 @@ var Escher = function (signerConfigToMerge) {
function getHeader(headers, headerName) {
for (var i = 0, j = headers.length; i < j; i++) {
- if (headers[i][0] === he... | [SUITEDEV-<I>] detect missing host header | emartech_escher-js | train |
5e1b89c85b39f2a85d3eafb16bf570f17a6558c3 | diff --git a/wcomponents-test-lib/src/main/java/com/github/bordertech/wcomponents/test/selenium/WComponentSelenium.java b/wcomponents-test-lib/src/main/java/com/github/bordertech/wcomponents/test/selenium/WComponentSelenium.java
index <HASH>..<HASH> 100644
--- a/wcomponents-test-lib/src/main/java/com/github/bordertech/... | Increase maximum wait time for CI builds | BorderTech_wcomponents | train |
4fa62b9ce68251d2d5cc3704cb382a5171d6b382 | diff --git a/spec/examples/record/record_set_spec.rb b/spec/examples/record/record_set_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/examples/record/record_set_spec.rb
+++ b/spec/examples/record/record_set_spec.rb
@@ -186,7 +186,7 @@ describe Cequel::Record::RecordSet do
it 'should raise ArgumentError when call... | Cequel::Model reference slipped in | cequel_cequel | train |
af3130057220b079505eafdc8bbddf9ebd85658c | diff --git a/dplython/dplython.py b/dplython/dplython.py
index <HASH>..<HASH> 100644
--- a/dplython/dplython.py
+++ b/dplython/dplython.py
@@ -183,7 +183,7 @@ class Later(object):
self.todo = [lambda df: df]
else:
self.todo = [lambda df: df[self.name]]
- self._str = 'data["{0}"]'.format(name)
+ ... | renamed 'data' to 'X' in string representation of Laters | dodger487_dplython | train |
2921ed3d6eb1a067f427f3f702ad7c6e3a55ee42 | diff --git a/PyEntrezId/Conversion.py b/PyEntrezId/Conversion.py
index <HASH>..<HASH> 100644
--- a/PyEntrezId/Conversion.py
+++ b/PyEntrezId/Conversion.py
@@ -25,7 +25,7 @@ class Conversion(object):
server = "http://rest.genenames.org/fetch/hgnc_id/{0}".format(hgnc)
r = requests.get(server, headers={ ... | Add ability to convert EntrezId to UniProt ID | lwgray_pyEntrezId | train |
74a1838ff20508b60a62ccbc9a39ec444eb06fe9 | diff --git a/src/main/java/de/btobastian/javacord/entities/message/impl/ImplMessageAttachment.java b/src/main/java/de/btobastian/javacord/entities/message/impl/ImplMessageAttachment.java
index <HASH>..<HASH> 100644
--- a/src/main/java/de/btobastian/javacord/entities/message/impl/ImplMessageAttachment.java
+++ b/src/mai... | Implemented MessageAttachment (I thought I already did this) | Javacord_Javacord | train |
df866d218054b26c5e84857c0442ce45e15883fd | diff --git a/lib/websearchadminlib.py b/lib/websearchadminlib.py
index <HASH>..<HASH> 100644
--- a/lib/websearchadminlib.py
+++ b/lib/websearchadminlib.py
@@ -1778,10 +1778,10 @@ def perform_manage_external_collections(colID, ln, callback='yes', content='', c
colID = int(colID)
- subtitle = """<a name="11">... | Improved output messages in the "Configuration of related external
collections" part. | inveniosoftware_invenio-records | train |
1ca7f24137d5a46192348fe2d6fbe77db5e9c050 | diff --git a/storage/local/storage_test.go b/storage/local/storage_test.go
index <HASH>..<HASH> 100644
--- a/storage/local/storage_test.go
+++ b/storage/local/storage_test.go
@@ -2,7 +2,6 @@ package storage_ng
import (
"fmt"
- "math"
"math/rand"
"testing"
"testing/quick"
@@ -434,7 +433,7 @@ func verifyStorag... | Remove float diff tolerance altogether.
Change-Id: I9ea<I>a<I>d<I>fca<I>bb4b8a8b<I>d<I> | prometheus_prometheus | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.