hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
7296997fb31d4e45d6c23139f4e4e6a804b3d09b
diff --git a/lib/modules/apostrophe-email/index.js b/lib/modules/apostrophe-email/index.js index <HASH>..<HASH> 100644 --- a/lib/modules/apostrophe-email/index.js +++ b/lib/modules/apostrophe-email/index.js @@ -25,7 +25,7 @@ module.exports = { self.emailForModule = async function(req, templateName, data, options...
email tests pass, fixed bug: email method did not return info
apostrophecms_apostrophe
train
6dfa83ecefe048e5a9c200fba08d1c53ce39e91d
diff --git a/src/base/model.js b/src/base/model.js index <HASH>..<HASH> 100644 --- a/src/base/model.js +++ b/src/base/model.js @@ -112,11 +112,18 @@ define([ } //otherwise, just set value :) else { - this._data[a] = vals; - promise...
Avoid triggering change if the value is the same - closes #<I>
vizabi_vizabi
train
d7318a6764438445b9b3c735d7116b55509eb50a
diff --git a/src/components/VNavigationDrawer/VNavigationDrawer.js b/src/components/VNavigationDrawer/VNavigationDrawer.js index <HASH>..<HASH> 100644 --- a/src/components/VNavigationDrawer/VNavigationDrawer.js +++ b/src/components/VNavigationDrawer/VNavigationDrawer.js @@ -2,6 +2,7 @@ import '../../stylus/components/_...
fix(v-navigation-drawer): pull in Dependent mixin for click-outside
vuetifyjs_vuetify
train
959a4bfd2fb30b64400124a50d59219901dda012
diff --git a/images/ipfailover/keepalived/lib/config-generators.sh b/images/ipfailover/keepalived/lib/config-generators.sh index <HASH>..<HASH> 100755 --- a/images/ipfailover/keepalived/lib/config-generators.sh +++ b/images/ipfailover/keepalived/lib/config-generators.sh @@ -178,7 +178,7 @@ function generate_vip_section...
Allow multiple ipfailover configs on same node The ipfailover pods for a given configuration must run on different nodes. We are using the ServicePort as a mechanism to prevent multiple pods for same configuration from starting on the same node. Since pods for different configurations can run on the same node a diffe...
openshift_origin
train
cab34fc35fe64603e330e89383ed96830bd4bcb8
diff --git a/lib/swag_dev/project/tools/packer/filesystem/operator.rb b/lib/swag_dev/project/tools/packer/filesystem/operator.rb index <HASH>..<HASH> 100644 --- a/lib/swag_dev/project/tools/packer/filesystem/operator.rb +++ b/lib/swag_dev/project/tools/packer/filesystem/operator.rb @@ -1,6 +1,8 @@ # frozen_string_lite...
packer/filesystem/operator (tools) minor changes, almost documentation
SwagDevOps_kamaze-project
train
0b96d5979b5ad042c747536e037a673c066453bd
diff --git a/lib/specjour/rspec2/runner.rb b/lib/specjour/rspec2/runner.rb index <HASH>..<HASH> 100644 --- a/lib/specjour/rspec2/runner.rb +++ b/lib/specjour/rspec2/runner.rb @@ -7,6 +7,6 @@ module Specjour::Rspec::Runner def self.reset ::Rspec.instance_variable_set(:@world, nil) - ::Rspec.instance_variabl...
Only reset the formatter before running new spec Custom configuration blocks were being removed when resetting the entire configuration object each time
sandro_specjour
train
4cd41b242bd4ba86c27ef8cacc8c16de22f64b4e
diff --git a/lib/cucumber/formatter/html.rb b/lib/cucumber/formatter/html.rb index <HASH>..<HASH> 100644 --- a/lib/cucumber/formatter/html.rb +++ b/lib/cucumber/formatter/html.rb @@ -311,7 +311,7 @@ module Cucumber @builder.tr do @builder.td(:colspan => @col_index.to_s, :class => 'failed') do ...
Update lib/cucumber/formatter/html.rb
cucumber_cucumber-ruby
train
ee40b44e3b5308f3eb52666a9d233ee2eacc58ae
diff --git a/src/wa_kat/rest_api/keywords.py b/src/wa_kat/rest_api/keywords.py index <HASH>..<HASH> 100755 --- a/src/wa_kat/rest_api/keywords.py +++ b/src/wa_kat/rest_api/keywords.py @@ -6,6 +6,14 @@ """ This module handles list of Aleph's keywords, provides REST API with this keywords and allows translation of thos...
#<I>: Undocumented some global variables, because extenzive spamming in HTML
WebarchivCZ_WA-KAT
train
93e84041387c80bf8738fe96409a0cfd5852c29a
diff --git a/docs/sphinx/source/whatsnew/v0.9.1.rst b/docs/sphinx/source/whatsnew/v0.9.1.rst index <HASH>..<HASH> 100644 --- a/docs/sphinx/source/whatsnew/v0.9.1.rst +++ b/docs/sphinx/source/whatsnew/v0.9.1.rst @@ -8,6 +8,11 @@ Breaking changes Deprecations ~~~~~~~~~~~~ +* :py:func:`pvlib.modelchain.basic_chain` is...
Deprecate modelchain.basic_chain (#<I>) * deprecate basic_chain * whatsnew * stickler * also recommend with_sapm
pvlib_pvlib-python
train
19c1c15df180e2bfd260d6815c9dbace4fe5f44a
diff --git a/petl/test/util/test_base.py b/petl/test/util/test_base.py index <HASH>..<HASH> 100644 --- a/petl/test/util/test_base.py +++ b/petl/test/util/test_base.py @@ -95,13 +95,13 @@ def test_records_errors(): o = next(it) try: o['baz'] - except ArgumentError: + except KeyError: pa...
Record: replace ArgumentError with standard exceptions in __getattr__ and __getitem__
petl-developers_petl
train
2f2caa4d980ae84252c73b98b45dfab94f21d84b
diff --git a/probe/http.go b/probe/http.go index <HASH>..<HASH> 100644 --- a/probe/http.go +++ b/probe/http.go @@ -4,6 +4,7 @@ import ( "crypto/tls" "log" "net/http" + "strings" "time" "github.com/essentier/spickspan/model" @@ -20,6 +21,10 @@ const ( // Default timeout is totalWaitTime seconds. func Probe...
stop service probing if the service does not have an IP
essentier_spickspan
train
1299bfbf37b46a56ac99f4cefdcf902019798255
diff --git a/sshtunnel.py b/sshtunnel.py index <HASH>..<HASH> 100644 --- a/sshtunnel.py +++ b/sshtunnel.py @@ -416,7 +416,7 @@ class _ThreadingForwardServer(socketserver.ThreadingMixIn, _ForwardServer): daemon_threads = DAEMON -class _UnixStreamForwardServer(UnixStreamServer, _ForwardServer): +class _UnixStrea...
Fix MRO for UnixStreamForwardServer under non-POSIX
pahaz_sshtunnel
train
ea7c4e3407de58eb8c74a529b0ce23bae1671945
diff --git a/test/unexpectedMitm.js b/test/unexpectedMitm.js index <HASH>..<HASH> 100644 --- a/test/unexpectedMitm.js +++ b/test/unexpectedMitm.js @@ -2126,6 +2126,13 @@ describe('unexpectedMitm', () => { ); } )); + + it('should not break when the assertion being delegated to throws synchr...
Add a test case for sync throw in "with http recorded".
unexpectedjs_unexpected-mitm
train
44e6224589d859730879f6843ddfde42be7230ef
diff --git a/blockstack/lib/nameset/__init__.py b/blockstack/lib/nameset/__init__.py index <HASH>..<HASH> 100644 --- a/blockstack/lib/nameset/__init__.py +++ b/blockstack/lib/nameset/__init__.py @@ -37,6 +37,12 @@ CONSENSUS_FIELDS_REQUIRED = [ 'vtxindex' ] +# fields that *must* be present in token operations, +...
be more rigorous about checking for the presence of required consensus fields *early*
blockstack_blockstack-core
train
5cde2a6448503e4e7281ab698115ac4d1705f14e
diff --git a/tests/integration/components/popover/event-bubbling-test.js b/tests/integration/components/popover/event-bubbling-test.js index <HASH>..<HASH> 100644 --- a/tests/integration/components/popover/event-bubbling-test.js +++ b/tests/integration/components/popover/event-bubbling-test.js @@ -1,12 +1,14 @@ +import...
New event-bulling-test passing eslint
sir-dunxalot_ember-tooltips
train
b5b320bccdc56ed70d9cfa4a7ab6d4a158781d61
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python +#! /usr/bin/env python3 # coding=utf-8 """setup.py - Setuptools tasks and config for pyisbn.""" # Copyright © 2007-2017 James Rowe <jnrowe@gmail.com>
Default to python3 in setup
JNRowe_pyisbn
train
b23279b9b603418d3a47d3ef1de781da3da7d093
diff --git a/examples/hello_world.py b/examples/hello_world.py index <HASH>..<HASH> 100644 --- a/examples/hello_world.py +++ b/examples/hello_world.py @@ -61,9 +61,9 @@ simulation.load_data() ### Run business-as-usual scenario -start_time = pd.Timestamp('1/1/1990'), -end_time = pd.Timestamp('12/31/2013'), -time_st...
BUG: working args for simulation.run
ihmeuw_vivarium
train
cec807812ae43171d191362d4dc9f1dba2ec3821
diff --git a/lib/publish.js b/lib/publish.js index <HASH>..<HASH> 100644 --- a/lib/publish.js +++ b/lib/publish.js @@ -11,7 +11,7 @@ module.exports = async ({npmPublish, tarballDir, pkgRoot}, {publishConfig, name} if (tarballDir) { logger.log('Creating npm package version %s', version); - const tarball = a...
fix: get tarball name as last line from stdout
semantic-release_npm
train
2331d3388fc2c797a9564bb762a0780575a8b67e
diff --git a/scim-schema/src/main/java/org/osiam/resources/scim/Constants.java b/scim-schema/src/main/java/org/osiam/resources/scim/Constants.java index <HASH>..<HASH> 100644 --- a/scim-schema/src/main/java/org/osiam/resources/scim/Constants.java +++ b/scim-schema/src/main/java/org/osiam/resources/scim/Constants.java @...
Introduce Constant representing ListResponse Related to osiam/resource-server#<I>
osiam_connector4java
train
38ae53c9d837df5a46597b3d55000b4da152afee
diff --git a/acceptance/tests/ticket_13948_lib_dir_hook_should_be_called_on_initialization.rb b/acceptance/tests/ticket_13948_lib_dir_hook_should_be_called_on_initialization.rb index <HASH>..<HASH> 100644 --- a/acceptance/tests/ticket_13948_lib_dir_hook_should_be_called_on_initialization.rb +++ b/acceptance/tests/ticke...
(#<I>) Fix old reference typo
puppetlabs_puppet
train
6cf802b2f85b7131bd9dbb8caff0dbfd7268fe50
diff --git a/statik/database.py b/statik/database.py index <HASH>..<HASH> 100644 --- a/statik/database.py +++ b/statik/database.py @@ -428,6 +428,13 @@ class StatikDatabaseInstance(ContentLoadable): field_name) self.field_values[field_name] = list(set(self.field_...
database.py: check for non-string elements in array Added check for non-string elements in array. Non-string elements are converted to strings by default. Closes <URL>
thanethomson_statik
train
b62ac9002e66605f6d3300d6e9c4f835a32cb884
diff --git a/wffweb/src/main/java/com/webfirmframework/wffweb/tag/html/AbstractHtml.java b/wffweb/src/main/java/com/webfirmframework/wffweb/tag/html/AbstractHtml.java index <HASH>..<HASH> 100644 --- a/wffweb/src/main/java/com/webfirmframework/wffweb/tag/html/AbstractHtml.java +++ b/wffweb/src/main/java/com/webfirmframe...
Minor possible thread-safety improvements -- Improved some code (minor)
webfirmframework_wff
train
2bf8a3607700f03542fad6a363a3c73dbda6ac5b
diff --git a/src/client/voice/VoiceConnection.js b/src/client/voice/VoiceConnection.js index <HASH>..<HASH> 100644 --- a/src/client/voice/VoiceConnection.js +++ b/src/client/voice/VoiceConnection.js @@ -169,19 +169,20 @@ class VoiceConnection extends EventEmitter { * @returns {void} */ setTokenAndEndpoint(to...
Allow await endpoint stage to not error (#<I>)
discordjs_discord.js
train
108a26ba7d2f427cc0425999e0e27fb15015eb40
diff --git a/lib/sprout/user/base_user.rb b/lib/sprout/user/base_user.rb index <HASH>..<HASH> 100644 --- a/lib/sprout/user/base_user.rb +++ b/lib/sprout/user/base_user.rb @@ -114,8 +114,12 @@ module Sprout::User # Threads are complicated - use with caution... # def execute_thread(tool, options='') - ...
Pulled ThreadMock into User.execute_thread
lukebayes_project-sprouts
train
4e86c6d7358980b2d5f17508927e591bc4819dea
diff --git a/course/view.php b/course/view.php index <HASH>..<HASH> 100644 --- a/course/view.php +++ b/course/view.php @@ -123,36 +123,43 @@ // AJAX-capable course format? $useajax = false; $ajaxformatfile = $CFG->dirroot.'/course/format/'.$course->format.'/ajax.php'; + $meta = ''; + $bodytags = ''...
Merged from <I>.
moodle_moodle
train
726ad8473f47958162373402edd2df215ec885e8
diff --git a/lib/active_interaction/filters/boolean_filter.rb b/lib/active_interaction/filters/boolean_filter.rb index <HASH>..<HASH> 100644 --- a/lib/active_interaction/filters/boolean_filter.rb +++ b/lib/active_interaction/filters/boolean_filter.rb @@ -1,8 +1,8 @@ module ActiveInteraction class Base # Create...
Fix typo This was probably copy-pasted from the array filter.
AaronLasseigne_active_interaction
train
c5fcb660c759f83305615b0a4d60f44affb27d7f
diff --git a/web/concrete/core/models/file_version.php b/web/concrete/core/models/file_version.php index <HASH>..<HASH> 100644 --- a/web/concrete/core/models/file_version.php +++ b/web/concrete/core/models/file_version.php @@ -64,7 +64,7 @@ class Concrete5_Model_FileVersion extends Object { public function getAttri...
Corrects FileVersion::getAttribute() issue Removes false being set to $mode in returing getAttribute() call, which was overriding anything intended to be passed as $mode to always false Former-commit-id: <I>f<I>bc<I>a<I>a<I>c1c3e<I>cc0a<I>dfa4
concrete5_concrete5
train
9bda72933e8fd9ef709fd682c1a8f2ebff4a6005
diff --git a/livestyle-client.js b/livestyle-client.js index <HASH>..<HASH> 100644 --- a/livestyle-client.js +++ b/livestyle-client.js @@ -168,22 +168,27 @@ newNode.href = href; newNode.onload = function () { + newNode.onload = null; isBusyByHref[href] -= 1; ...
Client, replaceLinkTag: Be even more careful when detecting that the new stylesheet has loaded and replacing the old link tag.
One-com_livestyle
train
41cbe9db4128e9d7955d5ed4e9220579873cba98
diff --git a/graphite_influxdb.py b/graphite_influxdb.py index <HASH>..<HASH> 100644 --- a/graphite_influxdb.py +++ b/graphite_influxdb.py @@ -21,10 +21,6 @@ logger = structlog.get_logger() # logger.debug = debug -def findquery_to_cachekey(q): - return "query '%s'_%s_%s" % (q.pattern, q.startTime, q.endTime) - ...
cache key only depends on query pattern, not start/end without this fix, it would basically add to cache for no reason, fail to get any kind of hit rate, and do the work over again.
vimeo_graphite-influxdb
train
eb825211087daa48f65c58d9631c94b908f1aff3
diff --git a/spec/dummy/config/application.rb b/spec/dummy/config/application.rb index <HASH>..<HASH> 100644 --- a/spec/dummy/config/application.rb +++ b/spec/dummy/config/application.rb @@ -24,6 +24,11 @@ module Dummy # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. ...
Add config.valid_login_domains to dummy application
ministryofjustice_peoplefinder
train
e5e3e9b8c2c0cd25df51440ab012ffc08f26d34b
diff --git a/index.js b/index.js index <HASH>..<HASH> 100755 --- a/index.js +++ b/index.js @@ -1410,9 +1410,18 @@ Pod.prototype = { // -------------------------------------------------- CDN HELPERS - _httpStreamToFile : function(url, outFile, cb, persist) { - var self = this; - self.file.save(outFile, req...
added headers to httpStreamToFile
bipio-server_bip-pod
train
f9f21b67ffe13bdeb9bab2614b1c817e39e554b8
diff --git a/lib/the_tracker/tracker.rb b/lib/the_tracker/tracker.rb index <HASH>..<HASH> 100644 --- a/lib/the_tracker/tracker.rb +++ b/lib/the_tracker/tracker.rb @@ -23,7 +23,7 @@ module TheTracker def header trackers.map do | id, tracker | tracker.header - end.join('\n') + end.compact.j...
Fixed bug for annoying '\n' renders
jorgegorka_the_tracker
train
8571d69e47ea5167fb01efe362dab4b5832297ed
diff --git a/nameko/exceptions.py b/nameko/exceptions.py index <HASH>..<HASH> 100644 --- a/nameko/exceptions.py +++ b/nameko/exceptions.py @@ -98,18 +98,22 @@ def deserialize_to_instance(exc_type): return exc_type +class BadRequest(Exception): + pass + + @deserialize_to_instance -class MalformedRequest(Exc...
add exception superclass for identifying bad requests
nameko_nameko
train
280b005a77dc48fee33d604eacf98c54fbf41798
diff --git a/iotdeviceprovisioner/Bootstrap.py b/iotdeviceprovisioner/Bootstrap.py index <HASH>..<HASH> 100644 --- a/iotdeviceprovisioner/Bootstrap.py +++ b/iotdeviceprovisioner/Bootstrap.py @@ -1,5 +1,6 @@ import os +import errno import json import datetime import logging @@ -222,12 +223,20 @@ class DeviceProvis...
set permissions of private key to <I>
craighagan_iotdeviceprovisioner
train
b4c116285d9827241c3d9b9936a237cb6e4b9d5e
diff --git a/lib/install.js b/lib/install.js index <HASH>..<HASH> 100644 --- a/lib/install.js +++ b/lib/install.js @@ -94,12 +94,12 @@ module.exports = function install (ctx, pkgSpec, modules, options) { .then(_ => log('resolved', pkg)) .then(_ => buildToStoreCached(ctx, paths, pkg, log)) .th...
Increase compatibility with npm ls
pnpm_pnpm
train
f074628854025b7f4427aecc0ed4d1d511af4368
diff --git a/src/Kunstmaan/MediaBundle/Controller/AviaryController.php b/src/Kunstmaan/MediaBundle/Controller/AviaryController.php index <HASH>..<HASH> 100644 --- a/src/Kunstmaan/MediaBundle/Controller/AviaryController.php +++ b/src/Kunstmaan/MediaBundle/Controller/AviaryController.php @@ -34,10 +34,20 @@ class AviaryC...
create a new file and kuma_media entry when you click save in the aviary plugin
Kunstmaan_KunstmaanBundlesCMS
train
902bd9e68e7f48933c2dafb3f977a6fe1089c3c0
diff --git a/lib/rbbt/tsv/parallel/traverse.rb b/lib/rbbt/tsv/parallel/traverse.rb index <HASH>..<HASH> 100644 --- a/lib/rbbt/tsv/parallel/traverse.rb +++ b/lib/rbbt/tsv/parallel/traverse.rb @@ -101,8 +101,8 @@ module TSV error = true raise $! ensure - Log::ProgressBar.remove_bar(bar) if...
Fix error reporting in traverse progress bar
mikisvaz_rbbt-util
train
7a8a24d1755249eb2ee3624aa11bb112c4bd896f
diff --git a/tests/php/Control/DirectorTest.php b/tests/php/Control/DirectorTest.php index <HASH>..<HASH> 100644 --- a/tests/php/Control/DirectorTest.php +++ b/tests/php/Control/DirectorTest.php @@ -31,8 +31,13 @@ class DirectorTest extends SapphireTest Director::config()->set('alternate_base_url', 'http://www...
Reset force SSL domain/patterns in setup to prevent global state pollution
silverstripe_silverstripe-framework
train
5c9994cb58ab23238226126534ecf8245248cea7
diff --git a/u115/__init__.py b/u115/__init__.py index <HASH>..<HASH> 100644 --- a/u115/__init__.py +++ b/u115/__init__.py @@ -43,10 +43,11 @@ class RequestHandler(object): class Request(object): """Formatted API request class""" - def __init__(self, url, method='GET', params=None): + def __init__(self, u...
Added lixian task lists
shichao-an_115wangpan
train
3525170b80ff993bf2e1a72a6d26da335f313e07
diff --git a/hppc/src/main/templates/com/carrotsearch/hppc/KTypeArrayDeque.java b/hppc/src/main/templates/com/carrotsearch/hppc/KTypeArrayDeque.java index <HASH>..<HASH> 100644 --- a/hppc/src/main/templates/com/carrotsearch/hppc/KTypeArrayDeque.java +++ b/hppc/src/main/templates/com/carrotsearch/hppc/KTypeArrayDeque.ja...
HPPC-<I>: Cleaned up API transitioning from capacity to expected elements.
carrotsearch_hppc
train
dcb2a720b50eb39d0f07d3d3c398808d382956de
diff --git a/pyreverse/main.py b/pyreverse/main.py index <HASH>..<HASH> 100644 --- a/pyreverse/main.py +++ b/pyreverse/main.py @@ -102,6 +102,8 @@ class PyreverseCommand(ConfigurationMixIn): if not args: print self.help() return + # insert current working directory to the pytho...
add a comment: closing #<I>: unrecognized ancestor
PyCQA_pylint
train
79e12ad9a0b46c9d5be648dd1744c885a3608167
diff --git a/config/routes.php b/config/routes.php index <HASH>..<HASH> 100644 --- a/config/routes.php +++ b/config/routes.php @@ -4,6 +4,7 @@ use Labrador\Router\Router; return function(Router $router) { - $router->get('/', 'Labrador\\Controller\\HomeController#index'); + $router->get('/', 'LabradorDemo\\Co...
change routes to use LabradorDemo
labrador-kennel_core
train
5cb7b32da00da72b4bc67a84c37000a4001b939f
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -10,6 +10,14 @@ module.exports = { randomElement: function(arr) { return arr[Math.floor(Math.random() * arr.length)]; + }, + + square: function(val) { + return val * val; + }, + + ...
Added power functions for square and cube. Closes #2
thodorisbais_math.js
train
5921e3617afaef9b8a74443936df188a04b57de6
diff --git a/agario_gtk/drawutils.py b/agario_gtk/drawutils.py index <HASH>..<HASH> 100644 --- a/agario_gtk/drawutils.py +++ b/agario_gtk/drawutils.py @@ -55,35 +55,47 @@ def as_rect(tl, br=None, size=None): else: return tl.x, tl.y, br.x-tl.x, br.y-tl.y -def draw_text_center(c, center, text, *args, **kw...
Universal draw_text function to replace draw_text_center and draw_text_left Fixed size calculation for centering Fixed non-integer division Added outline option
Gjum_agarnet
train
782ddd6046a0d3d80a609186d0b5ba5e19209d86
diff --git a/lib/path/analyzers/file.js b/lib/path/analyzers/file.js index <HASH>..<HASH> 100644 --- a/lib/path/analyzers/file.js +++ b/lib/path/analyzers/file.js @@ -21,7 +21,7 @@ async function analyzeFile(token, options) { }) token.digest = `${options.digestAlgorithm}-${digest}` - if (options.cache &&...
Expose options to cache functions This allows the logger to be used in them, for example.
geodatagouv_plunger
train
c4a0e2a9890ecbd2b7af3b22877187a9ff8dac3f
diff --git a/odinweb/decorators.py b/odinweb/decorators.py index <HASH>..<HASH> 100644 --- a/odinweb/decorators.py +++ b/odinweb/decorators.py @@ -20,7 +20,7 @@ __all__ = ( # Basic routes 'route', 'collection', 'collection_action', 'resource_route', 'resource_action', # Handlers - 'list_response', + ...
Added resource_request to __all__
python-odin_odinweb
train
4e820a09f69c20162b290581fc20df6e782744f0
diff --git a/wcomponents-theme/src/main/js/wc/ui/positionable.js b/wcomponents-theme/src/main/js/wc/ui/positionable.js index <HASH>..<HASH> 100755 --- a/wcomponents-theme/src/main/js/wc/ui/positionable.js +++ b/wcomponents-theme/src/main/js/wc/ui/positionable.js @@ -520,7 +520,17 @@ define(["wc/dom/getViewportSize", "w...
Fix dialog repositioning Fix #<I> by forcing positionable.forceToViewport to zero any negative top or left dimensions on the element being repositioned _before_ calculating the boundingClientRect.
BorderTech_wcomponents
train
6559b06ead48f58f89e23d1e958945391e687744
diff --git a/framework/yii/i18n/MessageFormatter.php b/framework/yii/i18n/MessageFormatter.php index <HASH>..<HASH> 100644 --- a/framework/yii/i18n/MessageFormatter.php +++ b/framework/yii/i18n/MessageFormatter.php @@ -92,7 +92,7 @@ class MessageFormatter extends Component return $this->fallbackFormat($pattern, $pa...
made intl messages more compatible with various ICU versions issue #<I>
yiisoft_yii2-bootstrap4
train
a056194416fd3ca250734713d6768b1ae585f6d4
diff --git a/lib/nrser/rspex/example_group/describe_spec_file.rb b/lib/nrser/rspex/example_group/describe_spec_file.rb index <HASH>..<HASH> 100644 --- a/lib/nrser/rspex/example_group/describe_spec_file.rb +++ b/lib/nrser/rspex/example_group/describe_spec_file.rb @@ -48,12 +48,24 @@ module NRSER::RSpex::ExampleGroup ...
Update describe_spec_file to take description splat As first arg, for a signature of describe_spec_file( *description, spec_path:, ... ) which is feeling nicer to use and coresponds better to the rest of RSpex, where I'm starting to try to normalize the API.
nrser_nrser.rb
train
5698f08152d73fc2d3101ba41c4fccf199b2abd5
diff --git a/src/Storage/Field/Collection/FieldCollection.php b/src/Storage/Field/Collection/FieldCollection.php index <HASH>..<HASH> 100644 --- a/src/Storage/Field/Collection/FieldCollection.php +++ b/src/Storage/Field/Collection/FieldCollection.php @@ -18,6 +18,7 @@ class FieldCollection extends AbstractLazyCollectio...
add set methods to handle blocks in field values
bolt_bolt
train
af7e6180ae8dbf8d60e466f315819be60a46e832
diff --git a/src/Console/JWTGenerateSecretCommand.php b/src/Console/JWTGenerateSecretCommand.php index <HASH>..<HASH> 100644 --- a/src/Console/JWTGenerateSecretCommand.php +++ b/src/Console/JWTGenerateSecretCommand.php @@ -33,6 +33,16 @@ class JWTGenerateSecretCommand extends Command protected $description = 'Set ...
Add handle method for Secret Generator Command (#<I>) Laravel <I> is looking for the handle method instead of fire. "handle" method would call "fire" method.
tymondesigns_jwt-auth
train
ed8a32968e46ab2ac519bd818613a29f406b000e
diff --git a/holoviews/plotting/mpl/chart.py b/holoviews/plotting/mpl/chart.py index <HASH>..<HASH> 100644 --- a/holoviews/plotting/mpl/chart.py +++ b/holoviews/plotting/mpl/chart.py @@ -14,7 +14,7 @@ from ...core.dimension import Dimension, dimension_name from ...core.options import Store, abbreviated_exception from...
datetime handling for spikes (#<I>) * fix datetime to int translation for Spikes * remove unused variables
pyviz_holoviews
train
03bc59f5fc738d3c6f5ae4533615c1d649db2f00
diff --git a/allure-httpclient/src/main/java/io/qameta/allure/httpclient/AllureHttpClientResponse.java b/allure-httpclient/src/main/java/io/qameta/allure/httpclient/AllureHttpClientResponse.java index <HASH>..<HASH> 100644 --- a/allure-httpclient/src/main/java/io/qameta/allure/httpclient/AllureHttpClientResponse.java +...
don't consume http responses (via #<I>)
allure-framework_allure-java
train
ceed0a2cab1b4c6348c41428219fbcaf33814116
diff --git a/core/common/src/main/java/alluxio/PropertyKey.java b/core/common/src/main/java/alluxio/PropertyKey.java index <HASH>..<HASH> 100644 --- a/core/common/src/main/java/alluxio/PropertyKey.java +++ b/core/common/src/main/java/alluxio/PropertyKey.java @@ -86,6 +86,7 @@ public enum PropertyKey { UNDERFS_S3A_SE...
Support s3 endpoints which only support v2 signatures
Alluxio_alluxio
train
3cc0e518e50552472d03e94c11926b940fead7ff
diff --git a/lib/spreewald/timecop_steps.rb b/lib/spreewald/timecop_steps.rb index <HASH>..<HASH> 100644 --- a/lib/spreewald/timecop_steps.rb +++ b/lib/spreewald/timecop_steps.rb @@ -10,16 +10,16 @@ if defined?(Timecop) # Example: # - # Given the date is "2012-02-10" - # Given the time is "2012-02...
make quotes around dates and times optional in timecop steps
makandra_spreewald
train
ca60052ccedd3da86c2ac81f6e40ff8bccc2c1ec
diff --git a/framework/base/Model.php b/framework/base/Model.php index <HASH>..<HASH> 100644 --- a/framework/base/Model.php +++ b/framework/base/Model.php @@ -534,7 +534,7 @@ class Model extends Component implements IteratorAggregate, ArrayAccess, Arrayab } /** - * Returns the errors for all attribute o...
Fixed some typos (#<I>)
yiisoft_yii-core
train
361d828c598222090f80c3b96a503d4412a362c9
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -1,8 +1,8 @@ -let sfw = null +let watcher = null try { - sfw = require('../build/Release/sfw.node') + watcher = require('../build/Release/watcher.node') } catch (err) { - sfw = require('../build/Debug/sfw....
Rename variables in the JS entry point
atom_watcher
train
1090d9d2ecff253132e949d50efe7fb8b5ce6a3e
diff --git a/lib/gitlab/client/repositories.rb b/lib/gitlab/client/repositories.rb index <HASH>..<HASH> 100644 --- a/lib/gitlab/client/repositories.rb +++ b/lib/gitlab/client/repositories.rb @@ -37,6 +37,29 @@ class Gitlab::Client end alias_method :repo_tree, :tree + # Get project repository archive + ...
Add repo_archive method (#<I>) * Allow Gitlab::FileResponse to handle quoted filenames It seems like the Content-Disposition filename attribute can be quoted, so if the filename is quoted, remove the quotes. See <URL>
NARKOZ_gitlab
train
b6a1f0b8e0e45812f15543d6e35ce1982d260537
diff --git a/javascript/DocumentImportField.js b/javascript/DocumentImportField.js index <HASH>..<HASH> 100644 --- a/javascript/DocumentImportField.js +++ b/javascript/DocumentImportField.js @@ -9,6 +9,7 @@ jQuery.entwine('documentimport', function($) { var error = responseJSON[0].error; if (!error) { $('....
Refresh page after importing a document.
silverstripe_silverstripe-documentconverter
train
0fcd4cf5c26c470623eef9af72a134ef6ba1a701
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,3 +1,7 @@ +* Don't run SQL if attribute value is not changed for update_attribute method. + + *Prathamesh Sonpatki* + * `time` columns can now affe...
Run SQL only if attribute changed for update_attribute method - This is based on <URL>
rails_rails
train
0ce8319064cb0f7eabf0cf5084ffd19fe629c943
diff --git a/jenkins-build-driver/src/test/java/org/jboss/pnc/jenkinsbuilddriver/test/JenkinsDriverRemoteTest.java b/jenkins-build-driver/src/test/java/org/jboss/pnc/jenkinsbuilddriver/test/JenkinsDriverRemoteTest.java index <HASH>..<HASH> 100644 --- a/jenkins-build-driver/src/test/java/org/jboss/pnc/jenkinsbuilddriver...
@Ignored JenkinsDriverRemoteTest
project-ncl_pnc
train
407c9c92545be8f6c423852e2d947e36c82ed3a5
diff --git a/src/test/java/cleanzephyr/rubycollect4j/RubyHashTest.java b/src/test/java/cleanzephyr/rubycollect4j/RubyHashTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/cleanzephyr/rubycollect4j/RubyHashTest.java +++ b/src/test/java/cleanzephyr/rubycollect4j/RubyHashTest.java @@ -400,4 +400,12 @@ public class...
Add test for RubyHash::store
wnameless_rubycollect4j
train
d51448043a11a3197a242a2be118ed9ee8785f47
diff --git a/test_data.json b/test_data.json index <HASH>..<HASH> 100644 --- a/test_data.json +++ b/test_data.json @@ -1,5 +1,8 @@ { "endpoints": { + "/config": { + "body": {"param": "value"} + }, "/test": { "body": {"message": "Regular endpoint."} }, diff --git a/test_tortilla.py b/test...
Move child wraps into a separate dict to prevent attribute conflicts and fix #<I>
tortilla_tortilla
train
faff01086721b058f10d1b70cd3158ab2ba094a0
diff --git a/src/toil_lib/tools/mutation_callers.py b/src/toil_lib/tools/mutation_callers.py index <HASH>..<HASH> 100644 --- a/src/toil_lib/tools/mutation_callers.py +++ b/src/toil_lib/tools/mutation_callers.py @@ -3,7 +3,7 @@ from glob import glob from toil_lib.tools import get_mean_insert_size from toil_lib.files...
Update dockerCall for mutation_callers.py
BD2KGenomics_toil-lib
train
dd0f6354cdd63f497e59010e382b41605ddd6d85
diff --git a/src/Phug/Reader.php b/src/Phug/Reader.php index <HASH>..<HASH> 100644 --- a/src/Phug/Reader.php +++ b/src/Phug/Reader.php @@ -765,7 +765,7 @@ class Reader //Handle escaping based on passed sequences if ($char === '\\') { //Peek the next char - $stri...
Do not keep the backslashes in returned strings
phug-php_reader
train
ea205b4f124b1fd95d0f906648cc506fbfd17ac6
diff --git a/src/main/java/com/caucho/hessian/io/SerializerFactory.java b/src/main/java/com/caucho/hessian/io/SerializerFactory.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/caucho/hessian/io/SerializerFactory.java +++ b/src/main/java/com/caucho/hessian/io/SerializerFactory.java @@ -170,6 +170,8 @@ public cl...
Optimize for jdk judge. (#<I>)
alipay_sofa-hessian
train
58c080db5a6a0b313cf16600f5450d1817efd799
diff --git a/src/Forms/HTMLEditor/TinyMCEConfig.php b/src/Forms/HTMLEditor/TinyMCEConfig.php index <HASH>..<HASH> 100644 --- a/src/Forms/HTMLEditor/TinyMCEConfig.php +++ b/src/Forms/HTMLEditor/TinyMCEConfig.php @@ -3,9 +3,9 @@ namespace SilverStripe\Forms\HTMLEditor; use Exception; +use SilverStripe\Assets\Folder; ...
FEATURE Option placeholder for upload folder id (#<I>) * FEATURE Option placeholder for upload folder id * ENHANCEMENT Add setFolderName() to TinyMCEConfig * Typehint return type * Add type to param
silverstripe_silverstripe-framework
train
27358f471034ee5fbe3fa2ab2fd6f766e17f7586
diff --git a/masonite/providers/RouteProvider.py b/masonite/providers/RouteProvider.py index <HASH>..<HASH> 100644 --- a/masonite/providers/RouteProvider.py +++ b/masonite/providers/RouteProvider.py @@ -12,7 +12,7 @@ class RouteProvider(ServiceProvider): def register(self): pass - def boot(self, WebR...
route hit on the request does not show unless debug is true
MasoniteFramework_masonite
train
b9aa38720d86fa9455d3d20720e280787ea9e6a1
diff --git a/lib/types.js b/lib/types.js index <HASH>..<HASH> 100644 --- a/lib/types.js +++ b/lib/types.js @@ -76,6 +76,13 @@ function createType(attrs, opts) { opts.registry = opts.registry || {}; var type; + if (opts.typeHook && (type = opts.typeHook(attrs, opts))) { + if (!Type.isType(type)) { + thr...
Call type hook for aliases. The main motivation for this is to enable "hoisting" of type declarations for protocols. This will allow circular references between separately declared types (protocols don't allow nested type declarations).
cdapio_ui-schema-parser
train
8e81cac50be9c9701b4a2befae03ba1eccff9d5a
diff --git a/shinken/misc/regenerator.py b/shinken/misc/regenerator.py index <HASH>..<HASH> 100644 --- a/shinken/misc/regenerator.py +++ b/shinken/misc/regenerator.py @@ -109,6 +109,7 @@ class Regenerator: # Now we get all data about an instance, link all this stuff :) def all_done_linking(self, inst_id): +...
Add : regenerator call can brok management in the WebUI
Alignak-monitoring_alignak
train
07637b9e9d82ee4d136f572feb5535456d4c9349
diff --git a/files/index.php b/files/index.php index <HASH>..<HASH> 100644 --- a/files/index.php +++ b/files/index.php @@ -35,7 +35,7 @@ require_login($course->id); - require_capability('moodle/course:update', get_context_instance(CONTEXT_COURSE, $course->id)); + require_capability('moodle/course:managef...
Merged from <I>.
moodle_moodle
train
be7c0a52be36a6ec05742c34510a852f743475b1
diff --git a/bw-util-cli/src/main/java/org/bedework/util/cli/Cli.java b/bw-util-cli/src/main/java/org/bedework/util/cli/Cli.java index <HASH>..<HASH> 100644 --- a/bw-util-cli/src/main/java/org/bedework/util/cli/Cli.java +++ b/bw-util-cli/src/main/java/org/bedework/util/cli/Cli.java @@ -403,7 +403,10 @@ public abstract ...
Add command to get system monitor figures. Fix util so that lines ending with newline don't get double spaces.
Bedework_bw-util
train
6f594f7a2f8310fe349c1d864994d7f61ef72005
diff --git a/classes/Models/Traits/Encodable.php b/classes/Models/Traits/Encodable.php index <HASH>..<HASH> 100644 --- a/classes/Models/Traits/Encodable.php +++ b/classes/Models/Traits/Encodable.php @@ -82,20 +82,29 @@ trait Encodable { * @return boolean */ public function hasDirtyPreset($attribute) { + + // R...
Check that the input contains a preset attribute before checking if dirty Fixes issues where encodes were being deleted when the parent model was updated during AJAX stuff like visiblilty toggle or drag and drop <URL>
BKWLD_decoy
train
4dfba0ba9174fd912f0d731b50a56745c22461f5
diff --git a/pymatgen/io/vasp/outputs.py b/pymatgen/io/vasp/outputs.py index <HASH>..<HASH> 100644 --- a/pymatgen/io/vasp/outputs.py +++ b/pymatgen/io/vasp/outputs.py @@ -21,6 +21,7 @@ from monty.io import zopen, reverse_readfile from monty.json import MSONable from monty.json import jsanitize from monty.re import r...
Allow mixed (un)compressed files from VASP band structure
materialsproject_pymatgen
train
10555ecff358e854596e21c21635bec877f4936d
diff --git a/src/Composer/DependencyResolver/PoolBuilder.php b/src/Composer/DependencyResolver/PoolBuilder.php index <HASH>..<HASH> 100644 --- a/src/Composer/DependencyResolver/PoolBuilder.php +++ b/src/Composer/DependencyResolver/PoolBuilder.php @@ -294,10 +294,6 @@ class PoolBuilder $this->io->wr...
Make sure there's always a constraint
composer_composer
train
93288363dec75eb4a4d7a314b2554742f0d80797
diff --git a/state/allcollections.go b/state/allcollections.go index <HASH>..<HASH> 100644 --- a/state/allcollections.go +++ b/state/allcollections.go @@ -51,9 +51,8 @@ func allCollections() collectionSchema { txnsC: { // This collection is used exclusively by mgo/txn to record transactions. - global: ...
There is no reason I can see to explicitly create 'txns' We need explicit creation for txns.log because it is a capped collection, but we don't get anything for doing it for txns (we don't set any parameters.)
juju_juju
train
b78e215c7e0bfd15e7ec7a605ea9824cf949094e
diff --git a/src/wrappers/index.js b/src/wrappers/index.js index <HASH>..<HASH> 100644 --- a/src/wrappers/index.js +++ b/src/wrappers/index.js @@ -6,13 +6,13 @@ export default ngModule => { { name: 'bootstrapLabel', template: require('./label.html'), - apiCheck: check => ({ - temp...
refactor(wrappers): They got kinda crazy
formly-js_angular-formly-templates-bootstrap
train
d3022ce00a138b3e69a6a319e45e5624a72230ea
diff --git a/src/main/java/de/btobastian/javacord/entities/impl/ImplInviteBuilder.java b/src/main/java/de/btobastian/javacord/entities/impl/ImplInviteBuilder.java index <HASH>..<HASH> 100644 --- a/src/main/java/de/btobastian/javacord/entities/impl/ImplInviteBuilder.java +++ b/src/main/java/de/btobastian/javacord/entiti...
Updates API version for invite builder
Javacord_Javacord
train
e3093c7dbd624c172c901c07146a63112f9065b1
diff --git a/jooby/src/main/java/io/jooby/Asset.java b/jooby/src/main/java/io/jooby/Asset.java index <HASH>..<HASH> 100644 --- a/jooby/src/main/java/io/jooby/Asset.java +++ b/jooby/src/main/java/io/jooby/Asset.java @@ -8,11 +8,11 @@ package io.jooby; import io.jooby.internal.FileAsset; import io.jooby.internal.JarAss...
fix checkstyle/javadoc after asset refactor
jooby-project_jooby
train
413d8daccfc1ed2f80f339a5d9209cce795060b1
diff --git a/skorch/callbacks.py b/skorch/callbacks.py index <HASH>..<HASH> 100644 --- a/skorch/callbacks.py +++ b/skorch/callbacks.py @@ -3,20 +3,17 @@ from functools import partial from itertools import cycle from numbers import Number -import operator import sys import time import numpy as np from sklearn.b...
Fix some pylint complaints. * Remove unnecessary imports. * Move shared fixtures to conftest.py. * Remove unnecessary lambdas.
skorch-dev_skorch
train
12d783a7f771b75182f1bb2a161341cc28ea8b55
diff --git a/manticore/__main__.py b/manticore/__main__.py index <HASH>..<HASH> 100644 --- a/manticore/__main__.py +++ b/manticore/__main__.py @@ -42,6 +42,8 @@ def parse_arguments(): help='Specify symbolic input file, \'+\' marks symbolic bytes') parser.add_argument('--names', type=str, d...
Colored Output (#<I>) * colored output implemented; command line option for the same still pending * command line option for disabling colors added * adjusted coding style as per pull request comments
trailofbits_manticore
train
7163e712a2ad7474fceba8dd4b2468fdce88377a
diff --git a/chef/lib/chef/provider/package/freebsd.rb b/chef/lib/chef/provider/package/freebsd.rb index <HASH>..<HASH> 100644 --- a/chef/lib/chef/provider/package/freebsd.rb +++ b/chef/lib/chef/provider/package/freebsd.rb @@ -83,9 +83,9 @@ class Chef # if passed a sole word in source that isn't ports, consi...
Fix parsing of source when package name has a dash (-) in it
chef_chef
train
2733bf589f2ce50365e41c238bca869d00174000
diff --git a/salt/modules/state.py b/salt/modules/state.py index <HASH>..<HASH> 100644 --- a/salt/modules/state.py +++ b/salt/modules/state.py @@ -35,6 +35,9 @@ __outputter__ = { 'template_str': 'highstate', } +__func_alias__ = { + 'apply_': 'apply' +} log = logging.getLogger(__name__) @@ -244,18 +247,1...
initial implimentation of #<I> This still needs testing and some functional review The idea is that state.request is executed and it does a dry run of the execution and saves what will change securely in a request file. Then state.check_request will return the requested jobs state.run_request executes the job. Jobs c...
saltstack_salt
train
427237ecea28b0785f2754b4b3479e6d57d83d86
diff --git a/model/qti/Parser.php b/model/qti/Parser.php index <HASH>..<HASH> 100755 --- a/model/qti/Parser.php +++ b/model/qti/Parser.php @@ -55,11 +55,36 @@ class Parser extends tao_models_classes_Parser public function validate($schema = ''){ if (empty($schema)) { - $validSchema = ...
Trial to have correct messages when items fail to import.
oat-sa_extension-tao-itemqti
train
66f1385013eb97cebe0e02dd9fb2cae722828a99
diff --git a/percept-proto/tests/framework.py b/percept-proto/tests/framework.py index <HASH>..<HASH> 100644 --- a/percept-proto/tests/framework.py +++ b/percept-proto/tests/framework.py @@ -94,4 +94,10 @@ class SVMTester(Tester): assert inst.clf is not None prediction = inst.predict(data) - ...
Start on a tester for workflows
VikParuchuri_percept
train
ab56d750cac0caac54a7b3d6f7c2cd8c1b3be382
diff --git a/src/lib/storage.js b/src/lib/storage.js index <HASH>..<HASH> 100644 --- a/src/lib/storage.js +++ b/src/lib/storage.js @@ -411,7 +411,7 @@ class Storage implements IStorageHandler { const self = this; const upLinks = []; - if (!packageInfo || packageInfo === null) { + if (!packageInfo) { ...
fix: remove some unneeded checks (#<I>)
verdaccio_verdaccio
train
bec1aef0812ce8a943de665f4b28ae2edb0eeb91
diff --git a/lib/Hokkaido.rb b/lib/Hokkaido.rb index <HASH>..<HASH> 100644 --- a/lib/Hokkaido.rb +++ b/lib/Hokkaido.rb @@ -2,12 +2,20 @@ require "Hokkaido/version" require 'gem_modifier' module Hokkaido - + +RUBYMOTION_GEM_CONFIG = <<-HEREDOC +Motion::Project::App.setup do |app| +MAIN_CONFIG_FILES +end +HEREDOC +...
it may be a true solution for the Load order problem...
mixflame_Hokkaido
train
3d3e993d1753121ff7ed4a3ac73cc2ad67e3f649
diff --git a/catalog/app/containers/Bucket/requests.js b/catalog/app/containers/Bucket/requests.js index <HASH>..<HASH> 100644 --- a/catalog/app/containers/Bucket/requests.js +++ b/catalog/app/containers/Bucket/requests.js @@ -459,6 +459,7 @@ export const search = async ({ es, query }) => { const result = await es...
Better search across multiple fields with cross_fields
quiltdata_quilt
train
ca1f20b48d10807b0e27ab523b2aaf120619fc83
diff --git a/lib/event.js b/lib/event.js index <HASH>..<HASH> 100644 --- a/lib/event.js +++ b/lib/event.js @@ -54,8 +54,12 @@ module.exports = function() { }; // http://tools.ietf.org/html/rfc5545#section-3.8.7.2 - event.setDTStamp = function(dtstamp) { - event.setPropertyWithNameAndValue('DTSTAMP', dtstamp...
DTSTAMP works with Date and DateTime
outlook_vobject-js
train
c5fe7682e1ba44416d5d289e7ada252e73a2ea08
diff --git a/js/probit.js b/js/probit.js index <HASH>..<HASH> 100644 --- a/js/probit.js +++ b/js/probit.js @@ -71,6 +71,7 @@ module.exports = class probit extends Exchange { 'get': [ 'market', 'currency', + 'currency_with_plat...
probit currency_with_platform endpoint
ccxt_ccxt
train
f6489a0a11671f1d5787357d90df8fdad8be7666
diff --git a/transformer.js b/transformer.js index <HASH>..<HASH> 100644 --- a/transformer.js +++ b/transformer.js @@ -141,7 +141,7 @@ Transformer.prototype.request = function request(req, res) { this.primus.auth(req, function authorized(err) { if (!err) return transformer.emit('request', req, res, noop); - ...
Add statusCode support for request as well as upgrade
primus_primus
train
cb03a7f770e2718c934f2da0788f833d13e560a9
diff --git a/src/com/google/javascript/jscomp/newtypes/NominalType.java b/src/com/google/javascript/jscomp/newtypes/NominalType.java index <HASH>..<HASH> 100644 --- a/src/com/google/javascript/jscomp/newtypes/NominalType.java +++ b/src/com/google/javascript/jscomp/newtypes/NominalType.java @@ -79,6 +79,9 @@ public clas...
[NEW TYPE INFERENCE] Don't create unneeded NominalType instances for non-generic types. ------------- Created by MOE: <URL>
google_closure-compiler
train
782afcd43c52898940fd0d703f20e8c610c0e850
diff --git a/src/urh/dev/native/LimeSDR.py b/src/urh/dev/native/LimeSDR.py index <HASH>..<HASH> 100644 --- a/src/urh/dev/native/LimeSDR.py +++ b/src/urh/dev/native/LimeSDR.py @@ -15,7 +15,7 @@ class LimeSDR(Device): SEND_FIFO_SIZE = 5 * SEND_SAMPLES LIME_TIMEOUT_RECEIVE_MS = 10 - LIME_TIMEOUT_SEND_MS = 1...
set send timeout to <I> ms
jopohl_urh
train
5c72a0128fe2d820a01dbe66b2dbdea1a1ac8461
diff --git a/src/extensions/ControllerExtension.php b/src/extensions/ControllerExtension.php index <HASH>..<HASH> 100644 --- a/src/extensions/ControllerExtension.php +++ b/src/extensions/ControllerExtension.php @@ -17,7 +17,6 @@ use ilateral\SilverStripe\Orders\Checkout; */ class ControllerExtension extends Extensio...
Remove auto prefix setting on order from controller
silvercommerce_orders-admin
train
5cbb194eb995777ea5ad5f112f27ca1ee54cbe8e
diff --git a/Gemfile.lock b/Gemfile.lock index <HASH>..<HASH> 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - alba_habla (0.0.2) + alba_habla (0.0.4) GEM remote: https://rubygems.org/ diff --git a/lib/alba_habla.rb b/lib/alba_habla.rb index <HASH>..<HASH> 100644 -...
Allow any book to be read I originally made this with a handful of pre-determined books (a.k.a. text files). This change makes it so that if the user enters the name of a file in the books_path then the program will just start 'reading' it.
mertonium_alba_habla
train
8a1bdc53d8e2d318f0407fc6c42e22b596dce413
diff --git a/src/main/java/org/gitlab/api/GitlabAPI.java b/src/main/java/org/gitlab/api/GitlabAPI.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/gitlab/api/GitlabAPI.java +++ b/src/main/java/org/gitlab/api/GitlabAPI.java @@ -1763,23 +1763,23 @@ public class GitlabAPI { String positionHeadSha, Str...
Send discussion attributes as query parameters. (#<I>)
timols_java-gitlab-api
train
7d0ffb3f125d94cb9366db7a5ecfbedb294188a4
diff --git a/raft/log.go b/raft/log.go index <HASH>..<HASH> 100644 --- a/raft/log.go +++ b/raft/log.go @@ -115,10 +115,12 @@ func (l *raftLog) unstableEnts() []pb.Entry { } // nextEnts returns all the available entries for execution. -// all the returned entries will be marked as applied. +// If applied is smaller ...
raft: not set applied when restored from snapshot applied is only updated by application level through Advance.
etcd-io_etcd
train
f06319607d3056185ad1a809a60b132aee4434bc
diff --git a/Kwc/Abstract/Cards/Generator.php b/Kwc/Abstract/Cards/Generator.php index <HASH>..<HASH> 100644 --- a/Kwc/Abstract/Cards/Generator.php +++ b/Kwc/Abstract/Cards/Generator.php @@ -6,7 +6,7 @@ class Kwc_Abstract_Cards_Generator extends Kwf_Component_Generator_Static protected function _getModel() { ...
don't use deprecated method
koala-framework_koala-framework
train
1822ad8a17ac3bf1901444f51314fb2cc6d8b4c4
diff --git a/lib/structure.rb b/lib/structure.rb index <HASH>..<HASH> 100644 --- a/lib/structure.rb +++ b/lib/structure.rb @@ -125,7 +125,11 @@ class Structure # # Optionally, seeds the structure with a hash of attributes. def initialize(seed = {}) - initialize_attributes + @attributes = {} + self.cla...
no benefit in abstracting this to a private method
hakanensari_structure
train
266b5220b346aac7c9d047c80faeecc8fd61eaf6
diff --git a/test/tc_zoneinfo_timezone_info.rb b/test/tc_zoneinfo_timezone_info.rb index <HASH>..<HASH> 100644 --- a/test/tc_zoneinfo_timezone_info.rb +++ b/test/tc_zoneinfo_timezone_info.rb @@ -414,8 +414,8 @@ class TCZoneinfoTimezoneInfo < Minitest::Test {:gmtoff => 0, :isdst => false, :abbrev => 'XNST'}] ...
Use Times instead of Integers (removing support for Ruby <I>). Time now has as an unlimited range on all supported platforms.
tzinfo_tzinfo
train