hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
639cccb0618d671b4e4e5b2a6565ccb23609781e
diff --git a/lib/gruvi/fibers.py b/lib/gruvi/fibers.py index <HASH>..<HASH> 100644 --- a/lib/gruvi/fibers.py +++ b/lib/gruvi/fibers.py @@ -63,7 +63,6 @@ class Fiber(fibers.Fiber): name = 'Fiber-{}'.format(fid) self._hub.data['gruvi:next_fiber'] += 1 self._name = name - self.con...
logging: small updates * Make "context" a public member. * Remove the concept of a "fiber context". Originally this was supposed to be used to identify the request during execution of a request handler. But we handle this differently now, by pushing the logger from a Client/Server into the Protocol and Transport...
geertj_gruvi
train
02bdce11dd1da5acba26afba9e49ef149108c513
diff --git a/src/notebook/components/cell/editor/index.js b/src/notebook/components/cell/editor/index.js index <HASH>..<HASH> 100644 --- a/src/notebook/components/cell/editor/index.js +++ b/src/notebook/components/cell/editor/index.js @@ -139,6 +139,7 @@ export default class Editor extends React.PureComponent { stat...
fix(editor): Indenting with tab no longer focuses the next cell
nteract_nteract
train
605a173d252b21ad695f2b720de640b624bc600c
diff --git a/src/components/dialog/dialog.js b/src/components/dialog/dialog.js index <HASH>..<HASH> 100644 --- a/src/components/dialog/dialog.js +++ b/src/components/dialog/dialog.js @@ -10,6 +10,39 @@ angular .directive('mdDialog', MdDialogDirective) .provider('$mdDialog', MdDialogProvider); +/** + * @ngdoc di...
docs(dialog): added docs to the elements and fixed controller Added `md-dialog` directive page that contains - `md-dialog`, `md-dialog-content`, `md-dialog-actions`. Added `function` type to controller method fixes #<I> and #<I> Closes #<I>
angular_material
train
7f5d6b65835d35b29cf01b20d125f6f6f94cccc1
diff --git a/src/Symfony/Component/Routing/Loader/Configurator/Traits/RouteTrait.php b/src/Symfony/Component/Routing/Loader/Configurator/Traits/RouteTrait.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Routing/Loader/Configurator/Traits/RouteTrait.php +++ b/src/Symfony/Component/Routing/Loader/Configurator...
Allow non-callable arrays as controllers
symfony_symfony
train
14071812c8b5a29a39cac3961b95d18c41c56cdb
diff --git a/lib/aruba/api.rb b/lib/aruba/api.rb index <HASH>..<HASH> 100644 --- a/lib/aruba/api.rb +++ b/lib/aruba/api.rb @@ -96,12 +96,12 @@ module Aruba # # @param [String] file_name # The name of the file - def touch_file(file_name) + def touch_file(file_name, options = {}) in_current_...
Pass through options to FileUtils to make it possible to set mtime
cucumber_aruba
train
17064a1c5edc57744dd8b4190b2e8c94b56a76ae
diff --git a/agents/spec/login_manager_spec.rb b/agents/spec/login_manager_spec.rb index <HASH>..<HASH> 100644 --- a/agents/spec/login_manager_spec.rb +++ b/agents/spec/login_manager_spec.rb @@ -30,6 +30,12 @@ describe RightScale::LoginManager do return count * 60 end + #given a scalar value, return a range ...
Use fuzzy matching in LoginManagerSpec to avoid failed tests on wall-clock boundaries.
rightscale_right_agent
train
85ddbd8f0b9e007c5b3eec8368f32b47e89fe045
diff --git a/spec/element_spec.rb b/spec/element_spec.rb index <HASH>..<HASH> 100644 --- a/spec/element_spec.rb +++ b/spec/element_spec.rb @@ -17,7 +17,6 @@ describe SitePrism::Page do it { is_expected.to respond_to(:has_no_bob?) } it { is_expected.to respond_to(:wait_until_bob_visible) } it { is_expecte...
Tidied up and removed duplication in specs, fix rubocop
natritmeyer_site_prism
train
e5478d4ff0510e637ecec69f8b2fc7ef844ba5c0
diff --git a/lib/puppet/type.rb b/lib/puppet/type.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/type.rb +++ b/lib/puppet/type.rb @@ -496,12 +496,6 @@ class Type return @parameters[name] end - if provider and ! provider.class.supports_parameter?(klass) - missing = klass.requir...
Simplify the newattr method by removing a level violation and update the specs that were testing it.
puppetlabs_puppet
train
2ff1b120bdc40ac300253a055969421e86494c7d
diff --git a/test/mocks.js b/test/mocks.js index <HASH>..<HASH> 100644 --- a/test/mocks.js +++ b/test/mocks.js @@ -1,8 +1,9 @@ const EventEmitter = require('events').EventEmitter; const generateRandomUrl = () => { - return 'https://ruu.vi/#' + new Buffer([ 1, 2, 3, 4, 5, 6, 7 ].map(item => Math.floor(Math.random()...
Generate realistic urls in mocks.js
Espesen_node-ruuvitag
train
d5ead764f8dee42f3c986438494c742d5b466e0d
diff --git a/pkg/kubelet/kuberuntime/kuberuntime_container.go b/pkg/kubelet/kuberuntime/kuberuntime_container.go index <HASH>..<HASH> 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_container.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_container.go @@ -209,8 +209,8 @@ func (m *kubeGenericRuntimeManager) generateLinux...
Fix an 'index out of range' panic when setting capabilities.
kubernetes_kubernetes
train
aad5e86ae31a4c075f47798fb67e7623d1b85d24
diff --git a/src/main/java/org/zeroturnaround/exec/ProcessExecutor.java b/src/main/java/org/zeroturnaround/exec/ProcessExecutor.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/zeroturnaround/exec/ProcessExecutor.java +++ b/src/main/java/org/zeroturnaround/exec/ProcessExecutor.java @@ -24,6 +24,7 @@ import java...
#<I> Provide hooks for thread executor creation.
zeroturnaround_zt-exec
train
50cbff5decb1d21be2d329394a74df519ec80303
diff --git a/src/net/sf/mpxj/asta/AstaReader.java b/src/net/sf/mpxj/asta/AstaReader.java index <HASH>..<HASH> 100644 --- a/src/net/sf/mpxj/asta/AstaReader.java +++ b/src/net/sf/mpxj/asta/AstaReader.java @@ -77,7 +77,6 @@ final class AstaReader config.setAutoResourceUniqueID(false); config.setAutoCalenda...
Don't populate the WBS
joniles_mpxj
train
d15c8522b9475fde6c395b5dcd1370c708c81892
diff --git a/salt/utils/schedule.py b/salt/utils/schedule.py index <HASH>..<HASH> 100644 --- a/salt/utils/schedule.py +++ b/salt/utils/schedule.py @@ -1245,8 +1245,8 @@ class Schedule(object): # after the skip_during_range is over if 'run_after_skip_range' in da...
Fixing slight typo related to reverting _run_explicit back to run_explicit.
saltstack_salt
train
24def911670d045ced527d1fedd6c4d3eb78d88e
diff --git a/lib/sass/selector.rb b/lib/sass/selector.rb index <HASH>..<HASH> 100644 --- a/lib/sass/selector.rb +++ b/lib/sass/selector.rb @@ -344,6 +344,21 @@ module Sass # @return [Array<Node>] attr_reader :members + # Returns the element or universal selector in this sequence, + # if it exi...
[Sass] Take simple selector sequences' order-independence into account when hashing.
sass_ruby-sass
train
4e0ec438b02c9c64190b784bf9e0e697cb20a140
diff --git a/cocaine-services/src/main/java/cocaine/CocaineDeserializer.java b/cocaine-services/src/main/java/cocaine/CocaineDeserializer.java index <HASH>..<HASH> 100644 --- a/cocaine-services/src/main/java/cocaine/CocaineDeserializer.java +++ b/cocaine-services/src/main/java/cocaine/CocaineDeserializer.java @@ -1,14 ...
'type' parameter type is changed from TypeToken to Type
cocaine_cocaine-framework-java
train
b1304871830f9059b22118a3ab93d1e8cdd3674f
diff --git a/DependencyInjection/Compiler/FormatListenerRulesPass.php b/DependencyInjection/Compiler/FormatListenerRulesPass.php index <HASH>..<HASH> 100644 --- a/DependencyInjection/Compiler/FormatListenerRulesPass.php +++ b/DependencyInjection/Compiler/FormatListenerRulesPass.php @@ -23,32 +23,32 @@ class FormatListe...
make sure rules are added even if web profiler is not registered at all
FriendsOfSymfony_FOSRestBundle
train
f63a26724226735b99f979c6273d457c194042f9
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -777,11 +777,11 @@ var SOURCE_PACKAGE_DEPENDENCY_TYPES = [ ]; function sourcePackageIsDependency(p) { - return SOURCE_PACKAGE_DEPENDENCY_TYPES.includes(p.type); + return SOURCE_PACKAGE_DEPENDENCY_TYPES.indexO...
no includes on some node environments Former-commit-id: <I>b<I>a4e1e<I>f0c8e2c<I>bd<I>a<I>fe [formerly <I>c3f<I>e1aa<I>f<I>c4aedc5b7] Former-commit-id: b3d9b<I>a<I>ae6c<I>a<I>a<I>a4ec4
andrewplummer_Sugar
train
eee2eb1938af03a802c76cf2bdd0124b02c0c87f
diff --git a/spec/vips/png_writer_spec.rb b/spec/vips/png_writer_spec.rb index <HASH>..<HASH> 100644 --- a/spec/vips/png_writer_spec.rb +++ b/spec/vips/png_writer_spec.rb @@ -17,13 +17,13 @@ describe VIPS::PNGWriter do it "should write a png to memory", :vips_lib_version => "> 7.22" do str = @writer.to_memory...
Fix up PNG memory writing specs These specs currently only run when compiling against the trunk version of libvips. Fixed up some specs that still had dummy values.
libvips_ruby-vips
train
773e7f17f8ef3018b2af97d7bdc7de6d31c7b1b6
diff --git a/types.py b/types.py index <HASH>..<HASH> 100644 --- a/types.py +++ b/types.py @@ -53,6 +53,7 @@ class ActualRaces(RestrictedType): c.PROTOSS : races.Protoss , c.ZERG : races.Zerg , c.TERRAN : races.Terran , + None : None ...
- allow ActualRaces value None (in case the race isn't yet known)
ttinies_sc2common
train
e64bf71c5bc047c7e4b7d39f60a32a5b37597f80
diff --git a/labsuite/drivers/motor.py b/labsuite/drivers/motor.py index <HASH>..<HASH> 100644 --- a/labsuite/drivers/motor.py +++ b/labsuite/drivers/motor.py @@ -13,6 +13,8 @@ class GCodeLogger(): open = False + write_buffer = None + def __init__(self): self.write_buffer = [] @@ -63,7 +65,7...
MotorControl: Dummy driver to log movements. We can use this later if a more robust motor control stack ever materializes and we want to attach to that instead.
Opentrons_opentrons
train
3a3bd474bf97b3b3440a8fe8714072f730ddf365
diff --git a/tests/test_natsort_keygen.py b/tests/test_natsort_keygen.py index <HASH>..<HASH> 100644 --- a/tests/test_natsort_keygen.py +++ b/tests/test_natsort_keygen.py @@ -149,9 +149,9 @@ def test_natsort_keygen_with_locale(mocker, arbitrary_input, alg, expected, is_d expected[1][1][i] = strxfrm(expecte...
Fix bug caused by pytest-mocker API being removed mocker.patch no longer supports context managers. Not sure why I was using it in a context manager in the first place... This closes issue #<I>.
SethMMorton_natsort
train
d5e2c7d10e64c3a2e9474b0b1f61014eb7303ae5
diff --git a/src-gwt/org/opencms/gwt/client/ui/contextmenu/CmsShowWorkplace.java b/src-gwt/org/opencms/gwt/client/ui/contextmenu/CmsShowWorkplace.java index <HASH>..<HASH> 100644 --- a/src-gwt/org/opencms/gwt/client/ui/contextmenu/CmsShowWorkplace.java +++ b/src-gwt/org/opencms/gwt/client/ui/contextmenu/CmsShowWorkplac...
Removed unnecessary lock check from the "show workplace" context menu action.
alkacon_opencms-core
train
64ef7198e7e449cac033cbd05cd37885c5a1775b
diff --git a/lib/drone.js b/lib/drone.js index <HASH>..<HASH> 100644 --- a/lib/drone.js +++ b/lib/drone.js @@ -151,11 +151,8 @@ RollingSpider.prototype.setup = function (callback) { function (error) { setTimeout(function () { - this.startPing(function () { + this.startDrive(c...
Removes ping function, changes drive function to ping instead
voodootikigod_node-rolling-spider
train
8a2f2d102e84ec05980d543ecda51c18eac4eacd
diff --git a/coloredlogs/__init__.py b/coloredlogs/__init__.py index <HASH>..<HASH> 100644 --- a/coloredlogs/__init__.py +++ b/coloredlogs/__init__.py @@ -1,7 +1,7 @@ # Colored terminal output for Python's logging module. # # Author: Peter Odding <peter@peterodding.com> -# Last Change: December 10, 2020 +# Last Chan...
Bug fix: Restore StandardErrorHandler functionality The StandardErrorHandler class is responsible for dynamically resolving (looking up the value of) sys.stderr for each logged message instead of once when coloredlogs.install() is called. This was unintentionally broken by changes in 4f8c9aa8ad4 which were released a...
xolox_python-coloredlogs
train
160332f44bf084bf900b19e83a994191f1567461
diff --git a/Schema/SQLiteBuilder.php b/Schema/SQLiteBuilder.php index <HASH>..<HASH> 100644 --- a/Schema/SQLiteBuilder.php +++ b/Schema/SQLiteBuilder.php @@ -11,10 +11,8 @@ class SQLiteBuilder extends Builder */ public function dropAllTables() { - $this->connection->select($this->grammar->compil...
delete the database file and recreate it (#<I>)
illuminate_database
train
340a45b0c7d0403d716c735e090e2a6b68cae547
diff --git a/examples/memaccess-event.py b/examples/memaccess-event.py index <HASH>..<HASH> 100755 --- a/examples/memaccess-event.py +++ b/examples/memaccess-event.py @@ -1,13 +1,23 @@ #!/usr/bin/env python3 +"""Memory Access example. + +Usage: + memaccess-event.py [options] <vm_name> <symbol> + +Options: + -h --h...
update memaccess-event to add singlestepping instead of emulation
libvmi_python
train
cea29ffebc029add2b275e661fa1878295cbf10f
diff --git a/mod/bigbluebuttonbn/classes/local/config.php b/mod/bigbluebuttonbn/classes/local/config.php index <HASH>..<HASH> 100644 --- a/mod/bigbluebuttonbn/classes/local/config.php +++ b/mod/bigbluebuttonbn/classes/local/config.php @@ -30,10 +30,10 @@ use mod_bigbluebuttonbn\recording; class config { /** @va...
MDL-<I> mod_bigbluebuttonbn: Replaced credentials provided by default
moodle_moodle
train
89ead1782b44df2b571a0804f4270d29c4563f27
diff --git a/Eloquent/Builder.php b/Eloquent/Builder.php index <HASH>..<HASH> 100755 --- a/Eloquent/Builder.php +++ b/Eloquent/Builder.php @@ -473,7 +473,7 @@ class Builder return $model; } - return call_user_func($callback); + return $callback(); } /** diff --git a/Elo...
Convert call_user_func where appropriate to native calls (#<I>)
illuminate_database
train
d2d694373e4508df530f038d1b1579b246d00cc3
diff --git a/filebytes/pe.py b/filebytes/pe.py index <HASH>..<HASH> 100644 --- a/filebytes/pe.py +++ b/filebytes/pe.py @@ -504,7 +504,6 @@ class PE(Binary): raw_bytes = (c_ubyte * dataDirectoryEntry.Size).from_buffer(importSection.raw, to_offset(dataDirectoryEntry.VirtualAddress, importSection)) offse...
Bugfix: crash when importAddressTable contains VirtualAddresses
sashs_filebytes
train
41f7d07da3de09862f6308889a43f2f894320c0e
diff --git a/activemodel/lib/active_model/secure_password.rb b/activemodel/lib/active_model/secure_password.rb index <HASH>..<HASH> 100644 --- a/activemodel/lib/active_model/secure_password.rb +++ b/activemodel/lib/active_model/secure_password.rb @@ -52,8 +52,6 @@ module ActiveModel raise end - ...
Put attr_reader in with all of the other instance methods This makes the grouping make a little more sense
rails_rails
train
bd87c682b525df6eb00196bf5d1156a05ef2cd6a
diff --git a/src/react-es6/lib/cloneWithProps.js b/src/react-es6/lib/cloneWithProps.js index <HASH>..<HASH> 100644 --- a/src/react-es6/lib/cloneWithProps.js +++ b/src/react-es6/lib/cloneWithProps.js @@ -24,7 +24,8 @@ function cloneWithProps (child, props) { newProps.children = child.props.children; } - retur...
Ensure compatability with React master
react-bootstrap_react-bootstrap
train
1a11ca7bafb13b7bf11ab5a2d8598d1b78b28ed4
diff --git a/jamon.js b/jamon.js index <HASH>..<HASH> 100644 --- a/jamon.js +++ b/jamon.js @@ -301,29 +301,28 @@ */ class Jamon extends Array { - static ready () { - return new Promise(function (resolve) { - if (document.readyState === "ready") { - resolv...
Removed Jamon.ready(), added some docs
jamonserrano_jamon
train
ff445f13aafe3946e1b8aedc1bf216f147b5cb98
diff --git a/packages/tiptap-extensions/src/nodes/TodoItem.js b/packages/tiptap-extensions/src/nodes/TodoItem.js index <HASH>..<HASH> 100644 --- a/packages/tiptap-extensions/src/nodes/TodoItem.js +++ b/packages/tiptap-extensions/src/nodes/TodoItem.js @@ -34,7 +34,7 @@ export default class TodoItem extends Node { ...
no nested blocks in TodoItem
scrumpy_tiptap
train
ddec17b3af9d330ccb0565b2672fff0dad8b443d
diff --git a/src/Log/FileLogger.php b/src/Log/FileLogger.php index <HASH>..<HASH> 100644 --- a/src/Log/FileLogger.php +++ b/src/Log/FileLogger.php @@ -39,6 +39,8 @@ class FileLogger { private static $level = 0; /** @var string $path */ private static $path = __DIR__ . "/logfile.log"; + /** @var string...
EOL in logging, statement preparing in PDOConnector
doganoo_PHPUtil
train
46d650895e56bec10b5b4904854794c6a8b70067
diff --git a/src/Orchestra/Memory/Abstractable/DatabaseHandler.php b/src/Orchestra/Memory/Abstractable/DatabaseHandler.php index <HASH>..<HASH> 100644 --- a/src/Orchestra/Memory/Abstractable/DatabaseHandler.php +++ b/src/Orchestra/Memory/Abstractable/DatabaseHandler.php @@ -24,9 +24,8 @@ abstract class DatabaseHandler ...
Slightly improve the syntax, and reduce redundant process.
orchestral_memory
train
cc9a78dc0756be5eb47086945ec08f47aa8b00b0
diff --git a/provision/docker/docker.go b/provision/docker/docker.go index <HASH>..<HASH> 100644 --- a/provision/docker/docker.go +++ b/provision/docker/docker.go @@ -207,23 +207,27 @@ func (c *container) setStatus(status string) error { return coll.UpdateId(c.ID, c) } -func deploy(app provision.App, version strin...
docker: returning image id on deploy.
tsuru_tsuru
train
e5bbf4501af6223865f8151b504d35a6d9bf66c1
diff --git a/examples/getting-started/src/main/java/com/example/Main.java b/examples/getting-started/src/main/java/com/example/Main.java index <HASH>..<HASH> 100644 --- a/examples/getting-started/src/main/java/com/example/Main.java +++ b/examples/getting-started/src/main/java/com/example/Main.java @@ -1,6 +1,5 @@ pack...
Annotating main classes with "Run" is not needed anymore.
rapidoid_rapidoid
train
51145635d06fa6b78e4bd739d1c67e2612f65bb7
diff --git a/lib/ishiki.js b/lib/ishiki.js index <HASH>..<HASH> 100644 --- a/lib/ishiki.js +++ b/lib/ishiki.js @@ -272,5 +272,29 @@ module.exports = function(app, haibu, path, fs, drone, proxy) { }); }); }); + + //return logs for given user/app + this.get('/:userid/:appid/logs', function(user...
Added logs per user/app
grownseed_haibu-ishiki
train
0a7ad5bfdbc3e7ea379c21672d2dcf32122b5fdf
diff --git a/tests/test_dwavesampler.py b/tests/test_dwavesampler.py index <HASH>..<HASH> 100644 --- a/tests/test_dwavesampler.py +++ b/tests/test_dwavesampler.py @@ -13,6 +13,7 @@ # limitations under the License. # # ============================================================================= +import sys impor...
Fix unittest failures in python<=<I>
dwavesystems_dwave-system
train
3cd8d8401bf62fc082acdf496b01a80359c4e22f
diff --git a/floodestimation/tests/test_parsers.py b/floodestimation/tests/test_parsers.py index <HASH>..<HASH> 100644 --- a/floodestimation/tests/test_parsers.py +++ b/floodestimation/tests/test_parsers.py @@ -145,3 +145,51 @@ class TestCd3Ireland(unittest.TestCase): def test_descriptors(self): self.asse...
test for xml catchment file
OpenHydrology_floodestimation
train
f7074314edbcbfe0f7a637a3a1b575caf0f996da
diff --git a/account/src/test/java/com/ning/billing/account/dao/TestAccountDao.java b/account/src/test/java/com/ning/billing/account/dao/TestAccountDao.java index <HASH>..<HASH> 100644 --- a/account/src/test/java/com/ning/billing/account/dao/TestAccountDao.java +++ b/account/src/test/java/com/ning/billing/account/dao/T...
account: update testExternalKeyCannotBeUpdated
killbill_killbill
train
eb0aca291fc6bc8a9dd94037d77263445d0713d5
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -105,6 +105,7 @@ setup( 'cachelib', 'appdirs', 'keep', + 'rich' ], cmdclass={ 'lint': Lint
added rich library to setup.py
gleitz_howdoi
train
88e6c8c59afe9ab41c59703f9181972f112d9a08
diff --git a/src/model/DataRow.php b/src/model/DataRow.php index <HASH>..<HASH> 100644 --- a/src/model/DataRow.php +++ b/src/model/DataRow.php @@ -2,6 +2,7 @@ namespace Crm\ApplicationModule; +use Nette\Database\Table\GroupedSelection; use Nette\Database\Table\IRow; use Nette\Database\Table\Selection; @@ -59,7...
Nette <I> - Add return types to ActiveRow, DataRow, Selection Implementations have to follow interface changes. Methods returning Nette's classes should return `self` (will raise minimal PHP requirement to PHP <I>). remp/crm#<I>
remp2020_crm-application-module
train
af4e3bc4251c8af621f648dc53df3e5c2421679a
diff --git a/peru/cache.py b/peru/cache.py index <HASH>..<HASH> 100644 --- a/peru/cache.py +++ b/peru/cache.py @@ -174,7 +174,7 @@ class Cache: raise DirtyWorkingCopyError( 'Imported files have been modified ' + '(use --force to overwrite):\n\n' + - '\n'.joi...
limit the length of existing/modified files errors Previously when a sync failed because of existing or modified files, we would print out every offending file. Sometimes this is hundreds of lines, which meant the actual error text wasn't visible in the terminal.
buildinspace_peru
train
269c6cab166c7f94d0c2480d6aa7b89c79eb09c8
diff --git a/lib/walmart_open/errors.rb b/lib/walmart_open/errors.rb index <HASH>..<HASH> 100644 --- a/lib/walmart_open/errors.rb +++ b/lib/walmart_open/errors.rb @@ -2,6 +2,9 @@ module WalmartOpen class WalmartOpenError < ::StandardError end + class ServerError < WalmartOpenError + end + class Authenticat...
Change AuthenticationError to ServerError in base requests Fixes #8
listia_walmart_open
train
f8de9784148a217081be07311b8f42a233d598c1
diff --git a/py2/testdir_rapids/test_rapids_colons_basic.py b/py2/testdir_rapids/test_rapids_colons_basic.py index <HASH>..<HASH> 100644 --- a/py2/testdir_rapids/test_rapids_colons_basic.py +++ b/py2/testdir_rapids/test_rapids_colons_basic.py @@ -148,7 +148,7 @@ class Basic(unittest.TestCase): ...
assuming v has at least one element, should this never fail? "ast": "(= ([ $t0 #0 #0) ([ (+ $v $v) #0 #0))", "error": "Column index out of bounds: tried to select column 0<=0<=-1.",
h2oai_h2o-3
train
7f002df141626e1a34599849b0c94aa7789a8d65
diff --git a/tuning/curve.py b/tuning/curve.py index <HASH>..<HASH> 100644 --- a/tuning/curve.py +++ b/tuning/curve.py @@ -232,6 +232,9 @@ class Curve: The destination units. ''' self.colors = wt_units.converter(self.colors, self.units, units) + if self.subcurve: + posit...
fix workup tune test - workup tune test now respects subcurves properly - curve map_colors now interpolates subcurves by default
wright-group_WrightTools
train
37687ecaa50849c450bc833f618b40afb7d05df2
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -36,7 +36,7 @@ function storage(key, val, cb) { ? set(key, val) : get(key, val); default: - throw new TypeError('Not valid arguments length'); + return count(key); } }
storage() is an alias for storage.count()
alekseykulikov_storage
train
b71b3a7a612b33a1148e67606e4055b19a7e07e4
diff --git a/lib/podio/areas/file.rb b/lib/podio/areas/file.rb index <HASH>..<HASH> 100644 --- a/lib/podio/areas/file.rb +++ b/lib/podio/areas/file.rb @@ -15,20 +15,72 @@ module Podio end # Then, when the file has been moved, it must be marked as available - def set_available(file_id) - Podio.co...
Added remaining API operations on File area
podio_podio-rb
train
411257dc7bac2d70ebd5675dda75189533e59c40
diff --git a/client/_init-socket.js b/client/_init-socket.js index <HASH>..<HASH> 100644 --- a/client/_init-socket.js +++ b/client/_init-socket.js @@ -67,7 +67,7 @@ module.exports = function() { }); socket.on('disconnect', () => { - edward.save.patch = self._patchHttp; + edward.save._patch...
fix(init-socket) disconnect: patch -> _patch
cloudcmd_edward
train
557be9763e6065392ccc988a2b34a8f3bd11ce38
diff --git a/h2o-py/h2o/frame.py b/h2o-py/h2o/frame.py index <HASH>..<HASH> 100644 --- a/h2o-py/h2o/frame.py +++ b/h2o-py/h2o/frame.py @@ -38,8 +38,8 @@ class H2OFrame(H2OFrameWeakRefMixin): """ Create a new H2OFrame object by passing a file path or a list of H2OVecs. - If `remote_fname` is not None, the...
Starting down matching python & R Remove "id" from REST calls. Notes on extra fields in python
h2oai_h2o-3
train
a2bfa5fa305d7eebfee1bcb2c556112a3e03f2c2
diff --git a/activemodel/lib/active_model/translation.rb b/activemodel/lib/active_model/translation.rb index <HASH>..<HASH> 100644 --- a/activemodel/lib/active_model/translation.rb +++ b/activemodel/lib/active_model/translation.rb @@ -18,12 +18,12 @@ module ActiveModel # # This also provides the required class me...
Better formatting on ActiveModel::Translation
rails_rails
train
94c8742a5daf29119a1a714062f7b7422c5c5361
diff --git a/salt/master.py b/salt/master.py index <HASH>..<HASH> 100644 --- a/salt/master.py +++ b/salt/master.py @@ -1937,8 +1937,10 @@ class ClearFuncs(object): 'load': {'ret': False}} log.info('Authentication accepted from {id}'.format(**load)) - # only write to disk if you ar...
Always save minion key in open mode. Instead of ignoring auth in open mode, save the key, since it's actually used to encrypt stuff, and the minion won't be able to decrypt it if a different key was used.
saltstack_salt
train
39bd1ceb9637f860c6922abe28c9f1207de1d063
diff --git a/Cake/Test/TestCase/ORM/EntityTest.php b/Cake/Test/TestCase/ORM/EntityTest.php index <HASH>..<HASH> 100644 --- a/Cake/Test/TestCase/ORM/EntityTest.php +++ b/Cake/Test/TestCase/ORM/EntityTest.php @@ -605,6 +605,8 @@ class EntityTest extends TestCase { /** * Test toArray recursive. + * + * @return void ...
Ensure that Entity::toArray() calls accessors.
cakephp_cakephp
train
d4d476d92e8acb5849438daaac1a140ee69b5012
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ install_requires = [ 'easy_thumbnails', 'django-import-export', 'django-finegrained-permissions', - 'django-constance[database]>=0.7', + 'django-constance>=0.7', 'pillow', ]
fix constance install_requires
auto-mat_django-webmap-corpus
train
51470821912d113059ab26ae7314c53d0b15a785
diff --git a/lib/server.js b/lib/server.js index <HASH>..<HASH> 100644 --- a/lib/server.js +++ b/lib/server.js @@ -122,8 +122,12 @@ function handleResponse (opts, req, resp, response) { req: req, msg: "No content returned" }); + + if (!response) { response = {}; } + if (...
Improve error handling in server.js - Handle exceptions throwing falsy values better - Preserve full internal error objects & log them
wikimedia_restbase
train
974196b0910924d08640703cc558c48ca049246a
diff --git a/railties/test/railties/railtie_test.rb b/railties/test/railties/railtie_test.rb index <HASH>..<HASH> 100644 --- a/railties/test/railties/railtie_test.rb +++ b/railties/test/railties/railtie_test.rb @@ -48,15 +48,6 @@ module RailtiesTest assert_equal "hello", AppTemplate::Application.config.foo.greet...
Remove obsolete test case, since we have move Rails::LogSubscriber to ActiveSupport::LogSubscriber in [<I>db<I>ab<I>b<I>a9d<I>dd8fb<I>fa<I>c8] [#<I> state:resolved]
rails_rails
train
f4677633331d2767a694deb5a1b5ac198dacedbd
diff --git a/src/core.js b/src/core.js index <HASH>..<HASH> 100644 --- a/src/core.js +++ b/src/core.js @@ -318,6 +318,17 @@ $.powerTip = { return element; } + // if a tooltip is currently open for an element we are being asked to + // destroy then it should be forced to close + if (session.isTipOpen && !ses...
Update destroy() API method to close any open tooltips This patch adds extra handling for open tooltips to the destroy() API method. Previously, if you destroyed PowerTip on an element while the tooltip is open it could leave some extra state around, such as the desync polling timer. With this patch, destroy() will no...
stevenbenner_jquery-powertip
train
c4964e95072f0788cc9ed0018c34d995b64ab051
diff --git a/src/Sylius/Behat/Context/Transform/ZoneContext.php b/src/Sylius/Behat/Context/Transform/ZoneContext.php index <HASH>..<HASH> 100644 --- a/src/Sylius/Behat/Context/Transform/ZoneContext.php +++ b/src/Sylius/Behat/Context/Transform/ZoneContext.php @@ -12,6 +12,7 @@ namespace Sylius\Behat\Context\Transform; ...
[Behat] Refactoring in zone transform context
Sylius_Sylius
train
3b8e37ed48e25bf59e124d9bd8fb337355b32748
diff --git a/para-core/src/main/java/com/erudika/para/core/utils/CoreUtils.java b/para-core/src/main/java/com/erudika/para/core/utils/CoreUtils.java index <HASH>..<HASH> 100644 --- a/para-core/src/main/java/com/erudika/para/core/utils/CoreUtils.java +++ b/para-core/src/main/java/com/erudika/para/core/utils/CoreUtils.ja...
fixed a bug where some queries had invalid Lucene query string syntax
Erudika_para
train
3372d04f11165688c7b7d8f6c2ece134ae102745
diff --git a/mlprimitives/timeseries.py b/mlprimitives/timeseries.py index <HASH>..<HASH> 100644 --- a/mlprimitives/timeseries.py +++ b/mlprimitives/timeseries.py @@ -1,5 +1,5 @@ -import pandas as pd import numpy as np +import pandas as pd def rolling_window_sequences(X, window_size, value_column, time_column): @...
Removed instances of copy() from dataframes
HDI-Project_MLPrimitives
train
2d7d83303cceba561b52a88d2d453f8addabc343
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -45,8 +45,8 @@ MicroserviceClient.prototype.settings = {}; MicroserviceClient.prototype._request = function(statusRequest, callback) { var self = this; - let signatureMethods = ['PUT', 'SEARCH', 'PATCH', 'POST', 'OPTION...
Make it compatible with uglify
microservice-framework_microservice-client
train
0ebd32418b6fb163319a3cbf62f5fcd862a27f94
diff --git a/spec/account_spec.rb b/spec/account_spec.rb index <HASH>..<HASH> 100644 --- a/spec/account_spec.rb +++ b/spec/account_spec.rb @@ -25,13 +25,11 @@ describe Monzo::Account do Monzo.configure(access_token) attributes = {} - attributes["accounts"] = [ - FactoryGirl.attributes_for(:a...
Tidy up account spec.
murraysum_monzo
train
dbf768b1bd6adb48b7e8580bcea09386ce064566
diff --git a/src/js/fullscreen.js b/src/js/fullscreen.js index <HASH>..<HASH> 100644 --- a/src/js/fullscreen.js +++ b/src/js/fullscreen.js @@ -177,9 +177,7 @@ class Fullscreen { // iOS native fullscreen doesn't need the request step if (browser.isIos && this.player.config.fullscreen.iosNative) { - ...
Remove 'video is playing' requirement for iosNative fullscreen
sampotts_plyr
train
b46c7b714c3a8db64683af2e9b64a1a6e77bb113
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -29,17 +29,7 @@ from IPython.utils.tempdir import TemporaryDirectory import json import os import sys -<<<<<<< HEAD -#import saspy.sas_magic -try: - from jupyter_client.kernelspec import install_kernel_spec -except Impor...
diff file was pushed instead of good file
sassoftware_sas_kernel
train
8134bdc81a58dc962c493d8e279c7e06268f51d1
diff --git a/rails_event_store/lib/rails_event_store/event.rb b/rails_event_store/lib/rails_event_store/event.rb index <HASH>..<HASH> 100644 --- a/rails_event_store/lib/rails_event_store/event.rb +++ b/rails_event_store/lib/rails_event_store/event.rb @@ -7,7 +7,7 @@ module RailsEventStore @event_type = event_dat...
Default value should be not nil since we don't validate Event model
RailsEventStore_rails_event_store
train
189c39c79526e279a7d8709532c5c8fa33745baf
diff --git a/lib-dempsyspring/src/test/java/com/nokia/dempsy/spring/TestRunAppInVm.java b/lib-dempsyspring/src/test/java/com/nokia/dempsy/spring/TestRunAppInVm.java index <HASH>..<HASH> 100644 --- a/lib-dempsyspring/src/test/java/com/nokia/dempsy/spring/TestRunAppInVm.java +++ b/lib-dempsyspring/src/test/java/com/nokia...
Modify a few tests to check for the condition fixed in the previous commit to avoid it happening again.
Dempsy_dempsy
train
eff151367ea5e79a6574f58e963feca9cc259ea5
diff --git a/src/easyzoom.js b/src/easyzoom.js index <HASH>..<HASH> 100644 --- a/src/easyzoom.js +++ b/src/easyzoom.js @@ -58,11 +58,9 @@ .on('mouseleave.easyzoom touchend.easyzoom', $.proxy(this._onLeave, this)) .on('mouseenter.easyzoom touchstart.easyzoom', $.proxy(this._onEnter, this)); -...
Only prevent clicks on zoom image link
i-like-robots_EasyZoom
train
279baf7920f0e3ca3e3d7546294b15d985514b65
diff --git a/Command/DumpCommand.php b/Command/DumpCommand.php index <HASH>..<HASH> 100644 --- a/Command/DumpCommand.php +++ b/Command/DumpCommand.php @@ -51,13 +51,19 @@ class DumpCommand extends Command protected function execute(InputInterface $input, OutputInterface $output) { - if ($input->getOp...
[AsseticBundle] rearranged execute() method
symfony_assetic-bundle
train
ce0387e18715fe64c446a26cc67ec5c78f0c90c2
diff --git a/Classes/Utility/MailUtility.php b/Classes/Utility/MailUtility.php index <HASH>..<HASH> 100644 --- a/Classes/Utility/MailUtility.php +++ b/Classes/Utility/MailUtility.php @@ -9,6 +9,7 @@ namespace KayStrobach\Custom\Utility; use Neos\Flow\Annotations as Flow; use Doctrine\ORM\Mapping as ORM; +use Neos\F...
[TASK] add option to send attachments
kaystrobach_FLOW.Custom
train
cfc3392582a261ae035ea13de2c0826d35e6d9ec
diff --git a/course/report/completion/index.php b/course/report/completion/index.php index <HASH>..<HASH> 100644 --- a/course/report/completion/index.php +++ b/course/report/completion/index.php @@ -159,7 +159,7 @@ if ($csv) { } else { // Navigation and header - $strcompletion = get_string('completionreport'...
MDL-<I>: Completion report names inconsistent
moodle_moodle
train
53d711bdc71ecd68cb1028c841b11b584f5c8ca6
diff --git a/common/src/main/java/io/netty/util/concurrent/SingleThreadEventExecutor.java b/common/src/main/java/io/netty/util/concurrent/SingleThreadEventExecutor.java index <HASH>..<HASH> 100644 --- a/common/src/main/java/io/netty/util/concurrent/SingleThreadEventExecutor.java +++ b/common/src/main/java/io/netty/util...
extract duplicate code into method (#<I>) Motivation: Clean up code to increase readability. Modification: Extract duplicate code blocks into method. Result: Less code duplication
netty_netty
train
9f808f0c688fa815f24c17f401549ceef51dc3bb
diff --git a/openxc/src/com/openxc/sources/BytestreamDataSource.java b/openxc/src/com/openxc/sources/BytestreamDataSource.java index <HASH>..<HASH> 100644 --- a/openxc/src/com/openxc/sources/BytestreamDataSource.java +++ b/openxc/src/com/openxc/sources/BytestreamDataSource.java @@ -58,7 +58,9 @@ public abstract class B...
Unlock before waiting between connection attempts to avoid blocking UI. Fixed #<I>.
openxc_openxc-android
train
2158d7fc48e8fd48035b37f31c5115a71a59794b
diff --git a/src/vis/infowindow-manager.js b/src/vis/infowindow-manager.js index <HASH>..<HASH> 100644 --- a/src/vis/infowindow-manager.js +++ b/src/vis/infowindow-manager.js @@ -18,6 +18,7 @@ InfowindowManager.prototype.manage = function (mapView, map) { this._map.layers.bind('reset', function (layers) { layer...
Managers working with maps with layers that have been previously reset
CartoDB_carto.js
train
f96f8905612cb74d1820a1272a2e5aa9f6b9660d
diff --git a/telehash.js b/telehash.js index <HASH>..<HASH> 100644 --- a/telehash.js +++ b/telehash.js @@ -240,7 +240,7 @@ exports.mesh = function(args, cbMesh) // do exchange stuff if we have one pipe.on('keepalive', function(){ - // any event, sync all w/ a new handshake + // any event, sync all...
actually create the exchange and set it up
telehash_telehash-js
train
0c3be251013e729384b3b7dff1ea114181eb3f9d
diff --git a/src/server/pps/server/worker_rc.go b/src/server/pps/server/worker_rc.go index <HASH>..<HASH> 100644 --- a/src/server/pps/server/worker_rc.go +++ b/src/server/pps/server/worker_rc.go @@ -93,20 +93,23 @@ func (a *apiServer) workerPodSpec(options *workerOptions) (v1.PodSpec, error) { } sidecarVolumeMoun...
only mount `pach-dir-volume` when the storage host path is not set
pachyderm_pachyderm
train
308b66205e529a868740d0d122687f5f1380baae
diff --git a/holoviews/plotting/bokeh/callbacks.py b/holoviews/plotting/bokeh/callbacks.py index <HASH>..<HASH> 100644 --- a/holoviews/plotting/bokeh/callbacks.py +++ b/holoviews/plotting/bokeh/callbacks.py @@ -518,7 +518,9 @@ class PointerXYCallback(Callback): """ attributes = {'x': 'cb_obj.x', 'y': 'cb_ob...
Now declaring additional models in extra_models
pyviz_holoviews
train
0010de2873ebb18c46c347fe051d802b4eceeb4f
diff --git a/GestureHandler.js b/GestureHandler.js index <HASH>..<HASH> 100644 --- a/GestureHandler.js +++ b/GestureHandler.js @@ -660,17 +660,20 @@ function createNativeWrapper(Component, config = {}) { _refHandler = node => { // bind native component's methods - for (let methodName in node) { - ...
Copy classes methods properly in _refHandler (#<I>) I noticed some methods missing from the gesture handler wrapped components since updating RN to latest master. It happens because a lot of core components were changed to use classes instead of React.createClass and the logic to copy methods did not handle classes pr...
kmagiera_react-native-gesture-handler
train
c52f63f9f2a7da8ec7687b71562fd4f04e05a1ef
diff --git a/steam/client/cdn.py b/steam/client/cdn.py index <HASH>..<HASH> 100644 --- a/steam/client/cdn.py +++ b/steam/client/cdn.py @@ -495,6 +495,7 @@ class CDNClient(object): self._LOG.debug("Trying to fetch content servers from Steam API") servers = get_content_servers_from_webapi(self.cell_id...
cdn: filter out OpenCache temporary fix #<I> review after #<I>
ValvePython_steam
train
f5802d8a7a846a4660391655874581df96a82691
diff --git a/test/test_conn.py b/test/test_conn.py index <HASH>..<HASH> 100644 --- a/test/test_conn.py +++ b/test/test_conn.py @@ -177,9 +177,25 @@ class ConnTest(unittest2.TestCase): except ConnectionError: self.assertEquals(self.conn._dirty, True) - @unittest2.skip("Not Implemented") d...
Implement last of the skipped test_conn.py tests
dpkp_kafka-python
train
6b9175569092424faf3cf74bc38a925da5320bf5
diff --git a/lib/default-config.js b/lib/default-config.js index <HASH>..<HASH> 100644 --- a/lib/default-config.js +++ b/lib/default-config.js @@ -112,7 +112,7 @@ module.exports = { * * @property serveStaticOptions * @type Object - * @since 1.17.0 + * @since 2.17.0 */ /**
chore: typo on serveStaticOptions version
BrowserSync_browser-sync
train
bd1da8d90ff6f652cf8f7ac576b3b2e7e8deb5fd
diff --git a/dependencies/pressFoo.min.js b/dependencies/pressFoo.min.js index <HASH>..<HASH> 100644 --- a/dependencies/pressFoo.min.js +++ b/dependencies/pressFoo.min.js @@ -4,21 +4,24 @@ pressFoo(27,'pressEscape'); pressFoo(13,'pressEnter'); + // Map global pressFoo events + pressFoo(27,'gPressEscape',true); +...
Added gPress events (starts with esc. and enter out of the box). This assigns a document-wide event dispatcher for processing global keypresses w/o having to worry about setting the focus on an input elemnet.
balderdashy_mast
train
be68905bfd895dcb3c83c7f763b4194782cc16bb
diff --git a/lib/launch-local.js b/lib/launch-local.js index <HASH>..<HASH> 100644 --- a/lib/launch-local.js +++ b/lib/launch-local.js @@ -89,7 +89,11 @@ class Launcher { result.plugin = new result.PluginExport(dummyScript.config, this.pluginEventsLegacy); global.artillery.plugins.push(result)...
feat: allow v2 plugins to opt-out of legacy reporting format Provide SSMS-based metrics objects to plugins that export LEGACY_METRICS_FORMAT=false.
artilleryio_artillery
train
7d5fa872a870c40fbcd1689f294f4ece26bc791b
diff --git a/js/track-adder.js b/js/track-adder.js index <HASH>..<HASH> 100644 --- a/js/track-adder.js +++ b/js/track-adder.js @@ -188,19 +188,28 @@ Browser.prototype.showTrackAdder = function(ev) { var bd = document.createElement('td'); bd.style.textAlign = 'center'; - if (thisB....
Toggly track-adder buttons.
dasmoth_dalliance
train
3277339899a53ce9e8d3d5d5411c6c19357e9384
diff --git a/packages/@uppy/companion/src/standalone/index.js b/packages/@uppy/companion/src/standalone/index.js index <HASH>..<HASH> 100644 --- a/packages/@uppy/companion/src/standalone/index.js +++ b/packages/@uppy/companion/src/standalone/index.js @@ -33,37 +33,56 @@ if (app.get('env') !== 'test') { clearInterval...
companion: improve obscuring sensitive values in standalone server (#<I>)
transloadit_uppy
train
452f121316036e6e01c4371fb96fd531e2f52428
diff --git a/gems/rake-support/lib/torquebox/deploy_utils.rb b/gems/rake-support/lib/torquebox/deploy_utils.rb index <HASH>..<HASH> 100644 --- a/gems/rake-support/lib/torquebox/deploy_utils.rb +++ b/gems/rake-support/lib/torquebox/deploy_utils.rb @@ -289,28 +289,49 @@ module TorqueBox end def exec_comma...
Get debugger working with 'torquebox run' (TORQUE-<I>)
torquebox_torquebox
train
e1120664c5d2b9e596c6f13217c93fb6115e8891
diff --git a/lib/chore/queues/sqs/consumer.rb b/lib/chore/queues/sqs/consumer.rb index <HASH>..<HASH> 100644 --- a/lib/chore/queues/sqs/consumer.rb +++ b/lib/chore/queues/sqs/consumer.rb @@ -76,7 +76,8 @@ module Chore @sqs_last_connected = Time.now @queue = nil end - @queue...
Cache the queue url lookup within the Sqs consumer
Tapjoy_chore
train
671b3f4e54176edc2b8d36321d75e6d135d114be
diff --git a/extensions/tags/js/src/forum/addTagFilter.js b/extensions/tags/js/src/forum/addTagFilter.js index <HASH>..<HASH> 100644 --- a/extensions/tags/js/src/forum/addTagFilter.js +++ b/extensions/tags/js/src/forum/addTagFilter.js @@ -6,6 +6,8 @@ import classList from 'flarum/utils/classList'; import TagHero fro...
Fix tag page mismatches if accents/capitalizations differ in slug (#<I>) Fixes flarum/core#<I>
flarum_core
train
23ffb4faff5aeef31d32145101931b0e9f1dd937
diff --git a/IPython/html/widgets/widget_selection.py b/IPython/html/widgets/widget_selection.py index <HASH>..<HASH> 100644 --- a/IPython/html/widgets/widget_selection.py +++ b/IPython/html/widgets/widget_selection.py @@ -71,6 +71,10 @@ class _SelectionWidget(DOMWidget): self.value_names = list(new.keys()...
don't allow empty selection in selection widgets raises KeyError on failed lookup (in both directions)
jupyter-widgets_ipywidgets
train
fcfa7ac731dec9ee09118cfb0913685002573b76
diff --git a/lib/poise_languages/command/mixin.rb b/lib/poise_languages/command/mixin.rb index <HASH>..<HASH> 100644 --- a/lib/poise_languages/command/mixin.rb +++ b/lib/poise_languages/command/mixin.rb @@ -94,7 +94,7 @@ module PoiseLanguages if parent parent.send(:"#{name}_binary") e...
Pass a string to which().
poise_poise-languages
train
cefb6368046f8c1b1d99e8388eb44cc88771f931
diff --git a/config/routes.rb b/config/routes.rb index <HASH>..<HASH> 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,10 +1,20 @@ -# Rails 3 depreciates ActionController::Routing::Routes -routes = (Rails.respond_to?(:application) ? Rails.application.routes : ActionController::Routing::Routes) - -routes.draw...
Prevent Rails 3 deprecation warnings on authorization backend routes [dgm]
stffn_declarative_authorization
train
b7b985eb8be4b346bfb69c12df108db003cb418c
diff --git a/examples/simulations/app.py b/examples/simulations/app.py index <HASH>..<HASH> 100644 --- a/examples/simulations/app.py +++ b/examples/simulations/app.py @@ -8,6 +8,7 @@ from openapi_core.shortcuts import create_spec from pyrsistent import thaw from rororo import get_validated_data, OperationTableDef, ...
fix(openapi): Proper handling of operations with empty security list (#<I>) If OpenAPI operation setup security as empty list it means that given operation is unsecured even the OpenAPI spec has defined default security schema. Fix `rororo` security handling to ensure given case. Previously it results in inabili...
playpauseandstop_rororo
train
654285627926ad7cd3483fc5b4f2219cba7694ca
diff --git a/core/src/main/java/jenkins/model/Jenkins.java b/core/src/main/java/jenkins/model/Jenkins.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/jenkins/model/Jenkins.java +++ b/core/src/main/java/jenkins/model/Jenkins.java @@ -1597,7 +1597,6 @@ public class Jenkins extends AbstractCIBase implements Dire...
This is not Describable, so no @DataBoundSetter here
jenkinsci_jenkins
train
9ff69194a2f9947c022c62ffb407aec2362db25a
diff --git a/agent/config/builder.go b/agent/config/builder.go index <HASH>..<HASH> 100644 --- a/agent/config/builder.go +++ b/agent/config/builder.go @@ -1122,7 +1122,7 @@ func (b *Builder) Validate(rt RuntimeConfig) error { if rt.AutoEncryptAllowTLS { if !rt.VerifyIncoming && !rt.VerifyIncomingRPC { - return...
tls: auto_encrypt and verify_incoming (#<I>) (#<I>) * relax requirements for auto_encrypt on server * better error message when auto_encrypt and verify_incoming on * docs: explain verify_incoming on Consul clients.
hashicorp_consul
train
eab5ec05be01624be8045c4e2031adef83872fb6
diff --git a/bg/tree.py b/bg/tree.py index <HASH>..<HASH> 100644 --- a/bg/tree.py +++ b/bg/tree.py @@ -25,7 +25,6 @@ class NewickReader(object): branch_length = int(branch_length_str) if "." not in branch_length_str else float(branch_length_str) return node_name, branch_length - @classmethod ...
updated a test case to reflect on situation when a top level of newick formatted tree is processed
aganezov_bg
train
31e2843ed5fd5a89cd0c16d1cd481759ab24b4cf
diff --git a/composer.json b/composer.json index <HASH>..<HASH> 100644 --- a/composer.json +++ b/composer.json @@ -29,7 +29,8 @@ "symfony/console": "~4.0", "symfony/yaml": "~4.0", "twig/twig": "~2.0", - "psr/container": "~1.0.0" + "psr/container": "~1.0.0", + "respect/validation": "~1.1" }, ...
Try to decrise config validation by using a validator
paul-thebaud_phpunit-generator
train
c94c83c53890ea0cd6d4349d20614560116c3db0
diff --git a/lib/puppet/util/windows/user.rb b/lib/puppet/util/windows/user.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/util/windows/user.rb +++ b/lib/puppet/util/windows/user.rb @@ -43,7 +43,7 @@ module Puppet::Util::Windows::User end # Is administrators SID enabled in calling thread's access t...
(PUP-<I>) Fix Admin Token detection on legacy Windows OS Without this commit, the detection of administrative rights on legacy Windows operating systems (<I>/XP) is incorrect. The helper function read_win<I>_bool returns a boolean type however it is compared against an integer which causes the detection to always suc...
puppetlabs_puppet
train
848bcad54d91905e286005775d02910f85d18706
diff --git a/src/Configurator/RendererGenerators/PHP/Serializer.php b/src/Configurator/RendererGenerators/PHP/Serializer.php index <HASH>..<HASH> 100644 --- a/src/Configurator/RendererGenerators/PHP/Serializer.php +++ b/src/Configurator/RendererGenerators/PHP/Serializer.php @@ -165,6 +165,11 @@ class Serializer 's...
PHP XPath serializer: added partial support for math addition
s9e_TextFormatter
train
5b9e158035b7ca6755d8f8179dfe855cbfb9f67e
diff --git a/src/base-apis.js b/src/base-apis.js index <HASH>..<HASH> 100644 --- a/src/base-apis.js +++ b/src/base-apis.js @@ -1902,7 +1902,7 @@ MatrixBaseApis.prototype.getThirdpartyUser = function(protocol, params) { ); }; -MatrixBaseApis.prototype.getTerms = function(serviceType, baseUrl, accessToken) { +Mat...
unused param getTerms is un-authed so doesn't need the access token
matrix-org_matrix-js-sdk
train
356adc5748f67dda74b820f72ea76d036b50df3f
diff --git a/lib/ruote/exp/fe_participant.rb b/lib/ruote/exp/fe_participant.rb index <HASH>..<HASH> 100644 --- a/lib/ruote/exp/fe_participant.rb +++ b/lib/ruote/exp/fe_participant.rb @@ -29,6 +29,91 @@ require 'ruote/exp/condition' module Ruote + # + # The 'participant' expression is very special. It sits on the...
more rdoc for the participant expression
jmettraux_ruote
train