hash stringlengths 40 40 | diff stringlengths 131 26.7k | message stringlengths 7 694 | project stringlengths 5 67 | split stringclasses 1
value | diff_languages stringlengths 2 24 |
|---|---|---|---|---|---|
5c43e0ad0231c88828694784d7f3e8d1e2bd38b2 | diff --git a/fundingmanager.go b/fundingmanager.go
index <HASH>..<HASH> 100644
--- a/fundingmanager.go
+++ b/fundingmanager.go
@@ -640,7 +640,7 @@ func (f *fundingManager) Start() error {
go func(dbChan *channeldb.OpenChannel) {
defer f.wg.Done()
- err = f.annAfterSixConfs(channel, shortChanID)
+ err =... | fundingmanager: fixes range-goroutine scoping bug
This commit fixes an issue in funding manager startup,
where a goroutine reads from a range value. The method in
question could cause a channel to be announced at the
wrong time.
This may have been a cause for certain channels having
phantom HTLCs before they had even... | lightningnetwork_lnd | train | go |
ec85408eeece3bc04d18b906beae5a60eab708a7 | diff --git a/pkg/resource/plugin/analyzer_plugin.go b/pkg/resource/plugin/analyzer_plugin.go
index <HASH>..<HASH> 100644
--- a/pkg/resource/plugin/analyzer_plugin.go
+++ b/pkg/resource/plugin/analyzer_plugin.go
@@ -118,7 +118,7 @@ func (a *analyzer) Analyze(
label := fmt.Sprintf("%s.Analyze(%s)", a.label(), t)
lo... | Don't throw away secrets in calls to Analyze | pulumi_pulumi | train | go |
1586630db0ae9453c727f9bf2ef4fe4b7b9a325d | diff --git a/src/middle/validators/base_validator.py b/src/middle/validators/base_validator.py
index <HASH>..<HASH> 100644
--- a/src/middle/validators/base_validator.py
+++ b/src/middle/validators/base_validator.py
@@ -3,8 +3,8 @@ import attr
@attr.s(slots=True, hash=True)
class BaseValidator:
- def __call__(sel... | wip; forgot that i would not call some method of a baseclass | vltr_middle | train | py |
6fcb32facc7988150b069a0372f1e248429deb95 | diff --git a/lib/payload_types/lib/payload_types/serializable.rb b/lib/payload_types/lib/payload_types/serializable.rb
index <HASH>..<HASH> 100644
--- a/lib/payload_types/lib/payload_types/serializable.rb
+++ b/lib/payload_types/lib/payload_types/serializable.rb
@@ -73,6 +73,7 @@ module RightScale
# true:: If bo... | Allow comparing serializable objects with any type | rightscale_right_link | train | rb |
1abf0120fcf30b0ba5c07b4f7265187eea47f040 | diff --git a/flynn/decoder.py b/flynn/decoder.py
index <HASH>..<HASH> 100644
--- a/flynn/decoder.py
+++ b/flynn/decoder.py
@@ -119,10 +119,10 @@ class Decoder(object):
return struct.unpack("!f", struct.pack("!I", valu | 0x7f800000))[0]
def decode_single_float(self, mtype, ainfo):
- return self.unpack(">f", self... | Fixed typo in float unpacking routines | fritz0705_flynn | train | py |
f61b8757b540580ab1aed16de503f05ce300d940 | diff --git a/src/helpers.php b/src/helpers.php
index <HASH>..<HASH> 100644
--- a/src/helpers.php
+++ b/src/helpers.php
@@ -404,7 +404,7 @@ function debugHeader($message) {
$message = (string) $message;
static $i = 0;
- header('X-Debug-'.++$i.': '.$message);
+ header('X-Debug-'.++$i.': '.str_replac... | rosasurfer/debugHeader() could not handle line breaks | rosasurfer_ministruts | train | php |
6de04211963ac3fda712330deb90513c5f95e743 | diff --git a/lib/gds_api/panopticon/registerer.rb b/lib/gds_api/panopticon/registerer.rb
index <HASH>..<HASH> 100644
--- a/lib/gds_api/panopticon/registerer.rb
+++ b/lib/gds_api/panopticon/registerer.rb
@@ -17,6 +17,7 @@ module GdsApi
owning_app: owning_app,
kind: kind,
name: record.tit... | Add description as a mandatory field.
As applications port to the new adapters, they will need to include
descriptions. While this is a functional change and as such would
normally require bumping the minor (or even major) version, this is
actually a patch as the behaviour in the <I> release was incorrect.
We'll prob... | alphagov_gds-api-adapters | train | rb,rb |
a39231f952f34ef0eade5f1126b7d98e98308a83 | diff --git a/code/controllers/AssetAdmin.php b/code/controllers/AssetAdmin.php
index <HASH>..<HASH> 100644
--- a/code/controllers/AssetAdmin.php
+++ b/code/controllers/AssetAdmin.php
@@ -178,7 +178,7 @@ JS
$syncButton = new LiteralField(
'SyncButton',
sprintf(
- '<a class="ss-ui-button ss-ui-action cm... | MINOR: add icon to ajax button in AssetAdmin | silverstripe_silverstripe-siteconfig | train | php |
13611a266fa9819b1dcadf1acf881270d0369a6e | diff --git a/presto-main/src/main/java/com/facebook/presto/execution/SqlQueryManager.java b/presto-main/src/main/java/com/facebook/presto/execution/SqlQueryManager.java
index <HASH>..<HASH> 100644
--- a/presto-main/src/main/java/com/facebook/presto/execution/SqlQueryManager.java
+++ b/presto-main/src/main/java/com/face... | Fix resource leak in query queue
Queries can transition to the CANCELED state before they are started. In
particular, this happens if a user cancels their query while it is
queued. In this case, the state change listener is never called, because
the query is already finished, and this leaks one slot in the query
queue... | prestodb_presto | train | java |
584348dba0d93c231093edb92eb93aaf4ad979f0 | diff --git a/pyblish_lite/window.py b/pyblish_lite/window.py
index <HASH>..<HASH> 100644
--- a/pyblish_lite/window.py
+++ b/pyblish_lite/window.py
@@ -1071,7 +1071,7 @@ class Window(QtWidgets.QDialog):
def paintEvent(self, event):
if Qt.__qt_version__.startswith("5") and os.name == "nt":
# On... | get the windowHandle from window, in a wrapped context windowHandle can return None | pyblish_pyblish-lite | train | py |
ec02bc89a66546d04b8eaeb232f5d295e231354c | diff --git a/blockstack/lib/nameset/db.py b/blockstack/lib/nameset/db.py
index <HASH>..<HASH> 100644
--- a/blockstack/lib/nameset/db.py
+++ b/blockstack/lib/nameset/db.py
@@ -2074,18 +2074,13 @@ def namedb_get_all_ops_at( db, block_id, offset=None, count=None, include_histor
Return the list of prior record state... | comment on what offset/count mean when selecting modifier operations
from a block. | blockstack_blockstack-core | train | py |
dabd1d3b082386c84a1a20dc0dfd4ea06593b8c8 | diff --git a/armstrong/core/arm_layout/tests/templatetags/layout_helpers.py b/armstrong/core/arm_layout/tests/templatetags/layout_helpers.py
index <HASH>..<HASH> 100644
--- a/armstrong/core/arm_layout/tests/templatetags/layout_helpers.py
+++ b/armstrong/core/arm_layout/tests/templatetags/layout_helpers.py
@@ -5,6 +5,7 ... | Be explicit about template settings when testing. This doesn't "fix" anything but follows the steps Django uses to test its own templates. | armstrong_armstrong.core.arm_layout | train | py |
ac7e1abafb1b4c6b4579a1a70b79908f985f3966 | diff --git a/src/Common/Service/View.php b/src/Common/Service/View.php
index <HASH>..<HASH> 100644
--- a/src/Common/Service/View.php
+++ b/src/Common/Service/View.php
@@ -62,6 +62,7 @@ class View
}
$oRouter = Factory::service('Router');
+ Factory::helper('File');
}
// ------------... | Loading file helper in View service | nails_common | train | php |
a8536f894c1fbd0c44711682c7e3b92f2e2a59c2 | diff --git a/lib/Project.js b/lib/Project.js
index <HASH>..<HASH> 100644
--- a/lib/Project.js
+++ b/lib/Project.js
@@ -18,7 +18,7 @@ module.exports = function(S) {
this._class = 'Project';
// Default properties
- this.name = 'serverless' + S.utils.generateShortId(6);
+ this.name = nu... | Fixes #<I> - Removed default name from project instance. Now project name check on `project init` and `project create` work again as expected. | serverless_serverless | train | js |
00bcb4ec873299d5f62f90df296a75c085fd6e8f | diff --git a/lib/spockets/Exceptions.rb b/lib/spockets/Exceptions.rb
index <HASH>..<HASH> 100644
--- a/lib/spockets/Exceptions.rb
+++ b/lib/spockets/Exceptions.rb
@@ -1,37 +1,19 @@
module Spockets
-
- class DuplicateSocket < Exception
- attr_reader :socket
- def initialize(s)
- @socket = s
... | remove non-needed exceptions. make exceptions less important | spox_spockets | train | rb |
dfd5760bb134eb7bc7c64b58aab004744f44a0ce | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -110,6 +110,7 @@ setup(
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: Implementa... | installation: addition of PyPy classifiers | inveniosoftware_invenio-i18n | train | py |
d13165a35376d3b78e30c969400d23cb71dffccf | diff --git a/src/util/async.js b/src/util/async.js
index <HASH>..<HASH> 100644
--- a/src/util/async.js
+++ b/src/util/async.js
@@ -24,9 +24,13 @@ function async(fn) {
} catch (e) {
err = e;
} finally {
- done(err || null, err ? null : ret);
+ if (err) {
+ done(err);
+ } else {
+ ... | Omit result when calling back with an error from util/async.js. | google_marzipano | train | js |
e801954bb9b3840718092dc0f6eacc5f1c54a880 | diff --git a/pyeda/boolalg/expr.py b/pyeda/boolalg/expr.py
index <HASH>..<HASH> 100644
--- a/pyeda/boolalg/expr.py
+++ b/pyeda/boolalg/expr.py
@@ -1224,7 +1224,7 @@ class ExprVariable(boolfunc.Variable, ExprLiteral):
def compose(self, mapping):
try:
- return mapping[self]
+ return ... | Fix bug, variable compose doesn't simplify | cjdrake_pyeda | train | py |
3a1786f614aff35bf047743bb0cf2e1d84814330 | diff --git a/packages/mdc-slider/index.js b/packages/mdc-slider/index.js
index <HASH>..<HASH> 100644
--- a/packages/mdc-slider/index.js
+++ b/packages/mdc-slider/index.js
@@ -202,4 +202,4 @@ class MDCSlider extends MDCComponent {
}
}
-export {MDCSlider};
+export {MDCSliderFoundation, MDCSlider}; | fix(slider): Add MDCSliderFoundation export (#<I>) | material-components_material-components-web | train | js |
8f4e620cbe58247a7fb1c229a890d65a69da5ab5 | diff --git a/src/urh/signalprocessing/ProtocolSniffer.py b/src/urh/signalprocessing/ProtocolSniffer.py
index <HASH>..<HASH> 100644
--- a/src/urh/signalprocessing/ProtocolSniffer.py
+++ b/src/urh/signalprocessing/ProtocolSniffer.py
@@ -96,8 +96,10 @@ class ProtocolSniffer(ProtocolAnalyzer, QObject):
self.qt_sig... | fix linebreaks in protocol sniff file | jopohl_urh | train | py |
ae6787f13157bf16cfdac9b67372e18ae25df7b2 | diff --git a/sgp4/__init__.py b/sgp4/__init__.py
index <HASH>..<HASH> 100644
--- a/sgp4/__init__.py
+++ b/sgp4/__init__.py
@@ -37,7 +37,7 @@ Then invoke the tests using the Python Standard Library::
The C++ function names have been retained, since users may already be
familiar with this library in other languages. ... | Minor documentation fix (#<I>)
Update the documentation — the TLE referenced as "Vanguard 1" in the docs looks like it is actually from the ISS. | brandon-rhodes_python-sgp4 | train | py |
245e2bc827f00724b44a1c091b758532aa1be42b | diff --git a/anytemplate/engines/base.py b/anytemplate/engines/base.py
index <HASH>..<HASH> 100644
--- a/anytemplate/engines/base.py
+++ b/anytemplate/engines/base.py
@@ -216,6 +216,7 @@ class Engine(object):
:return: Rendered string
"""
kwargs = self.filter_options(kwargs, self.render_valid_... | ensure template search paths computed from given paths (at_paths) in anytemplate.engines.base.Engine.renders | ssato_python-anytemplate | train | py |
ff61199007f1b744be6339c7db552942c6f0c48d | diff --git a/src/com/backendless/rt/RTService.java b/src/com/backendless/rt/RTService.java
index <HASH>..<HASH> 100644
--- a/src/com/backendless/rt/RTService.java
+++ b/src/com/backendless/rt/RTService.java
@@ -11,6 +11,8 @@ public interface RTService
void addConnectErrorListener( Fault fault );
+ void removeCo... | fixed BKNDLSS-<I> Add method for deletion of all connection management listeners | Backendless_Android-SDK | train | java,java |
c41c9ec9aa1c942d5084124e5027029af987c172 | diff --git a/src/modules/mouse-event/mouse-event.test.js b/src/modules/mouse-event/mouse-event.test.js
index <HASH>..<HASH> 100644
--- a/src/modules/mouse-event/mouse-event.test.js
+++ b/src/modules/mouse-event/mouse-event.test.js
@@ -40,5 +40,5 @@ test("events", (t) => {
t.is(typeof MouseEvent.events.drag, "strin... | ✅ Fix mouse-event tests | pencil-js_pencil.js | train | js |
f83e81371a0e480db1ff43512f0cb4082c91d0fa | diff --git a/salt/pillar/makostack.py b/salt/pillar/makostack.py
index <HASH>..<HASH> 100644
--- a/salt/pillar/makostack.py
+++ b/salt/pillar/makostack.py
@@ -352,12 +352,29 @@ import logging
from functools import partial
import yaml
-from mako.lookup import TemplateLookup
-from mako import exceptions
+
+try:
+ ... | Properly gate makostack (#<I>) | saltstack_salt | train | py |
3b3a32f475e113bc601829931471efe05a38865c | diff --git a/lib/pulse-meter/sensor/timelined/zset_based.rb b/lib/pulse-meter/sensor/timelined/zset_based.rb
index <HASH>..<HASH> 100644
--- a/lib/pulse-meter/sensor/timelined/zset_based.rb
+++ b/lib/pulse-meter/sensor/timelined/zset_based.rb
@@ -1,7 +1,6 @@
module PulseMeter
module Sensor
module Timelined
- ... | removed dummy copypasted comment | savonarola_pulse_meter_visualizer | train | rb |
a441b11c690199315e2918dfae564afdf389316b | diff --git a/lib/protocol/SqlString.js b/lib/protocol/SqlString.js
index <HASH>..<HASH> 100644
--- a/lib/protocol/SqlString.js
+++ b/lib/protocol/SqlString.js
@@ -53,11 +53,13 @@ function zeroPad(number) {
SqlString.format = function(sql, values) {
values = [].concat(values);
- values.forEach(function(value) {
-... | Fix: '?' value handling in SqlString.format
The new approach caused '?' values to be considered targets for
replacement as well as the replace operation was no longer atomic.
Fixed as suggested by @aschmitz
Fixes #<I> | sidorares_node-mysql2 | train | js |
10d2aa339d00006f1540d334c247bd7f0d47983c | diff --git a/src/basis/entity.js b/src/basis/entity.js
index <HASH>..<HASH> 100644
--- a/src/basis/entity.js
+++ b/src/basis/entity.js
@@ -488,7 +488,6 @@
defaults: null,
fields: null,
- extensible: false,
index__: null,
slot_: null,
@@ -530,9 +529,6 @@
if (this.singleton)
thi... | drop `extensible` property support as never used for now | basisjs_basisjs | train | js |
59bccef9640666019b988b015ef16df25ea3e077 | diff --git a/lib/codebadges/badges.rb b/lib/codebadges/badges.rb
index <HASH>..<HASH> 100644
--- a/lib/codebadges/badges.rb
+++ b/lib/codebadges/badges.rb
@@ -20,16 +20,18 @@ module CodeBadges
end
def self.get_titles(document)
- document.xpath("//div[@class = 'grid-row']//h5[@class = 'margin-top--1']")... | badges.rb: Make get_titles and get_dates return clean arrays
- get_titles: map over xpath results and get text out
- get_dates: map over xpath results and Date.parse the text
- integrate: no longer need to .text and .parse the titles and dates | ISS-SOA_Codecademy-Ruby | train | rb |
3b3e08eff4f37ce60e556aae61f0ed62ca8298c7 | diff --git a/holoviews/plotting/plot.py b/holoviews/plotting/plot.py
index <HASH>..<HASH> 100644
--- a/holoviews/plotting/plot.py
+++ b/holoviews/plotting/plot.py
@@ -559,6 +559,8 @@ class GenericElementPlot(DimensionedPlot):
elif self.dynamic:
key, frame = util.get_dynamic_item(self.hmap, self.di... | Allowed partial dimension overlap in DynamicMaps | pyviz_holoviews | train | py |
4a1c88929bd63640d787a3ad6c34acd020a0e977 | diff --git a/lib/mohawk/accessors/menu_item.rb b/lib/mohawk/accessors/menu_item.rb
index <HASH>..<HASH> 100644
--- a/lib/mohawk/accessors/menu_item.rb
+++ b/lib/mohawk/accessors/menu_item.rb
@@ -7,12 +7,14 @@ module Mohawk
end
def select
- menu_items = Array.new @locator[:path]
- menu ... | refactor Accessors::MenuItem | leviwilson_mohawk | train | rb |
4301541f940a51d6f4e3d82d07aacedc4ea41154 | diff --git a/dev/com.ibm.ws.install/src/com/ibm/ws/install/maven/MavenDirectoryInstall.java b/dev/com.ibm.ws.install/src/com/ibm/ws/install/maven/MavenDirectoryInstall.java
index <HASH>..<HASH> 100644
--- a/dev/com.ibm.ws.install/src/com/ibm/ws/install/maven/MavenDirectoryInstall.java
+++ b/dev/com.ibm.ws.install/src/c... | Fix nullpoiinter exception caused by not initializing map | OpenLiberty_open-liberty | train | java |
9377a9a5a54dda751d550f6a805d0dbf13c6296b | diff --git a/findbugs/src/java/edu/umd/cs/findbugs/AddMessages.java b/findbugs/src/java/edu/umd/cs/findbugs/AddMessages.java
index <HASH>..<HASH> 100644
--- a/findbugs/src/java/edu/umd/cs/findbugs/AddMessages.java
+++ b/findbugs/src/java/edu/umd/cs/findbugs/AddMessages.java
@@ -118,6 +118,9 @@ public class AddMessages ... | Make sure plugins are loaded before building the dom4j tree. Otherwise,
the BugInstance elements won't get category attributes.
git-svn-id: <URL> | spotbugs_spotbugs | train | java |
c13df1458118067cbfd74d5eff03bf3f7368f8cb | diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index <HASH>..<HASH> 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -1402,10 +1402,10 @@ func setMiner(ctx *cli.Context, cfg *miner.Config) {
cfg.GasPrice = GlobalBig(ctx, MinerGasPriceFlag.Name)
}
if ctx.GlobalIsSet(MinerRecommitIntervalFlag.Name... | utils: fix ineffectual miner config flags (#<I>)
Without use of global, these flags didn't actually modify
miner configuration, since we weren't grabbing from the
proper context scope, which should be global (vs. subcommand). | ethereum_go-ethereum | train | go |
b66ee2903254f66697fb59f6a55e94271d979d71 | diff --git a/tests/test_compare_algorithms.py b/tests/test_compare_algorithms.py
index <HASH>..<HASH> 100644
--- a/tests/test_compare_algorithms.py
+++ b/tests/test_compare_algorithms.py
@@ -1,3 +1,5 @@
+from __future__ import unicode_literals
+
import unittest
import pandas.util.testing as pdt | Added unicode_literals future import to tests. | J535D165_recordlinkage | train | py |
9407dd4feb7be5f75708d876d890342892d6f5d4 | diff --git a/src/ScrollView.js b/src/ScrollView.js
index <HASH>..<HASH> 100644
--- a/src/ScrollView.js
+++ b/src/ScrollView.js
@@ -238,7 +238,7 @@ define(function(require, exports, module) {
translate: [0, 0, -1e-3], // transform.behind
scrollLength: scrollLength
... | Hide pull to refresh renderable when user scrolls while refresh is occuring | IjzerenHein_famous-flex | train | js |
52576ff56387ec7e9712cb43172aec95d9c9ff72 | diff --git a/lib/jekyll-avatar.rb b/lib/jekyll-avatar.rb
index <HASH>..<HASH> 100644
--- a/lib/jekyll-avatar.rb
+++ b/lib/jekyll-avatar.rb
@@ -1,8 +1,8 @@
module Jekyll
class Avatar < Liquid::Tag
- SERVERS = 4
+ SERVERS = 4
DEFAULT_SIZE = 40
- VERSION = 3
+ API_VERSION = 3
def initiali... | fix for constant already initialized warnings | benbalter_jekyll-avatar | train | rb |
09e4a64cda0531f7dd45984625cf5e1c90bb430f | diff --git a/gitlab.py b/gitlab.py
index <HASH>..<HASH> 100644
--- a/gitlab.py
+++ b/gitlab.py
@@ -605,9 +605,9 @@ class GitlabObject(object):
class UserKey(GitlabObject):
_url = '/users/%(user_id)s/keys'
canGet = False
- canList = False
+ canList = True
canUpdate = False
- canDelete = False
+ ... | add support for UserKey listing and deletion | python-gitlab_python-gitlab | train | py |
a9d1a70c8df77dc455d7317a5a5ffb7c44ac8d2e | diff --git a/client/extensions/woocommerce/app/store-stats/store-stats-chart/index.js b/client/extensions/woocommerce/app/store-stats/store-stats-chart/index.js
index <HASH>..<HASH> 100644
--- a/client/extensions/woocommerce/app/store-stats/store-stats-chart/index.js
+++ b/client/extensions/woocommerce/app/store-stats/... | Fix the recording of the `calypso_woocommerce_stats_chart_tab_click` by ensuring we pass valid data. | Automattic_wp-calypso | train | js |
6af82f3385482035be96df793644f16c3d1318ef | diff --git a/Classes/Flowpack/ElasticSearch/Domain/Model/Document.php b/Classes/Flowpack/ElasticSearch/Domain/Model/Document.php
index <HASH>..<HASH> 100644
--- a/Classes/Flowpack/ElasticSearch/Domain/Model/Document.php
+++ b/Classes/Flowpack/ElasticSearch/Domain/Model/Document.php
@@ -134,6 +134,8 @@ class Document {
... | [TASK] make it possible to retrieve the type from the document | Flowpack_Flowpack.ElasticSearch | train | php |
5abed77d5f04f4ced74b478adeb185df5bef40fc | diff --git a/lib/ohai/plugins/rackspace.rb b/lib/ohai/plugins/rackspace.rb
index <HASH>..<HASH> 100644
--- a/lib/ohai/plugins/rackspace.rb
+++ b/lib/ohai/plugins/rackspace.rb
@@ -36,7 +36,7 @@ end
def has_rackspace_mac?
network[:interfaces].values.each do |iface|
unless iface[:arp].nil?
- return true if i... | arp identification change for rackspace managed cloud | chef_ohai | train | rb |
6ecb6ccaae1eb67fff0af5532dbc1dec754d9485 | diff --git a/includes/modules/import/class-pb-import.php b/includes/modules/import/class-pb-import.php
index <HASH>..<HASH> 100644
--- a/includes/modules/import/class-pb-import.php
+++ b/includes/modules/import/class-pb-import.php
@@ -237,6 +237,9 @@ abstract class Import {
\Pressbooks\Redirect\location( $redirect_... | Fix issue with import on multiple app servers.
Parity with <URL> | pressbooks_pressbooks | train | php |
282ddef35c0c373d43224b314b4fb198b4153ffe | diff --git a/src/elements/button.js b/src/elements/button.js
index <HASH>..<HASH> 100644
--- a/src/elements/button.js
+++ b/src/elements/button.js
@@ -102,11 +102,13 @@ export default class Button extends Component {
style={this.props.style}
className={this.createClassName()}
>
+ <span>
... | Added span around button content so that style can be applied to centre text (Safari seems not to be able to apply text-align:center if a width is set on the button) (#<I>) | bokuweb_re-bulma | train | js |
763e293e967b523475ab5b4f59c93fd889b4b91b | diff --git a/lib/stepper/model_steps.rb b/lib/stepper/model_steps.rb
index <HASH>..<HASH> 100644
--- a/lib/stepper/model_steps.rb
+++ b/lib/stepper/model_steps.rb
@@ -45,7 +45,7 @@ module Stepper
def current_step_validation
return if stepper_current_step.blank?
for i in 0..stepper_steps.i... | doesn't run validation method if it doesn't exists | antonversal_stepper | train | rb,rb |
d9f87ed07393ffbe34bb0fd3f7301a6717e09a7f | diff --git a/src/core/index.js b/src/core/index.js
index <HASH>..<HASH> 100644
--- a/src/core/index.js
+++ b/src/core/index.js
@@ -61,6 +61,13 @@ class YveBot {
end() {
this._dispatch('end', this.store().data);
+
+ const { sessionId } = this;
+ if (sessionId) {
+ this._store[sessionId] = {};
+ ... | clear store on finish chat to avoid memory leak | andersonba_yve-bot | train | js |
e1581d54c9be7fe1124f8235423bb3142d987890 | diff --git a/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/buildpath/SARLClasspathContainer.java b/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/buildpath/SARLClasspathContainer.java
index <HASH>..<HASH> 100644
--- a/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/buildpath/SARLClasspathContainer.jav... | Add "org.eclipse.xtend.lib" to the standard SARL Libraries.
close #<I> | sarl_sarl | train | java |
f855faf044727f07d6586336cee564f982bf1c8c | diff --git a/lib/has_draft/version.rb b/lib/has_draft/version.rb
index <HASH>..<HASH> 100644
--- a/lib/has_draft/version.rb
+++ b/lib/has_draft/version.rb
@@ -1,3 +1,3 @@
module HasDraft
- VERSION = "1.2.0"
+ VERSION = "1.3.0"
end | Bump to version <I> for release of new :extends and :belongs_to options | rubiety_has_draft | train | rb |
4bd1a62e253b220eaea02377b2df38353f0f242a | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -41,6 +41,10 @@ module.exports = {
included: function(app) {
app.import('vendor/velocity/jquery.velocity.js');
app.import('vendor/liquid-fire/liquid-fire.css');
+ },
+
+ config: function() {
+ // prevent `con... | Prevent test/demo app config from leaking into consuming app.
As of Ember CLI <I> and up, the file located at
`config/environment.js` will be used to return the addon's own
configuration. That conflicts with the way this library is using
`config/environment.js` (for the testing/demo app).
This simply overrides the d... | ember-animation_liquid-fire | train | js |
2e47b4ee36b0cd96f0c647efd13bd3fc18af88ab | diff --git a/tasks.py b/tasks.py
index <HASH>..<HASH> 100644
--- a/tasks.py
+++ b/tasks.py
@@ -322,6 +322,8 @@ def build(c, dist=True, docs=True, upload=False, serve=False, browser=False):
if browser:
print(f" - opening browser in http://{_location}")
c.run(f"python -m webbrowser -t h... | Add some more improvements to docs | jepegit_cellpy | train | py |
ed724f35bae17100e7be83499c80fab37d53f9f8 | diff --git a/presto-main/src/main/java/com/facebook/presto/operator/OperatorContext.java b/presto-main/src/main/java/com/facebook/presto/operator/OperatorContext.java
index <HASH>..<HASH> 100644
--- a/presto-main/src/main/java/com/facebook/presto/operator/OperatorContext.java
+++ b/presto-main/src/main/java/com/faceboo... | Reset memory revocation listener when OperatorContext is destroyed
resetMemoryRevocationRequestListener should be reset on
OperatorContext destroy. Otherwise OperatorContext holds
reference to Driver and Operator instances thus consuming memory. | prestodb_presto | train | java |
8f6324bad399cef0c854acac469ffd656fc3bfbc | diff --git a/impl/src/main/java/org/jboss/weld/util/BeansClosure.java b/impl/src/main/java/org/jboss/weld/util/BeansClosure.java
index <HASH>..<HASH> 100644
--- a/impl/src/main/java/org/jboss/weld/util/BeansClosure.java
+++ b/impl/src/main/java/org/jboss/weld/util/BeansClosure.java
@@ -59,7 +59,8 @@ public final class ... | [WELD-<I>]; fix closure sync. | weld_core | train | java |
f3955bd9f8587f3d53e75573686190a050ae378d | diff --git a/client/on-demand-entries-client.js b/client/on-demand-entries-client.js
index <HASH>..<HASH> 100644
--- a/client/on-demand-entries-client.js
+++ b/client/on-demand-entries-client.js
@@ -14,7 +14,12 @@ export default () => {
const res = await fetch(url)
const payload = await res.json()
... | Fix page auto-reload when there's a <I>/<I> page. (#<I>) | zeit_next.js | train | js |
13c131312bc5ac67b3ff19a2d3e113a8abe79383 | diff --git a/src/core/component-1-util-9-attribute.js b/src/core/component-1-util-9-attribute.js
index <HASH>..<HASH> 100644
--- a/src/core/component-1-util-9-attribute.js
+++ b/src/core/component-1-util-9-attribute.js
@@ -25,8 +25,8 @@ $cs.attribute = function () {
if (arguments.length > 0) {
/* ... | fix option 'valid' of params() after recent renaming | rse_componentjs | train | js |
e6533225d5e16290157a3f563e1aa4059db5c8ab | diff --git a/pyfritzhome/fritzhome.py b/pyfritzhome/fritzhome.py
index <HASH>..<HASH> 100644
--- a/pyfritzhome/fritzhome.py
+++ b/pyfritzhome/fritzhome.py
@@ -95,15 +95,18 @@ class Fritzhome(object):
def login(self):
"""Login and get a valid session ID."""
- (sid, challenge) = self._login_request... | LoginError when connect to non fritzbox
If connection is tried to an other device other then fitzbox
the returen value cannot be parsed. Throw a LoginError exception. | hthiery_python-fritzhome | train | py |
748cdab6835ed88cabd8b0f2aff212b21191989f | diff --git a/ExternalModule.php b/ExternalModule.php
index <HASH>..<HASH> 100644
--- a/ExternalModule.php
+++ b/ExternalModule.php
@@ -181,7 +181,7 @@ class ExternalModule extends Module implements iExternalModule
// Сформируем файл-конфигурацию для composer
$composer = str_replace('\\\\', '/', json_encode( ... | Added composer vendor / package splitter | samsonos_php_core | train | php |
02d886ceb3886157f945a1495b5570d85475b995 | diff --git a/janitor/resources/s3.py b/janitor/resources/s3.py
index <HASH>..<HASH> 100644
--- a/janitor/resources/s3.py
+++ b/janitor/resources/s3.py
@@ -175,7 +175,8 @@ class NoGlobalGrants(Filter):
def process_bucket(self, b):
acl = b.get('Acl', {'Grants': []})
-
+ if not acl or not acl['Grant... | behave nice if there aren't any acl or grants associated to a bucket | cloud-custodian_cloud-custodian | train | py |
daf78f35113566f46de20ad692a5ecbd4a8528a6 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -9,8 +9,8 @@ export default React.createClass({
value: React.PropTypes.any,
onChange: React.PropTypes.func,
valueLink: React.PropTypes.shape({
- value: React.PropTypes.any.isRequired,
- requestChange: React.PropTy... | Allow a null doc to be passed in explicitly (will result in an empty PM) | tgecho_react-prosemirror | train | js |
baf9041c5abb5da7c01d5c83e05b42df646aa752 | diff --git a/lib/starting_blocks.rb b/lib/starting_blocks.rb
index <HASH>..<HASH> 100644
--- a/lib/starting_blocks.rb
+++ b/lib/starting_blocks.rb
@@ -82,7 +82,10 @@ module StartingBlocks
def run_all_specs
->() do
contract = StartingBlocks::Contract.for StartingBlocks.options
- files =... | Use the clues to filter the files when running everything, but this filter must be different than the one for watching. | darrencauthon_starting_blocks | train | rb |
aaca5db7d41196873aa9b15ff7574f25a08042f8 | diff --git a/lib/anycable/rails/actioncable/channel.rb b/lib/anycable/rails/actioncable/channel.rb
index <HASH>..<HASH> 100644
--- a/lib/anycable/rails/actioncable/channel.rb
+++ b/lib/anycable/rails/actioncable/channel.rb
@@ -21,14 +21,6 @@ module ActionCable
def stop_all_streams
connection.socket.unsu... | Do not override Channel#delegate_connection_identifiers | anycable_anycable-rails | train | rb |
bd8facfff75584788469eb12fbdb47cf3058fbe4 | diff --git a/cachalot/tests/settings.py b/cachalot/tests/settings.py
index <HASH>..<HASH> 100644
--- a/cachalot/tests/settings.py
+++ b/cachalot/tests/settings.py
@@ -23,17 +23,17 @@ class SettingsTestCase(TransactionTestCase):
with self.assertNumQueries(1):
list(Test.objects.all())
- def tes... | [Travis CI] Comments a subtest to see if it’s the one freezing the test suite. | noripyt_django-cachalot | train | py |
3a1ba7c3a14f74b164d830edf353dcc27ec3dfaa | diff --git a/saltcloud/__init__.py b/saltcloud/__init__.py
index <HASH>..<HASH> 100644
--- a/saltcloud/__init__.py
+++ b/saltcloud/__init__.py
@@ -57,9 +57,11 @@ class Cloud(object):
Parse over the options passed on the command line and determine how to
handle them
'''
- if self.opts['... | Accept profile and names options in the cloud run method | saltstack_salt | train | py |
8ee40b1cd12f5c39a239b911a2a04b293553f1f6 | diff --git a/flasgger/__init__.py b/flasgger/__init__.py
index <HASH>..<HASH> 100644
--- a/flasgger/__init__.py
+++ b/flasgger/__init__.py
@@ -1,5 +1,5 @@
-__version__ = '0.9.1.dev0'
+__version__ = '0.9.1'
__author__ = 'Bruno Rocha'
__email__ = 'rochacbruno@gmail.com' | Set __version__ to <I> for release. | rochacbruno_flasgger | train | py |
84ed748eb7c294f5c16d96bc40336fd55335be6e | diff --git a/src/Cmsable/Support/FindsResourceClasses.php b/src/Cmsable/Support/FindsResourceClasses.php
index <HASH>..<HASH> 100644
--- a/src/Cmsable/Support/FindsResourceClasses.php
+++ b/src/Cmsable/Support/FindsResourceClasses.php
@@ -13,4 +13,9 @@ trait FindsResourceClasses
return $this->camelCase(Plurali... | Added a method for reversed query | mtils_cmsable | train | php |
8618bfd6f0696c26ed0aa9763cf3af3967a81925 | diff --git a/core/CronArchive.php b/core/CronArchive.php
index <HASH>..<HASH> 100644
--- a/core/CronArchive.php
+++ b/core/CronArchive.php
@@ -1320,6 +1320,10 @@ class CronArchive
*/
private function getConcurrentRequestsPerWebsite()
{
- return $this->getParameterFromCli('--concurrent-requests-pe... | included default value for concurent threads number | matomo-org_matomo | train | php |
8c13d1919e7ed6a765187fdb2ca633aba6447c55 | diff --git a/lib/vagrant/util/platform.rb b/lib/vagrant/util/platform.rb
index <HASH>..<HASH> 100644
--- a/lib/vagrant/util/platform.rb
+++ b/lib/vagrant/util/platform.rb
@@ -1,3 +1,4 @@
+require 'rbconfig'
require 'mario'
module Vagrant
@@ -33,7 +34,7 @@ module Vagrant
end
def platform
- ... | Use rbconfig to get host OS | hashicorp_vagrant | train | rb |
e4c1631be611190992a46ef3ede15514654fa870 | diff --git a/src/extensions/physics/physics.js b/src/extensions/physics/physics.js
index <HASH>..<HASH> 100644
--- a/src/extensions/physics/physics.js
+++ b/src/extensions/physics/physics.js
@@ -148,6 +148,7 @@
}
space.removeBody(body);
}
+ this._deleteBodies.le... | fix: physicss unbindView bug | hiloteam_Hilo | train | js |
4667c05fc9b2588d4c416b155716db2b5f82ae91 | diff --git a/closure/goog/ui/editor/toolbarfactory.js b/closure/goog/ui/editor/toolbarfactory.js
index <HASH>..<HASH> 100644
--- a/closure/goog/ui/editor/toolbarfactory.js
+++ b/closure/goog/ui/editor/toolbarfactory.js
@@ -207,7 +207,7 @@ goog.ui.editor.ToolbarFactory.addFormatOption = function(button, caption, tag) {
... | Prepare for goog.dom.TagName type change.
To improve the type precision of created or accessed elements, the type of goog.dom.TagName members is going to change from string to object instance in cl/<I>. This CL prepares for that and wraps all string-only usages of goog.dom.TagName members into String().
RELNOTES: n/a... | google_closure-library | train | js |
edd831b5a28587f7751bd78d9330211cc743ed45 | diff --git a/app/src/Bolt/Application.php b/app/src/Bolt/Application.php
index <HASH>..<HASH> 100644
--- a/app/src/Bolt/Application.php
+++ b/app/src/Bolt/Application.php
@@ -16,7 +16,7 @@ class Application extends Silex\Application
{
public function __construct(array $values = array())
{
- $values['b... | Bumping version to <I> | bolt_bolt | train | php |
9b081fcee0d12bf64b20a811093d13037e86d387 | diff --git a/scripts/get-latest-platform-tests.js b/scripts/get-latest-platform-tests.js
index <HASH>..<HASH> 100644
--- a/scripts/get-latest-platform-tests.js
+++ b/scripts/get-latest-platform-tests.js
@@ -19,7 +19,7 @@ process.on("unhandledRejection", err => {
// 1. Go to https://github.com/w3c/web-platform-tests/tr... | Update to latest w3c tests | jsdom_whatwg-url | train | js |
14ed7d9d81865f5a7822095cf8c263ce6cbc5fab | diff --git a/Imager.js b/Imager.js
index <HASH>..<HASH> 100644
--- a/Imager.js
+++ b/Imager.js
@@ -80,14 +80,14 @@
opts = opts || {};
if (elements !== undefined) {
- // selector
+ // first argument is selector string
if (typeof elements === 'string') {
... | Fixing `length` check.
`hasOwnProperty('length')` is not supposed to work on an `NodeList` as it's an inherited property. | BBC-News_Imager.js | train | js |
0478cfab7498af28f6ad903d9d6e7d8a313d645b | diff --git a/tests/test_cli.py b/tests/test_cli.py
index <HASH>..<HASH> 100644
--- a/tests/test_cli.py
+++ b/tests/test_cli.py
@@ -1344,7 +1344,7 @@ def test_output_directory(runner, project, capsys):
repo.git.add('--all')
repo.index.commit('Created source directory')
- cmd = ['run', 'cp', '-r', str(sour... | tests: fix cp args to work on Linux and macOS | SwissDataScienceCenter_renku-python | train | py |
358899b3b1e6a5b5c9111d2f2f542bb817f5a20a | diff --git a/bigchaindb/tendermint/lib.py b/bigchaindb/tendermint/lib.py
index <HASH>..<HASH> 100644
--- a/bigchaindb/tendermint/lib.py
+++ b/bigchaindb/tendermint/lib.py
@@ -93,8 +93,7 @@ class BigchainDB(Bigchain):
if transaction['operation'] == 'CREATE':
asset = transaction.pop('asset')... | Problem: 'TRANSFER' Transaction fails. (#<I>)
Solution: The asset storage and retrieval logic leads to different txn bodies
causing a validation error. Concequently the logic has been simplied. | bigchaindb_bigchaindb | train | py |
ef15490969815a9f78726636380e24970a6eafed | diff --git a/sentry/src/main/java/io/sentry/transport/RateLimiter.java b/sentry/src/main/java/io/sentry/transport/RateLimiter.java
index <HASH>..<HASH> 100644
--- a/sentry/src/main/java/io/sentry/transport/RateLimiter.java
+++ b/sentry/src/main/java/io/sentry/transport/RateLimiter.java
@@ -69,13 +69,11 @@ public final ... | Log dropped items size in RateLimiter only after all items are added to list (#<I>) | getsentry_sentry-java | train | java |
22a3136df9d067dc3bd8c05341241fb9189ecc13 | diff --git a/node_modules/JSUS/lib/obj.js b/node_modules/JSUS/lib/obj.js
index <HASH>..<HASH> 100644
--- a/node_modules/JSUS/lib/obj.js
+++ b/node_modules/JSUS/lib/obj.js
@@ -140,11 +140,13 @@
OBJ.clone = function (obj) {
var clone = {};
for (var i in obj) {
- if ( 'object' === typeof obj[i] ) {
- clone[i]... | Random CF faces working. Minor fixes to do remain | nodeGame_nodegame-client | train | js |
caa18b1164143343b6cbfdfd0f4548ed7d9bd382 | diff --git a/security_test.go b/security_test.go
index <HASH>..<HASH> 100644
--- a/security_test.go
+++ b/security_test.go
@@ -67,5 +67,28 @@ func encryptDecryptVersioned(vsn encryptionVersion, t *testing.T) {
t.Errorf("len %d %v", len(plaintext), plaintext)
t.Fatalf("encrypt/decrypt failed! %d '%s' '%s'", cmp, m... | Added test for decrypting success when the first key doesn't match. | hashicorp_memberlist | train | go |
23f20982902ae9faef0fc1ebc5878bf566f0ac35 | diff --git a/lib/mediawiki/edit.rb b/lib/mediawiki/edit.rb
index <HASH>..<HASH> 100644
--- a/lib/mediawiki/edit.rb
+++ b/lib/mediawiki/edit.rb
@@ -116,7 +116,8 @@ module MediaWiki
# @param opts [Hash<Symbol, Any>] The options hash for optional values in the request.
# @option opts [String] :reason The reason ... | :package: Logical reversal of the redirect param for move
Close #<I>. | FTB-Gamepedia_MediaWiki-Butt-Ruby | train | rb |
397074f70fcd15510e8ab6b5b54e14d1566b0b30 | diff --git a/lib/jsduck/lexer.rb b/lib/jsduck/lexer.rb
index <HASH>..<HASH> 100644
--- a/lib/jsduck/lexer.rb
+++ b/lib/jsduck/lexer.rb
@@ -72,9 +72,11 @@ module JsDuck
while !@input.eos? do
skip_white_and_comments
if @input.check(/[0-9]+/)
+ nr = @input.scan(/[0-9]+(\.[0-9]*)?/)
... | Fix parsing of floats that end with dot. | senchalabs_jsduck | train | rb,rb |
b42baa340649c5bb0b9919e002657bde014d20a0 | diff --git a/src/chart/heatmap/HeatmapView.js b/src/chart/heatmap/HeatmapView.js
index <HASH>..<HASH> 100644
--- a/src/chart/heatmap/HeatmapView.js
+++ b/src/chart/heatmap/HeatmapView.js
@@ -185,10 +185,10 @@ export default echarts.extendChartView({
rect = new graphic.Rect({
shap... | fix(heatmap): Remove seams in heatmap | apache_incubator-echarts | train | js |
b9c7ad6e7eab8bce205193582c881e2d5d2df7a3 | diff --git a/docs/js/metro/metro-button-set.js b/docs/js/metro/metro-button-set.js
index <HASH>..<HASH> 100644
--- a/docs/js/metro/metro-button-set.js
+++ b/docs/js/metro/metro-button-set.js
@@ -28,7 +28,7 @@
btn.toggleClass("active");
that.options.click(btn, btn.hasClass("ac... | Major compatibility fix for Firefox and IE with buttons
Fixed a bug, where buttongroup and -set events were not called properly
with Firefox and IE. | olton_Metro-UI-CSS | train | js |
388efd0e73d4d9c7cb15fd105ff13c88bfc717f2 | diff --git a/view.go b/view.go
index <HASH>..<HASH> 100644
--- a/view.go
+++ b/view.go
@@ -437,12 +437,11 @@ func upgradeViewBSIv2(v *view, bitDepth uint) (ok bool, _ error) {
}
ok = true // mark as upgraded, requires reload
- oldPath := frag.path
- if newPath, err := upgradeRoaringBSIv2(frag, bitDepth); err ... | use os.Rename semantically correctly
So it's true that Rename's arguments are called oldname/newname, and
you want to rename from the previous name to the new name.
And it's true that we're calling Rename on oldPath and newPath.
But in our case, oldPath is the name the fragment file had before
the operation, and new... | pilosa_pilosa | train | go |
bf3cbb01aa565b3d1b9d35bd0633dcd8f5ff15d4 | diff --git a/system/modules/generalDriver/DcGeneral/DataDefinition/Palette/Legend.php b/system/modules/generalDriver/DcGeneral/DataDefinition/Palette/Legend.php
index <HASH>..<HASH> 100644
--- a/system/modules/generalDriver/DcGeneral/DataDefinition/Palette/Legend.php
+++ b/system/modules/generalDriver/DcGeneral/DataDef... | Fix visible check of properties in legend. | contao-community-alliance_dc-general | train | php |
32dda01069e57843841397e40ceb74b5347bebd8 | diff --git a/lib/agent/cli_controller.js b/lib/agent/cli_controller.js
index <HASH>..<HASH> 100644
--- a/lib/agent/cli_controller.js
+++ b/lib/agent/cli_controller.js
@@ -98,7 +98,7 @@ pid.store(pid_file, function(err, running){
}
// don't poke instance if running since less than two minutes ago
- if (run_time... | Agent CLI: Exit explicitly on if (run_time > 2); | prey_prey-node-client | train | js |
e08c352f8a025c9312a97e72c4d0394a48641bd3 | diff --git a/client/dashboard.go b/client/dashboard.go
index <HASH>..<HASH> 100644
--- a/client/dashboard.go
+++ b/client/dashboard.go
@@ -207,7 +207,13 @@ func (r *Instance) SetRawDashboard(raw []byte) error {
code int
err error
buf bytes.Buffer
+ plain = make(map[string]interface{})
)
+ if er... | Fix raw dashboard for proper overwrite. | grafana-tools_sdk | train | go |
d22150409640131be870ec9494c2880da6c09b06 | diff --git a/test/test.js b/test/test.js
index <HASH>..<HASH> 100644
--- a/test/test.js
+++ b/test/test.js
@@ -242,7 +242,7 @@ test.cb('process all rows', (t) => {
test('binary stanity', async (t) => {
const binPath = path.resolve(__dirname, '../bin/csv-parser')
- const { stdout } = await execa(`echo "a\n1" | no... | chore: use `process.execPath` rather than `node` in test (#<I>)
Make sure that the test is run with the version of Node.js currently
being used to execute the test suite, rather than whatever is first in
the user's path. | mafintosh_csv-parser | train | js |
26cc4a011745e9b1de890be0a4b676949480b569 | diff --git a/python/thunder/rdds/data.py b/python/thunder/rdds/data.py
index <HASH>..<HASH> 100644
--- a/python/thunder/rdds/data.py
+++ b/python/thunder/rdds/data.py
@@ -211,6 +211,17 @@ class Data(object):
return self.rdd.collect()
def collectAsArray(self):
+ """ Return all keys and values to t... | Add more collect as array options
Allow for separately collecting the keys, the values, or both (as a
tuple) as numpy arrays | thunder-project_thunder | train | py |
d32eb25662b6e58042566aebbd0f53661b935353 | diff --git a/db.go b/db.go
index <HASH>..<HASH> 100644
--- a/db.go
+++ b/db.go
@@ -125,6 +125,9 @@ type DB struct {
compactc chan struct{}
donec chan struct{}
stopc chan struct{}
+
+ // compMtx is used to control compactions and deletions.
+ cmtx sync.Mutex
}
type dbMetrics struct {
@@ -271,6 +274,9 @@ ... | Synchronise deletes and compactions. | prometheus_prometheus | train | go |
f7b3e3366ed49a945aa15c8849db0d94a2e003c3 | diff --git a/src/WebServiceProvider.php b/src/WebServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/WebServiceProvider.php
+++ b/src/WebServiceProvider.php
@@ -91,9 +91,6 @@ class WebServiceProvider extends ServiceProvider
// Add Validators
$this->add_custom_validators();
- // Any conf... | Removei temporary trusted proxy override. | eveseat_web | train | php |
e9fba6b762c9691418408cbe2c98d6c501a46499 | diff --git a/web/concrete/src/Conversation/Message/AuthorFormatter.php b/web/concrete/src/Conversation/Message/AuthorFormatter.php
index <HASH>..<HASH> 100644
--- a/web/concrete/src/Conversation/Message/AuthorFormatter.php
+++ b/web/concrete/src/Conversation/Message/AuthorFormatter.php
@@ -28,6 +28,8 @@ class AuthorFor... | Fix not returned value
The value was not returned when the website field was empty.
Former-commit-id: <I>ab<I>d<I>c<I>b<I>b6d2c<I>abb4cc<I>a7f<I>f
Former-commit-id: <I>de7c<I>f<I>c5e<I>bc0da<I>ca2aaebee<I>e | concrete5_concrete5 | train | php |
7039b048999b2df783c9abdf0b9bb5c30424c6d5 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,20 +1,20 @@
"""
-This is the setup file to install OpenAccess_EPUB.
+This is the setup file to install openaccess_epub.
"""
from distutils.core import setup
-setup(name='OpenAccess_EPUB',
+setup(name='openaccess_epub... | fixing setup.py for the pep8 | SavinaRoja_OpenAccess_EPUB | train | py |
4952f63c5d86c9c86e6459e97d23eb945bcb685a | diff --git a/src/Section/SectionItem.php b/src/Section/SectionItem.php
index <HASH>..<HASH> 100644
--- a/src/Section/SectionItem.php
+++ b/src/Section/SectionItem.php
@@ -32,7 +32,7 @@ class SectionItem
{
// validate id (can contain only letters and numbers)
if (!preg_match('/^[a-zA-Z_][a-zA-Z0-9... | Global namespace for throwned Exception | wanjee_ShuweeAdminBundle | train | php |
de7a22b00d9a3786b070552a432365499492c62d | diff --git a/js/chartbuilder.js b/js/chartbuilder.js
index <HASH>..<HASH> 100644
--- a/js/chartbuilder.js
+++ b/js/chartbuilder.js
@@ -267,7 +267,7 @@ ChartBuilder = {
// Create SVG image
var svgString = $("#chartContainer").html()
//add in all the things that validate SVG
- svgString = '<?xml version="1.1" e... | fixed the basic xml formatting to confuse Adobe illustrator less | Quartz_Chartbuilder | train | js |
d744ded5cf5e82b69872df75b551ee5255ba7c52 | diff --git a/lib/xdr.rb b/lib/xdr.rb
index <HASH>..<HASH> 100644
--- a/lib/xdr.rb
+++ b/lib/xdr.rb
@@ -10,7 +10,7 @@ require "active_support/core_ext/hash/indifferent_access"
require "active_support/core_ext/string/inflections"
require "active_support/logger"
require "active_support/ordered_hash"
-require "backports... | Fix backport issues (should bring back compatibility)
We want Array#to_h, not Hash#to_h
Use String#force_encoding instead of String#b | stellar_ruby-xdr | train | rb,rb |
fa2dbd159e6fd5db458b03389e16d4d145d4f184 | diff --git a/aws/resource_aws_route53_resolver_firewall_rule_group_association.go b/aws/resource_aws_route53_resolver_firewall_rule_group_association.go
index <HASH>..<HASH> 100644
--- a/aws/resource_aws_route53_resolver_firewall_rule_group_association.go
+++ b/aws/resource_aws_route53_resolver_firewall_rule_group_asso... | Update aws/resource_aws_route<I>_resolver_firewall_rule_group_association.go | terraform-providers_terraform-provider-aws | train | go |
9e6c2e6889df300f2c3e1788d5cdedf456177698 | diff --git a/lib/Exporter.js b/lib/Exporter.js
index <HASH>..<HASH> 100644
--- a/lib/Exporter.js
+++ b/lib/Exporter.js
@@ -10,9 +10,11 @@ exports.exportToFormat = function( format, dir, key, geojson, callback ){
callback(null, outFile.replace('geojson', 'json'));
} else if (ogrFormats[format]) {
... | fix for null geom in ogr2ogr | koop-retired_koop-server | train | js |
ede46f89eaf97d523f00b7cd3aba4ae5e3b026d9 | diff --git a/demo/app.js b/demo/app.js
index <HASH>..<HASH> 100644
--- a/demo/app.js
+++ b/demo/app.js
@@ -1,3 +1,4 @@
+const _clone = require('lodash/clone');
const React = require('react');
const ReactDOM = require('react-dom');
const moment = require('moment');
@@ -424,20 +425,7 @@ const lineChartData = [
const ... | Setup donut chart data for chart 2 | mxenabled_mx-react-components | train | js |
91684e213666698ee9ed63ed7225fda7d8c4b41e | diff --git a/packages/webpack/lib/plugins/log.js b/packages/webpack/lib/plugins/log.js
index <HASH>..<HASH> 100644
--- a/packages/webpack/lib/plugins/log.js
+++ b/packages/webpack/lib/plugins/log.js
@@ -54,7 +54,13 @@ exports.LoggerPlugin = class LoggerPlugin {
const hasWarnings = stats.hasWarnings();
con... | refactor(webpack): restrict stats usage to further improve performance | untool_untool | train | js,js |
2acda47515b83775bc6f67f078cfa5e0873ef6af | diff --git a/spec/requests/default_namespace_spec.rb b/spec/requests/default_namespace_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/requests/default_namespace_spec.rb
+++ b/spec/requests/default_namespace_spec.rb
@@ -1,8 +1,6 @@
require 'rails_helper'
RSpec.describe ActiveAdmin::Application, type: :request do
- ... | Remove a couple of unused lines | activeadmin_activeadmin | train | rb,rb |
066ff4014530d2b754861252f90d7944888d32c7 | diff --git a/spec/support/mongoid.rb b/spec/support/mongoid.rb
index <HASH>..<HASH> 100644
--- a/spec/support/mongoid.rb
+++ b/spec/support/mongoid.rb
@@ -25,7 +25,7 @@ class ParentMongoidDocument
field :number_field
field :string_field
- references_many :collection_field, :class_name => 'ChildMongoidDocument'... | Set inverse of collection field for mongoid parent | paulelliott_fabrication | train | rb |
9c69eed4d2bebbcf6f7cacd835f836fdfe2b7f51 | diff --git a/src/Khill/Fontawesome/FontAwesome.php b/src/Khill/Fontawesome/FontAwesome.php
index <HASH>..<HASH> 100755
--- a/src/Khill/Fontawesome/FontAwesome.php
+++ b/src/Khill/Fontawesome/FontAwesome.php
@@ -20,7 +20,7 @@ class FontAwesome {
/**
* HTML Link tag to the FontAwesome CDN
*/
- const C... | updated cdn to <I> | kevinkhill_FontAwesomePHP | train | php |
0e90ec2372b88094f22b0f7fe1fd317d5c440a03 | diff --git a/lib/omnibus/publishers/artifactory_publisher.rb b/lib/omnibus/publishers/artifactory_publisher.rb
index <HASH>..<HASH> 100644
--- a/lib/omnibus/publishers/artifactory_publisher.rb
+++ b/lib/omnibus/publishers/artifactory_publisher.rb
@@ -93,7 +93,7 @@ module Omnibus
'omnibus.project' => p... | Don’t abbreviate `architecture` in Artifactory metadata | chef_omnibus | train | rb |
Subsets and Splits
Java Commits in Train Set
Queries for all entries where the diff_languages column is 'java', providing a filtered dataset but without deeper analysis.
Java Commits Test Data
Returns a subset of 5000 entries from the dataset where the programming language difference is Java, providing basic filtering for exploration.
Java Commits Sample
Retrieves the first 1,000 records where the 'diff_languages' column is 'java', providing limited insight into the specific data entries.
Java Commits Validation Sample
Retrieves a sample of entries from the validation dataset where the diff languages are Java, providing limited insight into specific Java-related data points.
Java Commits in Validation
This query retrieves a limited sample of entries from the validation dataset where the programming language difference is Java, providing basic filtering with minimal insight.
Java Commits Sample
This query retrieves a sample of 100 records where the 'diff_languages' is 'java', providing basic filtering but limited analytical value.
Java Commits Sample
Retrieves 100 samples where the language difference is Java, providing basic filtering but minimal analytical value.
Java Commits Sample
Retrieves 10 samples where the diff_languages column is 'java', providing basic examples of data entries with this specific language.
Java Commits Validation Sample
Retrieves 1,000 records where the differences in languages are marked as Java, providing a snapshot of that specific subset but limited to raw data.
Java Commits Sample
This query retrieves 1000 random samples from the dataset where the programming language is Java, offering limited insight beyond raw data.