hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
d975dc3190c76067e50e331018552b54f03d5116
diff --git a/cake/tests/cases/console/libs/tasks/model.test.php b/cake/tests/cases/console/libs/tasks/model.test.php index <HASH>..<HASH> 100644 --- a/cake/tests/cases/console/libs/tasks/model.test.php +++ b/cake/tests/cases/console/libs/tasks/model.test.php @@ -683,6 +683,9 @@ STRINGEND; $this->Task->expectAt(1, 'c...
Adding tests for previous commit. Refs #<I>.
cakephp_cakephp
train
1557dffb1a9037f0ada7aaf423f2b7d2f7a3973f
diff --git a/lib/bootstrap-generators/version.rb b/lib/bootstrap-generators/version.rb index <HASH>..<HASH> 100644 --- a/lib/bootstrap-generators/version.rb +++ b/lib/bootstrap-generators/version.rb @@ -1,5 +1,5 @@ module Bootstrap module Generators - VERSION = "0.0.1" + VERSION = "0.0.2" end end
bumped to <I>
czuger_toronto
train
8debc1c9c985f5e3da622b3550d8753fb9e7776d
diff --git a/lib/pdk/generators/module.rb b/lib/pdk/generators/module.rb index <HASH>..<HASH> 100644 --- a/lib/pdk/generators/module.rb +++ b/lib/pdk/generators/module.rb @@ -21,7 +21,7 @@ module PDK 'name' => "#{Etc.getlogin}-#{opts[:name]}", 'version' => '0.1.0', 'depende...
(FIXUP) Updates metadata defaults and metadata failure conditions
puppetlabs_pdk
train
6b6e4800acd28e42d5c3ef03915cc0b2f234f7cf
diff --git a/zhihu/base.py b/zhihu/base.py index <HASH>..<HASH> 100644 --- a/zhihu/base.py +++ b/zhihu/base.py @@ -8,13 +8,21 @@ class BaseZhihu: self.soup = BeautifulSoup(content) def _get_content(self): - resp = self._session.get(self.url[:-1]) + # use _url for question + url = se...
modified _get_content, unify operation
7sDream_zhihu-py3
train
d3d86e86a1573373ced7c3d55752ca8cd7b282ff
diff --git a/openxc/src/com/openxc/VehicleManager.java b/openxc/src/com/openxc/VehicleManager.java index <HASH>..<HASH> 100644 --- a/openxc/src/com/openxc/VehicleManager.java +++ b/openxc/src/com/openxc/VehicleManager.java @@ -823,9 +823,11 @@ public class VehicleManager extends Service implements DataPipeline.Operator...
Update TODO about explicit service intent. See #<I>.
openxc_openxc-android
train
9d4f8e4669ceebdc9d4adbfac1ba2f698aee464d
diff --git a/CalendarFXView/src/main/java/impl/com/calendarfx/view/DateControlSkin.java b/CalendarFXView/src/main/java/impl/com/calendarfx/view/DateControlSkin.java index <HASH>..<HASH> 100644 --- a/CalendarFXView/src/main/java/impl/com/calendarfx/view/DateControlSkin.java +++ b/CalendarFXView/src/main/java/impl/com/ca...
Updated copyright year to <I>.
dlemmermann_CalendarFX
train
46f9b9ab399b6107ecdd6eeff3a53889ceea8790
diff --git a/smack-core/src/main/java/org/jivesoftware/smack/util/StringUtils.java b/smack-core/src/main/java/org/jivesoftware/smack/util/StringUtils.java index <HASH>..<HASH> 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/util/StringUtils.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/util/St...
Improve StringUtils.escapeForXML() use CharSequence as input.
igniterealtime_Smack
train
e51bb7e118874bf0a9f615f459c4aab4ec644cfd
diff --git a/config/src/main/java/com/typesafe/config/ConfigRenderOptions.java b/config/src/main/java/com/typesafe/config/ConfigRenderOptions.java index <HASH>..<HASH> 100644 --- a/config/src/main/java/com/typesafe/config/ConfigRenderOptions.java +++ b/config/src/main/java/com/typesafe/config/ConfigRenderOptions.java @...
Added new ConfigRenderOptions entry to control whether to sort value in objects.
lightbend_config
train
a7b1af83f00eda6be533d664fb6b8ddd801ed4ca
diff --git a/run_deployer.py b/run_deployer.py index <HASH>..<HASH> 100755 --- a/run_deployer.py +++ b/run_deployer.py @@ -11,12 +11,19 @@ from jujupy import ( EnvJujuClient, SimpleEnvironment, ) +from remote import ( + remote_from_unit, +) from utility import ( add_basic_testing_arguments, con...
Inject clock_skew from run_deployer test.
juju_juju
train
81d74ef4cc9312835aece420d4c090bec0ca0e29
diff --git a/microcosm/loaders.py b/microcosm/loaders.py index <HASH>..<HASH> 100644 --- a/microcosm/loaders.py +++ b/microcosm/loaders.py @@ -71,7 +71,7 @@ def load_from_python_file(metadata): return _load_from_file(metadata, load_python_module) -def load_from_environ(metadata, separator="_"): +def load_from_...
Handle more complex names in envvar resolution, which is now the default behavior.
globality-corp_microcosm
train
cd3640d59c3bd5a8fad86a0b3b616a0429cad4d1
diff --git a/lib/mk_coord.rb b/lib/mk_coord.rb index <HASH>..<HASH> 100644 --- a/lib/mk_coord.rb +++ b/lib/mk_coord.rb @@ -43,7 +43,8 @@ module MkCoord lambda = Math.atan2(y, x) phi = Math.atan2(z, r) lambda %= PI2 if lambda < 0 - return [lambda, phi, r] + d = Math.sqrt(x * x + y * y + z * z) + ...
UPD: Fixed a distance calculation.
komasaru_mk_coord
train
bb2189bce92e8012e6ce5fe9121dd4e3fd84f2ec
diff --git a/lib/extensions/debugger/debugger.rb b/lib/extensions/debugger/debugger.rb index <HASH>..<HASH> 100644 --- a/lib/extensions/debugger/debugger.rb +++ b/lib/extensions/debugger/debugger.rb @@ -31,6 +31,7 @@ class BreakPoints def set_on?(file, line) + puts "file: #{file}, @break_points: #{@break_poin...
- fix break_on? - fix work on rhosimulator/windows
rhomobile_rhodes
train
d1cca6fab5050968b92f28f703198dd3ae7471eb
diff --git a/input/utils/resolve-options.js b/input/utils/resolve-options.js index <HASH>..<HASH> 100644 --- a/input/utils/resolve-options.js +++ b/input/utils/resolve-options.js @@ -1,11 +1,12 @@ 'use strict'; -var normalizeOptions = require('es5-ext/object/normalize-options') +var copy = require('es5-e...
Assure we return copy of an object There are rare cases when we want to alter options object, and resolveOptions gives an assumptions we always receive a copy when it was not always a case
medikoo_dbjs-dom
train
7c130ae7d969b9c9d1fad0f35a410643900cb164
diff --git a/core/src/main/java/com/digitalpebble/storm/crawler/bolt/FetcherBolt.java b/core/src/main/java/com/digitalpebble/storm/crawler/bolt/FetcherBolt.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/digitalpebble/storm/crawler/bolt/FetcherBolt.java +++ b/core/src/main/java/com/digitalpebble/storm/cra...
FetcherBolts - do not log full stacktrace when UnknownHostException
DigitalPebble_storm-crawler
train
7713fb06b3e537a8b5155cd44011055527417976
diff --git a/munigeo/tests/conftest.py b/munigeo/tests/conftest.py index <HASH>..<HASH> 100644 --- a/munigeo/tests/conftest.py +++ b/munigeo/tests/conftest.py @@ -38,7 +38,6 @@ settings.configure( LANGUAGE_CODE='en-us', TIME_ZONE='UTC', USE_I18N=True, - USE_L10N=True, USE_TZ=True, STATIC_URL...
Remove deprecated setting from tests
City-of-Helsinki_django-munigeo
train
81849070ac7ff13948786b5dbc675806d8fd2c5c
diff --git a/Lisphp/Environment.php b/Lisphp/Environment.php index <HASH>..<HASH> 100644 --- a/Lisphp/Environment.php +++ b/Lisphp/Environment.php @@ -75,6 +75,7 @@ final class Lisphp_Environment { protected static $antimagicFunction = null; protected static function antimagic($vars) { + if (!get_mag...
Fixed a bug about magic quotes.
lisphp_lisphp
train
34f96514ad3ac01ad1a349ab0e37bc48365c007a
diff --git a/buildSrc/src/main/java/org/springframework/boot/build/AsciidoctorConventions.java b/buildSrc/src/main/java/org/springframework/boot/build/AsciidoctorConventions.java index <HASH>..<HASH> 100644 --- a/buildSrc/src/main/java/org/springframework/boot/build/AsciidoctorConventions.java +++ b/buildSrc/src/main/j...
Fix link to source code in snapshot documentation Fixes gh-<I>
spring-projects_spring-boot
train
e47d7adb1338050c0f20e0ff0604975be750de5b
diff --git a/src/main/resources/core/scripts/selenium-logging.js b/src/main/resources/core/scripts/selenium-logging.js index <HASH>..<HASH> 100644 --- a/src/main/resources/core/scripts/selenium-logging.js +++ b/src/main/resources/core/scripts/selenium-logging.js @@ -68,7 +68,7 @@ Logger.prototype = { if (! thi...
Post logs to the server after automatic Selenese run. Always log in the background. r<I>
SeleniumHQ_selenium
train
e27de2bfa2369b4629749d718182fdfdff0bb61e
diff --git a/blockservice/blockservice.go b/blockservice/blockservice.go index <HASH>..<HASH> 100644 --- a/blockservice/blockservice.go +++ b/blockservice/blockservice.go @@ -99,29 +99,37 @@ func (s *BlockService) GetBlock(ctx context.Context, k u.Key) (*blocks.Block, er // the returned channel. // NB: No guarantees ...
fix(blockservice) respect context in GetBlocks License: MIT
ipfs_go-ipfs
train
e084ac1c4ddbdbec96056af798c8c5e534204773
diff --git a/integration-tests/src/test/java/com/datastax/oss/driver/core/cql/ExecutionInfoWarningsIT.java b/integration-tests/src/test/java/com/datastax/oss/driver/core/cql/ExecutionInfoWarningsIT.java index <HASH>..<HASH> 100644 --- a/integration-tests/src/test/java/com/datastax/oss/driver/core/cql/ExecutionInfoWarni...
Adjust ExecutionInfoWarningsIT assertions for DSE <I>
datastax_java-driver
train
9ef6e9cf8c0637cde33ea2d3be3c929d42a84291
diff --git a/doc/source/whatsnew/v1.3.0.rst b/doc/source/whatsnew/v1.3.0.rst index <HASH>..<HASH> 100644 --- a/doc/source/whatsnew/v1.3.0.rst +++ b/doc/source/whatsnew/v1.3.0.rst @@ -875,6 +875,7 @@ Categorical - Bug in constructing a :class:`DataFrame` from an ``ndarray`` and a :class:`CategoricalDtype` (:issue:`3885...
BUG: Categorical.fillna with non-category tuple (#<I>)
pandas-dev_pandas
train
1aa91537ee2cdbe6781b2d4800cecb32c4cb74a6
diff --git a/views/partials/blog/post-footer.blade.php b/views/partials/blog/post-footer.blade.php index <HASH>..<HASH> 100644 --- a/views/partials/blog/post-footer.blade.php +++ b/views/partials/blog/post-footer.blade.php @@ -19,7 +19,7 @@ @endif @if (!empty(municipio_post_taxonomies_to_display(get_the_id(...
Added grid-table class instead of gutter
helsingborg-stad_Municipio
train
bedf3c82a55b4b67eed93f686cb17e82f7ab19cd
diff --git a/redis/lock.py b/redis/lock.py index <HASH>..<HASH> 100644 --- a/redis/lock.py +++ b/redis/lock.py @@ -77,7 +77,6 @@ class Lock: self, redis, name: str, - *, timeout: Optional[Number] = None, sleep: Number = 0.1, blocking: bool = True, diff --git ...
Fix Lock crash, and versioning <I> (#<I>) * fix lock * <I>
andymccurdy_redis-py
train
2412167ecae181f367e419706d9600a047dbfb40
diff --git a/pkg/ipam/crd.go b/pkg/ipam/crd.go index <HASH>..<HASH> 100644 --- a/pkg/ipam/crd.go +++ b/pkg/ipam/crd.go @@ -77,7 +77,8 @@ type nodeStore struct { allocationPoolSize map[Family]int // signal for completion of restoration - restoreFinished chan bool + restoreFinished chan bool + restoreCloseOnce syn...
ipam: Fix the "close of closed channel" panic When enable ipv4&ipv6 with crd ipam option, cilium panic after restoring old endpoint because of "close of closed channel" Use once.Do to make sure the close action only happen once.
cilium_cilium
train
6049ab8a3d13228ba158505b701dc92ca4059711
diff --git a/webpack.config.js b/webpack.config.js index <HASH>..<HASH> 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -18,25 +18,25 @@ module.exports = { test: /\.(mjs|js|ts)$/, exclude: /(node_modules|bower_components)/, use: { - loader: 'babel-loader', - option...
Adding externals and source-map
solid_solid-panes
train
1ed708bef9449b32734a4f746ad39e8f0750fa54
diff --git a/isort/isort.py b/isort/isort.py index <HASH>..<HASH> 100644 --- a/isort/isort.py +++ b/isort/isort.py @@ -536,14 +536,17 @@ class SortImports(object): if self.config['force_sort_within_sections']: def by_module(line): + section = 'B' i...
Implement desired support for forcing imports to top while forcing sorting within sections
timothycrosley_isort
train
5772290cf5351e401b37297f3bebaf29d79dbd43
diff --git a/openquake/engine/db/models.py b/openquake/engine/db/models.py index <HASH>..<HASH> 100644 --- a/openquake/engine/db/models.py +++ b/openquake/engine/db/models.py @@ -950,11 +950,12 @@ class HazardCalculation(djm.Model): """ if self._points_to_compute is None: if self.pk and s...
add order by when getting hazard sites from an exposure
gem_oq-engine
train
7b544e8754dbdac26138bb92a5b66dc448fbde30
diff --git a/src/Models/BaseElement.php b/src/Models/BaseElement.php index <HASH>..<HASH> 100644 --- a/src/Models/BaseElement.php +++ b/src/Models/BaseElement.php @@ -341,6 +341,10 @@ class BaseElement extends DataObject $fields->fieldByName('Root.History') ->addExtraClass('element...
NEW Add flag to hide the nav tabs in the editable form
dnadesign_silverstripe-elemental
train
6228ff70066b2619dbe04339e1f2ab24533fe754
diff --git a/lib/result-builder.js b/lib/result-builder.js index <HASH>..<HASH> 100644 --- a/lib/result-builder.js +++ b/lib/result-builder.js @@ -343,19 +343,17 @@ function buildItem(parentAttrNode, row, context) { let attrNode = parentAttrNode; attribute.forEa...
result-builder: optimized formatting a little
godmodelabs_flora
train
e569003f4bdee665e94df8fbf20a9b8e96a7d3ae
diff --git a/Request.php b/Request.php index <HASH>..<HASH> 100644 --- a/Request.php +++ b/Request.php @@ -18,6 +18,18 @@ class PrintNode_Request private $credentials; /** + * Offset query argument on GET requests + * @var int + */ + private $offset = 0; + + /** + * Limit query argumen...
Added offset and limit properties to Request to allow for pagination.
PrintNode_PrintNode-PHP
train
b92cf598bdefb494cafcfe915aa7103742fb4945
diff --git a/src/Psecio/Iniscan/Rule/CheckUploadTmpDir.php b/src/Psecio/Iniscan/Rule/CheckUploadTmpDir.php index <HASH>..<HASH> 100644 --- a/src/Psecio/Iniscan/Rule/CheckUploadTmpDir.php +++ b/src/Psecio/Iniscan/Rule/CheckUploadTmpDir.php @@ -54,7 +54,7 @@ class CheckUploadTmpDir extends \Psecio\Iniscan\Rule } ...
Fix upload_tmp_dir test Test failed eve if open_basedir = "/var/www" and upload_tmp_dir = "/var/www/tmp"
psecio_iniscan
train
1d87b3c0116969a6664fc95abc9766307559ed8a
diff --git a/process-manager/src/test/java/org/jboss/as/process/support/TestProcessUtils.java b/process-manager/src/test/java/org/jboss/as/process/support/TestProcessUtils.java index <HASH>..<HASH> 100644 --- a/process-manager/src/test/java/org/jboss/as/process/support/TestProcessUtils.java +++ b/process-manager/src/te...
[JBAS-<I>] Set test process name before counting down the latch, otherwise it may be null in some cases
wildfly_wildfly
train
4adee03cffaa699c79c1eaf4963866eee91e4142
diff --git a/source/RPIO.py b/source/RPIO.py index <HASH>..<HASH> 100644 --- a/source/RPIO.py +++ b/source/RPIO.py @@ -122,8 +122,8 @@ def is_valid_gpio_id(gpio_id, board_rev=None): """ if not board_rev: board_rev = get_rpi_sysinfo()[1] - return int(gpio_id) in (PIN_TO_GPIO_LAYOUT_REV2 \ - ...
optical mini-fix in RPIO
metachris_RPIO
train
fd321d5a468173d6b4b1795011c5baa0b11e8a00
diff --git a/serial_device/mqtt.py b/serial_device/mqtt.py index <HASH>..<HASH> 100644 --- a/serial_device/mqtt.py +++ b/serial_device/mqtt.py @@ -5,7 +5,8 @@ import re import paho_mqtt_helpers as pmh import serial import serial.threaded -import serial_device + +from . import comports as _comports logger = logg...
Add `refresh_comports` command
sci-bots_serial-device
train
48120cee7c14a87c9954fabca3277342338222b5
diff --git a/lib/webpacker/compiler.rb b/lib/webpacker/compiler.rb index <HASH>..<HASH> 100644 --- a/lib/webpacker/compiler.rb +++ b/lib/webpacker/compiler.rb @@ -18,9 +18,8 @@ class Webpacker::Compiler def compile if stale? - record_compilation_digest run_webpack.tap do |success| - remove_...
Only record compilation digest if webpack runs successfully. (#<I>) This fixes an issue where current request gets an stale pack, because previous request wrote the compilation digest before webpack ends up running.
rails_webpacker
train
32fcf16920ba3adab195ca376f4f5e73970e0346
diff --git a/src/futureState.js b/src/futureState.js index <HASH>..<HASH> 100644 --- a/src/futureState.js +++ b/src/futureState.js @@ -105,6 +105,7 @@ angular.module('ct.ui.router.extras').provider('$futureState', } function lazyLoadState($injector, futureState) { + var $q = $injector.get("$q"); ...
fix(): load in lazyLoadState
christopherthielen_ui-router-extras
train
3babfaab33410f30954475526c40705abfdcf590
diff --git a/lib/Pipe/Asset.php b/lib/Pipe/Asset.php index <HASH>..<HASH> 100644 --- a/lib/Pipe/Asset.php +++ b/lib/Pipe/Asset.php @@ -1,11 +1,4 @@ <?php -/** - * Asset Base Class - * - * @copyright Copyright (c) 2011 Christoph Hochstrasser - * @license MIT License - * @author Christoph Hochstrasser <christoph.hochstr...
Added prepend() method to processor registry, falling back to engine content type if no fallback extension found.
CHH_pipe
train
e02e684357db790f9cab81646d1e25f31c2ce036
diff --git a/SoftLayer/CLI/report/bandwidth.py b/SoftLayer/CLI/report/bandwidth.py index <HASH>..<HASH> 100644 --- a/SoftLayer/CLI/report/bandwidth.py +++ b/SoftLayer/CLI/report/bandwidth.py @@ -48,23 +48,27 @@ def _get_pooled_bandwidth(env, start, end): label='Calculating for bandwidth pool...
update report bandwidth command and its unit tests
softlayer_softlayer-python
train
8b49e38ed25c40606fcbe9294b9d197b72b11ff8
diff --git a/ezp/Content/Service.php b/ezp/Content/Service.php index <HASH>..<HASH> 100644 --- a/ezp/Content/Service.php +++ b/ezp/Content/Service.php @@ -342,6 +342,8 @@ class Service extends BaseService * Publishes $version of $content * @param \ezp\Content $content * @param \ezp\Content\Version $ve...
Publishing: added location publishing handler code
ezsystems_ezpublish-kernel
train
4e808256ffbe760f3e6fa97752a90824739a2b9f
diff --git a/lib/conversion.js b/lib/conversion.js index <HASH>..<HASH> 100644 --- a/lib/conversion.js +++ b/lib/conversion.js @@ -23,7 +23,7 @@ exports.isClassicStream = isClassicStream; * @return {Boolean} - Whether or not the stream is a "request" stream */ function isRequestStream(stream) { - return !!(isClass...
Added comments and unbanged some code
crispy1989_node-zstreams
train
ef0f3adc718a564627fb617907577e1656d41ffe
diff --git a/just/__init__.py b/just/__init__.py index <HASH>..<HASH> 100644 --- a/just/__init__.py +++ b/just/__init__.py @@ -20,7 +20,7 @@ from just.requests import post from just.dir import mkdir __project__ = "just" -__version__ = "0.2.28" +__version__ = "0.2.29" EXT_TO_MODULE = { "html": txt, @@ -50,7 ...
glob has to be recursive, version bump
kootenpv_just
train
a63342e75944a3c43548ce53ee40d22c01176cf4
diff --git a/daemon/k8s_watcher.go b/daemon/k8s_watcher.go index <HASH>..<HASH> 100644 --- a/daemon/k8s_watcher.go +++ b/daemon/k8s_watcher.go @@ -846,6 +846,7 @@ func (d *Daemon) EnableK8sWatcher(queueSize uint) error { // Create a new pod controller when we are disconnected with the // kvstore <-kvstore.C...
k8s: Fix leak of k8s controller on kvstore connect & disconnect A go channel plus a k8s controller was leaked on each kvstore connect + disconnect event as the minimal k8s event controller was replaced with a full-scope controller.
cilium_cilium
train
62ec98ee04f3d154902a5d2e42cf60ce8496b5c4
diff --git a/lib/rich/i18n/core/array/merging.rb b/lib/rich/i18n/core/array/merging.rb index <HASH>..<HASH> 100644 --- a/lib/rich/i18n/core/array/merging.rb +++ b/lib/rich/i18n/core/array/merging.rb @@ -12,13 +12,11 @@ module Rich end def join_with_rich_i18n(sep = $,) - if size == 1 &...
Another attempt to tackle string concatenation, array joining and Rails 3 html escaping
archan937_rich_i18n
train
3848b8e53252a708ee7612584ebbcbb3e456eb4d
diff --git a/test/test.js b/test/test.js index <HASH>..<HASH> 100644 --- a/test/test.js +++ b/test/test.js @@ -9,7 +9,7 @@ var test = QUnit.test; var buffer = jDataView.createBuffer(0x00, 0xff, 0xfe, 0xfd, 0xfc, 0xfa, 0x00, 0xba, 0x01); -var view = new jDataView(buffer, 1); +var view = new jDataView(buffer, 1,...
Updated tests to match new default big-endian mode of jDataView.
jDataView_jBinary
train
1b8227c503dd48be026816f8abd9186b52e9a59f
diff --git a/scripts/factory-hooks/post-install/post-install.php b/scripts/factory-hooks/post-install/post-install.php index <HASH>..<HASH> 100755 --- a/scripts/factory-hooks/post-install/post-install.php +++ b/scripts/factory-hooks/post-install/post-install.php @@ -11,7 +11,6 @@ * This is used so that an ACSF site i...
Fixes #<I> to fix docs and codesniffer issues in factory hooks. (#<I>)
acquia_blt
train
1b5530332c4ec59665edc9dcf1117a532f387e16
diff --git a/molgenis-annotators-cmd/src/test/java/org/molgenis/annotation/test/cmd/AnnotatorChainingIT.java b/molgenis-annotators-cmd/src/test/java/org/molgenis/annotation/test/cmd/AnnotatorChainingIT.java index <HASH>..<HASH> 100644 --- a/molgenis-annotators-cmd/src/test/java/org/molgenis/annotation/test/cmd/Annotato...
fix casing of "metadata"
molgenis_molgenis
train
fad612e748ef7b61fe84a4ab4d3ac6aba1028879
diff --git a/cache/remote.go b/cache/remote.go index <HASH>..<HASH> 100644 --- a/cache/remote.go +++ b/cache/remote.go @@ -24,6 +24,8 @@ type Unlazier interface { Unlazy(ctx context.Context) error } +// GetRemote gets a *solver.Remote from content store for this ref (potentially pulling lazily). +// Note: Use Work...
Allow worker to override GetRemote(), needed in moby integration This fixes panics in the moby integration of buildkit when using cache. Panics come from nil Differ in computeBlobChain which is called in GetRemote(). GetRemote() got moved from Worker to ImmutableRef during the lazy-pull refactor. However, the ability...
moby_buildkit
train
7e2f588e56260d95f39932a063954f86613d87a2
diff --git a/lib/file-watcher.js b/lib/file-watcher.js index <HASH>..<HASH> 100644 --- a/lib/file-watcher.js +++ b/lib/file-watcher.js @@ -25,7 +25,9 @@ module.exports.plugin = function (options, emitter) { var tempWatcher; - tempWatcher = globWatcher(glob.toJS(), watchOptions, function (data) { + ...
feat(throttle): Bump UI for network throttle
BrowserSync_browser-sync
train
a485a6b9ea88ea6c84212c5ba1dbba66cdd64369
diff --git a/lib/eye/application.rb b/lib/eye/application.rb index <HASH>..<HASH> 100644 --- a/lib/eye/application.rb +++ b/lib/eye/application.rb @@ -23,7 +23,7 @@ class Eye::Application # sort processes in name order def resort_groups - @groups = @groups.sort_by{|gr| gr.name == '__default__' ? 'zzzzz' : gr...
avoid sleeping on the job aka. zzz's in the sort.
kostya_eye
train
0d0a9688003eb023654f5ec8246ac27be7bae382
diff --git a/src/Symfony/Component/Templating/PhpEngine.php b/src/Symfony/Component/Templating/PhpEngine.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Templating/PhpEngine.php +++ b/src/Symfony/Component/Templating/PhpEngine.php @@ -38,6 +38,7 @@ class PhpEngine implements EngineInterface, \ArrayAccess ...
[Templating] Cached the result of escape() in order to improve performance (<I>ms)
symfony_symfony
train
96987fa9651ff165e42cdb42dabf50a5c9234efe
diff --git a/morphia/src/main/java/com/google/code/morphia/mapping/Mapper.java b/morphia/src/main/java/com/google/code/morphia/mapping/Mapper.java index <HASH>..<HASH> 100644 --- a/morphia/src/main/java/com/google/code/morphia/mapping/Mapper.java +++ b/morphia/src/main/java/com/google/code/morphia/mapping/Mapper.java @...
If a converter returns a list/collection/map then keep processing its embedded elements.
MorphiaOrg_morphia
train
1bfbf9b4824379da5837a5d8766765a515b38bc9
diff --git a/src/grid/DomainGridView.php b/src/grid/DomainGridView.php index <HASH>..<HASH> 100644 --- a/src/grid/DomainGridView.php +++ b/src/grid/DomainGridView.php @@ -148,6 +148,9 @@ class DomainGridView extends BoxedGridView ], ]); }, + ...
Added `exportedValue` for DomainGridView
hiqdev_hipanel-module-domain
train
ebbbee7dce0511be011d38274f5e19d974b3062c
diff --git a/shinken/modules/active_directory_ui.py b/shinken/modules/active_directory_ui.py index <HASH>..<HASH> 100644 --- a/shinken/modules/active_directory_ui.py +++ b/shinken/modules/active_directory_ui.py @@ -222,7 +222,11 @@ class AD_Webui(BaseModule): elts = self.find_contact_entry(c) try: -...
Fix : WebUI authentification module for open ldap, should use full DN for auth under openldap, but uid for AD.
Alignak-monitoring_alignak
train
0f37b1e5be300f3a2b0c41783d0de4a20c88f7a5
diff --git a/testgrid/cmd/configurator/config_test.go b/testgrid/cmd/configurator/config_test.go index <HASH>..<HASH> 100644 --- a/testgrid/cmd/configurator/config_test.go +++ b/testgrid/cmd/configurator/config_test.go @@ -45,6 +45,7 @@ var ( "redhat", } orgs = []string{ + "conformance", "presubmits", "si...
add conformance org to testgrid tests
kubernetes_test-infra
train
48cd70c45a826a623e956491a349352ded0624d9
diff --git a/test/index.js b/test/index.js index <HASH>..<HASH> 100644 --- a/test/index.js +++ b/test/index.js @@ -69,7 +69,7 @@ describe('appengine', function() { // TODO: Add a test for a regular request-response interaction. - it('handles low-level errors', function() { + it('handles low-level e...
Use 'done' in all tests that make async calls.
googlearchive_appengine-nodejs
train
43ff63e6ebda9c1f14e8ff06ddaa6ba5b98f83d7
diff --git a/python/segyio/field.py b/python/segyio/field.py index <HASH>..<HASH> 100644 --- a/python/segyio/field.py +++ b/python/segyio/field.py @@ -229,7 +229,7 @@ class Field(collections.MutableMapping): raise IndexError("Header out of range: 0 <= {} < {}".format(traceno, segy.tracecount)) i...
Create header-buffer with bytearray, not bytes The bytes type is not considered writable by the Python C API, and is meant to be string-like, whereas the headers really are just regular byte arrays.
equinor_segyio
train
2f27a402a9064a93b878456e506b5d5f57f73856
diff --git a/src/js/components/tooltip.js b/src/js/components/tooltip.js index <HASH>..<HASH> 100644 --- a/src/js/components/tooltip.js +++ b/src/js/components/tooltip.js @@ -13,6 +13,8 @@ function plugin(UIkit) { attrs: true, + args: 'title', + mixins: [mixin.container, mixin.togglable, mi...
add `title` as primary option to tooltip
uikit_uikit
train
d17e69ee2dc3e973deb1392215e8a9541b669827
diff --git a/jax/interpreters/pxla.py b/jax/interpreters/pxla.py index <HASH>..<HASH> 100644 --- a/jax/interpreters/pxla.py +++ b/jax/interpreters/pxla.py @@ -460,6 +460,14 @@ def parallel_callable(fun, backend, axis_name, axis_size, devices, *avals): del master out_pvs, out_consts = unzip2(out_pvals) + # TO...
add whitelist for multi-host collectives
tensorflow_probability
train
ccea66c372936320c93023e1ba49c8843ece5279
diff --git a/addons/schedule/common/src/main/conf/conf.d/schedule.conf b/addons/schedule/common/src/main/conf/conf.d/schedule.conf index <HASH>..<HASH> 100644 --- a/addons/schedule/common/src/main/conf/conf.d/schedule.conf +++ b/addons/schedule/common/src/main/conf/conf.d/schedule.conf @@ -11,4 +11,9 @@ schedule.partit...
Update to check the remaining jobs in offsetHour
Commonjava_indy
train
3c1458c056d61ba075c8b0caa1bc7b5c842e555a
diff --git a/montblanc/impl/rime/tensorflow/ms/ms_manager.py b/montblanc/impl/rime/tensorflow/ms/ms_manager.py index <HASH>..<HASH> 100644 --- a/montblanc/impl/rime/tensorflow/ms/ms_manager.py +++ b/montblanc/impl/rime/tensorflow/ms/ms_manager.py @@ -73,6 +73,11 @@ POSITION = 'POSITION' # Field sub-table column name c...
Add missing frequency and ref_frequency sources
ska-sa_montblanc
train
c576cbd534f7021ae2c36dafcbd37cc1fadf50bf
diff --git a/test/test-multipart.js b/test/test-multipart.js index <HASH>..<HASH> 100644 --- a/test/test-multipart.js +++ b/test/test-multipart.js @@ -50,13 +50,10 @@ function next() { return; var v = tests[t], fixtureBase = FIXTURES_ROOT + v.source, - fd, n = 0, buffer = new Buffer(v....
test: pipe test file stream instead of manual sync writes
mscdex_dicer
train
788d7b7a6e50fd173ff284c955ba044782f57213
diff --git a/safe/engine/interpolation.py b/safe/engine/interpolation.py index <HASH>..<HASH> 100644 --- a/safe/engine/interpolation.py +++ b/safe/engine/interpolation.py @@ -634,3 +634,56 @@ def make_circular_polygon(centers, radii, attributes=None): geometry_type='polygon') return Z + + +def ta...
Wrote and tested function to tag polygons by grid cells exceeding a threshold. This is towards issue #<I>
inasafe_inasafe
train
335002a4c020850591122d763324599e5edbe045
diff --git a/extmod/moduasyncio.c b/extmod/moduasyncio.c index <HASH>..<HASH> 100644 --- a/extmod/moduasyncio.c +++ b/extmod/moduasyncio.c @@ -265,6 +265,9 @@ STATIC mp_obj_t task_getiter(mp_obj_t self_in, mp_obj_iter_buf_t *iter_buf) { } else if (self->state == TASK_STATE_RUNNING_NOT_WAITED_ON) { // Allo...
extmod/uasyncio: Allow task state to be a callable. This implements a form of CPython's "add_done_callback()", but at this stage it is a hidden feature and only intended to be used internally.
micropython_micropython
train
1bc884da4bc2352d99201ff0b7418c3616fd50f0
diff --git a/devices.js b/devices.js index <HASH>..<HASH> 100644 --- a/devices.js +++ b/devices.js @@ -1534,21 +1534,28 @@ const devices = [ zigbeeModel: ['RB 145'], model: 'RB 145', vendor: 'Innr', - description: 'E14 Candle', + description: 'E14 candle', + extend: gener...
Added support for Innr RB <I> (#<I>) * Added support for Innr RB <I> * Update devices.js * Update devices.js
Koenkk_zigbee-shepherd-converters
train
93fcb848ad0fc7120ff75e477327045a0ab28445
diff --git a/bootstrap/src/main/java/org/wildfly/swarm/bootstrap/util/WildFlySwarmBootstrapConf.java b/bootstrap/src/main/java/org/wildfly/swarm/bootstrap/util/WildFlySwarmBootstrapConf.java index <HASH>..<HASH> 100644 --- a/bootstrap/src/main/java/org/wildfly/swarm/bootstrap/util/WildFlySwarmBootstrapConf.java +++ b/b...
Fix reading of wildfly-swarm-bootstrap.conf
thorntail_thorntail
train
73c5096dd1cab997c07389de46116ce45327c0f1
diff --git a/upload/install/model/upgrade/1006.php b/upload/install/model/upgrade/1006.php index <HASH>..<HASH> 100644 --- a/upload/install/model/upgrade/1006.php +++ b/upload/install/model/upgrade/1006.php @@ -40,6 +40,11 @@ class ModelUpgrade1006 extends Model { } } + //if(!is_dir(DIR_SYSTEM . 'mod...
- Added paypal_order db changes for created/modified to date_added/modified
opencart_opencart
train
0d52bc69364e45b1fbe92e2778000cac457c368b
diff --git a/app/helpers/blogit/application_helper.rb b/app/helpers/blogit/application_helper.rb index <HASH>..<HASH> 100644 --- a/app/helpers/blogit/application_helper.rb +++ b/app/helpers/blogit/application_helper.rb @@ -49,14 +49,7 @@ module Blogit # # Returns an HTML safe String def field(content_or_...
DRYed ApplicationHelper's similar method
KatanaCode_blogit
train
be0e8ca0ac4919c4545367b1b611366173f29784
diff --git a/lib/attachment_fu/methods.rb b/lib/attachment_fu/methods.rb index <HASH>..<HASH> 100644 --- a/lib/attachment_fu/methods.rb +++ b/lib/attachment_fu/methods.rb @@ -18,7 +18,7 @@ module ScribdFu # to ensure that the contents of the attachment are of a content type that # scribd can understand. ...
Switched ScribdFu::SCRIBD_CONTENT_TYPES to ScribdFu::CONTENT_TYPES.
mdarby_scribd_fu
train
76babfb5938225e2c34012b690ecbb8e56506064
diff --git a/client-lib/src/main/java/org/cloudfoundry/identity/client/UaaContextFactory.java b/client-lib/src/main/java/org/cloudfoundry/identity/client/UaaContextFactory.java index <HASH>..<HASH> 100644 --- a/client-lib/src/main/java/org/cloudfoundry/identity/client/UaaContextFactory.java +++ b/client-lib/src/main/ja...
Use lambda instead of new class.
cloudfoundry_uaa
train
53886b97dfbddcc1ecd3dac717e5aa12d40b1b82
diff --git a/amigocloud/amigocloud.py b/amigocloud/amigocloud.py index <HASH>..<HASH> 100644 --- a/amigocloud/amigocloud.py +++ b/amigocloud/amigocloud.py @@ -82,14 +82,14 @@ class AmigoCloud(object): self.amigosocket = None def build_url(self, url): - if url.startswith('http'): ...
Manually concatenate url components. os.path.join uses the OS delimiter and urljoin doesn't apply to our use case.
amigocloud_python-amigocloud
train
e13f7817818aabbf7bd241ff956d8f1f5eefcca3
diff --git a/core/src/main/java/org/testcontainers/utility/ResourceReaper.java b/core/src/main/java/org/testcontainers/utility/ResourceReaper.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/testcontainers/utility/ResourceReaper.java +++ b/core/src/main/java/org/testcontainers/utility/ResourceReaper.java @...
Fix AutoRemove of Ryuk container (#<I>)
testcontainers_testcontainers-java
train
a7e7f9868dddb25903bcbbba64bfaf446c291327
diff --git a/src/sap.m/test/sap/m/demokit/sample/ToolbarDesign/Component.js b/src/sap.m/test/sap/m/demokit/sample/ToolbarDesign/Component.js index <HASH>..<HASH> 100644 --- a/src/sap.m/test/sap/m/demokit/sample/ToolbarDesign/Component.js +++ b/src/sap.m/test/sap/m/demokit/sample/ToolbarDesign/Component.js @@ -20,7 +20,...
[INTERNAL][FIX] Control sample check for unlisted sample files: fix openui5 samples (delta) Added hidden files detected by the sample tester so that * The file can be browsed in the demo kit * The downloaded sample contains all files to run it in another environment Change-Id: I4aef4ab6decdb<I>d<I>d3eb<I>de<I>a<I>a
SAP_openui5
train
38e4e2861594b88c3d04b2f1381d4975a3166a7f
diff --git a/lib/chronic/mini_date.rb b/lib/chronic/mini_date.rb index <HASH>..<HASH> 100644 --- a/lib/chronic/mini_date.rb +++ b/lib/chronic/mini_date.rb @@ -26,7 +26,7 @@ module Chronic end def equals?(other) - @month == other.month and day == other.day + @month == other.month and @day == other....
refer directly to ivar in MiniDate
mojombo_chronic
train
081848e8d13850df075e56aab0f08cff7f2613d1
diff --git a/bcbio/variation/freebayes.py b/bcbio/variation/freebayes.py index <HASH>..<HASH> 100644 --- a/bcbio/variation/freebayes.py +++ b/bcbio/variation/freebayes.py @@ -33,7 +33,7 @@ def _freebayes_options_from_config(items, config, out_file, region=None): Checks for empty sets of target regions after filter...
FreeBayes: ensure genotype quality (GQ) always present.
bcbio_bcbio-nextgen
train
f40a16ff445ae730e459bf4eafc85550f083dd31
diff --git a/lib/binding/UserFactory.js b/lib/binding/UserFactory.js index <HASH>..<HASH> 100644 --- a/lib/binding/UserFactory.js +++ b/lib/binding/UserFactory.js @@ -406,7 +406,7 @@ UserFactory.DefaultOptions = { }, }; -['Google', 'Facebook', 'GitHub', 'Twitter', 'LinkedIn'].forEach((name) => { +['Google', 'Face...
feat(Integration changes in Orestes to support SF OAuth)
Baqend_js-sdk
train
fcafd2637871433c04a814e1ad2f22ca682dae49
diff --git a/goodconf/__init__.py b/goodconf/__init__.py index <HASH>..<HASH> 100644 --- a/goodconf/__init__.py +++ b/goodconf/__init__.py @@ -4,6 +4,7 @@ Transparently load variables from environment or JSON/YAML file. import json import logging import os +import sys import errno from io import StringIO from typ...
Add method for django manage.py
lincolnloop_goodconf
train
007ab422e099bba5478fab556e5befe360cb464c
diff --git a/web/concrete/core/controllers/single_pages/dashboard/system/optimization/jobs.php b/web/concrete/core/controllers/single_pages/dashboard/system/optimization/jobs.php index <HASH>..<HASH> 100644 --- a/web/concrete/core/controllers/single_pages/dashboard/system/optimization/jobs.php +++ b/web/concrete/core/c...
Fixed typo in "Job successfully installed" success message Former-commit-id: <I>c6b1f<I>dc5aba8d<I>bc<I>ee<I>
concrete5_concrete5
train
ede943a5ba70e79ab078602f7596693a05ea14cf
diff --git a/cmd/burrow/main.go b/cmd/burrow/main.go index <HASH>..<HASH> 100644 --- a/cmd/burrow/main.go +++ b/cmd/burrow/main.go @@ -229,7 +229,12 @@ func main() { } } - conf.GenesisDoc.ChainName = *chainNameOpt + if *chainNameOpt != ""{ + if conf.GenesisDoc == nil { + fatalf("Unable to se...
Fix panic from ChainName setting in burrow configure when no GenesisDoc is being generated
hyperledger_burrow
train
93752c48982557046fa853e8c3c34125efce7dd0
diff --git a/tinylog-impl/src/test/java/org/tinylog/writers/JdbcWriterTest.java b/tinylog-impl/src/test/java/org/tinylog/writers/JdbcWriterTest.java index <HASH>..<HASH> 100644 --- a/tinylog-impl/src/test/java/org/tinylog/writers/JdbcWriterTest.java +++ b/tinylog-impl/src/test/java/org/tinylog/writers/JdbcWriterTest.ja...
Fix typos and remove never thrown exceptions
pmwmedia_tinylog
train
e8edead020c3d7c87091e9e2c9995d15dcf35135
diff --git a/phono3py/phonon3/displacement_fc3.py b/phono3py/phonon3/displacement_fc3.py index <HASH>..<HASH> 100644 --- a/phono3py/phonon3/displacement_fc3.py +++ b/phono3py/phonon3/displacement_fc3.py @@ -44,36 +44,57 @@ def direction_to_displacement(dataset, 'displacement': disp_cart...
Docstring for get_third_order_displacements
atztogo_phono3py
train
536d0fddc6764abd39079c36d16cdb2650efe35c
diff --git a/.travis.yml b/.travis.yml index <HASH>..<HASH> 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,4 +2,5 @@ language: python python: - "2.6" - "2.7" +install: "pip install mock" script: nosetests diff --git a/ops.py b/ops.py index <HASH>..<HASH> 100644 --- a/ops.py +++ b/ops.py @@ -110,7 +110,7 @@ de...
Test darwin hack Should really convert most/all these tests to use mock
silas_ops
train
3815ccfab6822fc10deb4d155f093568a88d6899
diff --git a/tests/test_cli.py b/tests/test_cli.py index <HASH>..<HASH> 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -34,9 +34,6 @@ TESTFILEDATA=""" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla est dolor, convallis fermentum sapien in, fringilla congue ligula. Fusce at justo ac felis vul...
Change tests to pass argv, after @tusoy fixed #<I> in PR#<I>
havardgulldahl_jottalib
train
bc64f75cdc82426fe15cc238f46585ef42e7be53
diff --git a/protostuff-runtime/src/main/java/io/protostuff/runtime/RuntimeEnv.java b/protostuff-runtime/src/main/java/io/protostuff/runtime/RuntimeEnv.java index <HASH>..<HASH> 100644 --- a/protostuff-runtime/src/main/java/io/protostuff/runtime/RuntimeEnv.java +++ b/protostuff-runtime/src/main/java/io/protostuff/runti...
Allow disabling sun reflection for object instantiation
protostuff_protostuff
train
235c036870c589e0f2b835cfa19d47e9be98bbc5
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( packages=find_packages(), include_package_data=True, - install_requires=['requests', 'PyYAML'], + install_requires=['requests>=2.3.0', 'PyYAML>=3.11'], entry_point...
Being a little bit more specific on the library versions
tagcubeio_tagcube-cli
train
356667f5a4b8ad2f3b55a5ec970e7113cfedf354
diff --git a/arctic/store/bitemporal_store.py b/arctic/store/bitemporal_store.py index <HASH>..<HASH> 100644 --- a/arctic/store/bitemporal_store.py +++ b/arctic/store/bitemporal_store.py @@ -19,11 +19,11 @@ class BitemporalStore(VersionStore): self.observe_column = observe_column self.sample_column = ...
Extra test cases on read as_of
manahl_arctic
train
98bf0aef2ae87515ac660c920fc922fbe1a9d489
diff --git a/src/Aws/Support/Resources/support-2012-12-15.php b/src/Aws/Support/Resources/support-2012-12-15.php index <HASH>..<HASH> 100644 --- a/src/Aws/Support/Resources/support-2012-12-15.php +++ b/src/Aws/Support/Resources/support-2012-12-15.php @@ -928,4 +928,32 @@ return array ( ), ), ...
Added iterators for AWS Support API
aws_aws-sdk-php
train
e395fc454df368ad2c060f7e24cba6ffeaec67b2
diff --git a/src/Lib/ServiceInjector.php b/src/Lib/ServiceInjector.php index <HASH>..<HASH> 100644 --- a/src/Lib/ServiceInjector.php +++ b/src/Lib/ServiceInjector.php @@ -9,6 +9,8 @@ namespace SphereMall\MS\Lib; +use ElasticIndexerResource; +use ElasticIndexerResponseMaker; use SphereMall\MS\Client; use SphereMa...
ElasticSearchResource added to ServiceInjector
SphereMall_PHP-MS-Client
train
538c0562fc2c948e8acfcbeaeeb15fda62d4d9a9
diff --git a/quilt/patchimport.py b/quilt/patchimport.py index <HASH>..<HASH> 100644 --- a/quilt/patchimport.py +++ b/quilt/patchimport.py @@ -23,6 +23,7 @@ import os.path from quilt.command import Command from quilt.db import Db, Series +from quilt.patch import Patch from quilt.utils import Directory, File cla...
Fix the import of patches Use new DB api
bjoernricks_python-quilt
train
952701d1f1d200d0dd5e9f48ef44435c8f27a923
diff --git a/errutil/errors.go b/errutil/errors.go index <HASH>..<HASH> 100644 --- a/errutil/errors.go +++ b/errutil/errors.go @@ -57,12 +57,13 @@ import ( "github.com/pkg/errors" ) -func parentOf(err error) error { - type causer interface { - Cause() error - } +type errorWithCause interface { + Error() string + ...
errorWrapper interface includes Cause() now
git-lfs_git-lfs
train
2c432f78aebdccb8fecdd673e9094e69a999df64
diff --git a/src/core/class-papi-core-property.php b/src/core/class-papi-core-property.php index <HASH>..<HASH> 100644 --- a/src/core/class-papi-core-property.php +++ b/src/core/class-papi-core-property.php @@ -628,6 +628,64 @@ class Papi_Core_Property { } /** + * Load child properties. + * + * @param array ...
Fix so right property from right flexible layout is loaded
wp-papi_papi
train
7dc601b60ce4feefa48cb8d7ddf099eb3b2e2105
diff --git a/source/rafcon/utils/log.py b/source/rafcon/utils/log.py index <HASH>..<HASH> 100644 --- a/source/rafcon/utils/log.py +++ b/source/rafcon/utils/log.py @@ -133,4 +133,34 @@ def get_logger(name): existing_loggers[name] = logger - return logger \ No newline at end of file + return logger + + +# ...
Add decorator for catching and logging exceptions
DLR-RM_RAFCON
train
1fff1474c93dc0fab3e020ae0db52c1b6c1a29fa
diff --git a/lib/watir-webdriver/locators/element_locator.rb b/lib/watir-webdriver/locators/element_locator.rb index <HASH>..<HASH> 100644 --- a/lib/watir-webdriver/locators/element_locator.rb +++ b/lib/watir-webdriver/locators/element_locator.rb @@ -193,9 +193,8 @@ module Watir [:text, what] when :clas...
Add spec for :class_name => :class and data-* attributes.
watir_watir
train
5d93993e8d71f8acac7277a48a19a23483de157e
diff --git a/src/Ardent/Iterator/ArrayIterator.php b/src/Ardent/Iterator/ArrayIterator.php index <HASH>..<HASH> 100644 --- a/src/Ardent/Iterator/ArrayIterator.php +++ b/src/Ardent/Iterator/ArrayIterator.php @@ -4,7 +4,6 @@ namespace Ardent\Iterator; use Ardent\Collection; use Ardent\CollectionIterator; -use Ardent\...
Added optimized count and removed unnecessary use statement.
morrisonlevi_Ardent
train
1168c35eef8b645bc066218aedcf191726608133
diff --git a/lib/helper/WebDriverIO.js b/lib/helper/WebDriverIO.js index <HASH>..<HASH> 100644 --- a/lib/helper/WebDriverIO.js +++ b/lib/helper/WebDriverIO.js @@ -357,7 +357,7 @@ class WebDriverIO extends Helper { } _finishTest() { - if (!this.options.restart) return this._startBrowser(); + if (!this.opti...
fix-<I>: fix WebDriverIO browser opening after tests with option 'restart: false' (#<I>)
Codeception_CodeceptJS
train
78341fb4a88e1543b6d70e88dd3209ee914ed3bf
diff --git a/lib/health_inspector/checklists/cookbooks.rb b/lib/health_inspector/checklists/cookbooks.rb index <HASH>..<HASH> 100644 --- a/lib/health_inspector/checklists/cookbooks.rb +++ b/lib/health_inspector/checklists/cookbooks.rb @@ -98,7 +98,7 @@ module HealthInspector end def server_items - ...
Don't list all versions, we only need the last one
bmarini_knife-inspect
train
ec1aa192825f17afbe4dc12be1e0f2d644d74155
diff --git a/lib/puppet/type/exec.rb b/lib/puppet/type/exec.rb index <HASH>..<HASH> 100755 --- a/lib/puppet/type/exec.rb +++ b/lib/puppet/type/exec.rb @@ -139,7 +139,7 @@ module Puppet newparam(:path) do desc "The search path used for command execution. Commands must be fully qualified if no path i...
(#<I>) Revise new exec tests, add a few more Revised a few of the new tests for the exec type and provider to ensure that they were testing what they meant to, and added in a couple of new tests. Reviewed-by:Daniel Pittman
puppetlabs_puppet
train
f3084250b219abb5fff18b0a77077844c2bd0048
diff --git a/src/inverted/ProtoFactory.js b/src/inverted/ProtoFactory.js index <HASH>..<HASH> 100644 --- a/src/inverted/ProtoFactory.js +++ b/src/inverted/ProtoFactory.js @@ -292,14 +292,14 @@ define("inverted/ProtoFactory", [ "inverted/Util" ], function(Util) { */ ProtoFactory.prototype._checkImplements = f...
Changing interface config to use array of strings instead of comma separated string
philmander_inverted
train
0a15190b858bfe2d2ea7810fdb15af53a0a423c1
diff --git a/src/blocks/scratch3_event.js b/src/blocks/scratch3_event.js index <HASH>..<HASH> 100644 --- a/src/blocks/scratch3_event.js +++ b/src/blocks/scratch3_event.js @@ -56,14 +56,20 @@ class Scratch3EventBlocks { } broadcast (args, util) { - const broadcastOption = Cast.toString(args.BROADCAST_...
Broadcast message functionality (works with creating new messages, and switching back and forth between them as well). This commit includes a temporary workaround for the issue where the default broadcast message, 'message1' wasn't triggering a var_create event (filed in LLK/scratch-blocks#<I>).
LLK_scratch-vm
train
82ee82c5e682d94c36893bb4d7074f018d42ca57
diff --git a/gcloud/datastore/client.py b/gcloud/datastore/client.py index <HASH>..<HASH> 100644 --- a/gcloud/datastore/client.py +++ b/gcloud/datastore/client.py @@ -13,6 +13,7 @@ # limitations under the License. """Convenience wrapper for invoking APIs/factories w/ a dataset ID.""" +from gcloud._helpers import _L...
Remove confusion between 'connection' and '_batch_stack'.
googleapis_google-cloud-python
train
8522d8f29cf1625a0d31dab15428600133fe0dba
diff --git a/bridge/slack/helpers.go b/bridge/slack/helpers.go index <HASH>..<HASH> 100644 --- a/bridge/slack/helpers.go +++ b/bridge/slack/helpers.go @@ -291,6 +291,7 @@ var ( channelRE = regexp.MustCompile(`<#[a-zA-Z0-9]+\|(.+?)>`) variableRE = regexp.MustCompile(`<!((?:subteam\^)?[a-zA-Z0-9]+)(?:\|@...
Fix #<I> strip lang in code fences sent to Slack (#<I>)
42wim_matterbridge
train