hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
08bb4460a728b4f2998fad52898392b690942c5d | diff --git a/src/main/groovy/com/blackducksoftware/integration/hub/api/aggregate/bom/AggregateBomRequestService.java b/src/main/groovy/com/blackducksoftware/integration/hub/api/aggregate/bom/AggregateBomRequestService.java
index <HASH>..<HASH> 100644
--- a/src/main/groovy/com/blackducksoftware/integration/hub/api/aggre... | Working on fixing issues with empty BOM's | blackducksoftware_blackduck-common | train |
7f964ff45bd02c4e76a5f49f666c513842f00fd8 | diff --git a/test/unit/index.spec.js b/test/unit/index.spec.js
index <HASH>..<HASH> 100644
--- a/test/unit/index.spec.js
+++ b/test/unit/index.spec.js
@@ -20,6 +20,7 @@ const preprocessor = require('../../dist/index')
describe('webpack preprocessor', function () {
beforeEach(function () {
+ webpack.reset()
... | chore: always reset webpack stub | cypress-io_cypress | train |
acbaccd6aa502bc9a25472b19f143f3910585cd6 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -60,7 +60,7 @@ function maybeAnswer(msg) {
var corrId=msg.properties.correlationId;
var pro = cacheTable[corrId];
if(pro){
- pro.resolve(msg.content.toString());
+ pro.resolve(JSON.parse(msg.conten... | solve a mistake of not parsing result from server to JSON in package | richardzyx_node-microservice | train |
332cb7150ff291578bc1ef5cb04ec3ea66dc2fee | diff --git a/test/taglib-test.js b/test/taglib-test.js
index <HASH>..<HASH> 100644
--- a/test/taglib-test.js
+++ b/test/taglib-test.js
@@ -51,7 +51,7 @@ function testRender(path, data, done, options) {
var context = options.context || new Context(new StringBuilder());
marko.render(inputPath, data, context)
... | Use finish event instead of end event when listening for marko template writer to finish | marko-js_marko-widgets | train |
63caf22671ae03f23ba93534082e91eb24a5b539 | diff --git a/cmd/syncthing/main.go b/cmd/syncthing/main.go
index <HASH>..<HASH> 100644
--- a/cmd/syncthing/main.go
+++ b/cmd/syncthing/main.go
@@ -600,17 +600,18 @@ func syncthingMain() {
if (opts.MaxRecvKbps > 0 || opts.MaxSendKbps > 0) && !opts.LimitBandwidthInLan {
lans, _ = osutil.GetLans()
- networks := ma... | Consider 'AlwaysLocalNets' in bandwidth limiters
'AlwaysLocalNets' was getting printed, but was getting used
when setting up connections. Now, the nets that should be
considered local are printed and used. | syncthing_syncthing | train |
2c6d08abd0e8c4d9e4957190d3cc55c6c57a8416 | diff --git a/host-controller/src/main/java/org/jboss/as/host/controller/HostControllerConfigurationPersister.java b/host-controller/src/main/java/org/jboss/as/host/controller/HostControllerConfigurationPersister.java
index <HASH>..<HASH> 100644
--- a/host-controller/src/main/java/org/jboss/as/host/controller/HostContro... | [WFCORE-<I>] Don't ignore an empty host.xml in the non-embedded case | wildfly_wildfly-core | train |
0e5b15d92b9eec2a5bcc941c0f5700644aa52b2d | diff --git a/lib/core/src/server/manager/manager-config.js b/lib/core/src/server/manager/manager-config.js
index <HASH>..<HASH> 100644
--- a/lib/core/src/server/manager/manager-config.js
+++ b/lib/core/src/server/manager/manager-config.js
@@ -59,11 +59,12 @@ async function getManagerWebpackConfig(options, presets) {
... | FIX missing passed version property in autoref | storybooks_storybook | train |
c401d2c639d08b3c0d75db7ee97b50ecfd88363c | diff --git a/tests/aik099/PHPUnit/Integration/BrowserStackAwareTestCase.php b/tests/aik099/PHPUnit/Integration/BrowserStackAwareTestCase.php
index <HASH>..<HASH> 100644
--- a/tests/aik099/PHPUnit/Integration/BrowserStackAwareTestCase.php
+++ b/tests/aik099/PHPUnit/Integration/BrowserStackAwareTestCase.php
@@ -65,9 +65,... | Use Firefox in tests, because due ChromeDriver bug switching to main window is impossible | minkphp_phpunit-mink | train |
675a912eb86a9e109e9877379e8454b388242d57 | diff --git a/activerecord/lib/active_record/connection_adapters/mysql/schema_statements.rb b/activerecord/lib/active_record/connection_adapters/mysql/schema_statements.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/connection_adapters/mysql/schema_statements.rb
+++ b/activerecord/lib/active_record/... | Remove FK together with column in MySQL
Unlike with other databses, MySQL doesn't let you remove the column
if there's a FK on this column.
For better developer experience we want to remove the FK together with
the column. | rails_rails | train |
41db005d0b35daf9d60b669b35071a1e0f4a00fa | diff --git a/command/agent/dns.go b/command/agent/dns.go
index <HASH>..<HASH> 100644
--- a/command/agent/dns.go
+++ b/command/agent/dns.go
@@ -787,8 +787,8 @@ func (d *DNSServer) handleRecurse(resp dns.ResponseWriter, req *dns.Msg) {
var err error
for _, recursor := range d.recursors {
r, rtt, err = c.Exchange(r... | Fix panic where r.Compress would be set before checking for errors. | hashicorp_consul | train |
8c9c185831f0a6f403962cb8586d352de7563de4 | diff --git a/lib/yard/logging.rb b/lib/yard/logging.rb
index <HASH>..<HASH> 100644
--- a/lib/yard/logging.rb
+++ b/lib/yard/logging.rb
@@ -12,7 +12,8 @@ module YARD
# @return [IO] the IO object being logged to
# @since 0.8.2
- attr_accessor :io
+ def io; @logdev end
+ def io=(pipe) @logdev = pipe e... | Allow log.io= to properly update underlying stream.
Stream logger output to StringIO buffer instead of STDOUT for tests | lsegal_yard | train |
47ee6f0d597cacbaa35cfa128e83d6cad008a5f6 | diff --git a/src/Exception.php b/src/Exception.php
index <HASH>..<HASH> 100644
--- a/src/Exception.php
+++ b/src/Exception.php
@@ -15,7 +15,7 @@ abstract class Exception
*
* @return Throwable
*/
- final public static function getBaseException(Throwable $throwable)
+ final public static function ... | Add scalar type hints and return types | subjective-php_util-exceptions | train |
c43198638d32c0442dbea6f869c158a8d9e79662 | diff --git a/virtualchain/lib/blockchain/bitcoin_blockchain/multisig.py b/virtualchain/lib/blockchain/bitcoin_blockchain/multisig.py
index <HASH>..<HASH> 100644
--- a/virtualchain/lib/blockchain/bitcoin_blockchain/multisig.py
+++ b/virtualchain/lib/blockchain/bitcoin_blockchain/multisig.py
@@ -21,37 +21,48 @@
alon... | refactor multisig.py to use routines from bits.py and keys.py | blockstack_virtualchain | train |
178fd5cafbdb413b7f41a91ad351e3fed582c22a | diff --git a/library/CM/PagingSource/MongoDb.php b/library/CM/PagingSource/MongoDb.php
index <HASH>..<HASH> 100644
--- a/library/CM/PagingSource/MongoDb.php
+++ b/library/CM/PagingSource/MongoDb.php
@@ -56,13 +56,25 @@ class CM_PagingSource_MongoDb extends CM_PagingSource_Abstract {
$cacheKey = array('items', ... | use 'skip' and 'limit' operations for offset and count instead of unavailable cursor->skip() and limit() operations when using aggregation | cargomedia_cm | train |
feae05f88abb69888dfd16301e0c1d2449e4e335 | diff --git a/kubetest/kops.go b/kubetest/kops.go
index <HASH>..<HASH> 100644
--- a/kubetest/kops.go
+++ b/kubetest/kops.go
@@ -45,7 +45,7 @@ import (
)
// kopsAWSMasterSize is the default ec2 instance type for kops on aws
-const kopsAWSMasterSize = "c4.large"
+const kopsAWSMasterSize = "c5.large"
var (
@@ -381... | Set default master size to c5.large for AWS | kubernetes_test-infra | train |
e5e7898c648c08fe2d7e1ec10b8163e832e87c86 | diff --git a/lib/Doctrine/MongoDB/Database.php b/lib/Doctrine/MongoDB/Database.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/MongoDB/Database.php
+++ b/lib/Doctrine/MongoDB/Database.php
@@ -119,7 +119,10 @@ class Database
/**
* Wrapper method for MongoDB::createCollection().
*
- * @see http://... | Fix post-event dispatching in Database::createCollection()
This corrects an invalid variable reference and adds a test for the method. Additionally, the handling for multiple driver APIs is moved to a "do" method.
Also, use doSelectCollection() to avoid dispatching extra events. | doctrine_mongodb | train |
4e177eb170545586a5d31b400722dd1d9c80e749 | diff --git a/payment/src/main/java/com/ning/billing/payment/api/DefaultPaymentApi.java b/payment/src/main/java/com/ning/billing/payment/api/DefaultPaymentApi.java
index <HASH>..<HASH> 100644
--- a/payment/src/main/java/com/ning/billing/payment/api/DefaultPaymentApi.java
+++ b/payment/src/main/java/com/ning/billing/paym... | Changed payment api to not return error for 0 invoice | killbill_killbill | train |
50acc61321c7febb342dd20fbc9b1ea8f85b5a2d | diff --git a/mod/scorm/lib.php b/mod/scorm/lib.php
index <HASH>..<HASH> 100755
--- a/mod/scorm/lib.php
+++ b/mod/scorm/lib.php
@@ -461,7 +461,7 @@ function scorm_update_grades($scorm=null, $userid=0, $nullifnone=true) {
if ($scorm != null) {
if ($grades = scorm_get_user_grades($scorm, $userid)) {
- ... | MDL-<I> reverting the [$userid] change - we do need array there in upgrades and changes in modedit; merged from MOODLE_<I>_STABLE | moodle_moodle | train |
2bcd5a0588e3c5c74df28bea908266946a0ce157 | diff --git a/app/controllers/system_templates_controller.rb b/app/controllers/system_templates_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/system_templates_controller.rb
+++ b/app/controllers/system_templates_controller.rb
@@ -58,8 +58,11 @@ class SystemTemplatesController < ApplicationController
... | system templates - package groups auto complete working | Katello_katello | train |
c9525b2e5279a4a663c17507567018c4cbaacbb4 | diff --git a/python/src/cm_api/endpoints/cms.py b/python/src/cm_api/endpoints/cms.py
index <HASH>..<HASH> 100644
--- a/python/src/cm_api/endpoints/cms.py
+++ b/python/src/cm_api/endpoints/cms.py
@@ -187,7 +187,9 @@ class ClouderaManager(BaseApiResource):
'endTime': end_datetime.isoformat(),
'includeIn... | [API][SupportIntegration] OPSAPS-<I> Set API version to 2 for collect_diagnostic_data()
collect_diagnostic_data() was deprecated, in place of collect_diagnostic_data_<I>(), in CM API
version 3 which was introduced as a part of CM <I>.
Testing done:
-make test | cloudera_cm_api | train |
33f59144107ca172fb67ba92609a1b223002a41c | diff --git a/lib/ruote/engine.rb b/lib/ruote/engine.rb
index <HASH>..<HASH> 100644
--- a/lib/ruote/engine.rb
+++ b/lib/ruote/engine.rb
@@ -73,7 +73,8 @@ module Ruote
'_id' => Time.now.to_f.to_s,
'wfid' => wfid,
'tree' => tree,
- 'workitem' => workitem)
+ 'workitem' => workitem,
... | locate_var fixed, next step is storing 'main' process tree in vars | jmettraux_ruote | train |
cab33b40716dac985119b6f18447e0f6b6771c2a | diff --git a/src/org/jgroups/stack/Retransmitter.java b/src/org/jgroups/stack/Retransmitter.java
index <HASH>..<HASH> 100644
--- a/src/org/jgroups/stack/Retransmitter.java
+++ b/src/org/jgroups/stack/Retransmitter.java
@@ -1,4 +1,4 @@
-// $Id: Retransmitter.java,v 1.13 2007/01/16 16:41:02 belaban Exp $
+// $Id: Retrans... | renamed retransmitter to timer | belaban_JGroups | train |
7e45cfda788ecd1577aea4a6695e6e3cb971c8fc | diff --git a/code/MSSQLDatabase.php b/code/MSSQLDatabase.php
index <HASH>..<HASH> 100644
--- a/code/MSSQLDatabase.php
+++ b/code/MSSQLDatabase.php
@@ -87,10 +87,16 @@ class MSSQLDatabase extends SS_Database {
if($this->mssql) {
$this->dbConn = mssql_connect($parameters['server'], $parameters['username'], $parame... | ENHANCEMENT Support for Windows authentication for MSSQLDatabase - this is a more secure way of connecting to the database server, because a username and password is not required in the _ss_environment.php file | silverstripe_silverstripe-mssql | train |
f07f20fbffc99359c0cf435633ccc1e14f66490b | diff --git a/core-bundle/contao/dca/tl_article.php b/core-bundle/contao/dca/tl_article.php
index <HASH>..<HASH> 100644
--- a/core-bundle/contao/dca/tl_article.php
+++ b/core-bundle/contao/dca/tl_article.php
@@ -192,7 +192,7 @@ $GLOBALS['TL_DCA']['tl_article'] = array
'author' => array
(
'label' ... | [Core] Use `BackendUser::getInstance()` instead of `$this->User` in the DCA | contao_contao | train |
802bce74f9f83a8a2e9812407ea79bd27b4dd2ae | diff --git a/sos/archive.py b/sos/archive.py
index <HASH>..<HASH> 100644
--- a/sos/archive.py
+++ b/sos/archive.py
@@ -340,14 +340,14 @@ class FileCacheArchive(Archive):
# path case
try:
shutil.copy(src, dest)
+ except OSError as e:
+ ... | [archive] Re-order exception handling in add_file
Re orders the order of exception handling within add_file(), to avoid an
unreachable OSError as highlighted by LGTM. | sosreport_sos | train |
ad0be10cd1715edf6f9a7786e7aa487453c1abb4 | diff --git a/alphalens/tests/test_performance.py b/alphalens/tests/test_performance.py
index <HASH>..<HASH> 100644
--- a/alphalens/tests/test_performance.py
+++ b/alphalens/tests/test_performance.py
@@ -28,6 +28,8 @@ from pandas import (
Timedelta
)
+from pandas.tseries.offsets import (BDay, Day)
+
from pandas... | TST: added more performance.cumulative_returns tests | quantopian_alphalens | train |
4780980151c92bb8bd8e0d33801cc4788a215ef5 | diff --git a/grade/edit/settings/form.php b/grade/edit/settings/form.php
index <HASH>..<HASH> 100644
--- a/grade/edit/settings/form.php
+++ b/grade/edit/settings/form.php
@@ -39,7 +39,7 @@ class course_settings_form extends moodleform {
$mform->addElement('header', 'general', get_string('generalsettings', 'gra... | gradebook MDL-<I> Make "change defaults" links more obvious on grades->course settings page | moodle_moodle | train |
99792f737a15dcbfce1a74097b0bdb95113d98f2 | diff --git a/CHANGELOG b/CHANGELOG
index <HASH>..<HASH> 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -11,6 +11,7 @@
* Stripe: Set `receipt_email` to Stripe request if receipt delivery is requested [miccheng]
* Worldpay US: Add eCheck support [mrezentes]
* FirstData_e4: add level_3 data [mrezentes]
+* Vanco: Support pas... | Vanco: Support passing ip address | activemerchant_active_merchant | train |
aad5338f0fd5981b47ffe26b1308f1a637a256a9 | diff --git a/invenio_previewer/assets/semantic-ui/js/invenio_previewer/bottom.js b/invenio_previewer/assets/semantic-ui/js/invenio_previewer/bottom.js
index <HASH>..<HASH> 100644
--- a/invenio_previewer/assets/semantic-ui/js/invenio_previewer/bottom.js
+++ b/invenio_previewer/assets/semantic-ui/js/invenio_previewer/bot... | assets: fix import on js file | inveniosoftware_invenio-previewer | train |
078ebed16ab743031fa700bc858a873c9db39141 | diff --git a/lib/saxerator/document_fragment.rb b/lib/saxerator/document_fragment.rb
index <HASH>..<HASH> 100644
--- a/lib/saxerator/document_fragment.rb
+++ b/lib/saxerator/document_fragment.rb
@@ -10,6 +10,8 @@ module Saxerator
end
def each(&block)
+ return to_enum unless block_given?
+
# Alwa... | Return an enumerator if no block is given
This is the typical pattern for Enumerable objects, and was an oversight
that it was not already-included here.
See <URL> | soulcutter_saxerator | train |
d22e0a7cec3b9fc4b42c30d750788fdca5fbd87a | diff --git a/django_airavata/apps/api/static/django_airavata_api/js/models/Experiment.js b/django_airavata/apps/api/static/django_airavata_api/js/models/Experiment.js
index <HASH>..<HASH> 100644
--- a/django_airavata/apps/api/static/django_airavata_api/js/models/Experiment.js
+++ b/django_airavata/apps/api/static/djang... | Moved isClonable to experiment.js
Using enum instead of string values
Update launchExperiment to terminateExperiment
Added notification after cancel button is pressed | apache_airavata-django-portal | train |
744409fd3bd37cef577c7618105cac9926439cca | diff --git a/examples/howto/parser.go b/examples/howto/parser.go
index <HASH>..<HASH> 100644
--- a/examples/howto/parser.go
+++ b/examples/howto/parser.go
@@ -95,7 +95,10 @@ func main() {
parser := &TestResultParser{}
r, err := s.Result(parser)
- _ = err
+ if err != nil {
+ fmt.Println("Error when querying solr... | Adding Error checking in example | vanng822_go-solr | train |
6d027900ee3a1567a5bd95c028b2be16ea503a2c | diff --git a/spring-session-core/src/main/java/org/springframework/session/web/http/SessionRepositoryFilter.java b/spring-session-core/src/main/java/org/springframework/session/web/http/SessionRepositoryFilter.java
index <HASH>..<HASH> 100644
--- a/spring-session-core/src/main/java/org/springframework/session/web/http/... | Fix caching of requested session in SessionRepositoryFilter
Closes gh-<I> | spring-projects_spring-session | train |
4c2c524b652fbb7ccb2586d9f1a3ffb05ed5e110 | diff --git a/lib/sfn/command/update.rb b/lib/sfn/command/update.rb
index <HASH>..<HASH> 100644
--- a/lib/sfn/command/update.rb
+++ b/lib/sfn/command/update.rb
@@ -247,7 +247,7 @@ module Sfn
def scrub_template(template)
template = Sfn::Utils::StackParameterScrubber.scrub!(template)
(template['Re... | Use helper for valid stack types when scrubbing | sparkleformation_sfn | train |
353998d8d33ae9e49df22f0fa8a18a2188c0d0b8 | diff --git a/app/controllers/roles_controller.rb b/app/controllers/roles_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/roles_controller.rb
+++ b/app/controllers/roles_controller.rb
@@ -15,8 +15,9 @@ class RolesController < ApplicationController
before_filter :find_role, :except => [:index, :items, ... | Added code to return all details about a resource type as opposed to just the name for the roles perms pages | Katello_katello | train |
3a19fc6513c8e56e417154c0f44d8504a975ac86 | diff --git a/.gitignore b/.gitignore
index <HASH>..<HASH> 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,5 @@ newfeatures/*
/mejs3/
node_modules
local-build
+# PhpStorm/WebStorm configuration
+.idea
\ No newline at end of file
diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfil... | add one more task to build only html5 version | mediaelement_mediaelement | train |
2bc2814d5e5cd6951bdcc8dc52b4dd45c60da374 | diff --git a/src/qtism/runtime/rendering/markup/xhtml/AbstractXhtmlRenderer.php b/src/qtism/runtime/rendering/markup/xhtml/AbstractXhtmlRenderer.php
index <HASH>..<HASH> 100644
--- a/src/qtism/runtime/rendering/markup/xhtml/AbstractXhtmlRenderer.php
+++ b/src/qtism/runtime/rendering/markup/xhtml/AbstractXhtmlRenderer.p... | CSS classes now added in the correct hierarchical order. | oat-sa_qti-sdk | train |
89f9c55e0bf78a10a8624ef67b48c5826c660a4e | diff --git a/hack/coalesce.py b/hack/coalesce.py
index <HASH>..<HASH> 100755
--- a/hack/coalesce.py
+++ b/hack/coalesce.py
@@ -77,8 +77,9 @@ def main():
root.set('time', '0')
for package in sorted(test_packages('bazel-testlogs')):
root.append(result(package))
- artifacts_dir = os.path.join(os.envi... | coalesce.py should use $ARTIFACTS if it exists. | kubernetes_test-infra | train |
89077047ca4b6dbe447284e1340bb8fc7b35652a | diff --git a/lib/swag_dev/project/tools/yardoc.rb b/lib/swag_dev/project/tools/yardoc.rb
index <HASH>..<HASH> 100644
--- a/lib/swag_dev/project/tools/yardoc.rb
+++ b/lib/swag_dev/project/tools/yardoc.rb
@@ -31,6 +31,17 @@ class SwagDev::Project::Tools::Yardoc
::Pathname.new(path)
end
+ # Get paths (based on ... | yardoc (tools) paths method added | SwagDevOps_kamaze-project | train |
8a3018c768a329c0f7d5c15eebccd3fdc88a2263 | diff --git a/pdb.py b/pdb.py
index <HASH>..<HASH> 100644
--- a/pdb.py
+++ b/pdb.py
@@ -22,8 +22,10 @@ import pprint
import re
import signal
from collections import OrderedDict
-from fancycompleter import Completer, ConfigurableClass, Color
+
import fancycompleter
+import six
+from fancycompleter import Color, Compl... | Fix (unreleased) regression with missing start attributes
This is not exactly the same as before (which was only done via the
module's `set_trace`), and therefore still gets updated in
`Pdb.set_trace()` (after initially in `__init__`). | antocuni_pdb | train |
a12ffbce1b517181768bc520933b888e2c219b80 | diff --git a/code/site/modules/mod_default/template.php b/code/site/modules/mod_default/template.php
index <HASH>..<HASH> 100644
--- a/code/site/modules/mod_default/template.php
+++ b/code/site/modules/mod_default/template.php
@@ -20,6 +20,29 @@
class ModDefaultTemplate extends KTemplateDefault
{
/**
+ * The cach... | Performance : Only create a caching object if the cache is enabled and store it as a class property to avoid recreation. | timble_kodekit | train |
06bf93caed06bd43bf4295d1ca76424ea5d05bc9 | diff --git a/doc/command-t.txt b/doc/command-t.txt
index <HASH>..<HASH> 100644
--- a/doc/command-t.txt
+++ b/doc/command-t.txt
@@ -1558,6 +1558,10 @@ master (not yet released)
- Fix a RangeError on 64-bit Windows (#304, patch from Adrian Keet).
- Fix issue switching back to previously opened file in another tab (#306... | Avoid unwanted escaping in :CommandTCommand and :CommandTTag
Also adjusting `:CommandTHistory` to use the same approach, for
consistency. | wincent_command-t | train |
a38d87d4042c107c353c8de095d733896a8d9be7 | diff --git a/grimoire_elk/enriched/enrich.py b/grimoire_elk/enriched/enrich.py
index <HASH>..<HASH> 100644
--- a/grimoire_elk/enriched/enrich.py
+++ b/grimoire_elk/enriched/enrich.py
@@ -710,6 +710,22 @@ class Enrich(ElasticItems):
return enrolls
+ @staticmethod
+ def get_main_enrollments(enrollments... | [enrich] Get main enrollments for *_org_name field
This code gets the main enrollments for `*_org_name` when
there are several enrollments.
If the enrollment contains :: the main one is the first part.
For example:
- Enrollment: Chaoss::Eng
- Main: Chaoss
If there is more than one, it will return ordered alphabetic... | chaoss_grimoirelab-elk | train |
02c46a0819e9094b42e27d3c8f4478b62f5663b9 | diff --git a/src/com/esotericsoftware/kryo/Kryo.java b/src/com/esotericsoftware/kryo/Kryo.java
index <HASH>..<HASH> 100644
--- a/src/com/esotericsoftware/kryo/Kryo.java
+++ b/src/com/esotericsoftware/kryo/Kryo.java
@@ -1002,19 +1002,24 @@ public class Kryo {
* {@link #setInstantiatorStrategy(InstantiatorStrategy) st... | Avoid ReflectASM for non-static member classes. | EsotericSoftware_kryo | train |
653dce34b829f0139b1d5563ef171819ae760a3f | diff --git a/spyderlib/spyder.py b/spyderlib/spyder.py
index <HASH>..<HASH> 100644
--- a/spyderlib/spyder.py
+++ b/spyderlib/spyder.py
@@ -1854,7 +1854,7 @@ Please provide any additional information below.
CONF.set('main', 'open_files_port', port)
self.open_files_server.bind(('127.0.0.1', port))
... | Single instance mode: Use '1' instead of 'True' to maintain the open_files_server infinite loop | spyder-ide_spyder | train |
746bdd54fbf671638932805b215fc825e9b5fb97 | diff --git a/ci/run_apex_tests.py b/ci/run_apex_tests.py
index <HASH>..<HASH> 100644
--- a/ci/run_apex_tests.py
+++ b/ci/run_apex_tests.py
@@ -294,7 +294,7 @@ def run_tests():
for tf in tf_res['records']:
TraceFlag.delete(tf['Id'])
- expiration = datetime.datetime.now() + date... | Set TraceFlag expiration to <I> hours rather than <I> to prevent errors
that expiration is too far in the future due to timezone differences | SFDO-Tooling_CumulusCI | train |
267599c50df36f187f79366d90924318a818b09c | diff --git a/engine/src/main/java/org/camunda/bpm/engine/impl/test/TestHelper.java b/engine/src/main/java/org/camunda/bpm/engine/impl/test/TestHelper.java
index <HASH>..<HASH> 100644
--- a/engine/src/main/java/org/camunda/bpm/engine/impl/test/TestHelper.java
+++ b/engine/src/main/java/org/camunda/bpm/engine/impl/test/T... | fix(engine): lookup test method correctly
related to CAM-<I> | camunda_camunda-bpm-platform | train |
c8adc97f0c898d6ef16082446db5ef34d7db2d32 | diff --git a/annis-kickstarter/src/main/java/de/hu_berlin/german/korpling/annis/kickstarter/InitDialog.java b/annis-kickstarter/src/main/java/de/hu_berlin/german/korpling/annis/kickstarter/InitDialog.java
index <HASH>..<HASH> 100644
--- a/annis-kickstarter/src/main/java/de/hu_berlin/german/korpling/annis/kickstarter/In... | use the provided database.properties file in Kickstarter when initializing the database | korpling_ANNIS | train |
d5b56fc44c338d14d92b8d0648f91a3660d80de7 | diff --git a/satpy/writers/__init__.py b/satpy/writers/__init__.py
index <HASH>..<HASH> 100644
--- a/satpy/writers/__init__.py
+++ b/satpy/writers/__init__.py
@@ -174,7 +174,7 @@ def to_image(dataset, copy=True, **kwargs):
if 'bands' in dataset.dims:
return Image([dataset.sel(bands=0).values, dataset.sel(... | Fix to_image for 2d data | pytroll_satpy | train |
caa09b6dee63acafe040aabcbfcf6490127410d8 | diff --git a/plenum/test/freshness/test_replica_freshness.py b/plenum/test/freshness/test_replica_freshness.py
index <HASH>..<HASH> 100644
--- a/plenum/test/freshness/test_replica_freshness.py
+++ b/plenum/test/freshness/test_replica_freshness.py
@@ -55,7 +55,7 @@ def replica_with_valid_requests(primary_replica):
de... | INDY-<I>: Fix some tests | hyperledger_indy-plenum | train |
252fcec740704f78554fcf69e0146f8159df81b1 | diff --git a/lib/navigation/systems.rb b/lib/navigation/systems.rb
index <HASH>..<HASH> 100644
--- a/lib/navigation/systems.rb
+++ b/lib/navigation/systems.rb
@@ -149,18 +149,12 @@ module Navigation
:if => lambda{@group},
:options => {:class=>"navigation_element"}
},
-# { :key => :... | system groups - update to have Content as 3rd level nav
This makes Content as a 3rd level nav consisting of Packages and Errata,
consistent with the Systems page. | Katello_katello | train |
accc82fd111e75685b0631f0aa411490032608ca | diff --git a/test/api/interop_extra_test.js b/test/api/interop_extra_test.js
index <HASH>..<HASH> 100644
--- a/test/api/interop_extra_test.js
+++ b/test/api/interop_extra_test.js
@@ -197,6 +197,8 @@ describe(`${anyGrpc.clientName} client -> ${anyGrpc.serverName} server`, functio
});
});
describe('max m... | increase timeout for tests that timeout under emulator | grpc_grpc-node | train |
a82763b4fdb6a158c46d473af46fbb680c518355 | diff --git a/src/collectors/monit/monit.py b/src/collectors/monit/monit.py
index <HASH>..<HASH> 100644
--- a/src/collectors/monit/monit.py
+++ b/src/collectors/monit/monit.py
@@ -53,7 +53,7 @@ class MonitCollector(diamond.collector.Collector):
mem = int(service.getElementsByTagName('memory')[0].getElem... | monit is in kilobyte not byte | python-diamond_Diamond | train |
a46c55ee8eb44a4c6f3dbbb4023b495cb9181bbd | diff --git a/build-coordinator/src/main/java/org/jboss/pnc/coordinator/builder/DefaultBuildCoordinator.java b/build-coordinator/src/main/java/org/jboss/pnc/coordinator/builder/DefaultBuildCoordinator.java
index <HASH>..<HASH> 100644
--- a/build-coordinator/src/main/java/org/jboss/pnc/coordinator/builder/DefaultBuildCoo... | Simplify adding tasks to queue when building | project-ncl_pnc | train |
fd9acc81a549e352243fbdf55eee270f98b07dfa | diff --git a/checkers/python3.py b/checkers/python3.py
index <HASH>..<HASH> 100644
--- a/checkers/python3.py
+++ b/checkers/python3.py
@@ -23,7 +23,7 @@ from pylint.utils import WarningScope
from pylint.checkers import utils
-_OLD_OCTAL = re.compile("\d{2}")
+_OLD_OCTAL = re.compile("0\d{1}")
def _is_old_octal(... | Fix the flawed check of old octal syntax. | PyCQA_pylint | train |
8c58df910df839cab4705e6e85c9db83edf9feaa | diff --git a/lib/magento/country.rb b/lib/magento/country.rb
index <HASH>..<HASH> 100644
--- a/lib/magento/country.rb
+++ b/lib/magento/country.rb
@@ -16,6 +16,18 @@ module Magento
def all
list
end
+
+ def find_by_id(id)
+ list.select{ |c| c.id == id }.first
+ end
+
+... | added some helper methods to address and related | pstuteville_magentor | train |
de21d162c29258a32a5bc258ed6432f61ffec5c5 | diff --git a/tests/test_lib.py b/tests/test_lib.py
index <HASH>..<HASH> 100755
--- a/tests/test_lib.py
+++ b/tests/test_lib.py
@@ -97,3 +97,15 @@ class TestHashClassFail(object):
obj = ssdeep.Hash()
with pytest.raises(TypeError):
obj.update(1234)
+
+
+class TestPseudoHashClassFail(object)... | test - Additional tests for PseudoHash() class | DinoTools_python-ssdeep | train |
55cb92a0c12e5c64d306d2ecbfd736d03ba34c96 | diff --git a/modules/activiti-engine/src/main/java/org/activiti/engine/impl/persistence/entity/TaskEntityManager.java b/modules/activiti-engine/src/main/java/org/activiti/engine/impl/persistence/entity/TaskEntityManager.java
index <HASH>..<HASH> 100644
--- a/modules/activiti-engine/src/main/java/org/activiti/engine/imp... | Activity cancelled event for process delete API call | Activiti_Activiti | train |
cdb5c190105470ed32b8180e1522e46999670343 | diff --git a/src/wormhole/server/rendezvous_websocket.py b/src/wormhole/server/rendezvous_websocket.py
index <HASH>..<HASH> 100644
--- a/src/wormhole/server/rendezvous_websocket.py
+++ b/src/wormhole/server/rendezvous_websocket.py
@@ -247,5 +247,6 @@ class WebSocketRendezvousFactory(websocket.WebSocketServerFactory):
... | websockets: turn on autoPingInterval to expire stale connections
With this, both clients and servers will send a PING at least once every
minute, and will drop connections that haven't seen any traffic for <I>
minutes.
This should help keep NAT table entries alive, and will drop connections
that are no longer viable ... | warner_magic-wormhole | train |
684eaa22618cdf7d0e9e47d5ff8d741dfab0e4ec | diff --git a/lib/structures/Guild.js b/lib/structures/Guild.js
index <HASH>..<HASH> 100644
--- a/lib/structures/Guild.js
+++ b/lib/structures/Guild.js
@@ -236,13 +236,19 @@ class Guild extends Base {
/**
* Create a channel in the guild
* @arg {String} name The name of the channel
- * @arg {String} [ty... | Fix Guild#createChannel documentation, naming (#<I>) | abalabahaha_eris | train |
835e4e6b2df82894da2ff96f29e5fb30789a8158 | diff --git a/src/Language/AST/Node.php b/src/Language/AST/Node.php
index <HASH>..<HASH> 100644
--- a/src/Language/AST/Node.php
+++ b/src/Language/AST/Node.php
@@ -82,11 +82,6 @@ abstract class Node
public function __toString()
{
$tmp = $this->toArray();
- $tmp['loc'] = [
- 'start' =... | Removed unnecessary loc entry in AST\Node::toArray() | webonyx_graphql-php | train |
cbafa76bd3d56e5788a18bb6b8e61072b4fb6f81 | diff --git a/src/main/java/backtype/storm/contrib/jms/spout/JmsSpout.java b/src/main/java/backtype/storm/contrib/jms/spout/JmsSpout.java
index <HASH>..<HASH> 100644
--- a/src/main/java/backtype/storm/contrib/jms/spout/JmsSpout.java
+++ b/src/main/java/backtype/storm/contrib/jms/spout/JmsSpout.java
@@ -1,5 +1,6 @@
pack... | Fix for serializability of mutex. | ptgoetz_storm-jms | train |
9c69026a0c382aedda547d56c3e6765e367d2950 | diff --git a/pex/pex_bootstrapper.py b/pex/pex_bootstrapper.py
index <HASH>..<HASH> 100644
--- a/pex/pex_bootstrapper.py
+++ b/pex/pex_bootstrapper.py
@@ -41,6 +41,7 @@ def iter_compatible_interpreters(
path=None, # type: Optional[str]
valid_basenames=None, # type: Optional[Iterable[str]]
interpreter_c... | Fix `iter_compatible_interpreters` with `path`. (#<I>)
Previously, if the current interpreter was valid and contained in a
path directory entry, all sibling interpreters in that same directory
went undiscovered. A test is added that fails without the fix.
Fixes #<I> | pantsbuild_pex | train |
08204e13e0808ee51abd77ce7910d2d268719df8 | diff --git a/phono3py/phonon3/fc3.py b/phono3py/phonon3/fc3.py
index <HASH>..<HASH> 100644
--- a/phono3py/phonon3/fc3.py
+++ b/phono3py/phonon3/fc3.py
@@ -512,7 +512,7 @@ def show_drift_fc3(fc3,
"Corresponding python code is not implemented.")
raise RuntimeError(text)
- text = "ma... | Slightly modify the output text for max drift fc | atztogo_phono3py | train |
fd7e74f7fc31d201b3cc7cb7fa034676fddcf0b2 | diff --git a/lib/gir_ffi/in_out_pointer.rb b/lib/gir_ffi/in_out_pointer.rb
index <HASH>..<HASH> 100644
--- a/lib/gir_ffi/in_out_pointer.rb
+++ b/lib/gir_ffi/in_out_pointer.rb
@@ -29,7 +29,7 @@ module GirFFI
def self.for type
ffi_type = type_to_ffi_type type
ptr = AllocationHelper.safe_malloc(FFI.type... | JRuby doesn't like 0 as a pointer value. Pass nil instead. | mvz_gir_ffi | train |
38c732b7ea2d7f356c4fd95ea9e36813d5a70774 | diff --git a/lib/resourcery/controller_extensions.rb b/lib/resourcery/controller_extensions.rb
index <HASH>..<HASH> 100644
--- a/lib/resourcery/controller_extensions.rb
+++ b/lib/resourcery/controller_extensions.rb
@@ -31,7 +31,7 @@ module Resourcery
def destroy
resource.destroy
- respond_with ... | Spec and implement the #destroy action | hmans_resourcery | train |
66fb7b3388d17ef791925732ce03c4f67a6ea34b | diff --git a/app/controllers/rocket_job_mission_control/application_controller.rb b/app/controllers/rocket_job_mission_control/application_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/rocket_job_mission_control/application_controller.rb
+++ b/app/controllers/rocket_job_mission_control/application_con... | Use fully qualified class name: RocketJobMissionControl::AccessPolicy | rocketjob_rocketjob_mission_control | train |
fc40a19c808b4d4a09191bca2ebe712866a7de0d | diff --git a/engine/core/src/main/java/org/datacleaner/metamodel/datahub/DataHubDataSet.java b/engine/core/src/main/java/org/datacleaner/metamodel/datahub/DataHubDataSet.java
index <HASH>..<HASH> 100644
--- a/engine/core/src/main/java/org/datacleaner/metamodel/datahub/DataHubDataSet.java
+++ b/engine/core/src/main/java... | Stop when returned rows is less than requested rows | datacleaner_DataCleaner | train |
dbd0528fe72c175a8c6b6872c6a0f97c16c4dd64 | diff --git a/src/transforms/ViewLayout.js b/src/transforms/ViewLayout.js
index <HASH>..<HASH> 100644
--- a/src/transforms/ViewLayout.js
+++ b/src/transforms/ViewLayout.js
@@ -85,7 +85,9 @@ function layoutAxis(axis, width, height) {
ticksIndex = datum.grid ? 1 : 0,
labelIndex = ticksIndex + 1,
title... | Update axis layout to be more precise. | vega_vega-view | train |
d5b8210e4380c80a3c8e58c4d84fc1ce3ce34b3a | diff --git a/src/main/java/com/j256/ormlite/jdbc/JdbcDatabaseConnection.java b/src/main/java/com/j256/ormlite/jdbc/JdbcDatabaseConnection.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/j256/ormlite/jdbc/JdbcDatabaseConnection.java
+++ b/src/main/java/com/j256/ormlite/jdbc/JdbcDatabaseConnection.java
@@ -141,1... | Removed a deprecated internal method. | j256_ormlite-jdbc | train |
071b5f8321d5e813ad6e98f970b6e491898c591a | diff --git a/CHANGES.txt b/CHANGES.txt
index <HASH>..<HASH> 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,4 +1,6 @@
2.1.1
+ * Fix some Thrift slice deletions and updates of COMPACT STORAGE
+ tables with some clustering columns omitted (CASSANDRA-7990)
* Fix filtering for CONTAINS on sets (CASSANDRA-8033)
* Pr... | Fix Thrift slice deletions, incomplete cell names in updates
Patch by Tyler Hobbs; reviewed by Sylvain Lebresne for CASSANDRA-<I> | Stratio_stratio-cassandra | train |
52ad9d8277fb815f67a90c09747fe93cb87fe0e5 | diff --git a/lib/workers/branch/index.js b/lib/workers/branch/index.js
index <HASH>..<HASH> 100644
--- a/lib/workers/branch/index.js
+++ b/lib/workers/branch/index.js
@@ -177,7 +177,10 @@ async function processBranch(branchConfig) {
logger.debug('Passing repository-changed error up');
throw err;
}
- ... | fix: skip branch creation if the updated dependency fails to lock (#<I>)
There are times when an npm dependency has an update available yet the “npm/yarn/pnpm install” fails to find it, and the lock file can’t be generated. We check for this any time there’s a lock file error and abort the branch creation, hoping it f... | renovatebot_renovate | train |
a4b285ce0002bfaa7a15bd500a1bfaac0a13eeeb | diff --git a/src/pyshark/tshark/tshark.py b/src/pyshark/tshark/tshark.py
index <HASH>..<HASH> 100644
--- a/src/pyshark/tshark/tshark.py
+++ b/src/pyshark/tshark/tshark.py
@@ -101,11 +101,11 @@ def get_tshark_version(tshark_path=None):
parameters = [get_tshark_path(tshark_path), '-v']
version_output = check_ou... | Updating comments to reflect regex correctly | KimiNewt_pyshark | train |
782bc4d3b037684f472e1db53c1878390b8c9a32 | diff --git a/lib/puppet/defaults.rb b/lib/puppet/defaults.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/defaults.rb
+++ b/lib/puppet/defaults.rb
@@ -131,7 +131,9 @@ module Puppet
:diff => ["diff", "Which diff command to use when printing differences between files."],
:show_diff => [false, "Whether t... | Fixing the yaml path so that it is correctly
created for puppetmasterd. | puppetlabs_puppet | train |
c9dbdbed4f9026c4befacac638ef41424b5e7569 | diff --git a/src/translate.php b/src/translate.php
index <HASH>..<HASH> 100644
--- a/src/translate.php
+++ b/src/translate.php
@@ -319,19 +319,16 @@ class Translate{
if(!isset($TR_TABLES[$charset])){
require(dirname(__FILE__)."/tr_tables/lower_upper/$charset.php");
}
- return strtr($text,$TR_TABLE... | Translate::Lower() and Translate::Upper() fixed for UTF-8 strings; built-in functions mb_strtoupper and mb_strtolower are being used | atk14_Translate | train |
aa30a90f68afe55773d5b9ebeb6a807cd9ba6a2d | diff --git a/lib/mongo_mapper/plugins/associations/base.rb b/lib/mongo_mapper/plugins/associations/base.rb
index <HASH>..<HASH> 100644
--- a/lib/mongo_mapper/plugins/associations/base.rb
+++ b/lib/mongo_mapper/plugins/associations/base.rb
@@ -6,7 +6,7 @@ module MongoMapper
attr_reader :name, :options, :query_o... | counter caching: Add more conventional syntax: belongs_to :association, :counter_cache => true | mongomapper_mongomapper | train |
52dcf596638b386ac3c69e9eedf6f48e0a660d56 | diff --git a/spring-social-twitter/src/main/java/org/springframework/social/twitter/api/impl/SearchTemplate.java b/spring-social-twitter/src/main/java/org/springframework/social/twitter/api/impl/SearchTemplate.java
index <HASH>..<HASH> 100644
--- a/spring-social-twitter/src/main/java/org/springframework/social/twitter/... | fixed small issue where search template was not building the 'included_entities' into the url | spring-projects_spring-social-twitter | train |
1c670ce9db3dabf61eef8c5f33266084e96f3113 | diff --git a/taxon_names_resolver/gnr_tools.py b/taxon_names_resolver/gnr_tools.py
index <HASH>..<HASH> 100644
--- a/taxon_names_resolver/gnr_tools.py
+++ b/taxon_names_resolver/gnr_tools.py
@@ -22,7 +22,7 @@ def safeReadJSON(url, logger, max_check=6, waittime=30):
while counter < max_check:
try:
... | added utf8 decoding to json.loads in gnr_tools.py | DomBennett_TaxonNamesResolver | train |
78d57af7d1ecd010333351afee0e50df30c85c48 | diff --git a/tests/unit/test_routes.py b/tests/unit/test_routes.py
index <HASH>..<HASH> 100644
--- a/tests/unit/test_routes.py
+++ b/tests/unit/test_routes.py
@@ -52,6 +52,7 @@ def test_routes():
includeme(config)
assert config.add_route.calls == [
+ pretend.call("health", "/_health/"),
pret... | Add a simple view for Fastly Health checks | pypa_warehouse | train |
98864112cb9f8695c99c9f9602e9eb7437dd0d2c | diff --git a/client/blocks/reader-post-card/index.jsx b/client/blocks/reader-post-card/index.jsx
index <HASH>..<HASH> 100644
--- a/client/blocks/reader-post-card/index.jsx
+++ b/client/blocks/reader-post-card/index.jsx
@@ -21,6 +21,7 @@ import FollowButton from 'reader/follow-button';
import PostGallery from './galler... | Reader Refresh: show follow button for Discover cards (#<I>)
* Show follow button on Discover cards
* Show follow button where follow URL is available, and use original post for byline if we have it
* For site picks, try the permalink
* Fetch feed and site meta with new subscriptions so that Manage Following ... | Automattic_wp-calypso | train |
8af66c86d93e1679ea0302a80b5a20c47ea6ff39 | diff --git a/README.rdoc b/README.rdoc
index <HASH>..<HASH> 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -48,6 +48,33 @@ You can also be a follower of other models
@gang.follower?(@bonnie)
@bonnie.follows?(@gang)
+== Callbacks
+
+You can attach callbacks to the follower/followee models before or after the foll... | Modified callbacks. Fixed README. | alecguintu_mongoid_follow | train |
db4c7109913d9fac676417db00dc41b01766f30b | diff --git a/rinoh/style.py b/rinoh/style.py
index <HASH>..<HASH> 100644
--- a/rinoh/style.py
+++ b/rinoh/style.py
@@ -553,6 +553,13 @@ class Styled(DocumentElement, metaclass=StyledMeta):
style = '[{}]'.format(self.style) if self.style else ''
return parent + self.__class__.__name__ + style
+ @p... | Styled.nesting_level: depth of a Styled in the tree | brechtm_rinohtype | train |
2eb6d11906598476902e1f4e2f59bba0013661f2 | diff --git a/woocommerce-api.js b/woocommerce-api.js
index <HASH>..<HASH> 100644
--- a/woocommerce-api.js
+++ b/woocommerce-api.js
@@ -65,13 +65,19 @@ WooCommerceAPI.prototype._getUrl = function(endpoint) {
* @return {Object}
*/
WooCommerceAPI.prototype._getOAuth = function() {
- return new OAuth({
+ var data = ... | Added support for WooCommerce API v1 and v2 oAuth | woocommerce_wc-api-node | train |
1d3e93f1a3503fa23a589b1e5baa5802aeaab819 | diff --git a/kettle.py b/kettle.py
index <HASH>..<HASH> 100755
--- a/kettle.py
+++ b/kettle.py
@@ -7,7 +7,7 @@ import struct
import sys
from argparse import ArgumentParser
from fireplace.enums import CardType, GameTag, OptionType, Zone
-from fireplace.game import Game
+from fireplace.game import BaseGame as Game
fr... | Kettle: Use BaseGame instead of Game for now | jleclanche_fireplace | train |
a61f6ff7343f176227deea0eb7b28a4b15050bf3 | diff --git a/backend/macros.js b/backend/macros.js
index <HASH>..<HASH> 100644
--- a/backend/macros.js
+++ b/backend/macros.js
@@ -71,6 +71,10 @@ class Macros extends commonMacros {
// Removes a 'mailto:' from the beginning
// Ensures the email contains a @
static standardizeEmail(email) {
+ if (!email) {
+... | Some bug fixes in cssh js | ryanhugh_searchneu | train |
e5005ed66d26cabb8d2dbd1c0478ffcf0a5684c3 | diff --git a/slave/ls340.py b/slave/ls340.py
index <HASH>..<HASH> 100644
--- a/slave/ls340.py
+++ b/slave/ls340.py
@@ -284,14 +284,25 @@ class Loop(InstrumentBase):
* *<enabled>* A boolean enabling/disabling the control loop.
* *<powerup>* Specifies if the control loop is enabled/disabled after
... | Implemented loop1 settle command, closes #<I>. | p3trus_slave | train |
399ba60eb17744ea4c45891e29140f1a2b44a4c0 | diff --git a/netpyne/analysis/hnn.py b/netpyne/analysis/hnn.py
index <HASH>..<HASH> 100644
--- a/netpyne/analysis/hnn.py
+++ b/netpyne/analysis/hnn.py
@@ -28,7 +28,10 @@ import numpy as np
@exception
def plotDipole():
from .. import sim
- from bokeh.plotting import figure, show, output_file
+ from bokeh.pl... | Change plotDipole to return html instead of saving it as a file | Neurosim-lab_netpyne | train |
de45b6fc595e62276bb2b4db5eb865d219716c30 | diff --git a/lib/firehose/version.rb b/lib/firehose/version.rb
index <HASH>..<HASH> 100644
--- a/lib/firehose/version.rb
+++ b/lib/firehose/version.rb
@@ -1,4 +1,4 @@
module Firehose
- VERSION = "1.1.0"
- CODENAME = "Rockin' Reconnect"
+ VERSION = "1.1.1"
+ CODENAME = "Radtastical Redis"
end | Bumped gem to <I> to work with em-hiredis gem. | firehoseio_firehose | train |
e262e612d6bdf7c73461cf66f1115dbc5ccef7a1 | diff --git a/knowledge_base/__init__.py b/knowledge_base/__init__.py
index <HASH>..<HASH> 100755
--- a/knowledge_base/__init__.py
+++ b/knowledge_base/__init__.py
@@ -652,3 +652,19 @@ class KnowledgeBase(object):
author.remove()
return removed_resources
+
+
+ def remove_work(self, work):
+
+ ... | added kb.remove_work() | mromanello_hucitlib | train |
83fd2784f97453ba46fa6918ef4b5101403c6cbe | diff --git a/src/main/java/hex/singlenoderf/SpeeDRF.java b/src/main/java/hex/singlenoderf/SpeeDRF.java
index <HASH>..<HASH> 100644
--- a/src/main/java/hex/singlenoderf/SpeeDRF.java
+++ b/src/main/java/hex/singlenoderf/SpeeDRF.java
@@ -295,7 +295,7 @@ public class SpeeDRF extends Job.ValidatedJob {
Frame train = ... | tweak the test data so that final column gets mapped | h2oai_h2o-2 | train |
28f1eb8fcfffcf2aac49c756be0f6bf8c6133743 | diff --git a/azure-keyvault/azure/keyvault/custom/key_vault_authentication.py b/azure-keyvault/azure/keyvault/custom/key_vault_authentication.py
index <HASH>..<HASH> 100644
--- a/azure-keyvault/azure/keyvault/custom/key_vault_authentication.py
+++ b/azure-keyvault/azure/keyvault/custom/key_vault_authentication.py
@@ -6... | updates from feedback
-moving auth_callback logic to KeyVaultAuthentication
-updating KeyVaultAuthentication to derive from OAuthTokenAuthentication
[skip ci] | Azure_azure-sdk-for-python | train |
972e4155d4a8876684dad725ab623e9f393a5502 | diff --git a/src/main/java/com/luckycatlabs/sunrisesunset/dto/Location.java b/src/main/java/com/luckycatlabs/sunrisesunset/dto/Location.java
index <HASH>..<HASH> 100755
--- a/src/main/java/com/luckycatlabs/sunrisesunset/dto/Location.java
+++ b/src/main/java/com/luckycatlabs/sunrisesunset/dto/Location.java
@@ -64,4 +64,... | Added setters to the location class in order to avoid creating a
new SunriseSunsetCalculator every time a new location arrives (useful
for mobile devices) | mikereedell_sunrisesunsetlib-java | train |
ee17b93df9ef2150d0ef25e077f1f87637a54508 | diff --git a/integration-cli/docker_cli_run_test.go b/integration-cli/docker_cli_run_test.go
index <HASH>..<HASH> 100644
--- a/integration-cli/docker_cli_run_test.go
+++ b/integration-cli/docker_cli_run_test.go
@@ -2266,7 +2266,7 @@ func TestRunRedirectStdout(t *testing.T) {
}()
select {
- case <-time.After(2 ... | Up test timeout to <I>s based on recent drone.io timeout failures
Docker-DCO-<I>- | containers_storage | train |
990fef3b5774320524291872c3387f1dd17c5b24 | diff --git a/blockstack_client/schemas.py b/blockstack_client/schemas.py
index <HASH>..<HASH> 100644
--- a/blockstack_client/schemas.py
+++ b/blockstack_client/schemas.py
@@ -59,8 +59,8 @@ OP_USER_ID_CLASS = r'[a-zA-Z0-9\-_.%]'
OP_DATASTORE_ID_CLASS = r'[a-zA-Z0-9\-_.~%]'
OP_USER_ID_PATTERN = r'^({}+)$'.format(OP_USE... | URL schema to allow @ + a version bump | blockstack_blockstack-core | train |
a39a6e77a47d36a58dbe637442f3b744336ce17a | diff --git a/www/data_module/src/services/data/collection/dataquery.service.spec.js b/www/data_module/src/services/data/collection/dataquery.service.spec.js
index <HASH>..<HASH> 100644
--- a/www/data_module/src/services/data/collection/dataquery.service.spec.js
+++ b/www/data_module/src/services/data/collection/dataque... | www: Fix useless return in sites involving describe() | buildbot_buildbot | train |
937532169ff5c969cd70c3210c0065042d2d20c4 | diff --git a/config/drivers.php b/config/drivers.php
index <HASH>..<HASH> 100644
--- a/config/drivers.php
+++ b/config/drivers.php
@@ -6,18 +6,18 @@
return [
'chrome' => [
'mac' => [
- 'version' => '2.9',
- 'url' => 'http://chromedriver.storage.googleapis.com/2.9/chromedriver_... | updated versions for ChromeDriver download links (#<I>) | Modelizer_Laravel-Selenium | train |
9d86275813aa5f4ed862262225666c3160aee9b4 | diff --git a/src/main/org/codehaus/groovy/ast/expr/MethodCallExpression.java b/src/main/org/codehaus/groovy/ast/expr/MethodCallExpression.java
index <HASH>..<HASH> 100644
--- a/src/main/org/codehaus/groovy/ast/expr/MethodCallExpression.java
+++ b/src/main/org/codehaus/groovy/ast/expr/MethodCallExpression.java
@@ -67,6 ... | GROOVY-<I>
changed return values of isImplicitThis() to: (was OK after phase CONVERSION, but not after SEMANTIC_ANALYSIS)
* anObj.methodCall() isImplicitThis() returns false
* this.println("anything") isImplicitThis() returns false
* println("anything") isImplicitThis() returns true
git-svn-id: <URL> | groovy_groovy-core | train |
62f7700148a367fe792518d9d9dc7e2a56d073dd | diff --git a/src/main/java/net/bootsfaces/beans/ELTools.java b/src/main/java/net/bootsfaces/beans/ELTools.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/bootsfaces/beans/ELTools.java
+++ b/src/main/java/net/bootsfaces/beans/ELTools.java
@@ -415,7 +415,7 @@ public class ELTools {
*/
public static Annotati... | #<I> and #<I> stop the application from crashing if no vale attribute is provided | TheCoder4eu_BootsFaces-OSP | train |
05c341192f392b50096a1eafa5353daf28261b16 | diff --git a/html/pfappserver/root/static.alt/src/store/modules/config.js b/html/pfappserver/root/static.alt/src/store/modules/config.js
index <HASH>..<HASH> 100644
--- a/html/pfappserver/root/static.alt/src/store/modules/config.js
+++ b/html/pfappserver/root/static.alt/src/store/modules/config.js
@@ -1122,7 +1122,7 @@... | (web admin) fix loop when items is null | inverse-inc_packetfence | train |
bae94182a8351d8ed22be06d178d8b16c5e899a2 | diff --git a/src/Config.php b/src/Config.php
index <HASH>..<HASH> 100644
--- a/src/Config.php
+++ b/src/Config.php
@@ -40,7 +40,7 @@ class Config
'files' => [
'changes' => 'CHANGES.md',
'contributing' => 'CONTRIBUTING.md',
- 'license' => 'LICENSE',
+ 'license' =>... | use a .md file for license | producerphp_producer.producer | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.