hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
53cb9f3640cd06c755ae8602a2f505fb55b30873 | diff --git a/wallet/txdatabase.go b/wallet/txdatabase.go
index <HASH>..<HASH> 100644
--- a/wallet/txdatabase.go
+++ b/wallet/txdatabase.go
@@ -48,6 +48,13 @@ func NewTXLevelDB(ldbpath string) (*TXDatabaseOverlay, error) {
return NewTXOverlay(db), nil
}
+func NewTXBoltDB(boltPath string) (*TXDatabaseOverlay, error)... | added bolt db functionality for txdb | FactomProject_factom | train |
20e35f018ca3124814af9d02e43cf50c07f16d1d | diff --git a/aprslib/__init__.py b/aprslib/__init__.py
index <HASH>..<HASH> 100644
--- a/aprslib/__init__.py
+++ b/aprslib/__init__.py
@@ -41,7 +41,7 @@ from datetime import date as _date
__date__ = str(_date.today())
del _date
-__version__ = "0.6.42"
+__version__ = "0.6.43"
__author__ = "Rossen Georgiev"
__all__... | fix setup.py not including subpackages | rossengeorgiev_aprs-python | train |
b3f8765c75221d09c03192f8a0506785c3d0315b | diff --git a/EinsteinVision.py b/EinsteinVision.py
index <HASH>..<HASH> 100644
--- a/EinsteinVision.py
+++ b/EinsteinVision.py
@@ -3,13 +3,46 @@ API_GET_USAGE = API_ROOT + 'apiusage'
API_GET_MODEL_INFO = API_ROOT + 'vision/models/'
API_GET_DATASETS_INFO = API_ROOT + 'vision/datasets'
API_GET_PREDICTION_IMAGE_URL = A... | now able to get access token' | feliperyan_EinsteinVisionPython | train |
529e14d0cce040af39947d4d911e067493160800 | diff --git a/receive_stream.go b/receive_stream.go
index <HASH>..<HASH> 100644
--- a/receive_stream.go
+++ b/receive_stream.go
@@ -84,7 +84,7 @@ func (s *receiveStream) Read(p []byte) (int, error) {
s.mutex.Unlock()
if completed {
- s.streamCompleted()
+ s.sender.onStreamCompleted(s.streamID)
}
return n, er... | simplify onStreamCompleted in the receiveStream | lucas-clemente_quic-go | train |
ab6a609c32833288818c5b9cf7afaf9d2672b90c | diff --git a/pkg/services/dashboards/database/database_dashboard_public.go b/pkg/services/dashboards/database/database_dashboard_public.go
index <HASH>..<HASH> 100644
--- a/pkg/services/dashboards/database/database_dashboard_public.go
+++ b/pkg/services/dashboards/database/database_dashboard_public.go
@@ -125,7 +125,18... | Public Dashboards: fix time settings store when updating (#<I>)
* Public Dashboards: fix time settings store when updating | grafana_grafana | train |
c262e44a2fb505174772724a920f5a7dc9804355 | diff --git a/sources/scalac/symtab/SymbolCloner.java b/sources/scalac/symtab/SymbolCloner.java
index <HASH>..<HASH> 100644
--- a/sources/scalac/symtab/SymbolCloner.java
+++ b/sources/scalac/symtab/SymbolCloner.java
@@ -124,7 +124,24 @@ public class SymbolCloner {
/** Clones the given type. */
public Type cl... | - Added Methods mapSymbol and mapType | scala_scala | train |
84c5ebf4caa82109e649946b331c11d4b4ac93a7 | diff --git a/lib/client.js b/lib/client.js
index <HASH>..<HASH> 100644
--- a/lib/client.js
+++ b/lib/client.js
@@ -388,11 +388,7 @@ module.exports = Riak;
module.exports.Client = Client;
module.exports.Node = Core.RiakNode;
-module.exports.Node.buildNodes = Core.RiakNode.buildNodes;
-module.exports.Node.Builder = C... | Remove extra exports from client.js since they threw me off what was really exported. | basho_riak-nodejs-client | train |
f5d8dd868c6f04cee90ed65d8c3006f8fb67e8cc | diff --git a/angr/simos.py b/angr/simos.py
index <HASH>..<HASH> 100644
--- a/angr/simos.py
+++ b/angr/simos.py
@@ -517,7 +517,8 @@ class SimLinux(SimOS):
},
'MIPS32': {
-
+ 4001: ('exit', 'exit'),
+ 4003: ('read', 'read'),
},
'MIPS64': { | added MIPS<I> syscalls | angr_angr | train |
d02335e7c36b3b0cb3eae1d3002c7820b205f9d9 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -2,14 +2,30 @@ var exec = require('promised-exec'),
Promise=require('promise'),
testinternet=require('promise-test-connection'),
netw=require('netw'),
+pathExists=require('path-exists'),
q=require('q'),
verb=require('verb... | wpa_supplicant path | dottgonzo_hostapd_switch | train |
a6002cc19a704fcac4b8f890808cb8a8fb2553cb | diff --git a/engo_glfw.go b/engo_glfw.go
index <HASH>..<HASH> 100644
--- a/engo_glfw.go
+++ b/engo_glfw.go
@@ -72,9 +72,6 @@ func CreateWindow(title string, width, height int, fullscreen bool, msaa int) {
}
}
- gameWidth = float32(width)
- gameHeight = float32(height)
-
if fullscreen {
width = mode.Width
... | fix width/height at fullscreen | EngoEngine_engo | train |
bba616c75a3d30ebe547dd62e2fb5eeefe8cac6f | diff --git a/scripts/create_feather.py b/scripts/create_feather.py
index <HASH>..<HASH> 100644
--- a/scripts/create_feather.py
+++ b/scripts/create_feather.py
@@ -3,7 +3,6 @@
from argparse import ArgumentParser
from nanoget import get_input
-from nanoplot.version import __version__
import os
@@ -50,10 +49,6 @@... | create_feather does not need nanoplot.__version__
to reduce dependencies | wdecoster_nanoget | train |
c1ed63b1eed834e2e570d333e8c31a85d91629b7 | diff --git a/package.json b/package.json
index <HASH>..<HASH> 100644
--- a/package.json
+++ b/package.json
@@ -29,8 +29,7 @@
"js-yaml": "^3.8.1",
"lodash": "^4.17.4",
"md5": "^2.2.1",
- "nedb-promise": "^2.0.1",
- "sudo-prompt": "^6.2.1"
+ "nedb-promise": "^2.0.1"
},
"devDependencies": {
... | Remove sudo prompt (#7)
* add labels, ejectables & other fixes
* improve spawn and exec
* remove unnecessary cleans
* use full option names
* remove sudo-prompt & recreate ip and host when needed | stacker_stacker-core | train |
77e5613a86af20c11aac54ea0da4f8a42ac9957e | diff --git a/browser.js b/browser.js
index <HASH>..<HASH> 100644
--- a/browser.js
+++ b/browser.js
@@ -7,37 +7,20 @@ module.exports = {
visit: function (url) {
return new Promise(function (res) {
var browser = new Browser(conf),
- errors = [],
- completedSuccessfulValidation = false,
- ... | Refactor - simplifying, renaming. | dorightdigital_amp-validator | train |
d7f62fcfaccd004c7ff79dab2f361016acd4514e | diff --git a/contribs/gmf/externs/gmf-themes.js b/contribs/gmf/externs/gmf-themes.js
index <HASH>..<HASH> 100644
--- a/contribs/gmf/externs/gmf-themes.js
+++ b/contribs/gmf/externs/gmf-themes.js
@@ -43,7 +43,7 @@ GmfThemesNode.prototype.maxResolutionHint;
/**
- * @type {Object.<string, string>}
+ * @type {Object.<... | Change isChecked type from string to boolean | camptocamp_ngeo | train |
1ffb638da89d4a996c99bff2806b72a5f48c835c | diff --git a/test/symgroups.js b/test/symgroups.js
index <HASH>..<HASH> 100644
--- a/test/symgroups.js
+++ b/test/symgroups.js
@@ -9,7 +9,7 @@ const opts = require("commander")
"Print mismatches involving spacing commands")
.parse(process.argv);
-require('babel-register')({plugins: ["transform-es2015-mo... | Fix test/symgroups.js (#<I>)
I forgot to change it in #<I>. | KaTeX_KaTeX | train |
1978d0edb3e5184f75b0a96b640b29a9ba18d486 | diff --git a/local-volume/provisioner/pkg/discovery/discovery.go b/local-volume/provisioner/pkg/discovery/discovery.go
index <HASH>..<HASH> 100644
--- a/local-volume/provisioner/pkg/discovery/discovery.go
+++ b/local-volume/provisioner/pkg/discovery/discovery.go
@@ -117,6 +117,12 @@ func (d *Discoverer) discoverVolumes... | Put mountpoints in set for faster checks | kubernetes-incubator_external-storage | train |
1794a97b6124e6b314ec0c15c814c00dbbbadf48 | diff --git a/state/api/client.go b/state/api/client.go
index <HASH>..<HASH> 100644
--- a/state/api/client.go
+++ b/state/api/client.go
@@ -608,15 +608,18 @@ func (c *Client) AddCharm(curl *charm.URL) error {
return c.call("AddCharm", args, nil)
}
-// ResolveCharm resolves the best available series for a charm loca... | Improve RPC types for ResolveCharms.
Support bulk resolving of multiple references. | juju_juju | train |
b14bff33c886998a338c95830a251fcb6df434f4 | diff --git a/lib/HalModuleParser.js b/lib/HalModuleParser.js
index <HASH>..<HASH> 100644
--- a/lib/HalModuleParser.js
+++ b/lib/HalModuleParser.js
@@ -98,17 +98,46 @@ HalModuleParser.prototype = {
return when.resolve(result);
},
- _readPrefix: function(fileBuffer) {
- var isLittleEndian = true;
+ _divineModuleP... | user vs. system module divination! | particle-iot_binary-version-reader | train |
2c335e106beb0270788fb1490fe04ccf5eca6527 | diff --git a/scripts/test_python.js b/scripts/test_python.js
index <HASH>..<HASH> 100644
--- a/scripts/test_python.js
+++ b/scripts/test_python.js
@@ -21,21 +21,6 @@ function docker(image = "emsdk") {
return cmd;
}
-// Copy .so in place to perspective package
-try {
- let cmd1 = "cp `find build -name 'libbin... | better in-place build support, need to fix install to make sure locations are correct | finos_perspective | train |
e662c869bf8b2924c12d4ff6f999f0744779257d | diff --git a/CHANGELOG b/CHANGELOG
index <HASH>..<HASH> 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,10 @@
+ The configuration client now pulls libraries down to $libdir,
+ and all autoloading is done from there with full support
+ for any reloadable file, such as types and providers. (#621)
+ Note tha... | Fixing #<I> -- plugins are now downloaded directly into the $libdir, and autoload looks for them there. You can now easily download any reloadable file to your clients.
git-svn-id: <URL> | puppetlabs_puppet | train |
4010eb58143a48199b406b95e8a09370c0190461 | diff --git a/Slim/Http/Message.php b/Slim/Http/Message.php
index <HASH>..<HASH> 100644
--- a/Slim/Http/Message.php
+++ b/Slim/Http/Message.php
@@ -32,6 +32,17 @@ abstract class Message implements MessageInterface
protected $protocolVersion = '1.1';
/**
+ * A map of valid protocol versions
+ *
+ ... | move valid protocol versions to a class static var
Just a matter of taste: i think it looks uglier as a static function var. In this way it's also available to all Message(s) | slimphp_Slim | train |
5b5056fab089335ec9cf91a92dadb06cd8c4682a | diff --git a/lib/Widget/EventManager.php b/lib/Widget/EventManager.php
index <HASH>..<HASH> 100644
--- a/lib/Widget/EventManager.php
+++ b/lib/Widget/EventManager.php
@@ -47,7 +47,7 @@ class EventManager extends WidgetProvider
/**
* Trigger a event
*
- * @param string $name The name of event or... | added property annotation for on widget and updated phpdoc | twinh_wei | train |
f2b6c49d4ba9b788e53cbffa9165c162bdf9e001 | diff --git a/class.simple_mail.php b/class.simple_mail.php
index <HASH>..<HASH> 100755
--- a/class.simple_mail.php
+++ b/class.simple_mail.php
@@ -1,4 +1,4 @@
-<?php
+<?php namespace Simple;
/**
* Simple Mail class.
@@ -10,7 +10,7 @@
* @license Free http://unlicense.org/
*/
-class SimpleMail
+class Mail
{
... | Added namepace for PSR2 compatibility | eoghanobrien_php-simple-mail | train |
cd330ee7a7e8f41c6f0789773f59afa907ba1a0b | diff --git a/server/src/main/java/com/thoughtworks/go/server/messaging/activemq/JMSMessageListenerAdapter.java b/server/src/main/java/com/thoughtworks/go/server/messaging/activemq/JMSMessageListenerAdapter.java
index <HASH>..<HASH> 100644
--- a/server/src/main/java/com/thoughtworks/go/server/messaging/activemq/JMSMessa... | Fix log message
Without this change, the exception stack trace does not get logged. | gocd_gocd | train |
7b9364e3cb9c913191190645822ce6f18e55fb64 | diff --git a/cli/src/executable.js b/cli/src/executable.js
index <HASH>..<HASH> 100644
--- a/cli/src/executable.js
+++ b/cli/src/executable.js
@@ -14,11 +14,7 @@ export class Executable {
}
}
- static async assign(toolOrGroup, definition, context) {
- if (!toolOrGroup) {
- throw new Error("'toolOrGro... | Simplify 'Executable' implementation | runtools_run | train |
184421a9ec583a1895842e2cbae04a51dd9ee2f1 | diff --git a/.github/workflows/test-unit.yml b/.github/workflows/test-unit.yml
index <HASH>..<HASH> 100644
--- a/.github/workflows/test-unit.yml
+++ b/.github/workflows/test-unit.yml
@@ -61,6 +61,12 @@ jobs:
if: matrix.type == 'Phpunit'
run: "vendor/bin/phpunit \"$(if [ -n \"$LOG_COVERAGE\" ]; then ec... | Fix traversal when parent model is loaded (#<I>) | atk4_data | train |
6f030b0f84052bab0b5f7206afbacf14118a6c6e | diff --git a/mod/quiz/edit.php b/mod/quiz/edit.php
index <HASH>..<HASH> 100644
--- a/mod/quiz/edit.php
+++ b/mod/quiz/edit.php
@@ -113,6 +113,8 @@ function module_specific_controls($totalnumber, $recurse, $category, $cmid, $cmo
list($thispageurl, $contexts, $cmid, $cm, $quiz, $pagevars) =
question_edit_setu... | quiz editing: MDL-<I> need better skip links on the quiz editing page. | moodle_moodle | train |
1aa35b40793cc7b9282f3708abad018be0854429 | diff --git a/src/Laravel/LaragramServiceProvider.php b/src/Laravel/LaragramServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/Laravel/LaragramServiceProvider.php
+++ b/src/Laravel/LaragramServiceProvider.php
@@ -33,7 +33,7 @@ class LaragramServiceProvider extends ServiceProvider
{
$this->app->singl... | Use config setting to set the type/address of socket to use for telegram | jonnywilliamson_laragram | train |
dff9f01d1571bbe05277a105f5db22ed38ac8324 | diff --git a/app/policies/checkout_type_policy.rb b/app/policies/checkout_type_policy.rb
index <HASH>..<HASH> 100644
--- a/app/policies/checkout_type_policy.rb
+++ b/app/policies/checkout_type_policy.rb
@@ -16,6 +16,8 @@ class CheckoutTypePolicy < ApplicationPolicy
end
def destroy?
- true if user.try(:has_ro... | fix next-l/enju_leaf#<I> | next-l_enju_circulation | train |
944d9304dfd880a4f93117313f9bdcac68e90646 | diff --git a/lib/discordrb/bot.rb b/lib/discordrb/bot.rb
index <HASH>..<HASH> 100644
--- a/lib/discordrb/bot.rb
+++ b/lib/discordrb/bot.rb
@@ -139,9 +139,6 @@ module Discordrb
@current_thread = 0
@idletime = nil
-
- # Whether the connection to the gateway has succeeded yet
- @ws_success = fals... | Move some attributes relevant to the gateway to its class | meew0_discordrb | train |
84e44929bc683fe84e3ed7c64da185266573d7f8 | diff --git a/src/models/marker.js b/src/models/marker.js
index <HASH>..<HASH> 100644
--- a/src/models/marker.js
+++ b/src/models/marker.js
@@ -367,18 +367,20 @@ var Marker = Model.extend({
var steps = this._parent.time.getAllSteps();
var preparedFrames = {};
this.getFrames();
- var hooks = [];... | fixed progressbar for mountainchart (#<I>) | vizabi_vizabi | train |
a18ffb141fa0994f7369c5d4981c6241ad86b21c | diff --git a/lxd/api_cluster.go b/lxd/api_cluster.go
index <HASH>..<HASH> 100644
--- a/lxd/api_cluster.go
+++ b/lxd/api_cluster.go
@@ -1552,22 +1552,6 @@ func clusterNodeDelete(d *Daemon, r *http.Request) response.Response {
return response.SmartError(errors.Wrap(err, "Unable to get raft nodes"))
}
- // If we ar... | lxd/api/cluster: only change member role from leader | lxc_lxd | train |
b71c55477d621440411684786208951c4322f49d | diff --git a/lib/train/transports/winrm_connection.rb b/lib/train/transports/winrm_connection.rb
index <HASH>..<HASH> 100644
--- a/lib/train/transports/winrm_connection.rb
+++ b/lib/train/transports/winrm_connection.rb
@@ -27,7 +27,7 @@ class Train::Transports::WinRM
# host such as executing commands, transferring f... | winrm: hide password
* simply reported what already exists in ssh_connection | inspec_train | train |
a6e76e0bcba03b74a0e17e8c9454acb7eba504fe | diff --git a/toot/tui/constants.py b/toot/tui/constants.py
index <HASH>..<HASH> 100644
--- a/toot/tui/constants.py
+++ b/toot/tui/constants.py
@@ -39,7 +39,7 @@ PALETTE = [
VISIBILITY_OPTIONS = [
("public", "Public", "Post to public timelines"),
- ("private", "Private", "Do not post to public timelines"),
- ... | Fix VISIBILITY_OPTIONS
Reorder Visibility Options to be from "most visible" to "least visible",
and swap the definitions of "private" and "unlisted" to match the actual
visibility that results from those actions. | ihabunek_toot | train |
2111bb211e66472a5e63e077f5c204bb2d4d2e81 | diff --git a/lib/base_controller.js b/lib/base_controller.js
index <HASH>..<HASH> 100644
--- a/lib/base_controller.js
+++ b/lib/base_controller.js
@@ -153,6 +153,13 @@ controller.formats = {
*/
, XML: 'xml'
/**
+ @name controller.formats.JS
+ @constant
+ @type {String}
+ @description String constant ... | Added missing js format for jsonp. | mde_ejs | train |
8def0480b1efe22950f962f9e6439490e5cf17c0 | diff --git a/executor/explainfor_test.go b/executor/explainfor_test.go
index <HASH>..<HASH> 100644
--- a/executor/explainfor_test.go
+++ b/executor/explainfor_test.go
@@ -65,6 +65,7 @@ func (msm *mockSessionManager1) UpdateTLSConfig(cfg *tls.Config) {
func (s *testSerialSuite) TestExplainFor(c *C) {
tkRoot := testki... | tests: move TestApplyWithOtherFeatures to a serial test suite (#<I>) | pingcap_tidb | train |
2481402d21ea420ae1ee1b3a34cfab381dd6718b | diff --git a/nephele/nephele-common/src/main/java/eu/stratosphere/nephele/io/OutputGate.java b/nephele/nephele-common/src/main/java/eu/stratosphere/nephele/io/OutputGate.java
index <HASH>..<HASH> 100644
--- a/nephele/nephele-common/src/main/java/eu/stratosphere/nephele/io/OutputGate.java
+++ b/nephele/nephele-common/sr... | Removed hack used to set the partition borders | stratosphere_stratosphere | train |
f75fe12fb53e659ae6a188717931804b85587b0e | diff --git a/HtmlFlow/src/main/java/htmlflow/elements/HtmlForm.java b/HtmlFlow/src/main/java/htmlflow/elements/HtmlForm.java
index <HASH>..<HASH> 100644
--- a/HtmlFlow/src/main/java/htmlflow/elements/HtmlForm.java
+++ b/HtmlFlow/src/main/java/htmlflow/elements/HtmlForm.java
@@ -28,7 +28,7 @@ public class HtmlForm<T> ex... | tabs() method receive an out PrintStream argument | xmlet_HtmlFlow | train |
08006e781fd04de6b33490ade832419aa04fee0f | diff --git a/.expeditor/config.yml b/.expeditor/config.yml
index <HASH>..<HASH> 100644
--- a/.expeditor/config.yml
+++ b/.expeditor/config.yml
@@ -4,7 +4,6 @@
slack:
notify_channel:
- chef-found-notify
- - omnibus-rfr
# This publish is triggered by the `built_in:publish_rubygems` artifact_action.
rubyge... | Separate removing writable dmg
Fix expeditor config
This will resolve the hdiutil resource busy failure
during compress_dmg | chef_omnibus | train |
910d2e56ba8488047bc151e32f1b8f2481271fe8 | diff --git a/src/node.js b/src/node.js
index <HASH>..<HASH> 100644
--- a/src/node.js
+++ b/src/node.js
@@ -8,7 +8,12 @@ var decompress = function(output, encoding, cb) {
if(encoding === 'gzip') {
zlib.gunzip(output, cb);
} else if(encoding === 'deflate') {
- zlib.inflate(output, cb);
+ ... | src: node: besides inflate try also to inflateRaw | jakutis_httpinvoke | train |
be5def62257b64e1c7ce9d722dfdf73e887a3b3d | diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/resources/DefaultProjectFileSystem.java b/sonar-plugin-api/src/main/java/org/sonar/api/resources/DefaultProjectFileSystem.java
index <HASH>..<HASH> 100644
--- a/sonar-plugin-api/src/main/java/org/sonar/api/resources/DefaultProjectFileSystem.java
+++ b/sonar-plug... | SONAR-<I> ProjectFileSystem.resolvePath should return canonical file | SonarSource_sonarqube | train |
376fe41d69d646c39ddb9b37141c6d57db458da1 | diff --git a/package/cloudshell/cp/vcenter/common/wrappers/command_wrapper.py b/package/cloudshell/cp/vcenter/common/wrappers/command_wrapper.py
index <HASH>..<HASH> 100644
--- a/package/cloudshell/cp/vcenter/common/wrappers/command_wrapper.py
+++ b/package/cloudshell/cp/vcenter/common/wrappers/command_wrapper.py
@@ -1... | remove printing 'finished successfully' 2 | QualiSystems_vCenterShell | train |
52dc0622e68d7c11a8c0c98d1f44ad5f748fde22 | diff --git a/base/db/migrate/20120627115244_fix_activity_object_follower_count.rb b/base/db/migrate/20120627115244_fix_activity_object_follower_count.rb
index <HASH>..<HASH> 100644
--- a/base/db/migrate/20120627115244_fix_activity_object_follower_count.rb
+++ b/base/db/migrate/20120627115244_fix_activity_object_followe... | Try to fix weird error related to db schema | ging_social_stream | train |
68df2db4a74d381d34357f1dd0f7e3b31c03fee6 | diff --git a/autofit/core/non_linear.py b/autofit/core/non_linear.py
index <HASH>..<HASH> 100644
--- a/autofit/core/non_linear.py
+++ b/autofit/core/non_linear.py
@@ -702,6 +702,10 @@ class GridSearch(NonLinearOptimizer):
write(self.variable.prior_count)
@property
+ def is_checkpoint(self):
+ ... | test if there is a checkpoint and raising an exception if there is a discrepancy | rhayes777_PyAutoFit | train |
0c5c9235d63fefd25019217d1507fc7ff512b1e8 | diff --git a/tests/TwigBridgeTest.php b/tests/TwigBridgeTest.php
index <HASH>..<HASH> 100644
--- a/tests/TwigBridgeTest.php
+++ b/tests/TwigBridgeTest.php
@@ -205,8 +205,8 @@ class TwigBridgeTest extends PHPUnit_Framework_TestCase
private function getFinder(array $paths = array(), array $hints = array())
{
... | Pull request was merged in so we can now call finder methods instead of hacking it. | rcrowe_TwigBridge | train |
a8a5841b0d437619798ca0267bc8250ef568ef39 | diff --git a/src/commands/run.js b/src/commands/run.js
index <HASH>..<HASH> 100644
--- a/src/commands/run.js
+++ b/src/commands/run.js
@@ -70,7 +70,8 @@ exports.handler = function (args) {
title: 'Start local chain',
task: (ctx, task) => {
const server = ganache.server({
- gasLimit: BLOC... | Add mnemonic to local chain
Same as ganache. Makes it easier to reproduce tests, to use Metamask, etc. | aragon_aragon-cli | train |
8f6ff5fd01fe8bc52cf3344155ebda83d22bac40 | diff --git a/salt/modules/systemd.py b/salt/modules/systemd.py
index <HASH>..<HASH> 100644
--- a/salt/modules/systemd.py
+++ b/salt/modules/systemd.py
@@ -18,6 +18,7 @@ __func_alias__ = {
}
LOCAL_CONFIG_PATH = '/etc/systemd/system'
+LEGACY_INIT_SCRIPT_PATH = '/etc/init.d'
VALID_UNIT_TYPES = ['service', 'socket', '... | Make systemd implementation of service.running aware of legacy service units. | saltstack_salt | train |
1fa663317c2c744d54fc833dac1ad77ca8c723a4 | diff --git a/tests/test_templates.py b/tests/test_templates.py
index <HASH>..<HASH> 100644
--- a/tests/test_templates.py
+++ b/tests/test_templates.py
@@ -1,4 +1,5 @@
from django.template.loader import render_to_string
+from directory_components.context_processors import urls_processor
def test_google_tag_manager... | Added tests for <I> page | uktrade_directory-components | train |
31955588dc900729cc9eda39cb8e4d0e8cf60e4f | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
# [develop](https://github.com/adhearsion/adhearsion)
+ * Feature: Track peer calls when joining
# [2.1.3](https://github.com/adhearsion/adhearsion/compare/v2.1.2...v2.1.3) - [2012-10-11](http... | [FEATURE] Track peer calls when joining | adhearsion_adhearsion | train |
936cf2f1cbce0d0e9d7eed1c2e2c988cdd51d015 | diff --git a/tests/Amadeus/Client/Struct/SalesReports/DisplayQueryReportTest.php b/tests/Amadeus/Client/Struct/SalesReports/DisplayQueryReportTest.php
index <HASH>..<HASH> 100644
--- a/tests/Amadeus/Client/Struct/SalesReports/DisplayQueryReportTest.php
+++ b/tests/Amadeus/Client/Struct/SalesReports/DisplayQueryReportTe... | Added unittest for #<I> | amabnl_amadeus-ws-client | train |
0ead20e9575566d45a0cab096c7e4e164598eb81 | diff --git a/code/libraries/koowa/components/com_koowa/dispatcher/behavior/pageable.php b/code/libraries/koowa/components/com_koowa/dispatcher/behavior/pageable.php
index <HASH>..<HASH> 100644
--- a/code/libraries/koowa/components/com_koowa/dispatcher/behavior/pageable.php
+++ b/code/libraries/koowa/components/com_koow... | re #<I>: Correct docblocks and comments | timble_kodekit | train |
9daa202a7a5b1e5ac2fce7fccdd95e58148522e0 | diff --git a/twitter4j-core/src/main/java/twitter4j/StatusAdapter.java b/twitter4j-core/src/main/java/twitter4j/StatusAdapter.java
index <HASH>..<HASH> 100644
--- a/twitter4j-core/src/main/java/twitter4j/StatusAdapter.java
+++ b/twitter4j-core/src/main/java/twitter4j/StatusAdapter.java
@@ -35,8 +35,6 @@ public class St... | TFJ-<I> moved onDeletionNotice(int directMessageId, int userId) to where it should be - UserStreamAdapter | Twitter4J_Twitter4J | train |
c0a78e001399c596da3b4ecb23032bfab6c48fc9 | diff --git a/core/Archive.php b/core/Archive.php
index <HASH>..<HASH> 100644
--- a/core/Archive.php
+++ b/core/Archive.php
@@ -476,6 +476,8 @@ class Archive implements ArchiveQuery
$archiveNames = array($archiveNames);
}
+ $archiveNames = array_filter($archiveNames);
+
// apply i... | If no archives names are requested when querying archive data, do not initiate archiving. (#<I>)
* If no archives names are requested when querying archive data, do not initiate archiving.
* apply pr feedback | matomo-org_matomo | train |
8629b84ec2db7cd73c96c4df91312ca758189164 | diff --git a/core/harvester.py b/core/harvester.py
index <HASH>..<HASH> 100755
--- a/core/harvester.py
+++ b/core/harvester.py
@@ -154,11 +154,8 @@ class Harvester:
self._concrete_port = None
#
- self._raw_buffers = []
- self._buffer_tokens = []
self._announced_buffers = []
... | Delete unnecessary member variables
This is the change following r<I>. | genicam_harvesters | train |
5c203360378f31e096cb417c9b2a009f29d127ce | diff --git a/app/controllers/houston/roadmaps/dashboard_controller.rb b/app/controllers/houston/roadmaps/dashboard_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/houston/roadmaps/dashboard_controller.rb
+++ b/app/controllers/houston/roadmaps/dashboard_controller.rb
@@ -16,6 +16,7 @@ module Houston
... | [skip] Supported dashboards specific to a single roadmap (2m) | houston_houston-roadmaps | train |
d4d071344c517705230a1e1cfec42d02079595c8 | diff --git a/pushy/src/main/java/com/relayrides/pushy/apns/MockApnsServerHandler.java b/pushy/src/main/java/com/relayrides/pushy/apns/MockApnsServerHandler.java
index <HASH>..<HASH> 100644
--- a/pushy/src/main/java/com/relayrides/pushy/apns/MockApnsServerHandler.java
+++ b/pushy/src/main/java/com/relayrides/pushy/apns/... | Made a trivial casting change to avoid deprecation warnings. | relayrides_pushy | train |
11e243ab75bb6b84a1aaa9853f622c75c0386a10 | diff --git a/vcs/backends/base.py b/vcs/backends/base.py
index <HASH>..<HASH> 100644
--- a/vcs/backends/base.py
+++ b/vcs/backends/base.py
@@ -437,6 +437,35 @@ class BaseChangeset(object):
for tup in self.walk(dirnode.path):
yield tup
+ def get_archive(self, stream=None, kind=None, pr... | Added get_archive and get_chunked_archive placeholders for #<I> | codeinn_vcs | train |
e3288ddde5281cac039c1bf47406524e8542f70d | diff --git a/elasticsearch-transport/lib/elasticsearch/transport.rb b/elasticsearch-transport/lib/elasticsearch/transport.rb
index <HASH>..<HASH> 100644
--- a/elasticsearch-transport/lib/elasticsearch/transport.rb
+++ b/elasticsearch-transport/lib/elasticsearch/transport.rb
@@ -18,6 +18,7 @@
require "uri"
require "ti... | Explicitly require zlib library | elastic_elasticsearch-ruby | train |
abe6b41d04575575ef9d9c59b23a8f86fa5eb25f | diff --git a/numina/core/recipereqs.py b/numina/core/recipereqs.py
index <HASH>..<HASH> 100644
--- a/numina/core/recipereqs.py
+++ b/numina/core/recipereqs.py
@@ -76,6 +76,14 @@ class RecipeRequirements(object):
val = getattr(self, key)
req.type.validate(val)
+ self._run_checks()
+
+ ... | Run available checks in 'validate' | guaix-ucm_numina | train |
a993e32acc51881df38fe04e01a995f05dae6433 | diff --git a/src/main/java/org/zeroturnaround/zip/ZTFileUtil.java b/src/main/java/org/zeroturnaround/zip/ZTFileUtil.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/zeroturnaround/zip/ZTFileUtil.java
+++ b/src/main/java/org/zeroturnaround/zip/ZTFileUtil.java
@@ -50,16 +50,17 @@ public final class ZTFileUtil {
... | ZTFileUtil works with filenames instead of File[] for memory efficiency | zeroturnaround_zt-zip | train |
03b5a053ea0e00414fb90bc567ceacb3157eab11 | diff --git a/remotes/docker/authorizer.go b/remotes/docker/authorizer.go
index <HASH>..<HASH> 100644
--- a/remotes/docker/authorizer.go
+++ b/remotes/docker/authorizer.go
@@ -273,7 +273,7 @@ func (ah *authHandler) doBearerAuth(ctx context.Context) (string, error) {
// copy common tokenOptions
to := ah.common
- to... | remotes: mark GetTokenScopes public
Authorizer interface can’t be really implemented because
scopes are passed in on a side channel via private value in context. | containerd_containerd | train |
a9c71ce9cd0f148f67bbf22b36d345efbeaea3f1 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -51,6 +51,7 @@ end
- **decidim-core**: Fix events for polymorphic authors [\#4387](https://github.com/decidim/decidim/pull/4387)
- **decidim-meetings**: Fix order of upcoming meetings [\#4398](https://github.... | Fix comment activity cell (#<I>)
* Fix CommentActivityCell with comment as commentable
* Add CHANGELOG | decidim_decidim | train |
ae295b9102a35ff121a1c380aa3b125e84ee21a7 | diff --git a/src/Support/helpers.php b/src/Support/helpers.php
index <HASH>..<HASH> 100644
--- a/src/Support/helpers.php
+++ b/src/Support/helpers.php
@@ -207,7 +207,7 @@ if (! function_exists('get_str_endswith')) {
function get_str_endswith($haystack, $needles)
{
foreach ((array) $needles as $needle... | Apply fixes from StyleCI (#<I>) | rinvex_laravel-support | train |
26af0a37a871e64d19ad34d03830b1c9c7155f35 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -67,12 +67,11 @@ setup_requires = [
install_requires = [
'Flask>=0.11.1',
- # elasticsearch has hard version range dependency on urllib3
- # requests has hard version range dependency on idna
- # Every time id... | installation: upgrade urllib3 pin | inveniosoftware_invenio-search | train |
6932a884992eef533c84c9307bcc131658d72d09 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -27,6 +27,10 @@ module.exports = function(params, options) {
if (!params.s3.key) throw gulpError('If uploading via S3, a key must be provided');
}
+ if (params.alias && !params.publish) {
+ throw gulp... | Added support for creating and setting aliases | scottwrobinson_gulp-lambda-deploy | train |
9fdbefb903ed5b5ced2e1c8998511835cb754ead | diff --git a/examples/simple/i18n.js b/examples/simple/i18n.js
index <HASH>..<HASH> 100644
--- a/examples/simple/i18n.js
+++ b/examples/simple/i18n.js
@@ -1,6 +1,6 @@
const { localeSubpaths } = require('next/config').default().publicRuntimeConfig
-const NextI18Next = require('next-i18next').default
+const NextI18Nex... | chore: Change NextI<I>Next import in example | isaachinman_next-i18next | train |
588020b267fdae68d1fab2751e8288f0e1834618 | diff --git a/grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/serverfactory/GrpcServerFactory.java b/grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/serverfactory/GrpcServerFactory.java
index <HASH>..<HASH> 100644
--- a/grpc-server-spring-boot-autoconfigure/src... | Detach the server factory bean lifecycle from the server lifecycle bean | yidongnan_grpc-spring-boot-starter | train |
30a5b300155f06fdb425cb7adec4fc6937e44fb2 | diff --git a/client/state/ui/actions/set-sites.js b/client/state/ui/actions/set-sites.js
index <HASH>..<HASH> 100644
--- a/client/state/ui/actions/set-sites.js
+++ b/client/state/ui/actions/set-sites.js
@@ -3,8 +3,6 @@
*/
import { SELECTED_SITE_SET } from 'state/action-types';
-import 'state/data-layer/wpcom/sites... | State: Remove JITM data layer from UI actions (#<I>) | Automattic_wp-calypso | train |
3a7d154f6561f9b3c8db4620049244d5ba74e06a | diff --git a/axes/middleware.py b/axes/middleware.py
index <HASH>..<HASH> 100644
--- a/axes/middleware.py
+++ b/axes/middleware.py
@@ -47,7 +47,9 @@ class AxesMiddleware:
AxesProxyHandler.update_request(request)
username = get_client_username(request)
credentials = get... | Adjust formatting to match the lint check. | jazzband_django-axes | train |
a81e1d766f8745aeb2ae799b1189d92dfd6ae3eb | diff --git a/lib/Doctrine/Query.php b/lib/Doctrine/Query.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/Query.php
+++ b/lib/Doctrine/Query.php
@@ -273,9 +273,9 @@ class Doctrine_Query extends Doctrine_Hydrate implements Countable {
foreach($names as $name) {
if($count == 0) {
- ... | added leftJoin and innerJoin methods | doctrine_orm | train |
a8b17bea2476102d2670411b78c505eb5758d850 | diff --git a/geddy-core/scripts/startserv.js b/geddy-core/scripts/startserv.js
index <HASH>..<HASH> 100644
--- a/geddy-core/scripts/startserv.js
+++ b/geddy-core/scripts/startserv.js
@@ -42,8 +42,18 @@ var die = function (str) {
process.exit();
}
-if (process.version < MIN_NODE_VERSION) {
- die('Geddy requires '... | Changed the node dependency check to iterate over values because node version number "<I>" < "<I>" returns true. | mde_ejs | train |
6496cd4df5aca3cbdaa409be11c654f91f1eefcb | diff --git a/input/string/string-line/enum.js b/input/string/string-line/enum.js
index <HASH>..<HASH> 100644
--- a/input/string/string-line/enum.js
+++ b/input/string/string-line/enum.js
@@ -13,6 +13,7 @@ var noop = require('es5-ext/lib/Function/noop')
, DOMRadio = require('../../_controls/radio')
... | Provide option to use base multiple input for Enum | medikoo_dbjs-dom | train |
7ac18c67c786b695fd7733fa8ee42f55a3d81255 | diff --git a/src/Model/Behavior/SlugBehavior.php b/src/Model/Behavior/SlugBehavior.php
index <HASH>..<HASH> 100644
--- a/src/Model/Behavior/SlugBehavior.php
+++ b/src/Model/Behavior/SlugBehavior.php
@@ -381,6 +381,7 @@ class SlugBehavior extends Behavior
$id = $entity->get($primaryKey);
if ($id !== ... | Ignore error reported by psalm | UseMuffin_Slug | train |
8f578d6486855ca272885a62b44c3da150f32a0a | diff --git a/tests/test-timber-post.php b/tests/test-timber-post.php
index <HASH>..<HASH> 100644
--- a/tests/test-timber-post.php
+++ b/tests/test-timber-post.php
@@ -282,6 +282,44 @@
$this->assertEquals( $quote . 'Yes', $post->post_content );
}
+ function testMultiPreviewRevisions(){
+ global $current_user... | ref #<I> -- added failing test to confirm @dknoben's fix | timber_timber | train |
0801de73e98644d4163ecc0fbf834d85a3bbd90e | diff --git a/eZ/Publish/Core/Persistence/Cache/ContentTypeHandler.php b/eZ/Publish/Core/Persistence/Cache/ContentTypeHandler.php
index <HASH>..<HASH> 100644
--- a/eZ/Publish/Core/Persistence/Cache/ContentTypeHandler.php
+++ b/eZ/Publish/Core/Persistence/Cache/ContentTypeHandler.php
@@ -56,6 +56,7 @@ class ContentTypeHa... | Added missing key in ContentTypeHandler (#<I>) | ezsystems_ezpublish-kernel | train |
0ffea93f4a6f694d5a0953c263013980ec2931c3 | diff --git a/ttorrent-client/src/main/java/com/turn/ttorrent/client/CommunicationManager.java b/ttorrent-client/src/main/java/com/turn/ttorrent/client/CommunicationManager.java
index <HASH>..<HASH> 100644
--- a/ttorrent-client/src/main/java/com/turn/ttorrent/client/CommunicationManager.java
+++ b/ttorrent-client/src/ma... | fix invocation "piece complete" callback for not validated pieces | mpetazzoni_ttorrent | train |
7113d393e79c1f5b9458891df5110103bb7a7266 | diff --git a/activiti-cycle/src/main/java/org/activiti/cycle/impl/CycleServiceImpl.java b/activiti-cycle/src/main/java/org/activiti/cycle/impl/CycleServiceImpl.java
index <HASH>..<HASH> 100644
--- a/activiti-cycle/src/main/java/org/activiti/cycle/impl/CycleServiceImpl.java
+++ b/activiti-cycle/src/main/java/org/activit... | HEMERA-<I>: Klicking on a tag now shows a folder, but when tagging the folder we get an exception that this is not possible | camunda_camunda-bpm-platform | train |
03c909a078663840eb7e461343bcde95a09c59f9 | diff --git a/lib/realtime-validations/version.rb b/lib/realtime-validations/version.rb
index <HASH>..<HASH> 100644
--- a/lib/realtime-validations/version.rb
+++ b/lib/realtime-validations/version.rb
@@ -1,3 +1,3 @@
module RealtimeValidations
- VERSION = '0.2.0'
+ VERSION = '0.2.1'
end
diff --git a/vendor/assets/jav... | If we have another error, fade out it smoothly and then show the new one | ereslibre_realtime-validations | train |
e1774672af07f2333b805ff5dd5ededed0efa944 | diff --git a/spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/context/SpringBootTestContextBootstrapper.java b/spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/context/SpringBootTestContextBootstrapper.java
index <HASH>..<HASH> 100644
--- a/spring-boot-pro... | Prefer servlet to reactive when Jersey and WebFlux are both available
Closes gh-<I> | spring-projects_spring-boot | train |
0647fa1ae12392cfe3eb89b85e72a480a9db0e61 | diff --git a/activejdbc/src/main/java/org/javalite/activejdbc/MetaModel.java b/activejdbc/src/main/java/org/javalite/activejdbc/MetaModel.java
index <HASH>..<HASH> 100644
--- a/activejdbc/src/main/java/org/javalite/activejdbc/MetaModel.java
+++ b/activejdbc/src/main/java/org/javalite/activejdbc/MetaModel.java
@@ -114,1... | activejdbc-<I> Create ability to turn off time attribute management | javalite_activejdbc | train |
9e88b5bca02f8c908e90812d096960b5b6124c92 | diff --git a/src/referencer.js b/src/referencer.js
index <HASH>..<HASH> 100644
--- a/src/referencer.js
+++ b/src/referencer.js
@@ -197,6 +197,12 @@ export default class Referencer extends esrecurse.Visitor {
));
}
+ // FunctionExpression with name creates its special scope;
+ ... | Change type of FunctionExpressionNameScpe to 'function-expression-name'
This change breaks the backword compatibility.
Need to update the major version. | estools_escope | train |
2a7d33770f7fbab5de92f7fa8eb7faf3f1b0ecb6 | diff --git a/Gemfile b/Gemfile
index <HASH>..<HASH> 100644
--- a/Gemfile
+++ b/Gemfile
@@ -13,7 +13,7 @@ group :asciidoc do
end
group :markdown do
- gem 'redcarpet', '= 1.17.2', :platforms => :mri
+ gem 'redcarpet', '= 2.3.0', :platforms => :mri
gem 'kramdown', :platforms => :jruby
end
diff --git a/lib/yard... | Turned on the lax spacing option of Redcarpet to comply with the Markdown standard | lsegal_yard | train |
67ddc6638021ca3d990ee12a4a1a5b9567a2ea9f | diff --git a/sprd/model/Product.js b/sprd/model/Product.js
index <HASH>..<HASH> 100644
--- a/sprd/model/Product.js
+++ b/sprd/model/Product.js
@@ -401,15 +401,26 @@ define([
init: function (callback) {
var self = this;
+
flow()
.seq(function (cb) {
-... | fetch product during init only if not new, return product in callback | spreadshirt_rAppid.js-sprd | train |
652522486963fe5b15d25e627dbd5c23896c145b | diff --git a/src/selection.js b/src/selection.js
index <HASH>..<HASH> 100644
--- a/src/selection.js
+++ b/src/selection.js
@@ -53,17 +53,7 @@ export default class Selection extends Cursor {
}
getTextRange () {
- const rangeUntilSelection = this.range.cloneRange()
- rangeUntilSelection.setStart(this.host, ... | refactor: selection returns simple text range again | livingdocsIO_editable.js | train |
9d1662079633a5586cd1fe53ba81a5676a80c5d1 | diff --git a/build/bundle.js b/build/bundle.js
index <HASH>..<HASH> 100644
--- a/build/bundle.js
+++ b/build/bundle.js
@@ -160,62 +160,90 @@ var Events = (function () {
return message;
};
Events.create = function (data) {
- var message = "";
var type = data.ref_type;
var repo... | Build... Need to rework this so build is done on the other end | Falconerd_discord-bot-github | train |
b673ea0afb6c6223994be02493fb284922d31438 | diff --git a/x3dh/state.py b/x3dh/state.py
index <HASH>..<HASH> 100644
--- a/x3dh/state.py
+++ b/x3dh/state.py
@@ -160,7 +160,10 @@ class State(object):
sk = self.__kdf(dh1 + dh2 + dh3 + dh4)
- ad = self.__ik.enc + other_ik.enc
+ ik_enc_serialized = self.__EncryptionKeyEncoder.encodeEnc... | libsignal compatibility update #1 | Syndace_python-x3dh | train |
adee5ca1d5b90ea64dd999b9cc0a087649b3b87c | diff --git a/compiler.js b/compiler.js
index <HASH>..<HASH> 100644
--- a/compiler.js
+++ b/compiler.js
@@ -19,6 +19,14 @@ var Bundler = require("./bundler"),
makeQuery = Promise.promisify(global.db.queries);
+
+//
+// Lookup where key is file path and value is array of routes. Used for route removal.
+/... | compiler#addFile: creates lookup between files and routes | shippjs_shipp-server | train |
57be60da73e970dcaa8d279e4ef4513a3d5fa93a | diff --git a/pandas/tests/arithmetic/test_object.py b/pandas/tests/arithmetic/test_object.py
index <HASH>..<HASH> 100644
--- a/pandas/tests/arithmetic/test_object.py
+++ b/pandas/tests/arithmetic/test_object.py
@@ -311,7 +311,7 @@ class TestArithmetic:
index - "foo"
with pytest.raises(TypeError,... | CLN: fix numpy FutureWarning in tests (#<I>) | pandas-dev_pandas | train |
2753edcc497f63335bfb237ae5995f4bed30c950 | diff --git a/dispatch/static/manager/src/js/components/Header/Header.js b/dispatch/static/manager/src/js/components/Header/Header.js
index <HASH>..<HASH> 100644
--- a/dispatch/static/manager/src/js/components/Header/Header.js
+++ b/dispatch/static/manager/src/js/components/Header/Header.js
@@ -3,12 +3,11 @@ import { Li... | move desktop size to helpers
increase dropdown width for longer tab names | ubyssey_dispatch | train |
457b98419fd418c881bf32777a2e90604fdeeea8 | diff --git a/lib/jsduck/app.rb b/lib/jsduck/app.rb
index <HASH>..<HASH> 100644
--- a/lib/jsduck/app.rb
+++ b/lib/jsduck/app.rb
@@ -38,8 +38,8 @@ module JsDuck
# Initialize guides, videos, examples, ...
@assets = Assets.new(@relations, @opts)
- # Give access to assets from all tags
- TagRegistr... | Inject the assets to @aside tag directly.
Don't pass them through the TagRegistry. Either way it's a hack, but
doing it through TagRegistry is only adding an extra layer of
indirection. | senchalabs_jsduck | train |
fbb210171ccc378dc449640a1f7032f46b090c00 | diff --git a/spec/honey_format/csv_spec.rb b/spec/honey_format/csv_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/honey_format/csv_spec.rb
+++ b/spec/honey_format/csv_spec.rb
@@ -232,7 +232,7 @@ describe HoneyFormat::CSV do
csv = described_class.new(csv_string, header: header)
expected = <<~CSV
- ... | Update CSV spec to expect new header column format | buren_honey_format | train |
03ace75a8fc38cdbc68106ece7e03117d3b754e7 | diff --git a/src/main/java/org/jboss/aesh/console/command/registry/CommandRegistry.java b/src/main/java/org/jboss/aesh/console/command/registry/CommandRegistry.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/jboss/aesh/console/command/registry/CommandRegistry.java
+++ b/src/main/java/org/jboss/aesh/console/com... | [AESH-<I>] Possibility of unregister commands | aeshell_aesh | train |
7071878974f6eaf5c05cb9ffe1cb2f46f2b1b0a9 | diff --git a/src/feedforwardNeuralNetwork.js b/src/feedforwardNeuralNetwork.js
index <HASH>..<HASH> 100644
--- a/src/feedforwardNeuralNetwork.js
+++ b/src/feedforwardNeuralNetwork.js
@@ -3,7 +3,7 @@
var Layer = require("./layer");
var Matrix = require("ml-matrix");
-module.exports = FeedforwardNeuralNetworks;
+modu... | Doc added to the FNN module. | mljs_feedforward-neural-networks | train |
6d03f9a0faed3522dc412b45b2529dcf6c9c7743 | diff --git a/src/Utility/CoverageData.php b/src/Utility/CoverageData.php
index <HASH>..<HASH> 100644
--- a/src/Utility/CoverageData.php
+++ b/src/Utility/CoverageData.php
@@ -133,7 +133,7 @@ class CoverageData
if ($passthru === true) {
$this->wrapup($out);
}
- ... | Strip slashes to fix Windows issue. | humbug_humbug | train |
583aa4c108ed24da4ecd6f9b5c890bfffcba6db7 | diff --git a/validator/tests/test_journal/tests.py b/validator/tests/test_journal/tests.py
index <HASH>..<HASH> 100644
--- a/validator/tests/test_journal/tests.py
+++ b/validator/tests/test_journal/tests.py
@@ -1282,7 +1282,7 @@ class TestChainControllerGenesisPeer(unittest.TestCase):
check_publish_block_f... | Fix unit test batch injector keyword arg
One PR changed the name of the keyword arg while another branch added a new
batch injector, so git didn't catch this problem. | hyperledger_sawtooth-core | train |
dfa0c5281c1214789c42e51d40ec42e22c8ff334 | diff --git a/hgvs/dataproviders/uta.py b/hgvs/dataproviders/uta.py
index <HASH>..<HASH> 100644
--- a/hgvs/dataproviders/uta.py
+++ b/hgvs/dataproviders/uta.py
@@ -481,10 +481,8 @@ class UTA_postgresql(UTABase):
def close(self):
if self.pooling:
- _logger.warning("Closing pool; future mapping ... | closes #<I>: Removed useless warning (Closing connection; future mapping and validation will fail) | biocommons_hgvs | train |
26e58fbe7c77a0c3d19b30167fcba2cdb65ad725 | diff --git a/src/main/java/com/netflix/astyanax/clock/MicrosecondsClock.java b/src/main/java/com/netflix/astyanax/clock/MicrosecondsClock.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/netflix/astyanax/clock/MicrosecondsClock.java
+++ b/src/main/java/com/netflix/astyanax/clock/MicrosecondsClock.java
@@ -2,6 +... | Put back original author tags that were inadvertantly left out. | Netflix_astyanax | train |
908d67dc202ead96008753fb5f1a92bf4c5bf3eb | diff --git a/util/str.py b/util/str.py
index <HASH>..<HASH> 100644
--- a/util/str.py
+++ b/util/str.py
@@ -1,9 +1,16 @@
import os.path
def merge(strings, join_str='+', left_bracket='(', right_bracket=')'):
+ ## common prefix
commonprefix = os.path.commonprefix(strings)
- commonsuffix = os.path.commonpref... | BUG: uti.str.merge: now also works correctly with equal strings | jor-_util | train |
7a2ad247cb71acb723bd57bb7f64517ea1b7a2ad | diff --git a/includes/functions/functions_print_facts.php b/includes/functions/functions_print_facts.php
index <HASH>..<HASH> 100644
--- a/includes/functions/functions_print_facts.php
+++ b/includes/functions/functions_print_facts.php
@@ -91,7 +91,7 @@ function print_fact(WT_Fact $fact, WT_GedcomRecord $record) {
}
... | #<I> - Events of Close relatives - Christening event error | fisharebest_webtrees | train |
dc6ff631b6df5c2ce50b6026f7cf263102aae513 | diff --git a/lib/qx/tool/cli/Watch.js b/lib/qx/tool/cli/Watch.js
index <HASH>..<HASH> 100644
--- a/lib/qx/tool/cli/Watch.js
+++ b/lib/qx/tool/cli/Watch.js
@@ -75,7 +75,7 @@ qx.Class.define("qx.tool.cli.Watch", {
};
applications.push(data);
let dir = application.getBootPath();
- if (dir... | it's not allowed to watch the same directory more than once | qooxdoo_qooxdoo-compiler | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.