hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
2d6716c80618657f27bc7a3f1229006c5ced3c78
diff --git a/common.py b/common.py index <HASH>..<HASH> 100644 --- a/common.py +++ b/common.py @@ -13,6 +13,16 @@ IPLAYLISTS = IROOT + ".PlayLists" IPROPERTIES = "org.freedesktop.DBus.Properties" +def convert2dbus(value, signature): + """Convert Python type to dbus type according signature""" + type_map = { ...
added convert2dbus to convert from python types to dbus types; function 'convert': return unicode for all string types, added dictionary converter.
wistful_pympris
train
af3239245eed4ce039c190a3f1273c4a21c4cf8c
diff --git a/tweepy/api.py b/tweepy/api.py index <HASH>..<HASH> 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -227,7 +227,8 @@ class API(object): max_size = 4883 headers, post_data = API._pack_image(filename, max_size, - form_field='media', f=f) + ...
add file_type as keyword arg in API._pack_image
tweepy_tweepy
train
835e0ceee731b927afbc98011280208643bb14f7
diff --git a/tail/tail.go b/tail/tail.go index <HASH>..<HASH> 100644 --- a/tail/tail.go +++ b/tail/tail.go @@ -66,11 +66,15 @@ func GetEntries(conf Config) ([]chan string, error) { // expand any globs in the list of files so our list all represents real files var filenames []string for _, filePath := range conf.P...
don't drop - from files to read from just because it doesn't exist on disk.
honeycombio_honeytail
train
593fe17a2270a939ea9a3f513fe5d8b8986de936
diff --git a/base/Controller.php b/base/Controller.php index <HASH>..<HASH> 100644 --- a/base/Controller.php +++ b/base/Controller.php @@ -171,15 +171,20 @@ class Controller extends \yii\web\Controller } /** - * @inheritdoc + * Prepares array for building url to action based on given action id and p...
improved Controller::getActionUrl to take ID
hiqdev_hipanel-core
train
ef4a15cdcbda4aec6293e228ef46eba94e0b6e2f
diff --git a/lib/bridge/index.js b/lib/bridge/index.js index <HASH>..<HASH> 100644 --- a/lib/bridge/index.js +++ b/lib/bridge/index.js @@ -1,7 +1,7 @@ 'use strict' -var Observable = require('vigour-js/lib/observable') -var Event = require('vigour-js/lib/event') +var Observable = require('vigour-observable') +var Eve...
refactored to use new vigour modules
vigour-io_wrapper
train
2a38c5b6cff38785bb23fa03a776c6c23ab23584
diff --git a/mongolia/database_collection.py b/mongolia/database_collection.py index <HASH>..<HASH> 100755 --- a/mongolia/database_collection.py +++ b/mongolia/database_collection.py @@ -259,4 +259,4 @@ class DatabaseCollection(list): for elt in self: DatabaseObject.create(elt, path=new_path) ...
Fixes a bug where renaming elements with _id = None caused deletion of the collection
zagaran_mongolia
train
03f55b042b98dd64dd25aadeeb469c54838db5f2
diff --git a/vendor/Krystal/Application/Controller/AbstractController.php b/vendor/Krystal/Application/Controller/AbstractController.php index <HASH>..<HASH> 100644 --- a/vendor/Krystal/Application/Controller/AbstractController.php +++ b/vendor/Krystal/Application/Controller/AbstractController.php @@ -60,6 +60,17 @@ ab...
Added getModuleService() to core controller This would allow to access current modules even faster
krystal-framework_krystal.framework
train
c7b2d9264c2628e6033c5429b507b0f2bb139277
diff --git a/lib/core/presenterRequest.js b/lib/core/presenterRequest.js index <HASH>..<HASH> 100644 --- a/lib/core/presenterRequest.js +++ b/lib/core/presenterRequest.js @@ -28,10 +28,10 @@ module.exports = function handle_presenterRequest() { if (!Resource.prototype.hasOwnProperty(route.method)) { var e...
[feature] route errors through the error router
AndreasMadsen_piccolo
train
f876db9002f8a063a981aba46cf8e9d44c63d2e3
diff --git a/dad/basic_blocks.py b/dad/basic_blocks.py index <HASH>..<HASH> 100644 --- a/dad/basic_blocks.py +++ b/dad/basic_blocks.py @@ -169,6 +169,13 @@ class Condition(object): writer.write_short_circuit_condition(self.isnot, self.isand, self.cond1, self.cond2)...
Basic fix for the printing of switches. Switches with fallthrough still pose problems to print.
androguard_androguard
train
6437f343c1a27b2093c66c7b928820a1da3414e2
diff --git a/core/server/middleware/index.js b/core/server/middleware/index.js index <HASH>..<HASH> 100644 --- a/core/server/middleware/index.js +++ b/core/server/middleware/index.js @@ -10,6 +10,7 @@ var middleware = require('./middleware'), slashes = require('connect-slashes'), errors = require('.....
Including theme partials in a way that supports symbolically linked directories closes #<I> - using fs.stat() instead of hasOwnProperty() to test for directory existence
TryGhost_Ghost
train
3419e1fa96912015923f09c3b98cb4764669af95
diff --git a/js/probe.js b/js/probe.js index <HASH>..<HASH> 100644 --- a/js/probe.js +++ b/js/probe.js @@ -28,6 +28,8 @@ if (typeof(require) !== 'undefined') { var tbi = require('./tabix'); var TABIX_MAGIC = tbi.TABIX_MAGIC; + + var EncodeFetchable = require('./encode').EncodeFetchable; } function pr...
Auto-set encode transport for URLs pasted from the encodeproject site.
dasmoth_dalliance
train
9e4818aa209a9de8127c11c3ae05b61c13016f86
diff --git a/Player/Extension/BlackfireExtension.php b/Player/Extension/BlackfireExtension.php index <HASH>..<HASH> 100644 --- a/Player/Extension/BlackfireExtension.php +++ b/Player/Extension/BlackfireExtension.php @@ -250,7 +250,8 @@ final class BlackfireExtension extends AbstractExtension $build = new Bu...
Allow to define the build's name
blackfireio_player
train
cbe27d54f5a4b34eb93f8a2e5e2e21e47ac9e58f
diff --git a/nydus/db/backends/redis.py b/nydus/db/backends/redis.py index <HASH>..<HASH> 100644 --- a/nydus/db/backends/redis.py +++ b/nydus/db/backends/redis.py @@ -10,7 +10,7 @@ from __future__ import absolute_import from itertools import izip from redis import Redis as RedisClient -from redis import RedisError ...
Don't crap out on all Redis exceptions
disqus_nydus
train
7a6eac036133e95a64712e3d74c7cef6ade4b483
diff --git a/lib/iron_worker_ng/code/builder.rb b/lib/iron_worker_ng/code/builder.rb index <HASH>..<HASH> 100644 --- a/lib/iron_worker_ng/code/builder.rb +++ b/lib/iron_worker_ng/code/builder.rb @@ -40,6 +40,10 @@ require 'json' require 'iron_worker_ng' +File.open('.gemrc', 'w') do |gemrc| + gemrc.puts('gem: --no...
Ensure that docs will not be generated no matter what.
iron-io_iron_worker_ruby_ng
train
e5b3f4181dcad2f5fadb5dc080aa43cdf547f973
diff --git a/moto/ec2/models.py b/moto/ec2/models.py index <HASH>..<HASH> 100644 --- a/moto/ec2/models.py +++ b/moto/ec2/models.py @@ -5667,10 +5667,13 @@ class NetworkAclAssociation(object): class NetworkAcl(TaggedEC2Resource): - def __init__(self, ec2_backend, network_acl_id, vpc_id, default=False): + def ...
EC2 describe_network_acls: add support for owner-id filter (#<I>) * add test that fails with FilterNotImplementedError * describe_network_acls: add support for owner-id filter
spulec_moto
train
e456fcf8fb1859b3743aef8298132f9cd85d95e4
diff --git a/src/adapters/adform.js b/src/adapters/adform.js index <HASH>..<HASH> 100644 --- a/src/adapters/adform.js +++ b/src/adapters/adform.js @@ -10,11 +10,11 @@ function AdformAdapter() { }; function _callBids(params) { - var bid, _value, _key, i, j, k, l; + var bid, _value, _key, i, j, k, l, reqPar...
Pass through transactionId and set fd=1 (#<I>)
prebid_Prebid.js
train
dc8197f5cd5fb8c3aec1caf0320c00404b11ad15
diff --git a/bitshares/asset.py b/bitshares/asset.py index <HASH>..<HASH> 100644 --- a/bitshares/asset.py +++ b/bitshares/asset.py @@ -180,7 +180,7 @@ class Asset(BlockchainObject): return super(Asset, self).items() def __repr__(self): - return "<Asset %s>" % str(self.asset) + return "<Ass...
[price] allow division of prices with identical assets
bitshares_python-bitshares
train
d9333d602d5a05ffcdd332602f52d7121e54ce22
diff --git a/integration/sawtooth_integration/tests/test_shutdown_smoke.py b/integration/sawtooth_integration/tests/test_shutdown_smoke.py index <HASH>..<HASH> 100644 --- a/integration/sawtooth_integration/tests/test_shutdown_smoke.py +++ b/integration/sawtooth_integration/tests/test_shutdown_smoke.py @@ -35,6 +35,7 @@...
Disable shutdown smoke tests Disable shutdown smoke tests until STL-<I> is complete. See: <URL>
hyperledger_sawtooth-core
train
23747a121385a91f4458d4719d3a86bf199a6b66
diff --git a/engine/src/main/java/org/camunda/bpm/engine/impl/cmd/DeployCmd.java b/engine/src/main/java/org/camunda/bpm/engine/impl/cmd/DeployCmd.java index <HASH>..<HASH> 100644 --- a/engine/src/main/java/org/camunda/bpm/engine/impl/cmd/DeployCmd.java +++ b/engine/src/main/java/org/camunda/bpm/engine/impl/cmd/DeployCm...
fix(engine): serialize deployment ensure serial processing of multiple deployments on the same node. We experienced deadlock situations with highly concurrent deployment of multiple applications on Jboss & Wildfly in combination with H2. related to #CAM-<I>
camunda_camunda-bpm-platform
train
c2a829f44ec3a7283f1b44ef50206bd81399d78c
diff --git a/dev/deps.py b/dev/deps.py index <HASH>..<HASH> 100644 --- a/dev/deps.py +++ b/dev/deps.py @@ -361,6 +361,8 @@ def _bootstrap_pip(tmpdir): to pass to pip. """ + os.environ['PIP_NO_WARN_SCRIPT_LOCATION'] = '0' + print("Downloading cacert.pem from curl") certs_path = _download('ht...
Another attempt at getting PyPy running on Windows CI again
wbond_asn1crypto
train
d582e92ee4650cb1f626aec3e4c2b6b57d384707
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +14.5.0 - 2020-21-05 +===================================================== +* Allow disabling multirecord editing in grids by setting multi_edit to false. + +Enable multiselect for Gemini Rules' v...
Allow disabling multirecord editing in grids by setting multi_edit to false. Enable multiselect for Gemini Rules' views and disable multiediting. For testing purposes, it would be convenient if user could delete multiple rules at once.
arman000_marty
train
eb8974160fd606391289b0336e1c8a6789b317b5
diff --git a/command/agent/command.go b/command/agent/command.go index <HASH>..<HASH> 100644 --- a/command/agent/command.go +++ b/command/agent/command.go @@ -346,16 +346,10 @@ func (c *Command) setupAgent(config *Config, logOutput io.Writer, logWriter *log c.rpcServer = NewAgentRPC(agent, rpcListener, logOutput, log...
agent: clean up scada connection manager
hashicorp_consul
train
9750999793ac1a45db8fae9a666ef3397405152d
diff --git a/src/views/server/view.php b/src/views/server/view.php index <HASH>..<HASH> 100644 --- a/src/views/server/view.php +++ b/src/views/server/view.php @@ -4,6 +4,7 @@ use hipanel\modules\server\assets\OsSelectionAsset; use hipanel\modules\server\grid\ServerGridView; use hipanel\widgets\Box; use hipanel\widge...
used ClientSellerLink::widget
hiqdev_hipanel-module-server
train
f1b8de57027ea3146cd1a0b69f31e91a51b9777a
diff --git a/addon/search/search.js b/addon/search/search.js index <HASH>..<HASH> 100644 --- a/addon/search/search.js +++ b/addon/search/search.js @@ -117,11 +117,19 @@ if (state.query) return findNext(cm, rev); var q = cm.getSelection() || state.lastQuery; if (persistent && cm.openDialog) { + var h...
[search addon] Make persistent dialog transparent when hiding current match Issue #<I>
codemirror_CodeMirror
train
18fd30380d4bf6ac1a04b4c1dca3a120009d94e0
diff --git a/html/html.go b/html/html.go index <HASH>..<HASH> 100644 --- a/html/html.go +++ b/html/html.go @@ -285,6 +285,21 @@ func (o *Minifier) Minify(m *minify.M, w io.Writer, r io.Reader, _ map[string]st content.AttrVal = bytes.Replace(content.AttrVal, []byte(", "), []byte(","), -1) } else if pars...
Minify numbers in meta viewport Fixes #<I>, numbers are minified using the CSS specs
tdewolff_minify
train
cf656634c1fd0ad8ffef3eba987bbdc9a6800d78
diff --git a/.travis.yml b/.travis.yml index <HASH>..<HASH> 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,5 @@ sudo: false language: node_js node_js: - - v0.12 - - v4 - - v5 - - v6 - 10 + - 12 diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -18,30 +18,65 ...
Add warning for run-async best practices and debug. (#<I>) * Add console.error for run-async best practices. * Return noop if this.async() is executed outside original function. * Remove unsupported node versions and add node <I>
SBoudrias_run-async
train
272f299fca1865c0c1a1c6f037cd88eed987b2c7
diff --git a/dmf_device_ui/canvas.py b/dmf_device_ui/canvas.py index <HASH>..<HASH> 100644 --- a/dmf_device_ui/canvas.py +++ b/dmf_device_ui/canvas.py @@ -402,8 +402,29 @@ class DmfDeviceCanvas(GtkShapesCanvasView): surface = self.get_surface() cairo_context = cairo.Context(surface) + connect...
Visually distinguish dispense from translate route Visually distinguish dispense route (i.e., source electrode of route has only one connection to another electrode) from a translate route.
sci-bots_dmf-device-ui
train
3803d634d1cc028ace2e9953846580b6c35cb55d
diff --git a/example/example_sdl2.py b/example/example_sdl2.py index <HASH>..<HASH> 100644 --- a/example/example_sdl2.py +++ b/example/example_sdl2.py @@ -47,9 +47,6 @@ extensions = vkEnumerateInstanceExtensionProperties(None) extensions = [e.extensionName for e in extensions] print("availables extensions: %s\n" % ex...
Remove unnecessary code from SDL2 example Line <I> defines the surface and debug extensions. Line <I> has no effect and would be in the wrong place anyway, as that is a device extension (VK_KHR_SWAPCHAIN_EXTENSION_NAME).
realitix_vulkan
train
387ebb8a01cd5866de9d531ed10223dd9042cc59
diff --git a/src/CatLab/Accounts/Controllers/LoginController.php b/src/CatLab/Accounts/Controllers/LoginController.php index <HASH>..<HASH> 100644 --- a/src/CatLab/Accounts/Controllers/LoginController.php +++ b/src/CatLab/Accounts/Controllers/LoginController.php @@ -63,18 +63,11 @@ class LoginController /** ...
Try to work around strange session issue in australia.
CatLabInteractive_Accounts
train
15f1a18c7ffc3f86fabb0d3ca0140b9a80f79f12
diff --git a/test/conftest.py b/test/conftest.py index <HASH>..<HASH> 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -1,14 +1,6 @@ import pytest -from wampy.peers.clients import Client - -@pytest.fixture(autouse=True) +@pytest.fixture def config_path(): return './wampy/testing/configs/crossbar.confi...
must setup router fixture with correct config path
noisyboiler_wampy
train
4c1449cd512b4ea7aa1b9b07cf2b1fa4e59da7e5
diff --git a/cmd/open.go b/cmd/open.go index <HASH>..<HASH> 100644 --- a/cmd/open.go +++ b/cmd/open.go @@ -32,7 +32,7 @@ func open(url string) error { if isWSL() { cmd = "powershell.exe" - args = []string{"-c", "start", "'"+url+"'"} + args = []string{"-c", "start", "'" + url + "'"} } opts := exec.Execute...
cmd: format code with gofmt
tsuru_tsuru
train
bd5f7a8daa150776a52b3c688e3f19f5196be94c
diff --git a/ghost/admin/app/components/gh-file-upload.js b/ghost/admin/app/components/gh-file-upload.js index <HASH>..<HASH> 100644 --- a/ghost/admin/app/components/gh-file-upload.js +++ b/ghost/admin/app/components/gh-file-upload.js @@ -7,21 +7,22 @@ export default Component.extend({ uploadButtonText: 'Text', ...
🐛 Fixed missing "file too large" text for import uploads (#<I>) closes <URL> and browsers don't allow us to artificially set and submit files
TryGhost_Ghost
train
f3c573a115db7dc7cfc8e551935db5be280bfd99
diff --git a/pyinotify.py b/pyinotify.py index <HASH>..<HASH> 100755 --- a/pyinotify.py +++ b/pyinotify.py @@ -55,7 +55,7 @@ import ctypes.util __author__ = "seb@dbzteam.org (Sebastien Martini)" -__version__ = "0.8.0o" +__version__ = "0.8.0p" __metaclass__ = type # Use new-style classes by default @@ -1238,7...
Small changes in rm_watch and update_watch. Version <I>p released.
seb-m_pyinotify
train
dd44699a965b1bb47797db9a0d2206d21c87cba8
diff --git a/src/bootstrap-table.js b/src/bootstrap-table.js index <HASH>..<HASH> 100644 --- a/src/bootstrap-table.js +++ b/src/bootstrap-table.js @@ -1392,7 +1392,7 @@ } else { active = page === that.options.pageSize ? ' class="active"' : ''; } - ...
fix #<I>: Removing inline javascript injected in HTML to drop CSP violation.
wenzhixin_bootstrap-table
train
0d0b2805a53d462c5ab558f5571f6a6d08f1c018
diff --git a/datetime_tz/__init__.py b/datetime_tz/__init__.py index <HASH>..<HASH> 100644 --- a/datetime_tz/__init__.py +++ b/datetime_tz/__init__.py @@ -606,6 +606,10 @@ class datetime_tz(original_datetime_type): elif toparselower == "tomorrow": dt += datetime.timedelta(days=1) + elif toparselower ==...
Restored support for mis-spelled 'tommorrow' in smart parse (for backwards compatibility).
mithro_python-datetime-tz
train
65b8c6f34493fe849f1a2d928fec09788d5f8bd9
diff --git a/src/printer.js b/src/printer.js index <HASH>..<HASH> 100644 --- a/src/printer.js +++ b/src/printer.js @@ -199,8 +199,21 @@ function printExpression(node) { getEncapsedQuotes(node, { opening: false }) ]); case "inline": + // might need to figure out better way to do this. d...
Add support for magic and nowdoc (#3) * Add support for magic and nowdoc * Add closure support
prettier_plugin-php
train
e1bb1e8ddd04de2f0818055b5f6dac930c1bea3a
diff --git a/lib/kaba.js b/lib/kaba.js index <HASH>..<HASH> 100644 --- a/lib/kaba.js +++ b/lib/kaba.js @@ -489,7 +489,7 @@ class Kaba ); } - if (this.config.isDebug() || this.config.includeSourceMaps()) + if (this.config.includeSourceMaps()) { config.devtool =...
Simplify conditionals about source maps
Becklyn_kaba
train
2757c9b83bf9369773c50492373a467a24aa8935
diff --git a/gcs/gcsfake/bucket.go b/gcs/gcsfake/bucket.go index <HASH>..<HASH> 100644 --- a/gcs/gcsfake/bucket.go +++ b/gcs/gcsfake/bucket.go @@ -296,35 +296,32 @@ func (b *bucket) NewReader( return } - // Validate the requested range. - rangeOK := req.Start >= 0 && - req.Start < int64(len(o.contents)) && - (...
Updated gcsfake.
jacobsa_gcloud
train
23f95772c70f7c23980c1a477e9c0041d31332eb
diff --git a/src/Control.MiniMap.js b/src/Control.MiniMap.js index <HASH>..<HASH> 100644 --- a/src/Control.MiniMap.js +++ b/src/Control.MiniMap.js @@ -1,3 +1,4 @@ +var require = require || function() { return L; }; var L = require('leaflet'); L.Control.MiniMap = L.Control.extend({ @@ -283,4 +284,6 @@ L.control.mini...
Better support when not running with Node/Browserify
Norkart_Leaflet-MiniMap
train
9f4ad086945eefee8c19cc8702a19c007a6c87d8
diff --git a/src/Message/DirectAuthorizeRequest.php b/src/Message/DirectAuthorizeRequest.php index <HASH>..<HASH> 100644 --- a/src/Message/DirectAuthorizeRequest.php +++ b/src/Message/DirectAuthorizeRequest.php @@ -28,8 +28,8 @@ class DirectAuthorizeRequest extends AbstractRequest $data['Apply3DSecure'] = $thi...
allow for different people in billing and shipping names allow the names set in billing and shipping fields to be different, they still default to the first and last name fields if not explicitly set
thephpleague_omnipay-sagepay
train
45d7616e2d11a3c6205434a1567e93b4afd28263
diff --git a/twarc/command2.py b/twarc/command2.py index <HASH>..<HASH> 100644 --- a/twarc/command2.py +++ b/twarc/command2.py @@ -20,7 +20,7 @@ from pkg_resources import iter_entry_points from twarc.version import version from twarc.handshake import handshake from twarc.decorators import cli_api_error -from twarc.e...
flatten subcommand This adjusts the subcommand to work with ensure_flattened.
DocNow_twarc
train
122c5f15d602be5a11d15eeddce4fc0e10ba288b
diff --git a/core/pog/src/main/java/org/overture/pog/contexts/POOperationDefinitionContext.java b/core/pog/src/main/java/org/overture/pog/contexts/POOperationDefinitionContext.java index <HASH>..<HASH> 100644 --- a/core/pog/src/main/java/org/overture/pog/contexts/POOperationDefinitionContext.java +++ b/core/pog/src/mai...
Add missing bool type to predicate.
overturetool_overture
train
455f417e952c2ba078a82b65b6d184e3bff632d3
diff --git a/src/React/index.js b/src/React/index.js index <HASH>..<HASH> 100644 --- a/src/React/index.js +++ b/src/React/index.js @@ -8,6 +8,8 @@ import { assoc, assocPath, curry, + merge, + path, prop } from 'ramda' @@ -18,7 +20,8 @@ function Revalidation( initialState, validationRules, erro...
Rework React HOC to also validate single inputs
25th-floor_revalidation
train
511ec1722c8a6ab88547220d20fe290f5c9d1f81
diff --git a/lib/chef/resource/openssl_x509_certificate.rb b/lib/chef/resource/openssl_x509_certificate.rb index <HASH>..<HASH> 100644 --- a/lib/chef/resource/openssl_x509_certificate.rb +++ b/lib/chef/resource/openssl_x509_certificate.rb @@ -26,7 +26,7 @@ class Chef preview_resource true resource_name ...
Be more explicit in disabling provides for openssl_x<I> Make it clear that we want this to be "true" with Chef <I>, but right now the cookbook needs to win for backwards compatibility reasons.
chef_chef
train
a8f5185966bad02539e08d393155afd0b69cc8dd
diff --git a/src/typeahead/dataset.js b/src/typeahead/dataset.js index <HASH>..<HASH> 100644 --- a/src/typeahead/dataset.js +++ b/src/typeahead/dataset.js @@ -141,14 +141,24 @@ var Dataset = (function() { var that = this; this.query = query; - this.source(query, renderIfQueryIsSame); - - funct...
Cancel pending updates when dropdown is cleared. Closes #<I>.
twitter_typeahead.js
train
33297e16f0403a51e342bf1c93ce78e3cd67cf93
diff --git a/lib/ransack/nodes/condition.rb b/lib/ransack/nodes/condition.rb index <HASH>..<HASH> 100644 --- a/lib/ransack/nodes/condition.rb +++ b/lib/ransack/nodes/condition.rb @@ -4,7 +4,7 @@ module Ransack i18n_word :attribute, :predicate, :combinator, :value i18n_alias :a => :attribute, :p => :predic...
Catch up with commits on master from PR #<I> and #<I> PR #<I> related with #<I>: remove `respond_to?` from Ransack::Search PR #<I> Allow specifying default attribute and predicate via options[:default]
activerecord-hackery_ransack
train
8be5e33d451868dc5731c4c637a3e3279327599f
diff --git a/Swat/SwatDate.php b/Swat/SwatDate.php index <HASH>..<HASH> 100644 --- a/Swat/SwatDate.php +++ b/Swat/SwatDate.php @@ -142,7 +142,8 @@ class SwatDate extends SwatControl { if ($this->display & self::MONTH) { $this->monthfly = new SwatFlydown($this->name.'_month'); $this->monthfly->options = array...
Spacing and line length. Changed parameter name in swat-date.js to be more descriptive. svn commit r<I>
silverorange_swat
train
2441babc48ba943a058ead02b1de32960cc83d71
diff --git a/factory.go b/factory.go index <HASH>..<HASH> 100644 --- a/factory.go +++ b/factory.go @@ -27,4 +27,14 @@ type Factory interface { // Container is stopped // System error Load(id string) (Container, error) + + // StartInitialization is an internal API to libcontainer used during the rexec of th...
linux_factory: add StartInitialization() After forking a new processes in a new container, we need to call exec() and tune namespaces.
opencontainers_runc
train
3af7401423dfae21b13710d08ef81fda09a17453
diff --git a/packages/diffhtml/lib/tasks/reconcile-trees.js b/packages/diffhtml/lib/tasks/reconcile-trees.js index <HASH>..<HASH> 100644 --- a/packages/diffhtml/lib/tasks/reconcile-trees.js +++ b/packages/diffhtml/lib/tasks/reconcile-trees.js @@ -20,6 +20,11 @@ export default function reconcileTrees(transaction) { i...
Do not mark state as dirty if no mutation observer
tbranyen_diffhtml
train
66ad78b1c8502e64f9fe0af236b13af3108002c8
diff --git a/core-bundle/src/Cache/ContaoCacheWarmer.php b/core-bundle/src/Cache/ContaoCacheWarmer.php index <HASH>..<HASH> 100644 --- a/core-bundle/src/Cache/ContaoCacheWarmer.php +++ b/core-bundle/src/Cache/ContaoCacheWarmer.php @@ -17,7 +17,7 @@ use Contao\CoreBundle\Config\ResourceFinderInterface; use Contao\CoreB...
[Core] Use Doctrine\DBAL\Connection instead of Doctrine\DBAL\Driver\Connection.
contao_contao
train
0c6eef73baed7c32d8dba7e93b3378c85861a518
diff --git a/drizzlepac/outputimage.py b/drizzlepac/outputimage.py index <HASH>..<HASH> 100644 --- a/drizzlepac/outputimage.py +++ b/drizzlepac/outputimage.py @@ -721,6 +721,7 @@ def getTemplates(fnames, blend=True, rules_file=None): return newhdrs, newtab + def addWCSKeywords(wcs, hdr, blot=False, single=Fal...
Pass along default WCSNAME (#<I>) * Pass along default WCSNAME * Add explanatory comments
spacetelescope_drizzlepac
train
0f5cf784924600c34d8c792a2727be369a95adf5
diff --git a/tests/utils/test_events.py b/tests/utils/test_events.py index <HASH>..<HASH> 100644 --- a/tests/utils/test_events.py +++ b/tests/utils/test_events.py @@ -12,17 +12,17 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permis...
MAINT: use subtest to quiet the output from test_events
quantopian_zipline
train
b4dbd4fd78e6d4f01cf302d5c92d80c6c58befa2
diff --git a/src/CMS/Content.php b/src/CMS/Content.php index <HASH>..<HASH> 100644 --- a/src/CMS/Content.php +++ b/src/CMS/Content.php @@ -28,6 +28,8 @@ class CMS_Content extends Pluf_Model { + protected $_internal = false; + /** * مدل داده‌ای را بارگذاری می‌کند. * @@ -204,6 +206,10 @@ class...
Add internalUpdate function to prevent changing modif_dtime due to change in the download count
pluf_cms
train
fb78177bcaaca3740078c5afa2cc6d42457ed790
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -71,8 +71,9 @@ function gulpBootlint(options) { }, function(cb) { if(hasError) { this.emit('error', new PluginError(PLUGIN_NAME, 'Lint errors found!')); - return cb(); } + + return cb(); }); ...
also call cb if no error appears
tschortsch_gulp-bootlint
train
e1b7d4737eee3f87dbb2a5a8ae9c7a6b9423bc56
diff --git a/src/Saft/Store/AbstractSparqlStore.php b/src/Saft/Store/AbstractSparqlStore.php index <HASH>..<HASH> 100644 --- a/src/Saft/Store/AbstractSparqlStore.php +++ b/src/Saft/Store/AbstractSparqlStore.php @@ -86,7 +86,7 @@ abstract class AbstractSparqlStore implements Store /** * Create batches...
Fix test testAddStatementsMultipleVariatonOfObjects from AbstractSparqlStoreTest.php Problem was that in addStatements of AbstractSparqlStore the computation of the batches was faulty. The query-call was reached already after one step, because $counter was 0 (0 mod something = 0) Correcting that and also handling rem...
SaftIng_Saft
train
3585896e380259011f251e7890f60b64f05f15cd
diff --git a/Spryker/Sniffs/Commenting/FullyQualifiedClassNameInDocBlockSniff.php b/Spryker/Sniffs/Commenting/FullyQualifiedClassNameInDocBlockSniff.php index <HASH>..<HASH> 100644 --- a/Spryker/Sniffs/Commenting/FullyQualifiedClassNameInDocBlockSniff.php +++ b/Spryker/Sniffs/Commenting/FullyQualifiedClassNameInDocBloc...
Fix FQCN for [][] arrays.
spryker_code-sniffer
train
96fd77b4ae8b14ddb3f10ec0096b27d81f8afc35
diff --git a/server.go b/server.go index <HASH>..<HASH> 100644 --- a/server.go +++ b/server.go @@ -99,6 +99,11 @@ func NewServerSize(addr string, decoder Decoder, encoder Encoder, readBufSize, w return s } +// Started returns a chan that used for server started +func (s *Server) Started() chan struct{} { + re...
dev: add a server started notify method
fagongzi_goetty
train
ff9eb018b497fe56bbab70f3aa72ab25c7c5ae8f
diff --git a/plenum/config.py b/plenum/config.py index <HASH>..<HASH> 100644 --- a/plenum/config.py +++ b/plenum/config.py @@ -371,6 +371,6 @@ PRE_VC_STRATEGY = PreVCStrategies.VC_START_MSG_STRATEGY EXTENDED_QUOTA_MULTIPLIER_BEFORE_VC = 10 OUTDATED_REQS_CHECK_ENABLED = True -OUTDATED_REQS_CHECK_INTERVAL = 30 # sec...
Increase outdated requests check interval up to <I> mins. This is done according to large propagates and ordering phases timeouts (<I> and <I> hours respectively). Also each check assumes full traversing over requests queue so often checks may decrease node's performance.
hyperledger_indy-plenum
train
e0bc2b665e7d9a6efbb8eee6b7f607a58fb4ff3f
diff --git a/chatterbot/apis/__init__.py b/chatterbot/apis/__init__.py index <HASH>..<HASH> 100644 --- a/chatterbot/apis/__init__.py +++ b/chatterbot/apis/__init__.py @@ -27,8 +27,6 @@ def clean(text): parser = html.parser.HTMLParser() text = parser.unescape(text) - - # Normalize unicode charac...
tests for api's clean function
gunthercox_ChatterBot
train
baed644907da6585b13f57b65862812d4559ff3f
diff --git a/tabular_predDB/jsonrpc_http/DatabaseClient.py b/tabular_predDB/jsonrpc_http/DatabaseClient.py index <HASH>..<HASH> 100644 --- a/tabular_predDB/jsonrpc_http/DatabaseClient.py +++ b/tabular_predDB/jsonrpc_http/DatabaseClient.py @@ -338,27 +338,25 @@ class DatabaseClient(object): match = re.search(r"...
Fix dependencies: now can select submatrix
probcomp_crosscat
train
974577f88cb9eb8840c416ec2c587adff1b654c8
diff --git a/lib/furikake/cli.rb b/lib/furikake/cli.rb index <HASH>..<HASH> 100644 --- a/lib/furikake/cli.rb +++ b/lib/furikake/cli.rb @@ -20,6 +20,7 @@ module Furikake end desc 'monitor', 'resouces publish to something by daemonize process.' + option :detach, type: :boolean, aliases: '-d', default: fals...
support detach option for monitor command.
oreno-tools_furikake
train
72cf2e3908837ee872c08685c4cd2406b480750f
diff --git a/lib/db/access.php b/lib/db/access.php index <HASH>..<HASH> 100644 --- a/lib/db/access.php +++ b/lib/db/access.php @@ -466,8 +466,7 @@ $moodle_capabilities = array( 'guest' => CAP_ALLOW, 'student' => CAP_ALLOW, 'teacher' => CAP_ALLOW, - 'editingteacher' => C...
admins should not need course:view
moodle_moodle
train
6dd6567d371ec95e1813fcc794624b55845b74ce
diff --git a/helios-client/src/main/java/com/spotify/helios/client/HttpsHandlers.java b/helios-client/src/main/java/com/spotify/helios/client/HttpsHandlers.java index <HASH>..<HASH> 100644 --- a/helios-client/src/main/java/com/spotify/helios/client/HttpsHandlers.java +++ b/helios-client/src/main/java/com/spotify/helios...
Client supports both SSH key pair and x<I> cert
spotify_helios
train
dfd07838c40b2f757b1124361fb918dc1eeda512
diff --git a/gcl/__init__.py b/gcl/__init__.py index <HASH>..<HASH> 100644 --- a/gcl/__init__.py +++ b/gcl/__init__.py @@ -459,6 +459,11 @@ class Tuple(object): else: return '%s' % key + def compose(self, tup): + if not isinstance(tup, Tuple): + tup = Tuple(tup, EmptyEnvironment()) + return Co...
Add the ability to compose tuples at runtime
rix0rrr_gcl
train
2451aa699ef6f7b6b80d356f76f4c6df5dde187b
diff --git a/src/react/toggle/toggle.js b/src/react/toggle/toggle.js index <HASH>..<HASH> 100644 --- a/src/react/toggle/toggle.js +++ b/src/react/toggle/toggle.js @@ -6,29 +6,28 @@ import {mergeProps} from '../helpers'; export class Toggle extends React.PureComponent { static propTypes = { id: PropTypes.string...
make toggles resettable in forms [#<I>]
pivotal-cf_pivotal-ui
train
9c11f69581ee03196c2a0a48e8de0e7539f7af17
diff --git a/src/Decoder/IMagickLuminanceSource.php b/src/Decoder/IMagickLuminanceSource.php index <HASH>..<HASH> 100644 --- a/src/Decoder/IMagickLuminanceSource.php +++ b/src/Decoder/IMagickLuminanceSource.php @@ -51,7 +51,7 @@ final class IMagickLuminanceSource extends LuminanceSourceAbstract{ if($this->options-...
:shower: phan happy
chillerlan_php-qrcode
train
5ba43a5cc288db97d8104504ae24bb250003a4f8
diff --git a/stagemonitor-requestmonitor/src/test/java/org/stagemonitor/requestmonitor/prof/ProfilerTest.java b/stagemonitor-requestmonitor/src/test/java/org/stagemonitor/requestmonitor/prof/ProfilerTest.java index <HASH>..<HASH> 100755 --- a/stagemonitor-requestmonitor/src/test/java/org/stagemonitor/requestmonitor/pro...
Remove instantiation of AgentSizeOf as tests are failing on travis
stagemonitor_stagemonitor
train
750257a4df4766877086433137296e0197545e27
diff --git a/upload/extension/opencart/catalog/controller/payment/bank_transfer.php b/upload/extension/opencart/catalog/controller/payment/bank_transfer.php index <HASH>..<HASH> 100644 --- a/upload/extension/opencart/catalog/controller/payment/bank_transfer.php +++ b/upload/extension/opencart/catalog/controller/payment...
Added str_replace to JSON redirect
opencart_opencart
train
1f6e796666b56fed95429a3db6b12c1893f389da
diff --git a/lxd/daemon.go b/lxd/daemon.go index <HASH>..<HASH> 100644 --- a/lxd/daemon.go +++ b/lxd/daemon.go @@ -1958,8 +1958,12 @@ func (d *Daemon) hasMemberStateChanged(heartbeatData *cluster.APIHeartbeat) bool return false } -// NodeRefreshTask is run each time a fresh node is generated. -// This can be used ...
lxd/daemon: Improves NodeRefreshTask comments
lxc_lxd
train
56fb760409220ea1cd9998de701e53bf2fd5896c
diff --git a/bin/php/ezconvertdbcharset.php b/bin/php/ezconvertdbcharset.php index <HASH>..<HASH> 100755 --- a/bin/php/ezconvertdbcharset.php +++ b/bin/php/ezconvertdbcharset.php @@ -499,14 +499,14 @@ function convertXMLData( $tableInfo, $xmlDataSelectSQLFunction, $xmlDataUpdateSQ } -function changeDBCharset( $cha...
- Added support of collations as param for script. git-svn-id: file:///home/patrick.allaert/svn-git/ezp-repo/ezpublish/trunk@<I> a<I>eee8c-daba-<I>-acae-fa<I>f<I>
ezsystems_ezpublish-legacy
train
7cabe2667ff55d0d990c2d1ba2822a81e4d93af5
diff --git a/watchtower/wtclient/client.go b/watchtower/wtclient/client.go index <HASH>..<HASH> 100644 --- a/watchtower/wtclient/client.go +++ b/watchtower/wtclient/client.go @@ -519,9 +519,10 @@ func (c *TowerClient) nextSessionQueue() *sessionQueue { delete(c.candidateSessions, id) // Skip any sessions with p...
watchtower/wtclient/client: use existing session with same TxPolicy This commit modifies the client's filtering when selecting from existing sessions. The new logic compares the configured TxPolicy with the TxPolicy of the candidate sessions, which has the effect of ignoring operational parameters such as MaxUpdates. ...
lightningnetwork_lnd
train
913bae22d47d13a618294932b33ded7f9e35fa5f
diff --git a/dialect.go b/dialect.go index <HASH>..<HASH> 100644 --- a/dialect.go +++ b/dialect.go @@ -142,6 +142,11 @@ func (d SqliteDialect) QuoteField(f string) string { return `"` + f + `"` } +// sqlite does not have schemas like PostgreSQL does, so just escape it like normal +func (d SqliteDialect) QuotedTabl...
Complete implementation of interface for sqlite and mysql
go-gorp_gorp
train
7bdfeae40e8755a821fb3813472ea75286d3fbe0
diff --git a/src/server/pps/server/monitor.go b/src/server/pps/server/monitor.go index <HASH>..<HASH> 100644 --- a/src/server/pps/server/monitor.go +++ b/src/server/pps/server/monitor.go @@ -157,7 +157,8 @@ func (a *apiServer) cancelAllMonitorsAndCrashingMonitors() { ///////////////////////////////////////////////////...
Use temp variable 'pipeline' in monitorPipeline
pachyderm_pachyderm
train
cbe6f2cc4c833ff228b4240eba5365bb4bb366fd
diff --git a/curdling/install.py b/curdling/install.py index <HASH>..<HASH> 100644 --- a/curdling/install.py +++ b/curdling/install.py @@ -43,6 +43,7 @@ def unique(func, install): return func(requester, **data) else: install.mapping.repeated.append(data['requirement']) + in...
Remove duplications from the mapping on demand
clarete_curdling
train
c4b86f9ad2ff7ce34a5e55180ce6fc69849d614c
diff --git a/src/main/java/org/primefaces/metadata/BeanValidationMetadataExtractor.java b/src/main/java/org/primefaces/metadata/BeanValidationMetadataExtractor.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/primefaces/metadata/BeanValidationMetadataExtractor.java +++ b/src/main/java/org/primefaces/metadata/Be...
added support to get the PropertyDescriptor instead of ConstraintDescriptors
primefaces_primefaces
train
a7fdb7b2ff4a47b4a0ff477f14082c951771afe5
diff --git a/src/geo/ui/widgets/histogram/chart.js b/src/geo/ui/widgets/histogram/chart.js index <HASH>..<HASH> 100644 --- a/src/geo/ui/widgets/histogram/chart.js +++ b/src/geo/ui/widgets/histogram/chart.js @@ -80,7 +80,7 @@ module.exports = View.extend({ this.chart.attr('width', width); - this.refresh(); +...
Refresh the bars instead of removing them
CartoDB_carto.js
train
255da8564b22d31390e62f5db0ad42fb0c54a68b
diff --git a/views/js/uiForm.js b/views/js/uiForm.js index <HASH>..<HASH> 100644 --- a/views/js/uiForm.js +++ b/views/js/uiForm.js @@ -128,7 +128,9 @@ define([ if($rdfExportForm.length){ $('div:first',$rdfExportForm).find('input[type="text"]').css('width', 'calc(65% - 23px)'); ...
ACL management panel css generation & changes on the import/export ontologies
oat-sa_tao-core
train
8b3646def5bd9eaf5d553134d2bf2260de80cca9
diff --git a/datapackage_pipelines/lib/dump/dumper_base.py b/datapackage_pipelines/lib/dump/dumper_base.py index <HASH>..<HASH> 100644 --- a/datapackage_pipelines/lib/dump/dumper_base.py +++ b/datapackage_pipelines/lib/dump/dumper_base.py @@ -186,6 +186,7 @@ class FileDumper(DumperBase): temp_file.close() ...
Don't delete files unnecessarily in FileDumper
frictionlessdata_datapackage-pipelines
train
dfa658af238df6a4a0bd3250843b0890590adafd
diff --git a/abydos/distance.py b/abydos/distance.py index <HASH>..<HASH> 100644 --- a/abydos/distance.py +++ b/abydos/distance.py @@ -49,10 +49,10 @@ The distance module implements string edit distance functions including: - Editex distance (incl. a [0, 1] normalized variant) - TF-IDF similarity -Functions...
fixed some pep8/pylint complaints
chrislit_abydos
train
778547da1a053f42c52485a5ec1aa4764c164a1d
diff --git a/go/client/cmd_signup.go b/go/client/cmd_signup.go index <HASH>..<HASH> 100644 --- a/go/client/cmd_signup.go +++ b/go/client/cmd_signup.go @@ -319,9 +319,11 @@ func (s *CmdSignup) runEngine() (retry bool, err error) { GenPGPBatch: s.genPGP, GenPaper: s.genPaper, } - email := s.fields.email.GetVal...
Fix batch signup with no-email (#<I>)
keybase_client
train
092becf9dc68798e1360f0b8c6ee89aeb51ac21b
diff --git a/bundles/org.eclipse.orion.client.ui/web/projects/ProjectDataManager.js b/bundles/org.eclipse.orion.client.ui/web/projects/ProjectDataManager.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.ui/web/projects/ProjectDataManager.js +++ b/bundles/org.eclipse.orion.client.ui/web/projects/Pro...
Project deletion - Handle the <I> where main project folder exists but project metadata didn't know it. Delete the main project folder when project is deleted.
eclipse_orion.client
train
af73246eb5fffeafd18bce121e616eed42657803
diff --git a/lib/pdu.js b/lib/pdu.js index <HASH>..<HASH> 100644 --- a/lib/pdu.js +++ b/lib/pdu.js @@ -84,7 +84,9 @@ PDU.prototype.fromBuffer = function(buffer) { pduHeadParams.forEach(function(key, i) { this[key] = buffer.readUInt32BE(i * 4); }.bind(this)); - var params, offset = 16; + //Since each pduHeaderPar...
Update pdu.js refactor "Offset" Since each pduHeaderParam is 4 bytes/octets, the offset is equal to the total length of the pduHeadParams*4, its better to use that basis for maintainance.
farhadi_node-smpp
train
fe4be7a5576b830886b2eb563ba6b4e5444b8773
diff --git a/scikit_posthocs/_outliers.py b/scikit_posthocs/_outliers.py index <HASH>..<HASH> 100644 --- a/scikit_posthocs/_outliers.py +++ b/scikit_posthocs/_outliers.py @@ -300,6 +300,12 @@ def outliers_gesd( data = data_proc[argsort_index] n = data_proc.size + # Lambda values (critical values): do not...
put lambda calculation out of the loop
maximtrp_scikit-posthocs
train
7f995f30481246c2905a71c879c3a41ae188e035
diff --git a/pkg/blobserver/blobpacked/blobpacked_test.go b/pkg/blobserver/blobpacked/blobpacked_test.go index <HASH>..<HASH> 100644 --- a/pkg/blobserver/blobpacked/blobpacked_test.go +++ b/pkg/blobserver/blobpacked/blobpacked_test.go @@ -59,6 +59,28 @@ func TestStorage(t *testing.T) { }) } +func TestStorageNoSmal...
storagetest: test SubFetch with invalid offsets Fix this newly introduced test case where it fails: memory, localdisk and diskpacked blobservers. Change-Id: Idb4b<I>c3a<I>b<I>e0eb<I>d5fcfd<I>e3e<I>bcc
perkeep_perkeep
train
8b5be922ab0662674c0d03a1a07c761340f28680
diff --git a/docs/components/Base.js b/docs/components/Base.js index <HASH>..<HASH> 100644 --- a/docs/components/Base.js +++ b/docs/components/Base.js @@ -49,8 +49,6 @@ export default React.createClass({ }, render() { - console.log('***', this.props.location.pathname); - const cardContentStyle = (this.s...
refactor(docs): remove debug statement
nikgraf_belle
train
5617e8c959b58fea88bb1da1f14c3d5fb70159c5
diff --git a/mod/survey/index.php b/mod/survey/index.php index <HASH>..<HASH> 100644 --- a/mod/survey/index.php +++ b/mod/survey/index.php @@ -26,6 +26,7 @@ $PAGE->navbar->add($strsurveys); $PAGE->set_title($strsurveys); + $PAGE->set_heading($course->fullname); echo $OUTPUT->header(); if (! $...
MDL-<I> - bulk upload: add heading to the page
moodle_moodle
train
82864aec9329244a56b43ca6551b7604d5e2b10f
diff --git a/keanu-python/keanu/vertex/label.py b/keanu-python/keanu/vertex/label.py index <HASH>..<HASH> 100644 --- a/keanu-python/keanu/vertex/label.py +++ b/keanu-python/keanu/vertex/label.py @@ -16,3 +16,12 @@ class _VertexLabel(JavaObjectWrapper): else: java_object = k.jvm_view().VertexLabel(...
added static factory method _VertexLabel#create_with_namespace
improbable-research_keanu
train
9dfa5389ff9bee7bac5d469004945c84479759c9
diff --git a/test/test_cfi.rb b/test/test_cfi.rb index <HASH>..<HASH> 100644 --- a/test/test_cfi.rb +++ b/test/test_cfi.rb @@ -18,6 +18,13 @@ class TestCFI < Test::Unit::TestCase assert_compare epubcfi('/6/4!/4@3:7'), '>', epubcfi('/6/4!/4') end + class TestLocalPath < self + def test_to_s + assert_e...
Add test cases for LocalPath#to_s
KitaitiMakoto_epub-parser
train
02587c99f9fbd374318c23ad0a74131da0fe6188
diff --git a/xwiki-commons-core/xwiki-commons-extension/xwiki-commons-extension-api/src/main/java/org/xwiki/extension/repository/internal/installed/AbstractInstalledExtensionRepository.java b/xwiki-commons-core/xwiki-commons-extension/xwiki-commons-extension-api/src/main/java/org/xwiki/extension/repository/internal/ins...
XWIKI-<I>: Stack overflow on "Orphaned dependencies" * Fix proposal for the stackoverflow
xwiki_xwiki-commons
train
f2abc5715e24948dca98a046bbf6aa4109b8a7e6
diff --git a/.travis.yml b/.travis.yml index <HASH>..<HASH> 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ python: - "3.4" before_install: - sudo apt-get install ncurses-term - - TERM=xterm-256color + - export TERM=xterm-256color install: - "pip install -r requirements.txt --use-mirro...
Catch exception and print error in test if terminal is not tall enough (not much we can do in this case b/c Travis-CI seems to do some weird terminal dynamism, perhaps could try installing and opening a different terminal in which to run?
hfaran_progressive
train
409ec881579150b4dad8e3f0e8f86475e29d2c56
diff --git a/builtin/providers/azurerm/resource_arm_dns_zone.go b/builtin/providers/azurerm/resource_arm_dns_zone.go index <HASH>..<HASH> 100644 --- a/builtin/providers/azurerm/resource_arm_dns_zone.go +++ b/builtin/providers/azurerm/resource_arm_dns_zone.go @@ -26,9 +26,10 @@ func resourceArmDnsZone() *schema.Resource...
Fix failing acceptance tests by using case insensitive diff function. Some resource fail due to resource_group_name always being stored as lowercase. For those resources we add the case insensitive diff function.
hashicorp_terraform
train
e41f8c4c71f104000be9380e3dcdc90508bc948c
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -125,7 +125,7 @@ module.exports = class Consulite { try { const { payload } = await this._wreck.get(`/v1/health/service/${name}?passing&near=agent`); if (!payload || !payload.length) { - ...
Use throw in try/catch block
joyent_node-consulite
train
957db507c23d545d9fb0413581c6c4b607600cb1
diff --git a/ancillary.py b/ancillary.py index <HASH>..<HASH> 100644 --- a/ancillary.py +++ b/ancillary.py @@ -77,7 +77,7 @@ def finder(folder, matchlist, foldermode=0, regex=False, recursive=True): if recursive: out = dissolve([[os.path.join(root, x) for x in dirs+files if re.search(pattern, x)] for root...
function finder: fixed non-recursive option to include the full path instead of the basename
johntruckenbrodt_spatialist
train
aafb9aa200bfc4c47875fa8b589d82ba456cd8e8
diff --git a/bcbio/structural/__init__.py b/bcbio/structural/__init__.py index <HASH>..<HASH> 100644 --- a/bcbio/structural/__init__.py +++ b/bcbio/structural/__init__.py @@ -101,7 +101,7 @@ def finalize_sv(samples, config): batch = dd.get_batch(final) or dd.get_sample_name(final) batches = batch if i...
Fix uploading germline VCFs for normals
bcbio_bcbio-nextgen
train
efe9c72e360f4be3b9d3a2daedbc28dde1f71c72
diff --git a/pylru.py b/pylru.py index <HASH>..<HASH> 100644 --- a/pylru.py +++ b/pylru.py @@ -188,6 +188,36 @@ class lrucache(object): for key, value in kwargs.items(): self[key] = value + __defaultObj = object() + def pop(self, key, default=__defaultObj): + if key in self.table: +...
Added pop, popitem, and setdefault methods to lrucache class.
jlhutch_pylru
train
9653f3d4d3bd859d592542fc011ad7b81a866052
diff --git a/IPython/html/widgets/__init__.py b/IPython/html/widgets/__init__.py index <HASH>..<HASH> 100644 --- a/IPython/html/widgets/__init__.py +++ b/IPython/html/widgets/__init__.py @@ -25,6 +25,5 @@ from .widget_selectioncontainer import TabWidget, AccordionWidget from .widget_string import HTMLWidget, LatexWidg...
Make the widget experimental error a real python warning This means it can easily be turned off too.
jupyter-widgets_ipywidgets
train
a8060c300c18e0c82b625995fd32ec0b083d9ba5
diff --git a/Test/Unit/ComponentForm8Test.php b/Test/Unit/ComponentForm8Test.php index <HASH>..<HASH> 100644 --- a/Test/Unit/ComponentForm8Test.php +++ b/Test/Unit/ComponentForm8Test.php @@ -59,6 +59,8 @@ class ComponentForm8Test extends TestBase { $method_tester->assertReturnsString('test_module_my_form'); ...
Added more tests for form builder.
drupal-code-builder_drupal-code-builder
train
b152cc4f2bb3eb1c4d76331805a090d9cdc6b1bb
diff --git a/lib/vagrant/config/v2/dummy_config.rb b/lib/vagrant/config/v2/dummy_config.rb index <HASH>..<HASH> 100644 --- a/lib/vagrant/config/v2/dummy_config.rb +++ b/lib/vagrant/config/v2/dummy_config.rb @@ -5,7 +5,17 @@ module Vagrant # to it. Anything, and it just appears to keep working. class Dummy...
Allow dummy config to eval config blocks to set instance variables
hashicorp_vagrant
train
4fc456a8793867bb73d38d6094ad5787047d926a
diff --git a/plenum/common/messages/internal_messages.py b/plenum/common/messages/internal_messages.py index <HASH>..<HASH> 100644 --- a/plenum/common/messages/internal_messages.py +++ b/plenum/common/messages/internal_messages.py @@ -1,7 +1,6 @@ from typing import NamedTuple, List, Any from plenum.common.exception...
[INDY-<I>] additions for indy-node and plugins
hyperledger_indy-plenum
train
491b741a13db9669babc322e95a7ce46d3d0c1e9
diff --git a/lib/nazrin/data_accessor/struct.rb b/lib/nazrin/data_accessor/struct.rb index <HASH>..<HASH> 100644 --- a/lib/nazrin/data_accessor/struct.rb +++ b/lib/nazrin/data_accessor/struct.rb @@ -60,7 +60,9 @@ module Nazrin def data_from_response(res) res.data[:hits][:hit].map do |hit| - s...
Fix struct data accessor for ' _no_fields' requests This PR merges the ID attribute from the response hits (allowing users to omit 'id' from the domain return fields and still having the attribute returned) as well as handling s in the response hit fields (i.e. requesting for facets with set for return fields)
tsuwatch_nazrin
train