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 |
|---|---|---|---|---|---|
548733302c6b74b8a03387b0bdb011ff89aadc35 | diff --git a/signalk-on-delta.js b/signalk-on-delta.js
index <HASH>..<HASH> 100644
--- a/signalk-on-delta.js
+++ b/signalk-on-delta.js
@@ -5,9 +5,26 @@ module.exports = function(RED) {
var node = this;
var signalk = node.context().global.get('signalk')
+ var app = node.context().global.get('app')
... | feature: filter out meta deltas and deltas from node red | SignalK_node-red-embedded | train | js |
62b7533aa7747fa7c6c582b474f666a042a76327 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -70,7 +70,8 @@ function checkDirectory(dir, ignoreDirs, deps, devDeps, options) {
});
finder.on("file", function (filename) {
- if (path.extname(filename) === ".js") {
+ var ext = path.extname(filename);
+ if ... | Accept the extensions argument passed from options. | depcheck_depcheck | train | js |
bab83c25bc6b0b897b1fa13e6fcea8bbbc9c87bd | diff --git a/lib/codemirror.js b/lib/codemirror.js
index <HASH>..<HASH> 100644
--- a/lib/codemirror.js
+++ b/lib/codemirror.js
@@ -20,7 +20,7 @@ var CodeMirror = (function() {
// This mess creates the base DOM structure for the editor.
wrapper.innerHTML =
'<div style="overflow: hidden; position: relati... | Make hidden textarea wide again
This fixes (mostly) vertical cursor movement in IE | codemirror_CodeMirror | train | js |
d17fa12524f8af1662aa03d043bb996f5d386a9a | diff --git a/domains/toolabstraction/maven/src/test/java/org/openengsb/maven/common/test/unit/TestMavenConnector.java b/domains/toolabstraction/maven/src/test/java/org/openengsb/maven/common/test/unit/TestMavenConnector.java
index <HASH>..<HASH> 100755
--- a/domains/toolabstraction/maven/src/test/java/org/openengsb/mav... | Set toolabstraction tests to ignore because they do not work on hudson. | openengsb_openengsb | train | java |
2736dd6bf5912e83a7149b6344a0afda1e2cf3be | diff --git a/templates/includes/footer.php b/templates/includes/footer.php
index <HASH>..<HASH> 100644
--- a/templates/includes/footer.php
+++ b/templates/includes/footer.php
@@ -16,7 +16,7 @@ if(!empty($this->data['htmlinject']['htmlContentPost'])) {
<hr />
<img src="/<?php echo $this->data['baseurlpath']; ?>r... | Update copyright year in footer. | simplesamlphp_saml2 | train | php |
bf10808c1619fba6ac18104c99afd333ef78fa61 | diff --git a/src/Crate/PDO/ArtaxExt/ClientInterface.php b/src/Crate/PDO/ArtaxExt/ClientInterface.php
index <HASH>..<HASH> 100644
--- a/src/Crate/PDO/ArtaxExt/ClientInterface.php
+++ b/src/Crate/PDO/ArtaxExt/ClientInterface.php
@@ -27,6 +27,24 @@ use Artax\Response;
interface ClientInterface
{
/**
+ * Set the... | Reverted the removal of the methods in the ClientInterface because they broke a test | crate_crate-pdo | train | php |
5c5345e78c1eb8d937216b155f3ffa8b8f905959 | diff --git a/ryu/tests/integrated/common/docker_base.py b/ryu/tests/integrated/common/docker_base.py
index <HASH>..<HASH> 100644
--- a/ryu/tests/integrated/common/docker_base.py
+++ b/ryu/tests/integrated/common/docker_base.py
@@ -133,7 +133,7 @@ class Command(object):
if out.returncode == 0:
... | scenario test: Fix the wrong retry check in command execution | osrg_ryu | train | py |
fc3fe3d71d77319b742d2e27179008ba0c27ac68 | diff --git a/src/main/java/org/spout/nbt/stream/NBTInputStream.java b/src/main/java/org/spout/nbt/stream/NBTInputStream.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/spout/nbt/stream/NBTInputStream.java
+++ b/src/main/java/org/spout/nbt/stream/NBTInputStream.java
@@ -190,7 +190,7 @@ public final class NBTInp... | Pre-sizes the arraylist for list tag to the given length | flow_nbt | train | java |
9a5bde94e390634d00de88c479a992f561899d06 | diff --git a/lib/active-profiling/ruby_profiler.rb b/lib/active-profiling/ruby_profiler.rb
index <HASH>..<HASH> 100644
--- a/lib/active-profiling/ruby_profiler.rb
+++ b/lib/active-profiling/ruby_profiler.rb
@@ -14,7 +14,7 @@ module ActiveProfiling
# * :disable_gc - temporarily disable the garbage collector for the... | Return an Array even when we don't have RubyProf available. | dark-panda_active-profiling | train | rb |
beb07fd2e481a27a7f802da4ae8a00e86ab47d1a | diff --git a/lib/fb_graph/connections/settings.rb b/lib/fb_graph/connections/settings.rb
index <HASH>..<HASH> 100644
--- a/lib/fb_graph/connections/settings.rb
+++ b/lib/fb_graph/connections/settings.rb
@@ -51,6 +51,7 @@ module FbGraph
:connection => :settings
)
if succeeded
+ @set... | @settings can be nil here | nov_fb_graph | train | rb |
56dcab4bcc463aa00bc6ac64005dfca6c0777ded | diff --git a/lib/gem_footprint_analyzer/require_spy.rb b/lib/gem_footprint_analyzer/require_spy.rb
index <HASH>..<HASH> 100644
--- a/lib/gem_footprint_analyzer/require_spy.rb
+++ b/lib/gem_footprint_analyzer/require_spy.rb
@@ -102,9 +102,10 @@ module GemFootprintAnalyzer
# we're redirecting :require_relative t... | Fix the spied version of require_relative
So that it returns early when passed an absolute
directory as a name. | irvingwashington_gem_footprint_analyzer | train | rb |
49fd7b06ebd8759a815065d493db258104b91bee | diff --git a/resource_aws_s3_bucket_test.go b/resource_aws_s3_bucket_test.go
index <HASH>..<HASH> 100644
--- a/resource_aws_s3_bucket_test.go
+++ b/resource_aws_s3_bucket_test.go
@@ -645,14 +645,20 @@ func testAccCheckAWSS3BucketPolicy(n string, policy string) resource.TestCheckFu
Bucket: aws.String(rs.Primary.ID),... | provider/aws: Fix s3_bucket test for empty policy | terraform-providers_terraform-provider-aws | train | go |
04dcc9378dc38d54eeb6a688d81e8b5e13446519 | diff --git a/params/version.go b/params/version.go
index <HASH>..<HASH> 100644
--- a/params/version.go
+++ b/params/version.go
@@ -21,10 +21,10 @@ import (
)
const (
- VersionMajor = 1 // Major version component of the current release
- VersionMinor = 10 // Minor version component of the current releas... | params: begin <I> release cycle | ethereum_go-ethereum | train | go |
29bb2409662399a5c5a8fb85285792467cb4f99a | diff --git a/docs/src/Iconography.js b/docs/src/Iconography.js
index <HASH>..<HASH> 100644
--- a/docs/src/Iconography.js
+++ b/docs/src/Iconography.js
@@ -37,7 +37,7 @@ const IconList = props =>
hoverColor="blue"
>
<Flex mb={2} align="center" justify="center">
- <Icon name={icon} size=... | Only show new icons in docs | jrs-innovation-center_design-system | train | js |
7c327a49fc4590cc61188b8c524ba33b14e96c21 | diff --git a/src/Framework/BaseWebApplication.php b/src/Framework/BaseWebApplication.php
index <HASH>..<HASH> 100644
--- a/src/Framework/BaseWebApplication.php
+++ b/src/Framework/BaseWebApplication.php
@@ -723,6 +723,7 @@ abstract class BaseWebApplication extends BaseConsoleApplication implements Fram
... | Set current_user in request attributes (to detach from application) | Radvance_Radvance | train | php |
f6309ea8cc38bec37898ea2eb60502d9bf5d3eba | diff --git a/modules/page/html/render/message.js b/modules/page/html/render/message.js
index <HASH>..<HASH> 100644
--- a/modules/page/html/render/message.js
+++ b/modules/page/html/render/message.js
@@ -68,7 +68,7 @@ exports.create = function (api) {
var rootMessage = {key: id, value}
- // what happens ... | add comment about deriving recps on private message replies | ssbc_patchwork | train | js |
86aa4f8cdf77fcfb1a998866732290ae4f7a7b9e | diff --git a/cfgstack/cfgstack.py b/cfgstack/cfgstack.py
index <HASH>..<HASH> 100644
--- a/cfgstack/cfgstack.py
+++ b/cfgstack/cfgstack.py
@@ -77,7 +77,8 @@ class CfgStack (object):
if isinstance (include, list):
for f in include:
for k, v in CfgStack (
- f, no_defaults = True).d... | Pass search path when recursing | clearclaw_cfgstack | train | py |
fe29964a8862aab20b48a2f7b13e2b92290b627a | diff --git a/lib/__internal/utils.js b/lib/__internal/utils.js
index <HASH>..<HASH> 100644
--- a/lib/__internal/utils.js
+++ b/lib/__internal/utils.js
@@ -165,7 +165,7 @@ const serializeVariable = ({ key, typedValue }) => {
}
if (type === "date" && value instanceof Date) {
- value = value.toISOString().repla... | fix(serialization): adjust Date format
related to CAM-<I> | camunda_camunda-external-task-client-js | train | js,js |
0f8864f27fdb27fedcaca33f72f48981155b472e | diff --git a/leaflet-providers.js b/leaflet-providers.js
index <HASH>..<HASH> 100644
--- a/leaflet-providers.js
+++ b/leaflet-providers.js
@@ -205,7 +205,7 @@
}
},
Stamen: {
- url: 'http://{s}.tile.stamen.com/{variant}/{z}/{x}/{y}.{ext}',
+ url: '//stamen-tiles-{s}.a.ssl.fastly.net/{variant}/{z}/{x}/{y}.p... | https for Stamen (#<I> without the merge commit) | leaflet-extras_leaflet-providers | train | js |
31845cd077e07d8bfb699f10ccca443798ebf45f | diff --git a/src/Common/Traits/TransientMutator.php b/src/Common/Traits/TransientMutator.php
index <HASH>..<HASH> 100644
--- a/src/Common/Traits/TransientMutator.php
+++ b/src/Common/Traits/TransientMutator.php
@@ -8,7 +8,7 @@
* @license Apache 2.0
*/
-namespace Chemem\Bingo\Functional\Common\Applicatives;
+names... | Replaced common/applicatives with common/traits | ace411_bingo-functional | train | php |
519dc08132644d53d17f4257d5b2a77ef5d61395 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -1,12 +1,8 @@
#!/usr/bin/env python
from os.path import exists
-try:
- from setuptools import setup
-except ImportError:
- from distutils.core import setup
+from setuptools import setup, find_packages
-from setupto... | Updating setup.py to use setuptools exclusively (as per recent seed changes) | adamcharnock_django-tz-detect | train | py |
90d5b373b1144b1cbabe20434ecfb8f10dcfcf4f | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,8 +1,8 @@
# -*- coding: utf-8 -*-
from setuptools import setup
-from codecs import open
from os import path
+from io import open
here = path.abspath(path.dirname(__file__))
@@ -11,8 +11,8 @@ with open(path.join(he... | Make setup.py compatible with python 3 | regardscitoyens_anpy | train | py |
228468a11241eec5a9286cd1c440cc40f5d4780b | diff --git a/daemon.go b/daemon.go
index <HASH>..<HASH> 100644
--- a/daemon.go
+++ b/daemon.go
@@ -3,7 +3,7 @@
// license that can be found in the LICENSE file.
/*
-Package daemon 0.1.2 for use with Go (golang) services.
+Package daemon 0.1.3 for use with Go (golang) services.
Package daemon provides primitives ... | Bumped version number to <I> | takama_daemon | train | go |
1dadba7c2a1bb2c06530e879b75e855338071c8c | diff --git a/app/controllers/katello/api/v2/systems_controller.rb b/app/controllers/katello/api/v2/systems_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/katello/api/v2/systems_controller.rb
+++ b/app/controllers/katello/api/v2/systems_controller.rb
@@ -158,6 +158,7 @@ class Api::V2::SystemsController ... | Reload system after orchestration is finished | Katello_katello | train | rb |
df4dfc36e7f08ba3a23556faa36827d79903c8c7 | diff --git a/lib/vagrant/machine_index.rb b/lib/vagrant/machine_index.rb
index <HASH>..<HASH> 100644
--- a/lib/vagrant/machine_index.rb
+++ b/lib/vagrant/machine_index.rb
@@ -43,7 +43,7 @@ module Vagrant
def initialize(data_dir)
@data_dir = data_dir
@index_file = data_dir.join("index")
- @lock... | MachineIndex lock is a monitor to allow recursion | hashicorp_vagrant | train | rb |
e9dfcc59d5e23cb2369cdb7d05270090baa6bf91 | diff --git a/lxd/container_test.go b/lxd/container_test.go
index <HASH>..<HASH> 100644
--- a/lxd/container_test.go
+++ b/lxd/container_test.go
@@ -138,7 +138,10 @@ func (suite *containerTestSuite) TestContainer_LoadFromDB() {
suite.Req.Nil(err)
// When loading from DB, we won't have a full LXC config
+ c.(*contai... | lxd/containers: Don't diff go-lxc structs | lxc_lxd | train | go |
e7fa7fc40f5c6f75dc1c2013678c3d44c4924056 | diff --git a/openquake/calculators/extract.py b/openquake/calculators/extract.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/extract.py
+++ b/openquake/calculators/extract.py
@@ -202,13 +202,16 @@ def extract_realizations(dstore, dummy):
@extract.add('tagcollection')
def extract_tagcollection(dstore, what... | While extracting the tagcollection, also extract loss categories
Former-commit-id: <I>e6ff5f<I>f9d<I>c4ef9ffa<I>ab9b<I>eea9 | gem_oq-engine | train | py |
f697b42e7e90271990c829c034f7c2e9d4071ce1 | diff --git a/pylp/lib/dest.py b/pylp/lib/dest.py
index <HASH>..<HASH> 100644
--- a/pylp/lib/dest.py
+++ b/pylp/lib/dest.py
@@ -14,9 +14,9 @@ from pylp.lib.transformer import Transformer
-def dest(path, **options):
- return FileWriter(path, **options)
+def dest(path, cwd = None):
"""Return a transformer that wri... | Make second argument of 'pylp.dest' more explicit | pylp_pylp | train | py |
86c14bf156edf850170f9f220d95b2aa36493def | diff --git a/app/models/ping.rb b/app/models/ping.rb
index <HASH>..<HASH> 100644
--- a/app/models/ping.rb
+++ b/app/models/ping.rb
@@ -18,6 +18,14 @@ class Ping
class << self
OK_RETURN_CODE = 'ok'
+ PACKAGES = ["katello",
+ "candlepin",
+ "pulp",
+ "thumbslug",
... | Add elasticsearch package to ping information | Katello_katello | train | rb |
0eee6ad9b73d4dadb41042de92a746a0dce28090 | diff --git a/gphoto2cffi/gphoto2.py b/gphoto2cffi/gphoto2.py
index <HASH>..<HASH> 100644
--- a/gphoto2cffi/gphoto2.py
+++ b/gphoto2cffi/gphoto2.py
@@ -391,7 +391,7 @@ class File(object):
lib.gp_camera_file_get_info(
self._cam._cam, self.directory.path.encode(),
... | Fix bug that arose when quering a File for its size | jbaiter_gphoto2-cffi | train | py |
11d703fbf138caf5b6437f3c0c7c9e2239b95ec6 | diff --git a/client.go b/client.go
index <HASH>..<HASH> 100644
--- a/client.go
+++ b/client.go
@@ -1448,6 +1448,8 @@ another:
}
func (me *Client) sendChunk(t *torrent, c *connection, r request) error {
+ // Count the chunk being sent, even if it isn't.
+ c.chunksSent++
b := make([]byte, r.Length)
tp := t.Pieces... | Count failed chunk sends against a connection | anacrolix_torrent | train | go |
bd733c6635478fb8d0c3ff970a85d8e4fbe9e2ba | diff --git a/spec/ascii_plist/reader_spec.rb b/spec/ascii_plist/reader_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/ascii_plist/reader_spec.rb
+++ b/spec/ascii_plist/reader_spec.rb
@@ -46,6 +46,21 @@ module AsciiPlist
end
end
+ describe 'reading annotations' do
+ let(:string) { '{a /*annotation*... | Add failing spec for reading annotations | CocoaPods_Nanaimo | train | rb |
5c301dd9b189ebf0923c23898c69b6d81c68c331 | diff --git a/proctl/proctl_linux_amd64.go b/proctl/proctl_linux_amd64.go
index <HASH>..<HASH> 100644
--- a/proctl/proctl_linux_amd64.go
+++ b/proctl/proctl_linux_amd64.go
@@ -279,7 +279,7 @@ func (dbp *DebuggedProcess) Next() error {
pc--
}
- f, l, _ := dbp.GoSymTable.PCToLine(pc)
+ _, l, fn := dbp.GoSymTable.PC... | Improve 'in current fn' check for Next impl | go-delve_delve | train | go |
672bb5d0087dd44c9e05d1d3b66f64f2e3cc6805 | diff --git a/toot/tui/timeline.py b/toot/tui/timeline.py
index <HASH>..<HASH> 100644
--- a/toot/tui/timeline.py
+++ b/toot/tui/timeline.py
@@ -171,6 +171,13 @@ class StatusDetails(urwid.Pile):
yield ("pack", urwid.Divider())
yield ("pack", self.build_linebox(self.card_generator(card)))
+ ... | Add reply, reblog and favourite counters | ihabunek_toot | train | py |
0c69e980bbe2114626914e119aca83a50d5b4f9e | diff --git a/src/adapters/lokijs/worker/executor.js b/src/adapters/lokijs/worker/executor.js
index <HASH>..<HASH> 100644
--- a/src/adapters/lokijs/worker/executor.js
+++ b/src/adapters/lokijs/worker/executor.js
@@ -58,11 +58,7 @@ export default class LokiExecutor {
isCached(table: TableName<any>, id: RecordId): bo... | Inline `isCached` implementation | Nozbe_WatermelonDB | train | js |
e75b19b837d60b3bb0388a9d0ec0ca656ae892fe | diff --git a/allennlp/semparse/domain_languages/nlvr_language.py b/allennlp/semparse/domain_languages/nlvr_language.py
index <HASH>..<HASH> 100644
--- a/allennlp/semparse/domain_languages/nlvr_language.py
+++ b/allennlp/semparse/domain_languages/nlvr_language.py
@@ -117,7 +117,7 @@ class NlvrLanguage(DomainLanguage):
... | Use f-string (#<I>) | allenai_allennlp | train | py |
b8acfeba6b465dab8698109fc5fc56f8e031b82d | diff --git a/lib/git/trifle.rb b/lib/git/trifle.rb
index <HASH>..<HASH> 100644
--- a/lib/git/trifle.rb
+++ b/lib/git/trifle.rb
@@ -29,8 +29,8 @@ module Git
# needless to do more than this for the following methods
# very neat BTW
DELEGATORS = %W|
- add_remote add branch branches
- current_branc... | now trifle forwards apply and diff | lacravate_git-trifle | train | rb |
f321fb921cfc72576a64e8380f9f9851e4d8d566 | diff --git a/src/sap.m/src/sap/m/SinglePlanningCalendarGrid.js b/src/sap.m/src/sap/m/SinglePlanningCalendarGrid.js
index <HASH>..<HASH> 100644
--- a/src/sap.m/src/sap/m/SinglePlanningCalendarGrid.js
+++ b/src/sap.m/src/sap/m/SinglePlanningCalendarGrid.js
@@ -2033,6 +2033,14 @@ sap.ui.define([
// Turn of the cycling... | [INTERNAL] sap.m.SinglePlanningCalendarGrid: Default browser keyboard navigation is fixed
- The default browser keyboard navigation with Alt + Left Arrow/Right Arrow is fixed
Change-Id: I<I>f<I>cb<I>c<I>fcf<I>ff<I>ab9f8fc<I>a9cb5d | SAP_openui5 | train | js |
b47138ad43426e14e05920170389794330863377 | diff --git a/js/base/Exchange.js b/js/base/Exchange.js
index <HASH>..<HASH> 100644
--- a/js/base/Exchange.js
+++ b/js/base/Exchange.js
@@ -1385,7 +1385,7 @@ module.exports = class Exchange {
const parts = marketId.split (delimiter)
if (parts.length === 2) {
const b... | safeMarket handle spot delimiter #<I> | ccxt_ccxt | train | js |
56e9c38161a5ff77fbb2c8a7d8745f243c905de3 | diff --git a/mod/glossary/sql.php b/mod/glossary/sql.php
index <HASH>..<HASH> 100644
--- a/mod/glossary/sql.php
+++ b/mod/glossary/sql.php
@@ -109,7 +109,7 @@
$where = '';
}
- $sqlselect = "SELECT ge.id, $usernamefield $as pivot, u.id uid, ge.*";
+ $sqlselect = "SELECT ge.id, $us... | Merged from MOODLE_<I>_STABLE: Fix for postgres-invalid-sql (must have AS between field and alias) | moodle_moodle | train | php |
e1e38e081bc54cc6f4a675f5af3cd0b71ebdbe05 | diff --git a/packages/site/pages/components/badge.js b/packages/site/pages/components/badge.js
index <HASH>..<HASH> 100644
--- a/packages/site/pages/components/badge.js
+++ b/packages/site/pages/components/badge.js
@@ -59,10 +59,8 @@ export default withServerProps(_ => (
<P>In either solid or stroked styles.</P>... | fix(site): remove duplicate badge appearance example | pluralsight_design-system | train | js |
ad736a8ae0cdae4ff0f58e9e757a454943e69823 | diff --git a/src/core.js b/src/core.js
index <HASH>..<HASH> 100644
--- a/src/core.js
+++ b/src/core.js
@@ -34,15 +34,15 @@ void function (root) { var __old, black
return target
}
- // Unpacks all modules in source. Utils go in `target` or the global obj
- function unpack_all(kind, source, target) ... | Uses `this` to search for modules to unpack. | sorellabs_black | train | js |
a7415336bc901f1661730f4f5a896e7b504c6d57 | diff --git a/keychain/derivation.go b/keychain/derivation.go
index <HASH>..<HASH> 100644
--- a/keychain/derivation.go
+++ b/keychain/derivation.go
@@ -96,6 +96,13 @@ const (
// session keys are limited to the lifetime of the session and are used
// to increase privacy in the watchtower protocol.
KeyFamilyTowerSes... | keychain/derivation: add KeyFamilyTowerKey distinct from NodeID | lightningnetwork_lnd | train | go |
62db749b2e95422521edfd7dda3fc38478955173 | diff --git a/test/test_Exceptions.py b/test/test_Exceptions.py
index <HASH>..<HASH> 100644
--- a/test/test_Exceptions.py
+++ b/test/test_Exceptions.py
@@ -57,6 +57,14 @@ class TestUtil(unittest.TestCase):
text = str(exc)
self.assertEqual(text, "")
+ def test_hresult(self):
+ hresult, hcont... | test_SCardGetErrorMessage: check the value of SCARD_E_UNKNOWN_READER
macOS and Linux does not define the return type of PC/SC function the
same way. So we check the returned value correspond to what PySCard has
defined. | LudovicRousseau_pyscard | train | py |
c001a4dd466fd294c0ffbe995892780a064ee200 | diff --git a/pyontutils/integration_test_helper.py b/pyontutils/integration_test_helper.py
index <HASH>..<HASH> 100644
--- a/pyontutils/integration_test_helper.py
+++ b/pyontutils/integration_test_helper.py
@@ -222,7 +222,7 @@ class _TestScriptsBase(unittest.TestCase):
' cannot test main, s... | int test helper fixes and more informative names
we were testing whether a string was not equal to a module, which was
always going to return true, so now compare to the last element in the
module path
now also include argv in the generated test names, it makes the names
annoyingly long in some cases, but if somethin... | tgbugs_pyontutils | train | py |
25eacad5cd5569e54c64afebd5f9b77b0574059c | diff --git a/lib/rubocop/cop/cop.rb b/lib/rubocop/cop/cop.rb
index <HASH>..<HASH> 100644
--- a/lib/rubocop/cop/cop.rb
+++ b/lib/rubocop/cop/cop.rb
@@ -57,13 +57,15 @@ module Rubocop
sexp.each do |elem|
if Array === elem
if elem[0] == sym
- parents << sexp
+ par... | Added elements to array only if they're not already in there instead of calling uniq afterwards. | rubocop-hq_rubocop | train | rb |
7f20acc7e55da570a3fd850ffa23ae0faaf0d926 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -129,7 +129,12 @@ Tree.prototype.list = function (name, opts, cb) {
}
Tree.prototype._list = function (head, seq, names, opts, cb) {
- var headIndex = this._inflate(seq, head.paths)
+ var headIndex
+ try {
+ headInde... | Catch _inflate errors and send them to the cb | mafintosh_append-tree | train | js |
e6a83977554325d88ededcb348ade0923e00cc80 | diff --git a/client/src/main/java/com/orientechnologies/orient/enterprise/channel/binary/OChannelBinaryClientAbstract.java b/client/src/main/java/com/orientechnologies/orient/enterprise/channel/binary/OChannelBinaryClientAbstract.java
index <HASH>..<HASH> 100755
--- a/client/src/main/java/com/orientechnologies/orient/e... | fixed wrong retry in case of not found serialized exception in the client. | orientechnologies_orientdb | train | java |
54aa5460c4545901af5d3ffb55510d0ff01d6aa4 | diff --git a/src/main/java/net/jodah/typetools/TypeResolver.java b/src/main/java/net/jodah/typetools/TypeResolver.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/jodah/typetools/TypeResolver.java
+++ b/src/main/java/net/jodah/typetools/TypeResolver.java
@@ -109,7 +109,7 @@ public final class TypeResolver {
... | use invokeWithArguments instead of invoke to support Java <I>
Java <I> changed the way the JVM handles varargs internally, meaning that
new Object[] {...} can't be used as a substitute for varargs on Java 6
source level anymore. However, invokeWithArguments explicitly wants an
Object[], so it still works. | jhalterman_typetools | train | java |
f65dd93511dec56abb0c91a814fd77a2165f8e0d | diff --git a/spec/attr_enumerable/reduce_attr_spec.rb b/spec/attr_enumerable/reduce_attr_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/attr_enumerable/reduce_attr_spec.rb
+++ b/spec/attr_enumerable/reduce_attr_spec.rb
@@ -36,7 +36,7 @@ describe AttrEnumerable do
),
method: :reduce_name,
bloc... | Fix rubocop warning 'TrailingComma' in reduce_attr_spec.rb | tbpgr_tbpgr_utils | train | rb |
986447c22682b3f24baacf3e8eec64bdf58866dc | diff --git a/src/ContaoCommunityAlliance/Composer/Plugin/Plugin.php b/src/ContaoCommunityAlliance/Composer/Plugin/Plugin.php
index <HASH>..<HASH> 100644
--- a/src/ContaoCommunityAlliance/Composer/Plugin/Plugin.php
+++ b/src/ContaoCommunityAlliance/Composer/Plugin/Plugin.php
@@ -472,7 +472,7 @@ class Plugin
}
}... | Fix issue #<I> - Use realpath() for contao root to always have absolute pathes. | contao-community-alliance_composer-plugin | train | php |
d45504d341ac9d78790153b2d0c1b0fda417a32a | diff --git a/lib/lita/mailgun_dropped_rate_repository.rb b/lib/lita/mailgun_dropped_rate_repository.rb
index <HASH>..<HASH> 100644
--- a/lib/lita/mailgun_dropped_rate_repository.rb
+++ b/lib/lita/mailgun_dropped_rate_repository.rb
@@ -29,8 +29,8 @@ module Lita
@mutex.synchronize do
@store[domain] ||= []... | reduce history stored for each domain to <I> events
* <I> should be plenty to decide if there's an issue or not
* It's also low enough that low-volume domains that have an issue
resolved should move into the green zone quicker | conversation_lita-mailgun | train | rb,rb |
b27fa518c9ba30cd1eddc5060b4f152eec6c38c8 | diff --git a/classes/VideoDownload.php b/classes/VideoDownload.php
index <HASH>..<HASH> 100644
--- a/classes/VideoDownload.php
+++ b/classes/VideoDownload.php
@@ -110,12 +110,13 @@ class VideoDownload
$process->run();
if (!$process->isSuccessful()) {
$errorOutput = trim($process->getError... | feat: Add youtube-dl exit code to the exceptions | Rudloff_alltube | train | php |
790130093e83480ecee33492f95d6c23fbbfa0c2 | diff --git a/lib/shopify_app/webhooks_manager.rb b/lib/shopify_app/webhooks_manager.rb
index <HASH>..<HASH> 100644
--- a/lib/shopify_app/webhooks_manager.rb
+++ b/lib/shopify_app/webhooks_manager.rb
@@ -30,7 +30,7 @@ module ShopifyApp
end
def destroy_webhooks
- ShopifyAPI::Webhook.all.each do |webhook|... | sometimes the shopify api can return a nil to us. so lets make sure we dont try to call #each on nil | Shopify_shopify_app | train | rb,rb |
2a9edcf455efdfa0e4eee748656d7f5c6761e2d5 | diff --git a/src/tools/bubblechart/bubblechart-trail.js b/src/tools/bubblechart/bubblechart-trail.js
index <HASH>..<HASH> 100644
--- a/src/tools/bubblechart/bubblechart-trail.js
+++ b/src/tools/bubblechart/bubblechart-trail.js
@@ -208,6 +208,15 @@ export default Class.extend({
},
+
+ _remove: function(trail, du... | Turn off trails: _context._trails[("_" + action)] is not a function (#<I>) | vizabi_vizabi | train | js |
666c289e5979410e9299b2204cedee2bebb831a3 | diff --git a/test/plugin/test_in_gc_stat.rb b/test/plugin/test_in_gc_stat.rb
index <HASH>..<HASH> 100644
--- a/test/plugin/test_in_gc_stat.rb
+++ b/test/plugin/test_in_gc_stat.rb
@@ -27,13 +27,18 @@ class GCStatInputTest < Test::Unit::TestCase
stub(GC).stat { stat }
d = create_driver
+ d.end_if do
+ ... | Use new end_if stop condition block | fluent_fluentd | train | rb |
2b2129e72d69ac40c77334079b252eba1a3d9a54 | diff --git a/lib/nexmo/config.rb b/lib/nexmo/config.rb
index <HASH>..<HASH> 100644
--- a/lib/nexmo/config.rb
+++ b/lib/nexmo/config.rb
@@ -8,9 +8,9 @@ module Nexmo
self.api_host = 'api.nexmo.com'
self.api_key = ENV['NEXMO_API_KEY']
self.api_secret = ENV['NEXMO_API_SECRET']
- self.application_i... | Add support for additional environment variables
* `ENV['NEXMO_APPLICATION_ID']`
* `ENV['NEXMO_PRIVATE_KEY']`
* `ENV['NEXMO_PRIVATE_KEY_PATH']` | Nexmo_nexmo-ruby | train | rb |
09233a755ed81878e36f1d26f8c06880ad12bf6f | diff --git a/pycm/pycm_obj.py b/pycm/pycm_obj.py
index <HASH>..<HASH> 100644
--- a/pycm/pycm_obj.py
+++ b/pycm/pycm_obj.py
@@ -400,7 +400,7 @@ class ConfusionMatrix():
matrix = self.table
if normalize:
matrix = self.normalized_table
- csv_matrix_file... | fix : minor bugs fixed. (encoding utf-8 added) | sepandhaghighi_pycm | train | py |
5881417ec4a993194ba6d64b156ad6b5ffbca97c | diff --git a/python/ray/tests/test_multi_node.py b/python/ray/tests/test_multi_node.py
index <HASH>..<HASH> 100644
--- a/python/ray/tests/test_multi_node.py
+++ b/python/ray/tests/test_multi_node.py
@@ -638,6 +638,13 @@ def test_multi_driver_logging(ray_start_regular):
driver2_wait = Semaphore.options(name="driver... | Fix bug that `test_multi_node.py::test_multi_driver_logging` hangs when GCS actor management is turned on (#<I>) | ray-project_ray | train | py |
848d24bfd19c6c555ceed1d213ba7c11fed63a9b | diff --git a/osmdroid-android/src/org/osmdroid/tileprovider/MapTileProviderArray.java b/osmdroid-android/src/org/osmdroid/tileprovider/MapTileProviderArray.java
index <HASH>..<HASH> 100644
--- a/osmdroid-android/src/org/osmdroid/tileprovider/MapTileProviderArray.java
+++ b/osmdroid-android/src/org/osmdroid/tileprovider... | put back a log message that I didn't intend to delete | osmdroid_osmdroid | train | java |
04b249caee57f3afa7ceb08255aa7db709809e85 | diff --git a/java/client/src/org/openqa/selenium/android/library/AndroidWebDriver.java b/java/client/src/org/openqa/selenium/android/library/AndroidWebDriver.java
index <HASH>..<HASH> 100644
--- a/java/client/src/org/openqa/selenium/android/library/AndroidWebDriver.java
+++ b/java/client/src/org/openqa/selenium/android... | DouniaBerrada: Increasing the response timeout for android. This is useful for executing lonnnnnng js scripts.
r<I> | SeleniumHQ_selenium | train | java |
a78fe670d6dc8bf3cd9e4392cbc1859f609c22e4 | diff --git a/hazelcast/src/main/java/com/hazelcast/spi/impl/operationparker/impl/OperationParkerImpl.java b/hazelcast/src/main/java/com/hazelcast/spi/impl/operationparker/impl/OperationParkerImpl.java
index <HASH>..<HASH> 100644
--- a/hazelcast/src/main/java/com/hazelcast/spi/impl/operationparker/impl/OperationParkerIm... | Call shutdownNow while closing OperationParkerImpl (#<I>) | hazelcast_hazelcast | train | java |
94eb8fdc9d4d91aceb4139a4a31e95f8899e20c6 | diff --git a/src/inscriptis/html_properties.py b/src/inscriptis/html_properties.py
index <HASH>..<HASH> 100644
--- a/src/inscriptis/html_properties.py
+++ b/src/inscriptis/html_properties.py
@@ -72,4 +72,4 @@ class Line(object):
'\n' * self.margin_after))
def __str__(self):
- retu... | fix: python<I> issue. | weblyzard_inscriptis | train | py |
bf62d62f1617b9b07ea099947e230e1c52182f6d | diff --git a/src/DataTable/utils/queryParams.js b/src/DataTable/utils/queryParams.js
index <HASH>..<HASH> 100644
--- a/src/DataTable/utils/queryParams.js
+++ b/src/DataTable/utils/queryParams.js
@@ -702,7 +702,7 @@ export function getQueryParams({
qb.whereAll(
getQueries(andFilters, qb, ccFields),
... | or filters are now ored properly | TeselaGen_teselagen-react-components | train | js |
536f2f39d5b4f7dc9e3d26ac435563008869903a | diff --git a/pdfconduit/__init__.py b/pdfconduit/__init__.py
index <HASH>..<HASH> 100644
--- a/pdfconduit/__init__.py
+++ b/pdfconduit/__init__.py
@@ -5,7 +5,7 @@ from pdf.conduit import *
try:
from pdf.gui.gui import GUI
GUI_INSTALLED = True
- __all__.extend("GUI")
+ __all__.append("GUI")
except Impo... | Changed extend to append for non-lists | mrstephenneal_pdfconduit | train | py |
5c556dc26ee06a9e7cec380da34684c0bec3c2c8 | diff --git a/lib/bbcloud/servers.rb b/lib/bbcloud/servers.rb
index <HASH>..<HASH> 100644
--- a/lib/bbcloud/servers.rb
+++ b/lib/bbcloud/servers.rb
@@ -6,11 +6,11 @@ module Brightbox
end
def server_type
- @server_type ||= Type.new(flavor_id)
+ @server_type ||= (Type.new(flavor_id) if flavor_id)
... | servers#list fix display of deleted servers. Fixes #<I> | brightbox_brightbox-cli | train | rb |
58ab1c2cd53b51b57e425e4f4926b9d29de424be | diff --git a/js/tests/unit/carousel.spec.js b/js/tests/unit/carousel.spec.js
index <HASH>..<HASH> 100644
--- a/js/tests/unit/carousel.spec.js
+++ b/js/tests/unit/carousel.spec.js
@@ -905,7 +905,7 @@ describe('Carousel', () => {
})
describe('to', () => {
- it('should go directement to the provided index', don... | test(carousel): french word in the wild (#<I>) | twbs_bootstrap | train | js |
8dd683e79e9801be817c6032f37c314c0f254a45 | diff --git a/lib/Thulium/Db/ModelQueryBuilder.php b/lib/Thulium/Db/ModelQueryBuilder.php
index <HASH>..<HASH> 100644
--- a/lib/Thulium/Db/ModelQueryBuilder.php
+++ b/lib/Thulium/Db/ModelQueryBuilder.php
@@ -127,4 +127,14 @@ class ModelQueryBuilder
return $this;
}
+ function __clone()
+ {
+ ... | ModelQueryBuilder: added method 'copy' | letsdrink_ouzo | train | php,php |
f9563e7fe2c2ca80d214e2cf2c2b02554ee3a048 | diff --git a/libraries/lithium/data/Connections.php b/libraries/lithium/data/Connections.php
index <HASH>..<HASH> 100644
--- a/libraries/lithium/data/Connections.php
+++ b/libraries/lithium/data/Connections.php
@@ -188,10 +188,12 @@ class Connections extends \lithium\core\StaticObject {
$class = Libraries::locate("... | removed newline at end of file and fixed an extra long line | UnionOfRAD_framework | train | php |
c3dcf9d463285089c045a0963f23abf85b609288 | diff --git a/pyof/v0x04/common/flow_match.py b/pyof/v0x04/common/flow_match.py
index <HASH>..<HASH> 100644
--- a/pyof/v0x04/common/flow_match.py
+++ b/pyof/v0x04/common/flow_match.py
@@ -393,6 +393,25 @@ class Match(GenericStruct):
self._unpack_attribute('oxm_match_fields', type(self).oxm_match_fields,
... | [v0x<I>] Add Match.get_field method
This method allows us to easily get the value for Match fields without the need
to loop over them manually. | kytos_python-openflow | train | py |
36df7e76c295e8be3065a6ad27e3053c0b3feb45 | diff --git a/src/instrumentTest/java/com/couchbase/lite/ApiTest.java b/src/instrumentTest/java/com/couchbase/lite/ApiTest.java
index <HASH>..<HASH> 100644
--- a/src/instrumentTest/java/com/couchbase/lite/ApiTest.java
+++ b/src/instrumentTest/java/com/couchbase/lite/ApiTest.java
@@ -305,10 +305,7 @@ public class ApiTest... | Remove another test assertion that did not make sense.
<URL> | couchbase_couchbase-lite-android | train | java |
bc4128873709c0175e72f13e7900f43683146fb3 | diff --git a/src/test/locale/pa-in.js b/src/test/locale/pa-in.js
index <HASH>..<HASH> 100644
--- a/src/test/locale/pa-in.js
+++ b/src/test/locale/pa-in.js
@@ -311,18 +311,6 @@ test('lenient ordinal parsing of number', function (assert) {
}
});
-test('meridiem', function (assert) {
- var h, m, t1, t2;
- fo... | Remove duplicate unit test
This is already in common-locale.js and runs for all locales | moment_moment | train | js |
9c6834a605b43b8bb6291036f0ff34a0682c2848 | diff --git a/.eslintrc.js b/.eslintrc.js
index <HASH>..<HASH> 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -38,6 +38,9 @@ module.exports = {
// I don't know how to get this to work with peerDependencies
'import/no-extraneous-dependencies': 0,
+ // going to try this going forward since I normally want ... | chore(eslint): disabled prefer-default-export rule
Going to play with this disabled for a bit since I normally need to do:
```ts
export * from "./file";
```
Right now I have to do multiple exports because of this rule:
```ts
export { default as THING } from "./file"
export * from "./file"
``` | mlaursen_react-md | train | js |
9d1822e7c6d1a8ffd636053d1e581948d6dddae5 | diff --git a/javascript/CMSMain.AddForm.js b/javascript/CMSMain.AddForm.js
index <HASH>..<HASH> 100644
--- a/javascript/CMSMain.AddForm.js
+++ b/javascript/CMSMain.AddForm.js
@@ -69,10 +69,11 @@
this.setSelected(true);
},
setSelected: function(bool) {
+ var input = this.find('input');
this.toggleCl... | MINOR Don't allow page type selection in add form when radio button is disabled | silverstripe_silverstripe-siteconfig | train | js |
8d054f1c93655786f428b5bce8e9d91be2923e25 | diff --git a/lib/controls/document.js b/lib/controls/document.js
index <HASH>..<HASH> 100644
--- a/lib/controls/document.js
+++ b/lib/controls/document.js
@@ -21,3 +21,24 @@ function Document(container) {
Document.prototype = Object.create(UIElement.prototype);
Document.prototype.constructor = Document;
+
+Document... | Added `addDef` method | anvaka_vivasvg | train | js |
6204be8906efd51cc894c628c3e0748aeda26521 | diff --git a/src/Test/WebTest/WebTestBase.php b/src/Test/WebTest/WebTestBase.php
index <HASH>..<HASH> 100644
--- a/src/Test/WebTest/WebTestBase.php
+++ b/src/Test/WebTest/WebTestBase.php
@@ -205,7 +205,8 @@ class WebTestBase extends WebTestCase
$doCheck = self::$client && !self::$conditionsChecked && $this->us... | [Test] no failureCheck when SmokeTests reports "failure" of outdated _routes.yml | EmchBerger_cube-common-develop | train | php |
966851621550edc227b6cd2e36bc2ff92486eb9a | diff --git a/lib/muster/version.rb b/lib/muster/version.rb
index <HASH>..<HASH> 100644
--- a/lib/muster/version.rb
+++ b/lib/muster/version.rb
@@ -1,5 +1,5 @@
# Muster
module Muster
# Current version of Muster
- VERSION = '0.0.11'
+ VERSION = '0.0.12'
end | Updated version to <I> | claco_muster | train | rb |
98b1c582189faee9ac40d81963008d94801f3837 | diff --git a/src/structures/Message.js b/src/structures/Message.js
index <HASH>..<HASH> 100644
--- a/src/structures/Message.js
+++ b/src/structures/Message.js
@@ -386,10 +386,10 @@ class Message extends Base {
* @readonly
*/
get deletable() {
- return (
+ return Boolean(
!this.deleted &&
- ... | fix(Message): update getters to take null permissions into account (#<I>)
* fix(Message): update message#delete
* refactor(Message): message#deletable avoid duplicate call
* Update Message.js
* fix(message): resolve syntax errors
* chore(message): resolve linting issues (death to the gh web panel)
* Upd... | discordjs_discord.js | train | js |
35f4f48627efb2d09f21360e14b75e70d97d4fb5 | diff --git a/lib/Core/Service/Mapper/ConfigMapper.php b/lib/Core/Service/Mapper/ConfigMapper.php
index <HASH>..<HASH> 100644
--- a/lib/Core/Service/Mapper/ConfigMapper.php
+++ b/lib/Core/Service/Mapper/ConfigMapper.php
@@ -7,7 +7,7 @@ use Netgen\BlockManager\Config\Registry\ConfigDefinitionRegistryInterface;
use Netge... | Remove unused extending of abstract Mapper class in ConfigMapper | netgen-layouts_layouts-core | train | php |
49133c1aa0a13f595638038e9b4b7461c37a13f7 | diff --git a/Collection.php b/Collection.php
index <HASH>..<HASH> 100644
--- a/Collection.php
+++ b/Collection.php
@@ -224,25 +224,13 @@ class Collection implements ArrayAccess, Arrayable, Countable, IteratorAggregate
if (func_num_args() == 2) {
$value = $operator;
- $operator = '==='... | Make Collection@where use loose comparison by default | illuminate_support | train | php |
3289b8d4e23b67b0fb68260d796114e208add0b0 | diff --git a/spec/kamerling/server/tcp_spec.rb b/spec/kamerling/server/tcp_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/kamerling/server/tcp_spec.rb
+++ b/spec/kamerling/server/tcp_spec.rb
@@ -25,9 +25,7 @@ module Kamerling describe Server::TCP do
describe '#stop' do
it 'stops the server' do
- tcp = S... | simplify Server::TCP#stop spec | chastell_kamerling | train | rb |
cd579b65c434c640389e73ee98cb983524d11606 | diff --git a/lib/sitemap.rb b/lib/sitemap.rb
index <HASH>..<HASH> 100644
--- a/lib/sitemap.rb
+++ b/lib/sitemap.rb
@@ -160,7 +160,7 @@ module Sitemap
private
def get_data(object, data)
- data.respond_to?(:call) ? data.call(object) : data
+ data.is_a?(Proc) ? data.call(object) : data
end
... | Using a more reliable way of determining if received data is a block. | viseztrance_rails-sitemap | train | rb |
9632abce6cdc1358ad2c98cdadd3e5292a487968 | diff --git a/intercom/__init__.py b/intercom/__init__.py
index <HASH>..<HASH> 100644
--- a/intercom/__init__.py
+++ b/intercom/__init__.py
@@ -16,7 +16,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
__author__ = 'OKso http://okso.me'
-__version__ = '0.2'
+__version__ = '0.2.1'
from .... | [enh] New bugfixes release | oksome_Intercom | train | py,py |
9bb30a338432d96df68fcb6b70de760ae98a7ebf | diff --git a/buildAll_config.py b/buildAll_config.py
index <HASH>..<HASH> 100755
--- a/buildAll_config.py
+++ b/buildAll_config.py
@@ -9,7 +9,7 @@ import subprocess
# The build scripts expect the OpenSSL and Zlib src packages
# to be in nassl's root folder
-OPENSSL_DIR = join(getcwd(), 'openssl-1.0.2d')
+OPEN... | Switched to OpenSSL <I>e in build config | nabla-c0d3_nassl | train | py |
2fcdc9dc0bb108df959dbcbcbac064d09cdbe4e4 | 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
@@ -5,6 +5,7 @@ require "navigator/action_view/instance_methods"
require "pry"
RSpec.configure do |config|
- config.filter_run focus: true
config.run_all_when_everything_filtere... | Treat symbols and true values by default when running RSpec specs. [ci skip] | bkuhlmann_navigator | train | rb |
3cb47c6cffd2715e56931336914016cbd9144bdb | diff --git a/impl/src/main/java/com/groupon/lex/metrics/timeseries/expression/RateExpression.java b/impl/src/main/java/com/groupon/lex/metrics/timeseries/expression/RateExpression.java
index <HASH>..<HASH> 100644
--- a/impl/src/main/java/com/groupon/lex/metrics/timeseries/expression/RateExpression.java
+++ b/impl/src/m... | Change how rate expression finds the previous collection. | groupon_monsoon | train | java |
9e2b2c6806f65a159972d3930820713e1228213a | diff --git a/pyPodcastParser/Podcast.py b/pyPodcastParser/Podcast.py
index <HASH>..<HASH> 100644
--- a/pyPodcastParser/Podcast.py
+++ b/pyPodcastParser/Podcast.py
@@ -254,10 +254,7 @@ class Podcast():
def set_owner(self):
"""Parses owner name and email then sets value"""
- try:
- owner... | fixed unneeded try block in set_owner() | jrigden_pyPodcastParser | train | py |
7fbe6691e19909c73b5144ba47f7a81244f67146 | diff --git a/out_request.js b/out_request.js
index <HASH>..<HASH> 100644
--- a/out_request.js
+++ b/out_request.js
@@ -515,12 +515,12 @@ TChannelOutRequest.prototype.onTimeout = function onTimeout(now) {
}
if (!self.res || self.res.state === States.Initial) {
- self.end = now;
self.timedOut ... | out_request: set self.end in emitError() only | uber_tchannel-node | train | js |
1097c162c68f22953b1a3d94de549d1da372a1b3 | diff --git a/src/com/caverock/androidsvg/SVGParser.java b/src/com/caverock/androidsvg/SVGParser.java
index <HASH>..<HASH> 100644
--- a/src/com/caverock/androidsvg/SVGParser.java
+++ b/src/com/caverock/androidsvg/SVGParser.java
@@ -590,6 +590,8 @@ public class SVGParser extends DefaultHandler
radialGradient(at... | Added nominal support for <a> so that its contents can be rendered. | BigBadaboom_androidsvg | train | java |
feab0098ab26c7b602be25410c3afdb27a7112ed | diff --git a/src/main/java/net/openhft/chronicle/network/internal/lookuptable/FileBasedHostnamePortLookupTable.java b/src/main/java/net/openhft/chronicle/network/internal/lookuptable/FileBasedHostnamePortLookupTable.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/openhft/chronicle/network/internal/lookuptable/... | Add toString method to ProcessScopedMapping | OpenHFT_Chronicle-Network | train | java |
51c03f0d843e03c8ecbf035e09fc0af1d151a0fd | diff --git a/src/Drupal/DrupalExtension/Context/DrupalContext.php b/src/Drupal/DrupalExtension/Context/DrupalContext.php
index <HASH>..<HASH> 100644
--- a/src/Drupal/DrupalExtension/Context/DrupalContext.php
+++ b/src/Drupal/DrupalExtension/Context/DrupalContext.php
@@ -147,7 +147,7 @@ class DrupalContext extends MinkC... | Issue #<I> by langworthy: Fixed locatePath() should be public. | jhedstrom_drupalextension | train | php |
b38305a5d4ec0e84543d97479b0d2ef2115e86c5 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ def read(fname):
setup(
name='unleash',
- version='0.4.3.dev1',
+ version='0.5.1.dev1',
description=('Creates release commits directly in git, unleashes them on '
'PyPI and p... | Increased version to <I>.dev1 after release of <I>.
(commit by unleash <I>.dev1) | mbr_unleash | train | py,py |
7dcbdf37765c347b2ac304d847546c3c99ab263c | diff --git a/carrot/backends/pyamqplib.py b/carrot/backends/pyamqplib.py
index <HASH>..<HASH> 100644
--- a/carrot/backends/pyamqplib.py
+++ b/carrot/backends/pyamqplib.py
@@ -172,6 +172,8 @@ class Backend(BaseBackend):
def establish_connection(self):
"""Establish connection to the AMQP broker."""
... | amqplib: Raise KeyError if hostname isn't set, for a more friendly error message. | ask_carrot | train | py |
083544823ca6a0974c702d65c494b633d2e151e0 | diff --git a/peewee_migrate/auto.py b/peewee_migrate/auto.py
index <HASH>..<HASH> 100644
--- a/peewee_migrate/auto.py
+++ b/peewee_migrate/auto.py
@@ -143,14 +143,17 @@ def diff_many(models1, models2, migrator=None, reverse=False):
def model_to_code(Model, **kwargs):
template = """class {classname}(pw.Model):
{f... | Support db_table in auto migrations. | klen_peewee_migrate | train | py,py |
953ff6fbc85218750373c6229894da35d1aaf1ea | diff --git a/lib/dbf/record.rb b/lib/dbf/record.rb
index <HASH>..<HASH> 100644
--- a/lib/dbf/record.rb
+++ b/lib/dbf/record.rb
@@ -42,7 +42,7 @@ module DBF
key = key.to_s
if attributes.has_key?(key)
attributes[key]
- elsif index = column_names.index(key)
+ elsif index = underscored_colu... | rename private column_names method | infused_dbf | train | rb |
00b429769b1272235a3241db4d9f2eff32acd99d | diff --git a/src/Symfony/Component/Form/Extension/DataCollector/EventListener/DataCollectorListener.php b/src/Symfony/Component/Form/Extension/DataCollector/EventListener/DataCollectorListener.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/Form/Extension/DataCollector/EventListener/DataCollectorListener.ph... | Clarify a comment.
The previous comment was lying since collectViewVariables() doesn't really call
the buildPreliminaryFormTree() nor the buildFinalFormTree(). | symfony_symfony | train | php |
e3f0ae6068c06bf06650aa0d460daa28252b89ec | diff --git a/test/renderer/epics/github-publish-spec.js b/test/renderer/epics/github-publish-spec.js
index <HASH>..<HASH> 100644
--- a/test/renderer/epics/github-publish-spec.js
+++ b/test/renderer/epics/github-publish-spec.js
@@ -156,7 +156,7 @@ describe('handleGistError', () => {
});
describe('publishEpic', () =>... | chore(EpicsTesting): Actually test epic. | nteract_nteract | train | js |
186b9f31951f70870f95690badf43d313e1c6e09 | diff --git a/lib/sfn/command/destroy.rb b/lib/sfn/command/destroy.rb
index <HASH>..<HASH> 100644
--- a/lib/sfn/command/destroy.rb
+++ b/lib/sfn/command/destroy.rb
@@ -53,7 +53,7 @@ module Sfn
nested_stack_cleanup!(n_stack)
end
nest_stacks = stack.template.fetch('Resources', {}).values.find_... | Fix constant fetching for stack type comparison | sparkleformation_sfn | train | rb |
3eca61280fe3ed37eee296379ea16b68029d1ed7 | diff --git a/lib/search_engine.py b/lib/search_engine.py
index <HASH>..<HASH> 100644
--- a/lib/search_engine.py
+++ b/lib/search_engine.py
@@ -3241,7 +3241,8 @@ def perform_request_search(req=None, cc=cdsname, c=None, p="", f="", rg="10", sf
search_unit_in_... | removed another source of noise in the XML stream | inveniosoftware_invenio-records | train | py |
9757c442a912e466d320a94cf2fd450add4cd02e | diff --git a/src/org/jgroups/blocks/TCPConnectionMap.java b/src/org/jgroups/blocks/TCPConnectionMap.java
index <HASH>..<HASH> 100644
--- a/src/org/jgroups/blocks/TCPConnectionMap.java
+++ b/src/org/jgroups/blocks/TCPConnectionMap.java
@@ -84,7 +84,7 @@ public class TCPConnectionMap{
this.conn_expire_time = con... | passed in incorrect SocketFactory | belaban_JGroups | train | java |
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.