hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
cc21a23e6cfbe04bc5cc6e1916be277b02d96eff | diff --git a/lib/generate.js b/lib/generate.js
index <HASH>..<HASH> 100644
--- a/lib/generate.js
+++ b/lib/generate.js
@@ -83,10 +83,15 @@ function serializeRule(rule, builtinPostprocessors) {
}
var generate = function (parser, exportName) {
- return (generate[parser.config.preprocessor] ?
- generate[parser... | Throw an Error when the preprocessor isn't found. | kach_nearley | train |
9c8c72ebfa0eeb3c33b9bb1c6fbb72e25bce5202 | diff --git a/chef-config/lib/chef-config/config.rb b/chef-config/lib/chef-config/config.rb
index <HASH>..<HASH> 100644
--- a/chef-config/lib/chef-config/config.rb
+++ b/chef-config/lib/chef-config/config.rb
@@ -322,6 +322,7 @@ module ChefConfig
default :umask, 0022
# Valid log_levels are:
+ # * :trace
... | Updating a few logging references to include :trace | chef_chef | train |
35083682a398bc262fe3f9ffc2b31f6c3054cd05 | diff --git a/oct2py/_matwrite.py b/oct2py/_matwrite.py
index <HASH>..<HASH> 100644
--- a/oct2py/_matwrite.py
+++ b/oct2py/_matwrite.py
@@ -10,6 +10,7 @@ import sys
import os
from scipy.io import savemat
import numpy as np
+from scipy.sparse import csr_matrix
from ._utils import Oct2PyError, _create_file
... | Improved support for outgoing sparse csr matrices | blink1073_oct2py | train |
f276067535287724746a3ddd40f7fae53bce116d | diff --git a/services/dashboard/views/apps/streamingapp/vis/network.js b/services/dashboard/views/apps/streamingapp/vis/network.js
index <HASH>..<HASH> 100644
--- a/services/dashboard/views/apps/streamingapp/vis/network.js
+++ b/services/dashboard/views/apps/streamingapp/vis/network.js
@@ -9,12 +9,11 @@ angular.module(... | fix #<I>, fixed "DAG canvas context menu cannot be displayed." | gearpump_gearpump | train |
6a1d488f0cd7cd4b880a14034a8dfe4dceb988d3 | diff --git a/core/src/main/java/cucumber/table/TableDiffer.java b/core/src/main/java/cucumber/table/TableDiffer.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/cucumber/table/TableDiffer.java
+++ b/core/src/main/java/cucumber/table/TableDiffer.java
@@ -45,18 +45,18 @@ public class TableDiffer {
i... | No infinite loop/OutOfMemoryException in diffs. | cucumber_cucumber-jvm | train |
8f71024264cd2e00c65ff8853faefc86a2330337 | diff --git a/test/browser/browser.js b/test/browser/browser.js
index <HASH>..<HASH> 100644
--- a/test/browser/browser.js
+++ b/test/browser/browser.js
@@ -25,12 +25,34 @@ describe('StreamrClient', () => {
.assert.containsText('#result', 'subscribed')
.click('button[id=publish]')
.... | Verify individual messages arrived in browser test. | streamr-dev_streamr-client-javascript | train |
285f5dacac7bc313baa6f75d0964c7706417744c | diff --git a/functional_tests/test_curve_curve.py b/functional_tests/test_curve_curve.py
index <HASH>..<HASH> 100644
--- a/functional_tests/test_curve_curve.py
+++ b/functional_tests/test_curve_curve.py
@@ -10,6 +10,7 @@
import matplotlib.pyplot as plt
import numpy as np
+import pytest
import six
import bezier
... | Adding curve-curve functional tests for non-exact values.
Intersections / tangencies occur at values like 1/3 and 2/3,
which can't be represented exactly in IEEE-<I> floating point. | dhermes_bezier | train |
0ee5cf0715de317e93169d71207f8fa05c136471 | diff --git a/FlowCal/excel_ui.py b/FlowCal/excel_ui.py
index <HASH>..<HASH> 100644
--- a/FlowCal/excel_ui.py
+++ b/FlowCal/excel_ui.py
@@ -266,6 +266,13 @@ def process_beads_table(beads_table,
if plot:
if verbose:
print("Plotting density plot and histogram...")
+ # Defi... | Bead density plots generated by the Excel UI now have the ID as title. | taborlab_FlowCal | train |
8ab7aec641e88d0b0f25bab18582377334ca8182 | diff --git a/server/src/main/java/org/openqa/selenium/server/SeleniumDriverResourceHandler.java b/server/src/main/java/org/openqa/selenium/server/SeleniumDriverResourceHandler.java
index <HASH>..<HASH> 100644
--- a/server/src/main/java/org/openqa/selenium/server/SeleniumDriverResourceHandler.java
+++ b/server/src/main/... | Fixing SRC-<I>, in which -htmlSuite mode fails even when the tests pass
r<I> | SeleniumHQ_selenium | train |
707aca7d514e0530c61ed1a6e00b295f03796402 | diff --git a/groovyfx/src/main/groovy/groovyx/javafx/beans/FXBindableASTTransformation.java b/groovyfx/src/main/groovy/groovyx/javafx/beans/FXBindableASTTransformation.java
index <HASH>..<HASH> 100644
--- a/groovyfx/src/main/groovy/groovyx/javafx/beans/FXBindableASTTransformation.java
+++ b/groovyfx/src/main/groovy/gro... | Change to use the ClassNode getPlainNodeReference method instead of homwgrown private method | groovyfx-project_groovyfx | train |
f404643cba355dd2c4d8643da8d2d4fbc6c126e4 | diff --git a/lib/will_paginate/finder.rb b/lib/will_paginate/finder.rb
index <HASH>..<HASH> 100644
--- a/lib/will_paginate/finder.rb
+++ b/lib/will_paginate/finder.rb
@@ -34,12 +34,12 @@ module WillPaginate
#
# @topics = Topic.paginate :page => params[:page]
#
- # Don't forget to pass the +page+ par... | Will Paginate: oops, forgot to update the docs. Users are now warned that :page parameter is required.
git-svn-id: svn://errtheblog.com/svn/plugins/will_paginate@<I> 1eaa<I>fe-a<I>a-<I>-9c2e-ae7a<I>a<I>c4 | mislav_will_paginate | train |
d56c1f4ef774c293bd9d8daca80c7991f448ce95 | diff --git a/table/tables/tables.go b/table/tables/tables.go
index <HASH>..<HASH> 100644
--- a/table/tables/tables.go
+++ b/table/tables/tables.go
@@ -74,12 +74,18 @@ func TableFromMeta(alloc autoid.Allocator, tblInfo *model.TableInfo) (table.Tabl
return nil, table.ErrTableStateCantNone.Gen("table %s can't be in non... | table/tables: add logs when column offsets are wrong (#<I>) | pingcap_tidb | train |
3e319548b18e7343eed3c0f9c68079a65fc96bcf | diff --git a/modules/custom/openy_focal_point/src/Plugin/Field/FieldWidget/OpenYFocalPointImageWidget.php b/modules/custom/openy_focal_point/src/Plugin/Field/FieldWidget/OpenYFocalPointImageWidget.php
index <HASH>..<HASH> 100755
--- a/modules/custom/openy_focal_point/src/Plugin/Field/FieldWidget/OpenYFocalPointImageWid... | deeper search of entity_browser_widget_paragraph_info in subforms | ymcatwincities_openy | train |
8caa867673a0789ed987feaaabd1cdcba515aeea | diff --git a/restcomm/restcomm.interpreter/src/main/java/org/restcomm/connect/interpreter/VoiceInterpreter.java b/restcomm/restcomm.interpreter/src/main/java/org/restcomm/connect/interpreter/VoiceInterpreter.java
index <HASH>..<HASH> 100644
--- a/restcomm/restcomm.interpreter/src/main/java/org/restcomm/connect/interpre... | jira_<I> Say/Play verb can be executed in failed Dial verb. | RestComm_Restcomm-Connect | train |
0ee77331ed1365dfd4304ea06d3a224d9a6541a3 | diff --git a/test/units/test_net_http_client.rb b/test/units/test_net_http_client.rb
index <HASH>..<HASH> 100644
--- a/test/units/test_net_http_client.rb
+++ b/test/units/test_net_http_client.rb
@@ -310,6 +310,16 @@ class NetHTTPClientTest < Minitest::Test
signature_base_string
end
+ def test_th... | test for body_hash omission when disabled | oauth-xx_oauth-ruby | train |
34aa86d4bc7ce2d8f56fc9673411d9eddbbf27f8 | diff --git a/app/templates/entry/client-prefetch.js b/app/templates/entry/client-prefetch.js
index <HASH>..<HASH> 100644
--- a/app/templates/entry/client-prefetch.js
+++ b/app/templates/entry/client-prefetch.js
@@ -9,8 +9,6 @@
*
* Boot files are your "main.js"
**/
-import App from 'app/<%= sourceFiles.rootCompone... | chore(app): more tweaks to webpack entry files | quasarframework_quasar | train |
a0cd9e95d7549327811c0442e84901ec26c5faaf | diff --git a/Lib/fontbakery/tests/test_usage.py b/Lib/fontbakery/tests/test_usage.py
index <HASH>..<HASH> 100644
--- a/Lib/fontbakery/tests/test_usage.py
+++ b/Lib/fontbakery/tests/test_usage.py
@@ -15,11 +15,12 @@ class TestSubcommands(unittest.TestCase):
"""Tests if the output from running fontbakery --list-... | make sure we never again release fontbakery missing scripts
(issue #<I>) | googlefonts_fontbakery | train |
b8d6808d95a3644ec1eba70561ef65a0b31c6d0c | diff --git a/src/com/opencms/workplace/CmsHistory.java b/src/com/opencms/workplace/CmsHistory.java
index <HASH>..<HASH> 100644
--- a/src/com/opencms/workplace/CmsHistory.java
+++ b/src/com/opencms/workplace/CmsHistory.java
@@ -1,8 +1,8 @@
/*
* File : $Source: /alkacon/cvs/opencms/src/com/opencms/workplace/Attic/C... | show last edit date of resource in detail section and
some more information in overview | alkacon_opencms-core | train |
f6153c0aa9df77b0342c53a2d24b86eeaca318e4 | diff --git a/state/service.go b/state/service.go
index <HASH>..<HASH> 100644
--- a/state/service.go
+++ b/state/service.go
@@ -75,7 +75,7 @@ var errRefresh = errors.New("cannot determine relation destruction operations; p
func (s *Service) Destroy() (err error) {
defer trivial.ErrorContextf(&err, "cannot destroy ser... | Added more Destroy tests fixed an error in defer | juju_juju | train |
81bf9f97c9edf0169e47b5b700715e2eae58e08a | diff --git a/eth/downloader/downloader.go b/eth/downloader/downloader.go
index <HASH>..<HASH> 100644
--- a/eth/downloader/downloader.go
+++ b/eth/downloader/downloader.go
@@ -90,6 +90,7 @@ var (
errCanceled = errors.New("syncing canceled (requested)")
errNoSyncActive = errors.New("no sync ... | downloader: extract findAncestor search functions (#<I>)
This is a simple refactoring, extracting common ancestor
negotiation logic to named function | ethereum_go-ethereum | train |
db4bca086d1f4802f6dd388bcdaf16b8e7af3c79 | diff --git a/test/e2e/network/dns_scale_records.go b/test/e2e/network/dns_scale_records.go
index <HASH>..<HASH> 100644
--- a/test/e2e/network/dns_scale_records.go
+++ b/test/e2e/network/dns_scale_records.go
@@ -60,6 +60,7 @@ var _ = SIGDescribe("[Feature:PerformanceDNS][Serial]", func() {
for i := 0; i < numNs; i++ ... | e2e delete namespaces after finish | kubernetes_kubernetes | train |
d84eab61f9d73cfc8191c9147b60a7e9f1bf624c | diff --git a/src/assets.js b/src/assets.js
index <HASH>..<HASH> 100644
--- a/src/assets.js
+++ b/src/assets.js
@@ -1,15 +1,15 @@
-(function($){
- var cache = [], timeout;
-
- $.fn.remove = function(){
- return this.each(function(element){
- if(element.tagName == 'IMG'){
- cache.push(element);
- ... | update $.fn.remove to work with latest .each | madrobby_zepto | train |
b28ad629d054023583c221c30d631ac72fdf58ad | diff --git a/lib/action_cable/channel/base.rb b/lib/action_cable/channel/base.rb
index <HASH>..<HASH> 100644
--- a/lib/action_cable/channel/base.rb
+++ b/lib/action_cable/channel/base.rb
@@ -51,11 +51,6 @@ module ActionCable
end
end
- def run_subscribe_callbacks
- self.class.on_subscribe_c... | Making running of subscribe callbacks a private matter | rails_rails | train |
0023d1b47cd73dd1bf62ca08862f3b3c5368d2d4 | diff --git a/hydpy/core/magictools.py b/hydpy/core/magictools.py
index <HASH>..<HASH> 100644
--- a/hydpy/core/magictools.py
+++ b/hydpy/core/magictools.py
@@ -211,8 +211,6 @@ def parameterstep(timestep=None):
for (name_numpar, numpar) in numpars_old:
setattr(numpars_new, na... | Remove a loop of function `parametertools` of module `magictools` which was no longer required and was also a relevant time-waster. | hydpy-dev_hydpy | train |
a616b0074d08fa6396081a7c83ab07e882ce1a52 | diff --git a/includes/properties/class-property-relationship.php b/includes/properties/class-property-relationship.php
index <HASH>..<HASH> 100644
--- a/includes/properties/class-property-relationship.php
+++ b/includes/properties/class-property-relationship.php
@@ -14,6 +14,33 @@ if ( ! defined( 'ABSPATH' ) ) {
class... | Fixed so it dont try to fetch sort by value if isnt showed | wp-papi_papi | train |
1bdc0ea4c9f9f3e8aab118b33cd081120f6a3484 | diff --git a/src/main/java/net/dv8tion/jda/api/events/message/guild/react/GuildMessageReactionAddEvent.java b/src/main/java/net/dv8tion/jda/api/events/message/guild/react/GuildMessageReactionAddEvent.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/dv8tion/jda/api/events/message/guild/react/GuildMessageReaction... | Docs: Nullability in GuildMessageReactionAddEvent
Previously, Javadocs were copied from the superclass, which stated that getMember and getUser could be null. This contrasted with the @Nonnull annotation of this event's methods, which is guaranteed to have a Member and User. | DV8FromTheWorld_JDA | train |
29b5aa8e9f228d39f2d0c64fe63456322beb68c4 | diff --git a/src/actions/pause/pauseOnExceptions.js b/src/actions/pause/pauseOnExceptions.js
index <HASH>..<HASH> 100644
--- a/src/actions/pause/pauseOnExceptions.js
+++ b/src/actions/pause/pauseOnExceptions.js
@@ -17,7 +17,7 @@ export function pauseOnExceptions(
shouldPauseOnCaughtExceptions: boolean
) {
return... | [PauseOnExceptions] should wait while setting (#<I>) | firefox-devtools_debugger | train |
3abf05fd27eff3beee9dcef9063b443c2dcd8124 | diff --git a/eZ/Publish/API/Repository/Tests/FieldType/EmailAddressIntegrationTest.php b/eZ/Publish/API/Repository/Tests/FieldType/EmailAddressIntegrationTest.php
index <HASH>..<HASH> 100644
--- a/eZ/Publish/API/Repository/Tests/FieldType/EmailAddressIntegrationTest.php
+++ b/eZ/Publish/API/Repository/Tests/FieldType/E... | EZP-<I>: implemented EmailAddress search tests | ezsystems_ezpublish-kernel | train |
6168c28407156fecaf4c97e941df68db0db7e9b6 | diff --git a/src/components/graph/graph.helper.js b/src/components/graph/graph.helper.js
index <HASH>..<HASH> 100644
--- a/src/components/graph/graph.helper.js
+++ b/src/components/graph/graph.helper.js
@@ -137,12 +137,14 @@ function _initializeNodes(graphNodes) {
* @memberof Graph/helper
*/
function _mapDataLinkT... | Specify links in Graph component update (#<I>)
* Find matching link in map to d3 link
* Use the right index for updated links
* Fix old spec that checked for wrong index | danielcaldas_react-d3-graph | train |
30e3062049a756e4e4c56e0b89df9fadfeb7368b | 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
@@ -292,7 +292,7 @@ define(['sprd/model/ProductBase', 'js/core/List', 'js/data/AttributeTypeResolver
save: function (options, callback) {
- if (this.$ori... | DEV-<I> - After undo and redo the design does not appear in the product model | spreadshirt_rAppid.js-sprd | train |
c0f2ca8c4c8052877ce67df9179b2968ee43e6c9 | diff --git a/sos/R/test/test_kernel.py b/sos/R/test/test_kernel.py
index <HASH>..<HASH> 100644
--- a/sos/R/test/test_kernel.py
+++ b/sos/R/test/test_kernel.py
@@ -97,15 +97,16 @@ list_var = [1, 2, '3']
dict_var = dict(a=1, b=2, c='3')
set_var = {1, 2, '3'}
mat_var = numpy.matrix([[1,2],[3,4]])
+recursive_var = {'a':... | Test recursive data structure between Python and R #<I> | vatlab_SoS | train |
c731fb22ce1bd1e7c7a96570013dd0c2aba3f39a | diff --git a/dbussy.py b/dbussy.py
index <HASH>..<HASH> 100644
--- a/dbussy.py
+++ b/dbussy.py
@@ -4910,6 +4910,13 @@ class Introspection(_TagCommon) :
self.annotations = Introspection._get_annotations(annotations)
#end __init__
+ @property
+ def interfaces_by_name(self) :
+ "returns a dic... | convenience property to get Introspection.interfaces indexed by name | ldo_dbussy | train |
876fa7fc162e96c038ddc8e9e70f10a0458fd038 | diff --git a/lib/celluloid/proxy/cell.rb b/lib/celluloid/proxy/cell.rb
index <HASH>..<HASH> 100644
--- a/lib/celluloid/proxy/cell.rb
+++ b/lib/celluloid/proxy/cell.rb
@@ -9,7 +9,6 @@ class Celluloid::Proxy::Cell < Celluloid::Proxy::Sync
def initialize(mailbox, actor_proxy, klass)
super(mailbox, klass)
@act... | Remove extraneous (?) `@sync_proxy` from Cell proxy. | celluloid_celluloid | train |
3087fdfc8e3927b3131819650082a652bafb8e9c | diff --git a/drivers/overlay/idmapped_utils.go b/drivers/overlay/idmapped_utils.go
index <HASH>..<HASH> 100644
--- a/drivers/overlay/idmapped_utils.go
+++ b/drivers/overlay/idmapped_utils.go
@@ -133,7 +133,7 @@ func createUsernsProcess(uidMaps []idtools.IDMap, gidMaps []idtools.IDMap) (int,
_ = unix.Prctl(unix.PR_SE... | overlay: unix.SYS_PAUSE is not defined on aarch<I>
so use the more portable syscall.Pause() version | containers_storage | train |
56ae6ae3e58552b2d2d00ff2c57ab6b2dfebcd3f | diff --git a/javaee/impl/src/main/java/org/jboss/forge/addon/javaee/jpa/containers/WebLogic12cContainer.java b/javaee/impl/src/main/java/org/jboss/forge/addon/javaee/jpa/containers/WebLogic12cContainer.java
index <HASH>..<HASH> 100644
--- a/javaee/impl/src/main/java/org/jboss/forge/addon/javaee/jpa/containers/WebLogic1... | Setting properties after transactionType and dataSource in Weblogic | forge_core | train |
404d6dcb823621c3095811f5d63f2f98cd557eec | diff --git a/master/buildbot/steps/source.py b/master/buildbot/steps/source.py
index <HASH>..<HASH> 100644
--- a/master/buildbot/steps/source.py
+++ b/master/buildbot/steps/source.py
@@ -917,13 +917,14 @@ class Repo(Source):
import re
if s == None:
return []
- re1 = re.compile("rep... | Add support for "project/change_id/patchset_id" format.
Both of the currenlty implemented formats are rejected by web interface
for security reasons. This patch adds support for 3rd format (which is
the only one that actually works). | buildbot_buildbot | train |
9006eb7b8bba6f74517bcc80d8843756b66e0771 | diff --git a/doitlive.py b/doitlive.py
index <HASH>..<HASH> 100755
--- a/doitlive.py
+++ b/doitlive.py
@@ -189,6 +189,7 @@ def echo(message=None, file=None, nl=True, err=False, color=None, carriage_retur
"""
Patched click echo function.
"""
+ message = message or ''
if carriage_return and nl:
... | fixed a bug where echoing a carriage return only fails if message is None | sloria_doitlive | train |
df45f3bf6ab4287e6b3ce9811cfd809bd96e6c15 | diff --git a/grails-bootstrap/src/main/groovy/org/codehaus/groovy/grails/resolve/GrailsRepoResolver.java b/grails-bootstrap/src/main/groovy/org/codehaus/groovy/grails/resolve/GrailsRepoResolver.java
index <HASH>..<HASH> 100644
--- a/grails-bootstrap/src/main/groovy/org/codehaus/groovy/grails/resolve/GrailsRepoResolver.... | fix for GRAILS-<I> "latest.release in plugin does not work in <I> RC2 against main grails repo" | grails_grails-core | train |
5a83b52ef25bc79af66e952ef16132873cd0f6d5 | diff --git a/lib/conf/tasks/daemon.js b/lib/conf/tasks/daemon.js
index <HASH>..<HASH> 100644
--- a/lib/conf/tasks/daemon.js
+++ b/lib/conf/tasks/daemon.js
@@ -14,7 +14,7 @@ if (is_windows) {
key : 'CronService',
name : 'Cron Service',
desc : 'Ensures commands are run at specific intervals.',
- daemon... | Removed extra comma. | prey_prey-node-client | train |
d69bbd13d094b784620ee9e008726a2d3b777b89 | diff --git a/src-test/publish-subscribe.js b/src-test/publish-subscribe.js
index <HASH>..<HASH> 100644
--- a/src-test/publish-subscribe.js
+++ b/src-test/publish-subscribe.js
@@ -142,6 +142,29 @@ TestCase("publish_subscribe", {
Hub.publish("x/{0}", "y");
assertTrue(fn1.called);
assertTrue(fn2.called);
+ },
+
... | Added some more test cases. Corrected indentation. | mantoni_hub.js | train |
747d70aeee6cf567b4d1d54cf2cf044e1ce6fa47 | diff --git a/lxc/file.go b/lxc/file.go
index <HASH>..<HASH> 100644
--- a/lxc/file.go
+++ b/lxc/file.go
@@ -577,7 +577,7 @@ func (c *fileCmd) edit(conf *config.Config, args []string) error {
fname := f.Name()
f.Close()
os.Remove(fname)
- defer os.Remove(fname)
+ defer os.Remove(shared.HostPath(fname))
// Extra... | lxc/file: Fix edit in a snap environment | lxc_lxd | train |
b435353f351835e933c21070f15813b3c44bf301 | diff --git a/pandasql/sqldf.py b/pandasql/sqldf.py
index <HASH>..<HASH> 100644
--- a/pandasql/sqldf.py
+++ b/pandasql/sqldf.py
@@ -115,7 +115,7 @@ def write_table(df, tablename, conn):
filterwarnings('ignore',
message='The provided table name \'%s\' is not found exactly as such in the d... | add comment, rename test cases | yhat_pandasql | train |
4a0fbc61228c8794eb5b5099256f323b6f8b17ff | diff --git a/ghettoq/messaging.py b/ghettoq/messaging.py
index <HASH>..<HASH> 100644
--- a/ghettoq/messaging.py
+++ b/ghettoq/messaging.py
@@ -36,7 +36,7 @@ class QueueSet(object):
self.queues = map(self.backend.Queue, self.queue_names)
# an infinite cycle through all the queues.
- self.queue... | Fix typo queue_cycle -> cycle | ask_ghettoq | train |
6f4b274bee4aec8fd04fbb673a2932c3634fa753 | diff --git a/pyontutils/ontload.py b/pyontutils/ontload.py
index <HASH>..<HASH> 100755
--- a/pyontutils/ontload.py
+++ b/pyontutils/ontload.py
@@ -33,6 +33,7 @@ Options:
-B --scigraph-branch=SBRANCH scigraph branch to build [default: upstream]
-C --scigraph-commit=SCOMMIT scigraph commit to build ... | ontload --scigraph-quiet added to avoid travis log too long | tgbugs_pyontutils | train |
59d1b2b70b91e8ae8bda8499d54025daa7ec642c | diff --git a/O365/attachment.py b/O365/attachment.py
index <HASH>..<HASH> 100644
--- a/O365/attachment.py
+++ b/O365/attachment.py
@@ -8,6 +8,7 @@ import logging
import json
import requests
import sys
+from os import path
log = logging.getLogger(__name__)
@@ -81,7 +82,7 @@ class Attachment( object ):
locatio... | Fixed save() to work on windows and linux
imported path from os and used the path.join() function to get the correct path location for ones particular OS. This will make scripts written with this module also cross OS. | O365_python-o365 | train |
b6b487b402ba50dbdff025639e6ef0f530e42d17 | diff --git a/eZ/Publish/API/Repository/Tests/LocationServiceTest.php b/eZ/Publish/API/Repository/Tests/LocationServiceTest.php
index <HASH>..<HASH> 100644
--- a/eZ/Publish/API/Repository/Tests/LocationServiceTest.php
+++ b/eZ/Publish/API/Repository/Tests/LocationServiceTest.php
@@ -1083,12 +1083,12 @@ class LocationSer... | Fixed: Loosen test condition due to changing $mainLocationId. | ezsystems_ezpublish-kernel | train |
0276fc7c5236c9ba52bc1b9adfc7783105be3263 | diff --git a/core/handler/uplink.go b/core/handler/uplink.go
index <HASH>..<HASH> 100644
--- a/core/handler/uplink.go
+++ b/core/handler/uplink.go
@@ -81,9 +81,11 @@ func (h *handler) HandleUplink(uplink *pb_broker.DeduplicatedUplinkMessage) (err
h.amqpUp <- appUplink
}
- if uplink.ResponseTemplate == nil {
- c... | Publish MQTT events when downlink unavailable | TheThingsNetwork_ttn | train |
101d5854b6e6826096bb4faa04232cc7c83df4d4 | diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -28,7 +28,7 @@ gulp.task('css', function () {
var processors = [
autoprefixer({ browsers: ['last 1 version'] }),
postcssVars,
- postcssMixins({ mixins: neatMixins }),
+ postcssMixins({ mixins: ne... | Mixins is now a function to allow future functionality extend | jo-asakura_postcss-neat | train |
620e5344be341d027a5cff9916f366db95153d12 | diff --git a/shared/common-adapters/list.desktop.js b/shared/common-adapters/list.desktop.js
index <HASH>..<HASH> 100644
--- a/shared/common-adapters/list.desktop.js
+++ b/shared/common-adapters/list.desktop.js
@@ -2,6 +2,7 @@
import React, {PureComponent} from 'react'
import ReactList from 'react-list'
import {glob... | fix react key warning on mobile (#<I>)
* fix react key warning on mobile
* Revert "fix react key warning on mobile"
This reverts commit <I>da<I>e5ac<I>c3b<I>bc<I>fb<I>d.
* make key handling in list.desktop.js like rn; use indexAsKey for Files | keybase_client | train |
4524f6789470bed3e55769a50ac4915a6273a7f3 | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -44,7 +44,9 @@ internals.handleEvent = function (event, options, streamOptions) {
event.pipe(stream);
}
- this(stream).header('content-type', 'text/event-stream');
+ this(s... | Fixed content-encoding bug. Force to to bypass any encoding by hapi. Fixes #<I> | mtharrison_susie | train |
8867a3bb88d2a76e93625b5016e53b496779dc43 | diff --git a/mod/quiz/report/analysis/report.php b/mod/quiz/report/analysis/report.php
index <HASH>..<HASH> 100644
--- a/mod/quiz/report/analysis/report.php
+++ b/mod/quiz/report/analysis/report.php
@@ -471,22 +471,18 @@ class quiz_report extends quiz_default_report {
function Export_Excel(&$questions, $filename... | Now Quiz is using the new Excel generation API.
Merged from MOODLE_<I>_UTF8. Abandoning the branch. | moodle_moodle | train |
8438c83866c8ed4ed00ee5f75cabdd158c4398fa | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -3,6 +3,21 @@ Basecamp Everest
This is a ruby gem for the [Basecamp API](https://github.com/basecamp/bcx-api/). I've tried to make it as complete and true to the API as possible and everything generally follows the same... | Updated readme.md more.
Readme.md: Updated formatting, and started adding more content. Once
the programming is done, I’ll updated the readme in an iterative
fashion.
Project.rb: Changed a capitalization for consistency.
Todo_list.rb: Added most methods, and began formatting them. Have not
run tests on it yet. | alexggordon_basecampeverest | train |
f7e3ced9bf91678bc4276028235dc7b139385672 | diff --git a/lfs/hook.go b/lfs/hook.go
index <HASH>..<HASH> 100644
--- a/lfs/hook.go
+++ b/lfs/hook.go
@@ -13,6 +13,11 @@ import (
"github.com/git-lfs/git-lfs/git"
)
+var (
+ // The basic hook which just calls 'git lfs TYPE'
+ hookBaseContent = "#!/bin/sh\ncommand -v git-lfs >/dev/null 2>&1 || { echo >&2 \"\\nThis... | Generalise hook setup so common parts can be re-used | git-lfs_git-lfs | train |
a67c60319d884fd3923f8b672458dffc3cfa52a3 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -7,6 +7,7 @@ setup(
description='Common support for meta-data',
author='Jason Thiese',
author_email="jasonthiese@gmail.com",
+ license="Apache v2",
packages=find_packages(),
install_requires=[
... | Adding license field to setup.py | MaterialsDataInfrastructureConsortium_CommonMetadata | train |
a5a5f1b90caf7d4ae0f3e4b20a6460a918b65b29 | diff --git a/lib/appsignal/version.rb b/lib/appsignal/version.rb
index <HASH>..<HASH> 100644
--- a/lib/appsignal/version.rb
+++ b/lib/appsignal/version.rb
@@ -1,5 +1,5 @@
require 'yaml'
module Appsignal
- VERSION = '0.12.beta.40'
+ VERSION = '0.12.beta.41'
end | Bump to <I>.beta<I> [ci skip] | appsignal_appsignal-ruby | train |
7cff4927be710e8a4a46f00bd7a27cd32cacd2ac | diff --git a/mod/lesson/backup/moodle2/backup_lesson_stepslib.php b/mod/lesson/backup/moodle2/backup_lesson_stepslib.php
index <HASH>..<HASH> 100644
--- a/mod/lesson/backup/moodle2/backup_lesson_stepslib.php
+++ b/mod/lesson/backup/moodle2/backup_lesson_stepslib.php
@@ -76,8 +76,11 @@ class backup_lesson_activity_struc... | MDL-<I> backup & restore - fix quiz & lesson conflicts | moodle_moodle | train |
b9d1c587d8792857bfa0101f661b5921346878a1 | diff --git a/src/fields/SuperTableField.php b/src/fields/SuperTableField.php
index <HASH>..<HASH> 100644
--- a/src/fields/SuperTableField.php
+++ b/src/fields/SuperTableField.php
@@ -22,6 +22,8 @@ use craft\helpers\Json;
use craft\helpers\StringHelper;
use craft\validators\ArrayValidator;
+use yii\base\UnknownPrope... | Fix issue when viewing an entry revision where a field may have been deleted | verbb_super-table | train |
a924a46f21426761860becc55f126760a455be1a | diff --git a/python_modules/dagster/dagster/core/execution/plan/utils.py b/python_modules/dagster/dagster/core/execution/plan/utils.py
index <HASH>..<HASH> 100644
--- a/python_modules/dagster/dagster/core/execution/plan/utils.py
+++ b/python_modules/dagster/dagster/core/execution/plan/utils.py
@@ -6,6 +6,7 @@ from dags... | respoect RetryPolicy on interrupt (#<I>)
`DagsterExecutionInterruptedError` extends `BaseException` the same way `KeyboardInterrupt` does so we were not respecting it in this boundary.
Add an explicit case for it and respect it.
## Test Plan
added test | dagster-io_dagster | train |
1475b43ab77e2c43146a3b41e6e026e2e26a4473 | diff --git a/src/locale/bootstrap-table-ru-RU.js b/src/locale/bootstrap-table-ru-RU.js
index <HASH>..<HASH> 100644
--- a/src/locale/bootstrap-table-ru-RU.js
+++ b/src/locale/bootstrap-table-ru-RU.js
@@ -1,25 +1,33 @@
/**
* Bootstrap Table Russian translation
- * Author: gnhaku <hello@gnhaku.me>
+ * Author: Dunaevsky... | Russian translation updated for version <I> | wenzhixin_bootstrap-table | train |
52ec70343d1a18341564d1c54af1bcfaf232d1e5 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -173,6 +173,10 @@ The default values are shown below.
// A list of custom fields to support in the edit controller.
'editCustomFields' => array(),
+
+ // Override table names, if necessary.
+ ... | Update docs and tweak coding style. | jasongrimes_silex-simpleuser | train |
65bae80fb0a5359adf18e7f57c8b19a649baab9c | diff --git a/lib/xclarity_client/mixins/remote_access_mixin.rb b/lib/xclarity_client/mixins/remote_access_mixin.rb
index <HASH>..<HASH> 100644
--- a/lib/xclarity_client/mixins/remote_access_mixin.rb
+++ b/lib/xclarity_client/mixins/remote_access_mixin.rb
@@ -4,6 +4,14 @@ module XClarityClient
#
module Mixins::Rem... | added one validation to check tier level of server | lenovo_xclarity_client | train |
8948e047bf8d450654c649d578f7660fc073d8f6 | diff --git a/http.go b/http.go
index <HASH>..<HASH> 100644
--- a/http.go
+++ b/http.go
@@ -1194,9 +1194,14 @@ func (resp *Response) gzipBody(level int) error {
return nil
}
- // Do not care about memory allocations here, since gzip is slow
- // and allocates a lot of memory by itself.
if resp.bodyStream != nil... | Issue #<I>: reset Content-Length when compression is enabled for streamed response body | valyala_fasthttp | train |
62689262c006b42d77e43be57c4dd47e6ee8a8fd | diff --git a/src/TwigBridge/Twig/Template.php b/src/TwigBridge/Twig/Template.php
index <HASH>..<HASH> 100644
--- a/src/TwigBridge/Twig/Template.php
+++ b/src/TwigBridge/Twig/Template.php
@@ -30,15 +30,22 @@ abstract class Template extends Twig_Template
$isDefinedTest = false,
$ignoreStrictCheck = fals... | Regression from last release. Now fixes calling null attributes, relations and methods on an Eloquent model instance | rcrowe_TwigBridge | train |
5faf4ced4eb36cb53f1361d5c370fba7027e7a3c | diff --git a/src/components/card/index.js b/src/components/card/index.js
index <HASH>..<HASH> 100644
--- a/src/components/card/index.js
+++ b/src/components/card/index.js
@@ -159,6 +159,7 @@ class Card extends BaseComponent {
delayPressIn={10}
activeOpacity={0.6}
{...others}
+ ref={thi... | Card - set ref to allow using native functions like measureInWindow | wix_react-native-ui-lib | train |
396ef8d68401f8bf77a624e8529bdd69471067be | diff --git a/ryu/ofproto/ofproto_common.py b/ryu/ofproto/ofproto_common.py
index <HASH>..<HASH> 100644
--- a/ryu/ofproto/ofproto_common.py
+++ b/ryu/ofproto/ofproto_common.py
@@ -25,3 +25,8 @@ assert calcsize(OFP_HEADER_PACK_STR) == OFP_HEADER_SIZE
# 6633 is (still) the defacto standard.
OFP_TCP_PORT = 6633
OFP_SSL_... | ofproto_common: define some experimenter id | osrg_ryu | train |
6ef6e98ca87f3bb8a195dcaab51f8839183849ed | diff --git a/src/Entity/BaseEntityManager.php b/src/Entity/BaseEntityManager.php
index <HASH>..<HASH> 100644
--- a/src/Entity/BaseEntityManager.php
+++ b/src/Entity/BaseEntityManager.php
@@ -14,6 +14,7 @@ declare(strict_types=1);
namespace Sonata\Doctrine\Entity;
use Doctrine\ORM\EntityManager;
+use Doctrine\ORM\En... | Add method to child to narrow return type (#<I>)
The parent specifies that the return type for this method is an
ObjectRepository. Narrowing it down to EntityRepository will allow
static analysis tools to understand calls to that method a bit more, and
IDE to provide useful auto-completion. | sonata-project_sonata-doctrine-extensions | train |
c4153d5c00d0896223abfbed2ed5237b17fd64e2 | diff --git a/generators/deployment/index.js b/generators/deployment/index.js
index <HASH>..<HASH> 100644
--- a/generators/deployment/index.js
+++ b/generators/deployment/index.js
@@ -230,7 +230,7 @@ module.exports = class extends Generator {
_configureSpring() {
this.cfIgnoreContent = ['/.classpath', '/.project', ... | fix: More memory for CF Spring | ibm-developer_generator-ibm-cloud-enablement | train |
b70c1b9f3313cdcc7fe9ed2d832b33c32178feb6 | diff --git a/freezegun/api.py b/freezegun/api.py
index <HASH>..<HASH> 100644
--- a/freezegun/api.py
+++ b/freezegun/api.py
@@ -230,7 +230,7 @@ class _freeze_time(object):
self.time_to_freeze = time_to_freeze
self.tz_offset = tz_offset
- self.ignore = ignore
+ self.ignore = tuple(ignore... | Improve speed of _freeze_time.start() | spulec_freezegun | train |
1219996455345d6a944e96f8b86f5c614e57e73a | diff --git a/switchbot/__init__.py b/switchbot/__init__.py
index <HASH>..<HASH> 100644
--- a/switchbot/__init__.py
+++ b/switchbot/__init__.py
@@ -77,11 +77,12 @@ def _process_wosensorth(data) -> dict:
_sensor_data = binascii.unhexlify(data.encode())
- _temp_sign = _sensor_data[4] & 0b10000000
+ _temp_si... | Fixed _process_wosensorth() in __init__.py (#<I>)
This commit fixed bugs of _process_wosensorth().
- fixed wrong sign flag process
- fixed KeyError caused by _wosensorth_data | Danielhiversen_pySwitchbot | train |
7e3f334effbd5de382fda2e2265b2a92ea124107 | diff --git a/lib/tonic.php b/lib/tonic.php
index <HASH>..<HASH> 100644
--- a/lib/tonic.php
+++ b/lib/tonic.php
@@ -107,6 +107,12 @@ class Request {
);
/**
+ * Allowed resource methods
+ * @var str[]
+ */
+ public $allowedMethods = array();
+
+ /**
* HTTP request method of inc... | Added allow header (issue #<I>) | peej_tonic | train |
57765a499b4bc328a543c0988e0e2ce64b7834d5 | diff --git a/sql/src/test/java/org/apache/druid/sql/calcite/util/CalciteTests.java b/sql/src/test/java/org/apache/druid/sql/calcite/util/CalciteTests.java
index <HASH>..<HASH> 100644
--- a/sql/src/test/java/org/apache/druid/sql/calcite/util/CalciteTests.java
+++ b/sql/src/test/java/org/apache/druid/sql/calcite/util/Cal... | Allow overriding default JoinableFactory in SpecificSegmentsQuerySegmentWalker (#<I>) | apache_incubator-druid | train |
7504b0d9130536275e5d8826fcca0f798a3e8211 | diff --git a/wikitextparser/wikitext.py b/wikitextparser/wikitext.py
index <HASH>..<HASH> 100644
--- a/wikitextparser/wikitext.py
+++ b/wikitextparser/wikitext.py
@@ -374,28 +374,32 @@ class WikiText:
# Note: No span should be removed from _type_to_spans.
rmlength = rmstop - rmstart
for t, sp... | _shrink_span_update: Move more probable conditions to top | 5j9_wikitextparser | train |
9dde16760fa7d8c4b1790d22bc8d2b7038601615 | diff --git a/ndb/msgprop.py b/ndb/msgprop.py
index <HASH>..<HASH> 100644
--- a/ndb/msgprop.py
+++ b/ndb/msgprop.py
@@ -12,6 +12,34 @@ protocols_registry = remote.Protocols.new_default()
default_protocol = 'protojson' # While protobuf is faster, json is clearer.
+class EnumProperty(model.IntegerProperty):
+ """En... | Unreviewed: support indexed enum fields. | GoogleCloudPlatform_datastore-ndb-python | train |
ce1cb730d44ef38d31f8fdda3e987ce16f1a765a | diff --git a/spec/deferrable_gratification/combinator_operators_spec.rb b/spec/deferrable_gratification/combinator_operators_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/deferrable_gratification/combinator_operators_spec.rb
+++ b/spec/deferrable_gratification/combinator_operators_spec.rb
@@ -136,6 +136,19 @@ describe... | Spec a more complex example mapping a bound instance method | samstokes_deferrable_gratification | train |
9a4bb7e4dc3b586901cb4c5964d6b02d868d9d1c | diff --git a/pyresttest/tests.py b/pyresttest/tests.py
index <HASH>..<HASH> 100644
--- a/pyresttest/tests.py
+++ b/pyresttest/tests.py
@@ -309,8 +309,9 @@ class Test(object):
curl.setopt(curl.READFUNCTION, MyIO(bod).read)
if self.auth_username and self.auth_password:
- curl.setopt(pyc... | Fix for username/password templating? | svanoort_pyresttest | train |
3d6a58320c4259a0750714076c07ea5b4dfa2570 | diff --git a/Lib/glyphs2ufo/casting.py b/Lib/glyphs2ufo/casting.py
index <HASH>..<HASH> 100644
--- a/Lib/glyphs2ufo/casting.py
+++ b/Lib/glyphs2ufo/casting.py
@@ -103,6 +103,7 @@ def get_type_structure():
'descender': descender_val,
'guideLines': { # undocumented
'angle': int... | Load undocumented "locked" attr of guidelines | googlefonts_glyphsLib | train |
41aeae185885665b4a88c21e18e28f7a8f115294 | diff --git a/alburnum/maas/flesh/__init__.py b/alburnum/maas/flesh/__init__.py
index <HASH>..<HASH> 100644
--- a/alburnum/maas/flesh/__init__.py
+++ b/alburnum/maas/flesh/__init__.py
@@ -336,6 +336,7 @@ class cmd_list_users(OriginTableCommand):
class cmd_acquire_node(OriginTableCommand):
+ """Acquire a node."""... | New command, launch-node. | maas_python-libmaas | train |
89b85aede15cbf6f03e59ede92cd3e99a544632e | diff --git a/releaser/releaser_test.go b/releaser/releaser_test.go
index <HASH>..<HASH> 100644
--- a/releaser/releaser_test.go
+++ b/releaser/releaser_test.go
@@ -23,7 +23,8 @@ import (
"github.com/stretchr/testify/require"
)
-func TestCalculateVersions(t *testing.T) {
+// TODO(bep) fixme
+func _TestCalculateVersi... | releaser: Disable flaky test | gohugoio_hugo | train |
f4375efe5154f1b5dbf41127aa2cbda93609b9a8 | diff --git a/server.js b/server.js
index <HASH>..<HASH> 100644
--- a/server.js
+++ b/server.js
@@ -347,6 +347,7 @@ cache(function(data, match, sendBadge, request) {
badgeData.text[1] = res;
if (res === 'shippable') {
badgeData.colorscheme = 'brightgreen';
+ badgeData.text[1] = 'passing';
... | Consistently use "passing". | badges_shields | train |
8e64196a6006f9a9acd63cf65582465feff244c2 | diff --git a/library/src/main/java/uk/co/senab/photoview/PhotoView.java b/library/src/main/java/uk/co/senab/photoview/PhotoView.java
index <HASH>..<HASH> 100755
--- a/library/src/main/java/uk/co/senab/photoview/PhotoView.java
+++ b/library/src/main/java/uk/co/senab/photoview/PhotoView.java
@@ -50,7 +50,9 @@ public clas... | Fixed double initialization, Closing #<I> | chrisbanes_PhotoView | train |
5995ea78b1731a1890c2ff787ac2dde80578d805 | diff --git a/docs/cloud_databases.md b/docs/cloud_databases.md
index <HASH>..<HASH> 100644
--- a/docs/cloud_databases.md
+++ b/docs/cloud_databases.md
@@ -54,10 +54,22 @@ Assuming that all went well, you should see your new instance:
If you are planning on using your Cloud Database instance from one of your Cloud Se... | Finished much of the Cloud Databases doc. Added a few more docstrings. | pycontribs_pyrax | train |
bf1fb70b2b4308a0aed02f31c5f327be46620269 | diff --git a/text_formatter.go b/text_formatter.go
index <HASH>..<HASH> 100644
--- a/text_formatter.go
+++ b/text_formatter.go
@@ -60,6 +60,15 @@ type TextFormatter struct {
// Whether the logger's out is to a terminal
isTerminal bool
+ // FieldMap allows users to customize the names of keys for default fields.
+... | Add FieldMap support to TestFormatter | sirupsen_logrus | train |
77ccc1ff41099c94ee1fbf6615bb1bf7e1524750 | diff --git a/treeview.go b/treeview.go
index <HASH>..<HASH> 100644
--- a/treeview.go
+++ b/treeview.go
@@ -681,12 +681,13 @@ func (t *TreeView) Draw(screen tcell.Screen) {
func (t *TreeView) InputHandler() func(event *tcell.EventKey, setFocus func(p Primitive)) {
return t.WrapInputHandler(func(event *tcell.EventKey,... | Allow changing current node during handler
Avoids wrong handler being called or even crash on nil | rivo_tview | train |
a5535fb6f239763d247153b3f2dce84d355b0f9f | diff --git a/drivers/chrome/js/driver.js b/drivers/chrome/js/driver.js
index <HASH>..<HASH> 100644
--- a/drivers/chrome/js/driver.js
+++ b/drivers/chrome/js/driver.js
@@ -89,10 +89,6 @@
w.analyze(hostname, a.href, request.subject);
break;
- case 'fetch_headers':
- chrome.tabs.executeScript(... | Removed snippet of unused code | AliasIO_Wappalyzer | train |
347b2f2e0e3c7aa55549b84eceab2dbf5f440973 | diff --git a/bcbio/pipeline/fastq.py b/bcbio/pipeline/fastq.py
index <HASH>..<HASH> 100644
--- a/bcbio/pipeline/fastq.py
+++ b/bcbio/pipeline/fastq.py
@@ -44,17 +44,22 @@ def get_fastq_files(data):
def _gzip_fastq(in_file):
"""
- gzip a fastq file if it is not already gzipped
+ gzip a fastq file if it is ... | Handle bzipped2 FASTQ files as input.
Some tools can handle bzipped files, others can't. So we convert
the bzipped files to bgzipped files before continuing. | bcbio_bcbio-nextgen | train |
3370ad2155bbecb560f8c549b95a0a537430384d | diff --git a/asammdf/mdf_v3.py b/asammdf/mdf_v3.py
index <HASH>..<HASH> 100644
--- a/asammdf/mdf_v3.py
+++ b/asammdf/mdf_v3.py
@@ -1135,7 +1135,7 @@ class MDF3(object):
signals = [s.interp(timestamps) for s in signals]
times = None
- if self.version < '3.00':
+ if self.... | motorola byte order not supported by mdf version < <I> | danielhrisca_asammdf | train |
869b92914b29206917e279e1db42ae160c3cef5b | diff --git a/README.markdown b/README.markdown
index <HASH>..<HASH> 100644
--- a/README.markdown
+++ b/README.markdown
@@ -1,7 +1,7 @@
# Symphony 2 #
-- Version: 2.2RC1
-- Date: 29th Jan 2011
+- Version: 2.2RC2
+- Date: 7th Feb 2011
- Release Notes: <http://symphony-cms.com/download/releases/version/2.2/>
- Github... | Update Symphony version for <I>RC2 | symphonycms_symphony-2 | train |
46b5e93c7f3ab7832c9d6df495bf3d8155c08c92 | diff --git a/ph-bdve-peppol/src/main/java/com/helger/bdve/peppol/PeppolValidation381.java b/ph-bdve-peppol/src/main/java/com/helger/bdve/peppol/PeppolValidation381.java
index <HASH>..<HASH> 100644
--- a/ph-bdve-peppol/src/main/java/com/helger/bdve/peppol/PeppolValidation381.java
+++ b/ph-bdve-peppol/src/main/java/com/h... | Officially marked as deprecated :| | phax_ph-bdve | train |
1da71f6de07370a3249badc024fa2c598a474950 | diff --git a/lib/interfaces/IGuildMember.js b/lib/interfaces/IGuildMember.js
index <HASH>..<HASH> 100644
--- a/lib/interfaces/IGuildMember.js
+++ b/lib/interfaces/IGuildMember.js
@@ -121,7 +121,7 @@ class IGuildMember extends IUser {
*/
ban(deleteMessageForDays) {
return rest(this._discordie)
- .guilds... | Allow calling member.unban even if member is not cached | qeled_discordie | train |
74c74e0de71ff205dca92fc1e3a68f90e720bf22 | diff --git a/wafer/sponsors/tests/test_models.py b/wafer/sponsors/tests/test_models.py
index <HASH>..<HASH> 100644
--- a/wafer/sponsors/tests/test_models.py
+++ b/wafer/sponsors/tests/test_models.py
@@ -9,13 +9,32 @@ from wafer.menu import get_cached_menus, Menu
from wafer.sponsors.models import SponsorshipPackage, Sp... | Extend sponsor tests to cover more menu cases | CTPUG_wafer | train |
85ca62643468cc8338ae43aaff9633f3ceb13a98 | diff --git a/README.rst b/README.rst
index <HASH>..<HASH> 100644
--- a/README.rst
+++ b/README.rst
@@ -212,7 +212,7 @@ parsing tools,more info and benchmarks can be found at
Additional
**********
-``django-activeurl`` supports python 2.5, 2.6, 2.7, 3.2, 3.3
+``django-activeurl`` supports python 2.6, 2.7, 3.2, 3.3
... | Dropped Python <I> support | hellysmile_django-activeurl | train |
6e0f1715147eb76b62bf5af5f9881a7850fd2683 | diff --git a/lib/vagrant.rb b/lib/vagrant.rb
index <HASH>..<HASH> 100644
--- a/lib/vagrant.rb
+++ b/lib/vagrant.rb
@@ -3,7 +3,7 @@ $:.unshift(libdir)
PROJECT_ROOT = File.join(libdir, '..') unless defined?(PROJECT_ROOT)
# The libs which must be loaded prior to the rest
-%w{tempfile open-uri ftools json pathname logg... | Remove ftools requirement (deprecated in <I>) | hashicorp_vagrant | train |
a28d04a2ca0e1d5bd273395114244ff9b35596e2 | diff --git a/src/main/java/com/datasift/client/push/connectors/FTP.java b/src/main/java/com/datasift/client/push/connectors/FTP.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/datasift/client/push/connectors/FTP.java
+++ b/src/main/java/com/datasift/client/push/connectors/FTP.java
@@ -181,6 +181,14 @@ public c... | addresses #<I> - adding compression formats to push | datasift_datasift-java | train |
e6cdc5ed8a787ff42a73b6987bf359c7c4109145 | diff --git a/user/policy.php b/user/policy.php
index <HASH>..<HASH> 100644
--- a/user/policy.php
+++ b/user/policy.php
@@ -62,6 +62,7 @@ $strpolicyagree = get_string('policyagree');
$strpolicyagreement = get_string('policyagreement');
$strpolicyagreementclick = get_string('policyagreementclick');
+$PAGE->set_contex... | user/policy: MDL-<I> set PAGE context and appropriately use moodle_url for button
Thanks to Myles Carrick for the patch! | moodle_moodle | train |
79aaf35b64d420e4c0eebe9c1dccd0e1965fd27c | diff --git a/estnltk/taggers/retagger.py b/estnltk/taggers/retagger.py
index <HASH>..<HASH> 100644
--- a/estnltk/taggers/retagger.py
+++ b/estnltk/taggers/retagger.py
@@ -1,7 +1,7 @@
from estnltk.text import Layer, Text
from estnltk.taggers import Tagger
-from typing import MutableMapping
+from typing import Mutabl... | Quickfix to solve the change of Text.layer output type without fixing every tagger in the codebase | estnltk_estnltk | train |
b0903dbe1594986e3d1bc786ad98bb8bd4cc7960 | diff --git a/includes/class.Parser.inc.php b/includes/class.Parser.inc.php
index <HASH>..<HASH> 100644
--- a/includes/class.Parser.inc.php
+++ b/includes/class.Parser.inc.php
@@ -160,6 +160,9 @@ class Parser
$mpo=preg_replace('/(^user=[^,]*,)|(^user=[^,]*$)|(,user=[^,]*$)/i', ''... | added "username" to filtered credentials | phpsysinfo_phpsysinfo | train |
a2c1fe69099547ae1002f2c3ad30bb21b9c20078 | diff --git a/spring-cloud-commons/src/main/java/org/springframework/cloud/client/CommonsClientAutoConfiguration.java b/spring-cloud-commons/src/main/java/org/springframework/cloud/client/CommonsClientAutoConfiguration.java
index <HASH>..<HASH> 100644
--- a/spring-cloud-commons/src/main/java/org/springframework/cloud/cl... | Only create composite health indicator if needed.
Only if there is at least one DiscoveryHealthIndicator.
fixes gh-<I> | spring-cloud_spring-cloud-commons | train |
486ea7b62cc61ca2690ff3ccd6420b75983ac00c | diff --git a/src/Command/CheckAutoloading.php b/src/Command/CheckAutoloading.php
index <HASH>..<HASH> 100644
--- a/src/Command/CheckAutoloading.php
+++ b/src/Command/CheckAutoloading.php
@@ -46,6 +46,16 @@ use Symfony\Component\Console\Output\OutputInterface;
class CheckAutoloading extends Command
{
/**
+ * ... | Add exit code map to determine exit code | phpcq_autoload-validation | train |
1ba7ca800cc2f14687e21e2de9870a0537b39fcd | diff --git a/Model/Api/V3.php b/Model/Api/V3.php
index <HASH>..<HASH> 100644
--- a/Model/Api/V3.php
+++ b/Model/Api/V3.php
@@ -462,6 +462,12 @@ class V3 implements \CheckoutCom\Magento2\Api\V3Interface
// CKO card payment method specific validation
if ($this->data->getPaymentMethod() == 'che... | Added additional error messages to v3 | checkout_checkout-magento2-plugin | train |
0cc75679fc82809075a7a2363f35e2637caec68e | diff --git a/lib/archive/support/io-like.rb b/lib/archive/support/io-like.rb
index <HASH>..<HASH> 100644
--- a/lib/archive/support/io-like.rb
+++ b/lib/archive/support/io-like.rb
@@ -2,7 +2,7 @@
# standard installation.
begin
require 'rubygems'
- gem 'io-like', '>= 0.2.0'
+ gem 'io-like', '>= 0.3.0'
rescue Load... | Bumped required version of io-like to <I> | javanthropus_archive-zip | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.