hash
stringlengths
40
40
diff
stringlengths
131
26.7k
message
stringlengths
7
694
project
stringlengths
5
67
split
stringclasses
1 value
diff_languages
stringlengths
2
24
1e4fb88d07791e4b6c6673a1487421698c55e80a
diff --git a/src/Di/ClassInspector.php b/src/Di/ClassInspector.php index <HASH>..<HASH> 100644 --- a/src/Di/ClassInspector.php +++ b/src/Di/ClassInspector.php @@ -36,7 +36,7 @@ class ClassInspector if ($method === '__construct') { return $dependencies; } - throw new...
fix bug where MethodNotFoundException was not created correctly
peakphp_framework
train
php
5dd38792a82e1f7bb0579263e8854a8b373371e4
diff --git a/runtime/v2/shim/util_unix.go b/runtime/v2/shim/util_unix.go index <HASH>..<HASH> 100644 --- a/runtime/v2/shim/util_unix.go +++ b/runtime/v2/shim/util_unix.go @@ -30,6 +30,7 @@ import ( "syscall" "time" + "github.com/containerd/containerd/defaults" "github.com/containerd/containerd/namespaces" "gi...
darwin: use the default values for socketRoot variable Since the /run directory on macOS is read-only, darwin containerd should use a different directory. Use the pre-defined default values instead to avoid this issue. Fixes: bd<I>acab ("Use path based unix socket for shims")
containerd_containerd
train
go
4b057f07e18406e0a777d18938cb57f16a73d508
diff --git a/content/article.go b/content/article.go index <HASH>..<HASH> 100644 --- a/content/article.go +++ b/content/article.go @@ -55,7 +55,6 @@ type Article interface { Extract() ArticleExtract } -// TODO: merge with Article type ScoredArticle interface { Article
scores aren't used often enough to justify another join
urandom_readeef
train
go
f52af251937e3e763817499df1136b43ab16c706
diff --git a/lib/sy/quantity.rb b/lib/sy/quantity.rb index <HASH>..<HASH> 100644 --- a/lib/sy/quantity.rb +++ b/lib/sy/quantity.rb @@ -449,7 +449,9 @@ class SY::Quantity ɴλ.call % "Unit" # as for @Magnitude applies.) end end - ...
adapting to y_support/name_magic change
boris-s_sy
train
rb,rb
ab6d18f89cb499f4737fcfde926a4e24c900249e
diff --git a/modelcluster/fields.py b/modelcluster/fields.py index <HASH>..<HASH> 100644 --- a/modelcluster/fields.py +++ b/modelcluster/fields.py @@ -62,7 +62,11 @@ def create_deferring_foreign_related_manager(related, original_manager_cls): try: results = self.instance._cluster_related_o...
Avoid accessing live queryset on unsaved instances In cases where a DeferringRelatedManager was read on an in-memory instance before being written to, it was accessing the real manager on an unsaved instance. This was tolerated up to Django <I>, but it's a hard fail as of <URL>
wagtail_django-modelcluster
train
py
4e63cbe2430c36dc3910cf42471cb0be314b1e2b
diff --git a/spec/public/reloading/directory/app/controllers/reload.rb b/spec/public/reloading/directory/app/controllers/reload.rb index <HASH>..<HASH> 100644 --- a/spec/public/reloading/directory/app/controllers/reload.rb +++ b/spec/public/reloading/directory/app/controllers/reload.rb @@ -1,7 +1,6 @@ - ...
merge hcatlins doc patches, \m/
wycats_merb
train
rb
c0cdc7ebeae31e16eac11c759fdca1f7f12ad252
diff --git a/index.js b/index.js index <HASH>..<HASH> 100755 --- a/index.js +++ b/index.js @@ -773,9 +773,9 @@ FSWatcher.prototype._addToFsEvents = function(file, pathTransform) { _this._readyCount++; _this._addToFsEvents(linkPath, function(path) { var ds = '.'...
Adjust paths of nested symlinks gh-<I>
paulmillr_chokidar
train
js
a7606fb6764bda685654c15cbc7a087e68b17a9a
diff --git a/core/server/master/src/test/java/alluxio/master/AlluxioMasterProcessTest.java b/core/server/master/src/test/java/alluxio/master/AlluxioMasterProcessTest.java index <HASH>..<HASH> 100644 --- a/core/server/master/src/test/java/alluxio/master/AlluxioMasterProcessTest.java +++ b/core/server/master/src/test/jav...
Fix test startStopPrimary failure from time to time Fix test startStopPrimary failure from time to time pr-link: Alluxio/alluxio#<I> change-id: cid-<I>fa<I>be<I>d5f9dd<I>c<I>f<I>d<I>ca<I>b2
Alluxio_alluxio
train
java
07483cda5bd160ba90b5e686eb15a0c82d55209b
diff --git a/src/main/java/org/telegram/botapi/api/internal/chat/updates/RequestUpdatesManager.java b/src/main/java/org/telegram/botapi/api/internal/chat/updates/RequestUpdatesManager.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/telegram/botapi/api/internal/chat/updates/RequestUpdatesManager.java +++ b/src/...
Set updateManager variable before starting update thread.
zackpollard_JavaTelegramBot-API
train
java
44c8746d8cd16fca91d3681f29478785dea0cbbd
diff --git a/defender/test_settings.py b/defender/test_settings.py index <HASH>..<HASH> 100644 --- a/defender/test_settings.py +++ b/defender/test_settings.py @@ -29,6 +29,13 @@ INSTALLED_APPS = [ 'defender', ] +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + ...
Templates settings as recommended from Django <I>
kencochrane_django-defender
train
py,py
36c041615fd03ef142032f87c027715794c0b902
diff --git a/elpy/jedibackend.py b/elpy/jedibackend.py index <HASH>..<HASH> 100644 --- a/elpy/jedibackend.py +++ b/elpy/jedibackend.py @@ -215,6 +215,12 @@ def run_with_debug(jedi, name, *args, **kwargs): # Bug in Python 2.6, see #275 if isinstance(e, OSError) and e.errno == 13: return No...
Catch a SyntaxError from Jedi. This is a workaround for a bug in Jedi. Fixes #<I>.
jorgenschaefer_elpy
train
py,py
8093378d76ccf2ea0bffd0abde526574b4743d57
diff --git a/lib/components/form/default-search-form.js b/lib/components/form/default-search-form.js index <HASH>..<HASH> 100644 --- a/lib/components/form/default-search-form.js +++ b/lib/components/form/default-search-form.js @@ -26,7 +26,7 @@ export default class DefaultSearchForm extends Component { render () {...
fix(form): Update placeholder language in location field to reflect new mouse/tap interaction Refs conveyal/trimet-mod-otp#<I>
opentripplanner_otp-react-redux
train
js
a7e82b8a52c47164b1df22d8f7845e5a479e2d95
diff --git a/src/Record.php b/src/Record.php index <HASH>..<HASH> 100755 --- a/src/Record.php +++ b/src/Record.php @@ -255,6 +255,26 @@ class Record extends Origin implements IteratorAggregate } /** + * Update all data in Record + * + * @param array $public + * @param array $private + * ...
New method update to override all data into record
phpzm_data
train
php
0143305d5cfdef450db8df5d592ba931e6fed905
diff --git a/informationminer/__init__.py b/informationminer/__init__.py index <HASH>..<HASH> 100644 --- a/informationminer/__init__.py +++ b/informationminer/__init__.py @@ -5,4 +5,4 @@ The ClassifierBasedGermanTagger can be used for POS-Tagging on the German langua from .InformationMiner import InformationMiner fro...
Trying to figure out PyPI updates
DeastinY_informationminer
train
py,py
f6799ce847782e9b027f1bd55e777a391188064d
diff --git a/test/net/fortuna/ical4j/model/property/ExDateTest.java b/test/net/fortuna/ical4j/model/property/ExDateTest.java index <HASH>..<HASH> 100644 --- a/test/net/fortuna/ical4j/model/property/ExDateTest.java +++ b/test/net/fortuna/ical4j/model/property/ExDateTest.java @@ -73,6 +73,7 @@ public class ExDateTest ext...
Reset compatibility flags on test completion
ical4j_ical4j
train
java
096ca5ba41251ceddb341cb33fa92ca3d4fd30be
diff --git a/sk/passwords.php b/sk/passwords.php index <HASH>..<HASH> 100644 --- a/sk/passwords.php +++ b/sk/passwords.php @@ -21,6 +21,6 @@ return [ "sent" => "Pripomienka k zmene hesla bola odoslaná!", - "reset" => "Password has been reset!", + "reset" => "Heslo bolo zmenené!", ];
Translated key "reset" to slovak
caouecs_Laravel-lang
train
php
4c7a1d57eef5394b9fc579578217cb7014460c30
diff --git a/src/Message/SecureXMLAbstractRequest.php b/src/Message/SecureXMLAbstractRequest.php index <HASH>..<HASH> 100644 --- a/src/Message/SecureXMLAbstractRequest.php +++ b/src/Message/SecureXMLAbstractRequest.php @@ -65,7 +65,7 @@ abstract class SecureXMLAbstractRequest extends AbstractRequest $xml = new...
Always encode entities in messageID and purchaseOrderNo This fixes an issue where a client submitting a transaction containing a purchaseOrderNo with an ampersand in it resulted in an 'unterminated entity reference' exception. Turns out that in SimpleXML 'addChild' doesn't encode entities however when assigning the v...
thephpleague_omnipay-securepay
train
php
7e9fc9f7051c075a837cb7cbb635b2e838e84f7e
diff --git a/cake/tests/cases/libs/i18n.test.php b/cake/tests/cases/libs/i18n.test.php index <HASH>..<HASH> 100644 --- a/cake/tests/cases/libs/i18n.test.php +++ b/cake/tests/cases/libs/i18n.test.php @@ -2591,7 +2591,9 @@ class I18nTest extends CakeTestCase { function testTimeDefinition() { Configure::write('Conf...
Test case for date format definition using a LC_TIME locale file
cakephp_cakephp
train
php
82c8e0b1487141a39aad7eef1cb59126ca71d233
diff --git a/example.js b/example.js index <HASH>..<HASH> 100644 --- a/example.js +++ b/example.js @@ -2,6 +2,7 @@ var xml = require('xml4node'); var dual = require('./index'); var _ = require('underscore'); +var EventEmitter = require('events').EventEmitter; var exampleHost = function () { @@ -27,7 +28,36 @@ v...
Add an example where hosts are connected by a socket.
plediii_dual-protocol
train
js
161d784232d31bd324f3403c12dafd5d91c18033
diff --git a/jpx/src/main/java/io/jenetics/jpx/GPX.java b/jpx/src/main/java/io/jenetics/jpx/GPX.java index <HASH>..<HASH> 100644 --- a/jpx/src/main/java/io/jenetics/jpx/GPX.java +++ b/jpx/src/main/java/io/jenetics/jpx/GPX.java @@ -1805,7 +1805,6 @@ public final class GPX implements Serializable { } - /** * R...
#<I>: Some code formatting.
jenetics_jpx
train
java
28cb8b9e001b87b85fc4657bc7a3766d250b4099
diff --git a/utils/eslint-config/index.js b/utils/eslint-config/index.js index <HASH>..<HASH> 100644 --- a/utils/eslint-config/index.js +++ b/utils/eslint-config/index.js @@ -4,7 +4,7 @@ * @see http://eslint.org/docs/user-guide/configuring.html */ -/* eslint-disable sort-keys */ +/* eslint-disable @typescript-esl...
Tweak lint rules
WeAreGenki_minna-ui
train
js
6b5b59ee0ed83e9dd4b7dfa95a09d79e5cdc1977
diff --git a/insights/client/__init__.py b/insights/client/__init__.py index <HASH>..<HASH> 100644 --- a/insights/client/__init__.py +++ b/insights/client/__init__.py @@ -535,9 +535,10 @@ def pre_update(): updated = InsightsSchedule().remove_scheduling() if updated: logger.info('Automatic...
Fix disable schedule when registering (#<I>) The `--disable-schedule` flag can now be run alongside `--register` so that the registration will not automatically enable the cron job.
RedHatInsights_insights-core
train
py
46f723f4cc182c4f5316e4249dbe758ad46795e0
diff --git a/lib/navigator/menu.rb b/lib/navigator/menu.rb index <HASH>..<HASH> 100644 --- a/lib/navigator/menu.rb +++ b/lib/navigator/menu.rb @@ -84,9 +84,9 @@ module Navigator end end - def method_missing name, *positionals, **keywords, &block + def method_missing(name, *positionals, **keywords, &...
Refactored implementation to use anonymous block forwarding Necessary to reduce typing and redundant code when we can use the shorthand anonymous block forwarding syntax introduced in Ruby <I>. These changes cause issues to crop up with the Rubocop Style/MethodDefParentheses cop which is why it's being disabled on ce...
bkuhlmann_navigator
train
rb
f6e4c1487323c62ffb4d9eaeabcf343b31342b38
diff --git a/restclients_core/util/mock.py b/restclients_core/util/mock.py index <HASH>..<HASH> 100644 --- a/restclients_core/util/mock.py +++ b/restclients_core/util/mock.py @@ -175,4 +175,4 @@ def attempt_open_query_permutations(url, orig_file_path, is_header_file): def _compare_file_name(orig_file_path, directory...
Switching both sides of file comparison to unquoted
uw-it-aca_uw-restclients-core
train
py
8b5cb46006b2f28b6bac39802bb25d29f34d9efe
diff --git a/lib/anycable/rails/action_cable_ext/channel.rb b/lib/anycable/rails/action_cable_ext/channel.rb index <HASH>..<HASH> 100644 --- a/lib/anycable/rails/action_cable_ext/channel.rb +++ b/lib/anycable/rails/action_cable_ext/channel.rb @@ -3,13 +3,15 @@ require "action_cable/channel" ActionCable::Channel::Ba...
fix: do not change signatures in the channel patch
anycable_anycable-rails
train
rb
67eddd8101823bf97e2ed08d571cf6c13c675b25
diff --git a/core/editor.js b/core/editor.js index <HASH>..<HASH> 100644 --- a/core/editor.js +++ b/core/editor.js @@ -281,6 +281,10 @@ function convertHTML(blot, index, length, isRoot = false) { } const { outerHTML, innerHTML } = blot.domNode; const [start, end] = outerHTML.split(`>${innerHTML}<`); + ...
workaround for copying table into other app
quilljs_quill
train
js
c1baf8225c77d7880a34a384e277a643fa050b52
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ # python-quilt - A Python implementation of the quilt patch system # -# Copyright (C) 2012 Björn Ricks <bjoern.ricks@googlemail.com> +# Copyright (C) 2012, 2017 Björn Ricks <bjoern.ricks@gmail.com> # # Thi...
Use setuptools instead of distutils setuptools are the standard to install python packages now.
bjoernricks_python-quilt
train
py
0990363806c374b5c59df9b9f095364eff76f3e3
diff --git a/kibitzr/transformer/factory.py b/kibitzr/transformer/factory.py index <HASH>..<HASH> 100644 --- a/kibitzr/transformer/factory.py +++ b/kibitzr/transformer/factory.py @@ -47,7 +47,9 @@ class TransformPipeline(object): if ok: ok, content = transform(content) else: -...
Fixed error reporting policy when no transforms defined
kibitzr_kibitzr
train
py,py
c244de3ab63aa58dc08da3b061918efbb9e2d5ab
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,6 @@ setup( author_email="tjelvar.olsson@jic.ac.uk", url=url, install_requires=[ - "click", "dtoolcore>=2.4.0", ], entry_points={
Remove click requirment from setup.py
jic-dtool_dtool-symlink
train
py
64f69dae699553e7d4371b5573fd792c345c64d5
diff --git a/aiocqhttp/__init__.py b/aiocqhttp/__init__.py index <HASH>..<HASH> 100644 --- a/aiocqhttp/__init__.py +++ b/aiocqhttp/__init__.py @@ -183,6 +183,9 @@ class CQHttp: def run(self, host=None, port=None, *args, **kwargs): self._server_app.run(host=host, port=port, *args, **kwargs) + async de...
Add proxy for "call_action" method in CQHttp
richardchien_python-aiocqhttp
train
py
ce96d1e15be28ad1a81b4c46540bd3142c21b727
diff --git a/Form/Type/SecurityRolesType.php b/Form/Type/SecurityRolesType.php index <HASH>..<HASH> 100644 --- a/Form/Type/SecurityRolesType.php +++ b/Form/Type/SecurityRolesType.php @@ -57,7 +57,7 @@ class SecurityRolesType extends AbstractType }); // POST METHOD - $formBuilder->addEventList...
Fix deprecated FormEvents::PRE_BIND usage
sonata-project_SonataUserBundle
train
php
0f93d6839e5ba984290c898199d9e1c4de0da4dd
diff --git a/lib/wiselinks/rendering.rb b/lib/wiselinks/rendering.rb index <HASH>..<HASH> 100644 --- a/lib/wiselinks/rendering.rb +++ b/lib/wiselinks/rendering.rb @@ -7,7 +7,9 @@ module Wiselinks protected - def render_with_wiselinks(options = {}, *args, &block) + def render_with_wiselinks(*args) ...
#4 undefined method for :check:Symbol
igor-alexandrov_wiselinks
train
rb
60d802d43db94df6b1da042677fe79771accbb1d
diff --git a/pylibdmtx/pylibdmtx.py b/pylibdmtx/pylibdmtx.py index <HASH>..<HASH> 100644 --- a/pylibdmtx/pylibdmtx.py +++ b/pylibdmtx/pylibdmtx.py @@ -195,7 +195,12 @@ def decode(image, timeout=None, gap_size=None, shrink=1, shape=None, elif 'numpy.ndarray' in str(type(image)): if 'uint8' != str(image.dty...
[#9] Reinstate numpy version check
NaturalHistoryMuseum_pylibdmtx
train
py
0b29048625d464625f81bb0b3eb5b32d67c2399f
diff --git a/lib/dpl/ctx/bash.rb b/lib/dpl/ctx/bash.rb index <HASH>..<HASH> 100644 --- a/lib/dpl/ctx/bash.rb +++ b/lib/dpl/ctx/bash.rb @@ -410,9 +410,9 @@ module Dpl `git log #{git_sha} -n 1 --pretty=%ae`.chomp end - # Whether or not the git working directory is dirty + # Whether or not the ...
do not skip if new or only deleted files are present
travis-ci_dpl
train
rb
ab06b12e57f07a6984bd30cd4c32b6c7b1a081a9
diff --git a/gutenberg/gutenberg.py b/gutenberg/gutenberg.py index <HASH>..<HASH> 100644 --- a/gutenberg/gutenberg.py +++ b/gutenberg/gutenberg.py @@ -192,32 +192,3 @@ class EText(ORM_BASE): title=self.title, path=self.path, )) - - -def _main(): - """This fu...
Remove CLI functionality - use as module only
c-w_gutenberg
train
py
59fb3a74a5971b0ebe891f9e4fa2ea1c0c5ab539
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,7 @@ -from pip.req import parse_requirements +try: # for pip >= 10 + from pip._internal.req import parse_requirements +except ImportError: # for pip <= 9.0.3 + from pip.req import parse_requirements from setup...
pip <I> support.
socialwifi_sqlalchemy-postgres-autocommit
train
py
0c9dc6f895b1df857eb249ed49ba7344b7176c24
diff --git a/src/decorators/on.js b/src/decorators/on.js index <HASH>..<HASH> 100644 --- a/src/decorators/on.js +++ b/src/decorators/on.js @@ -38,10 +38,12 @@ export default function on(eventDomain) { let eventHandler = Eventhandler.create({ events: domNode.$appDecorators.on.events, element: domNode, + ...
Bugfix: it was not a good idea to use the shortform of object assigning, see {n}th pre commit
SerkanSipahi_app-decorators
train
js,js
6b6bd37924b6bb1a64a562d1340cacc62bcdcf84
diff --git a/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/RunCommand.java b/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/RunCommand.java index <HASH>..<HASH> 100644 --- a/spring-boot-cli/src/main/java/org/springframework/boot/cli/command/RunCommand.java +++ b/spring-boot-cli/...
Add hint to user about 'stop' command Improves gh-<I>
spring-projects_spring-boot
train
java
6112c43cae8818ef7971422d46a930d4eed0528f
diff --git a/test/rngout/main.go b/test/rngout/main.go index <HASH>..<HASH> 100644 --- a/test/rngout/main.go +++ b/test/rngout/main.go @@ -23,12 +23,12 @@ package main import ( "bufio" - "github.com/skarllot/raiqub" + "github.com/skarllot/raiqub/crypt" "os" ) func main() { - rng := raiqub.NewRandom() + rng :...
Fixed rngout test to match last changes
skarllot_raiqub
train
go
f9643bf7376a5953da2050a5361c9b465f7ee7d9
diff --git a/telethon/client/downloads.py b/telethon/client/downloads.py index <HASH>..<HASH> 100644 --- a/telethon/client/downloads.py +++ b/telethon/client/downloads.py @@ -962,7 +962,7 @@ class DownloadMethods: f = file try: - with aiohttp.ClientSession() as session: + a...
Add missing async when downloading from URL (#<I>)
LonamiWebs_Telethon
train
py
ec495bfcec4eac2f9013b4b842df5bec2dcc4200
diff --git a/src/ol/Geolocation.js b/src/ol/Geolocation.js index <HASH>..<HASH> 100644 --- a/src/ol/Geolocation.js +++ b/src/ol/Geolocation.js @@ -1,7 +1,6 @@ /** * @module ol/Geolocation */ -import {inherits} from './util.js'; import GeolocationProperty from './GeolocationProperty.js'; import BaseObject, {getCh...
Use extends and super for Geolocation
openlayers_openlayers
train
js
97600cae61a610e4fbd0549f81905078d05786cf
diff --git a/src/Norm/Filter/Filter.php b/src/Norm/Filter/Filter.php index <HASH>..<HASH> 100644 --- a/src/Norm/Filter/Filter.php +++ b/src/Norm/Filter/Filter.php @@ -157,7 +157,8 @@ class Filter $innerMethodName = 'filter'.strtoupper($method[0]).substr($method, 1); ...
fixed empty post submission caused error for Filter
xinix-technology_norm
train
php
d7d82fbbee6646c352c73f0607f152f2cf4fcc8f
diff --git a/multi_form_view/base.py b/multi_form_view/base.py index <HASH>..<HASH> 100644 --- a/multi_form_view/base.py +++ b/multi_form_view/base.py @@ -2,7 +2,6 @@ Django class based views for using more than one Form or ModelForm in a single view. """ from django.http import HttpResponseRedirect -from django.sho...
prefer render_to_response over render Matches FormView --> ProcessFormView implementation and allows other rendering implementations
TimBest_django-multi-form-view
train
py
9b9d1eda4a287c59eba6a3f4ac5585966702a795
diff --git a/src/Illuminate/Support/ViewErrorBag.php b/src/Illuminate/Support/ViewErrorBag.php index <HASH>..<HASH> 100644 --- a/src/Illuminate/Support/ViewErrorBag.php +++ b/src/Illuminate/Support/ViewErrorBag.php @@ -10,6 +10,17 @@ class ViewErrorBag implements Countable { * @var array */ protected $bags = []...
Add method hasBag to ViewErrorBag When redirecting withErrors($validator) the edit form can show individual messages. But to show a generic message, something like: please check the red marked field below I don't know anything else but to flash a extra variable. This method would remedy that. Now I could check: $error...
laravel_framework
train
php
5bb6c51698fbdb6e93fbe36bef648165db87f2b9
diff --git a/gns3server/compute/docker/docker_vm.py b/gns3server/compute/docker/docker_vm.py index <HASH>..<HASH> 100644 --- a/gns3server/compute/docker/docker_vm.py +++ b/gns3server/compute/docker/docker_vm.py @@ -361,7 +361,7 @@ class DockerVM(BaseNode): try: yield from s...
Fix an error when logging Docker container fail to start
GNS3_gns3-server
train
py
66584f94fe4f26f4c34f5b829e5ea30c061e7db4
diff --git a/src/Drivers/JsonDriver.php b/src/Drivers/JsonDriver.php index <HASH>..<HASH> 100644 --- a/src/Drivers/JsonDriver.php +++ b/src/Drivers/JsonDriver.php @@ -18,7 +18,7 @@ class JsonDriver implements Driver throw new CantBeSerialized('Resources can not be serialized to json'); } - ...
Fix inconsistent EOLs in JSON snapshots on Windows It replaces OS dependent `PHP_EOL` with `\n`. `json_encode` with `JSON_PRETTY_PRINT` flag always use `\n` regardless of OS, but `PHP_EOL` yields `\r\n` on Windows causing inconsistent line ends and unnecessary diff for git, if files are regenerated.
spatie_phpunit-snapshot-assertions
train
php
01cb6f277a6e2e5fe24a7c6665e5107ebdd6073a
diff --git a/openquake/hazardlib/lt.py b/openquake/hazardlib/lt.py index <HASH>..<HASH> 100644 --- a/openquake/hazardlib/lt.py +++ b/openquake/hazardlib/lt.py @@ -773,15 +773,13 @@ class CompositeLogicTree(object): """ def __init__(self, branchsets): self.branchsets = branchsets - self.shorten...
Added .short_id
gem_oq-engine
train
py
39cb8af11529c66147f95d972f4e4ca6309d8395
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index <HASH>..<HASH> 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,5 +1,5 @@ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) -require 'acme_client' +require 'acme-client' require 'rspec' require 'vcr' @@ -9,6 +9,9 @@ require 'webr...
Try again when failing to generate RSA key
unixcharles_acme-client
train
rb
4a269299b2bcb5a3aac9d73c42097a14e7a54db8
diff --git a/Resources/public/js/MMMediaBundle.js b/Resources/public/js/MMMediaBundle.js index <HASH>..<HASH> 100644 --- a/Resources/public/js/MMMediaBundle.js +++ b/Resources/public/js/MMMediaBundle.js @@ -275,10 +275,7 @@ function MMMediaBundleFileDropzoneInitiateEvents() { } -/** - * Start loading the dom is rd...
Callback event moved into a separate function -> MMMediaBundleInit
Mandarin-Medien_MMMediaBundle
train
js
15e58b9d47da8bffae1552079fa1b497a8866845
diff --git a/src/engine/engine-state.js b/src/engine/engine-state.js index <HASH>..<HASH> 100644 --- a/src/engine/engine-state.js +++ b/src/engine/engine-state.js @@ -231,7 +231,7 @@ export class EngineState { let i = 0 const servers = this.pluginState - .sortStratumServers(this.io.Socket !== null, thi...
Do not crash when TLS is unavailable
EdgeApp_edge-currency-bitcoin
train
js
320a5cb18f864b18ae7ca74a9cd0bf0a7efc023e
diff --git a/nomad/structs/diff.go b/nomad/structs/diff.go index <HASH>..<HASH> 100644 --- a/nomad/structs/diff.go +++ b/nomad/structs/diff.go @@ -79,10 +79,6 @@ func (j *Job) Diff(other *Job, contextual bool) (*JobDiff, error) { oldPrimitiveFlat = flatmap.Flatten(j, filter, true) diff.ID = j.ID } else { - if ...
Fix determining whether a job is edited
hashicorp_nomad
train
go
d4964bf394d189912c1ccf736890c457a302a13a
diff --git a/app/assets/javascripts/thin_man.js b/app/assets/javascripts/thin_man.js index <HASH>..<HASH> 100644 --- a/app/assets/javascripts/thin_man.js +++ b/app/assets/javascripts/thin_man.js @@ -130,6 +130,10 @@ var initThinMan = function(){ $(this.emptyOnSuccess()).empty(); } } + ...
remove error class and inline-help after successful response
edraut_thin-man
train
js,rb
870384671749cf208dc15eb72a7472fcd107a889
diff --git a/lib/dm-core/adapters/data_objects_adapter.rb b/lib/dm-core/adapters/data_objects_adapter.rb index <HASH>..<HASH> 100644 --- a/lib/dm-core/adapters/data_objects_adapter.rb +++ b/lib/dm-core/adapters/data_objects_adapter.rb @@ -551,7 +551,7 @@ module DataMapper Query::Conditions::Comparison.ne...
Condition statement construction should be controlled by conditions_statement
datamapper_dm-core
train
rb
5aff71f1dbdf7d155aa2b0696d93d9e40902432a
diff --git a/js/tests/unit/wee.dom.js b/js/tests/unit/wee.dom.js index <HASH>..<HASH> 100644 --- a/js/tests/unit/wee.dom.js +++ b/js/tests/unit/wee.dom.js @@ -304,6 +304,10 @@ define(function(require) { 'Closest element was not identified' ); + assert.strictEqual(Wee.$closest('#inner', '#inner').length, 1,...
Add test to $closest method
weepower_wee-core
train
js
ee50f8993047c9dc4c1e38a63e73c9cc4e8088f3
diff --git a/CmsManager/CmsSnapshotManager.php b/CmsManager/CmsSnapshotManager.php index <HASH>..<HASH> 100644 --- a/CmsManager/CmsSnapshotManager.php +++ b/CmsManager/CmsSnapshotManager.php @@ -11,7 +11,6 @@ namespace Sonata\PageBundle\CmsManager; -use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;...
Remove <I> from the CmsSnapshotManager
sonata-project_SonataPageBundle
train
php
ebaf80ea29b88e10b257fc1096c2c6d604dad0c0
diff --git a/gunicorn_console.py b/gunicorn_console.py index <HASH>..<HASH> 100755 --- a/gunicorn_console.py +++ b/gunicorn_console.py @@ -125,19 +125,23 @@ def handle_keypress(screen): move_selection(reverse=True) elif key in ("A", "+"): send_signal("TTIN") - gunicorns[selected_pid]["work...
Add more "no gunicorn selected" protection. Trying a command before cursoring into a selection was aborting.
stephenmcd_gunicorn-console
train
py
0149108a94d369810c667e1d50853c3a2256afba
diff --git a/component-1-util-1-object.js b/component-1-util-1-object.js index <HASH>..<HASH> 100644 --- a/component-1-util-1-object.js +++ b/component-1-util-1-object.js @@ -161,7 +161,7 @@ _cs.clone = function (source, continue_recursion) { /* helper functions */ var myself = arguments.callee; var cl...
function clones occur in stack traces, so give the function clone a ComponentJS-indicating name
rse_componentjs
train
js
18e3b7cdd9f409de0701d3f254d3c3593c3fe2dc
diff --git a/src/utils.js b/src/utils.js index <HASH>..<HASH> 100644 --- a/src/utils.js +++ b/src/utils.js @@ -23,8 +23,8 @@ exports.serverFromURL = function(url) { parts.host = parts.host.split(':'); sagRes = exports.server( - parts.host.shift(), - parts.host.shift() || (useSSL) ? 443 : 80, + p...
Fixing ternary in c5a<I>f0ba0dc<I>cf<I>cd<I>bd4dd<I>ed3b (#<I>)
sbisbee_sag-js
train
js
5a9a00e7ae968104c26eee501f9ec966c11ce617
diff --git a/telethon/client/telegrambaseclient.py b/telethon/client/telegrambaseclient.py index <HASH>..<HASH> 100644 --- a/telethon/client/telegrambaseclient.py +++ b/telethon/client/telegrambaseclient.py @@ -433,6 +433,9 @@ class TelegramBaseClient(abc.ABC): if not sender: sender = awai...
Assume exported auths last forever This implies that export senders will NOT be deleted from memory once all borrows are returned, thus their auth_key remains as well. When borrowing them if they existed they will be connect()ed if it's the first borrow. This probably fixes #<I>.
LonamiWebs_Telethon
train
py
5768a1fe5e17f036a9c2f48afd91753e2ab6668d
diff --git a/superset/assets/javascripts/dashboard/reducers.js b/superset/assets/javascripts/dashboard/reducers.js index <HASH>..<HASH> 100644 --- a/superset/assets/javascripts/dashboard/reducers.js +++ b/superset/assets/javascripts/dashboard/reducers.js @@ -39,16 +39,21 @@ export function getInitialState(bootstrapData...
for <I> columns layout, adjust default size and layout for newly added slices (#<I>)
apache_incubator-superset
train
js
53768c5cde7b002d42eb1151c21a662159463072
diff --git a/cereslib/_version.py b/cereslib/_version.py index <HASH>..<HASH> 100644 --- a/cereslib/_version.py +++ b/cereslib/_version.py @@ -1,2 +1,2 @@ # Versions compliant with PEP 440 https://www.python.org/dev/peps/pep-0440 -__version__ = "0.1.13" +__version__ = "0.1.14"
Update version number to <I>
chaoss_grimoirelab-cereslib
train
py
367f509303619e2ce25a76875a4bb9f459592e8c
diff --git a/lib/chore/queues/filesystem/publisher.rb b/lib/chore/queues/filesystem/publisher.rb index <HASH>..<HASH> 100644 --- a/lib/chore/queues/filesystem/publisher.rb +++ b/lib/chore/queues/filesystem/publisher.rb @@ -25,12 +25,11 @@ module Chore begin f.write(job.to_json) ...
Remove ambiguous control-flow in error handling The 'break' in the ensure block actually aborts the bubbling of errors to higher level code. So even though we don't explicitly catch errors, they are still swallowed.
Tapjoy_chore
train
rb
d2a4b8661b2362c0ea5e4f47ccfa64077eeb54de
diff --git a/src/ZfcUser/Controller/UserController.php b/src/ZfcUser/Controller/UserController.php index <HASH>..<HASH> 100644 --- a/src/ZfcUser/Controller/UserController.php +++ b/src/ZfcUser/Controller/UserController.php @@ -156,7 +156,11 @@ class UserController extends AbstractActionController // redire...
Update src/ZfcUser/Controller/UserController.php The view was only place where was checked if registration was disabled. Sending post data would still register new user.
ZF-Commons_ZfcUser
train
php
6761ae32012132d07d38f38a82a88cc8abb7fc6b
diff --git a/output/html/languages.php b/output/html/languages.php index <HASH>..<HASH> 100644 --- a/output/html/languages.php +++ b/output/html/languages.php @@ -77,7 +77,11 @@ class QM_Output_Html_Languages extends QM_Output_Html { echo '<td class="qm-ltr">'; if ( $mofile['file'] ) { - echo esc_html( ...
Allow JED translation file paths to be clickable.
johnbillion_query-monitor
train
php
31aaca6b8cf67af269cae1e728bed4480f9be390
diff --git a/tests/src/test/java/alluxio/master/file/FileSystemMasterIntegrationTest.java b/tests/src/test/java/alluxio/master/file/FileSystemMasterIntegrationTest.java index <HASH>..<HASH> 100644 --- a/tests/src/test/java/alluxio/master/file/FileSystemMasterIntegrationTest.java +++ b/tests/src/test/java/alluxio/master...
[SMALLFIX] Add comments in ConcurrentFree test.
Alluxio_alluxio
train
java
7f9a6a58b99c97235fb4b22c8e2ca51e65b1f399
diff --git a/HISTORY.rst b/HISTORY.rst index <HASH>..<HASH> 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ History ------- +0.5.2 (2015-10-22) +------------------ + +* added `management` to `MANIFEST.in` + 0.5.1 (2015-10-22) ------------------ diff --git a/liquimigrate/__init__.py b/liquimigrate/__...
Bumped version to <I>
onjin_liquimigrate
train
rst,py,py
f729e4091af0e755fbf06e6ac80942abee662daf
diff --git a/lib/cocoapods-deploy/deploy_transformer.rb b/lib/cocoapods-deploy/deploy_transformer.rb index <HASH>..<HASH> 100644 --- a/lib/cocoapods-deploy/deploy_transformer.rb +++ b/lib/cocoapods-deploy/deploy_transformer.rb @@ -3,10 +3,12 @@ module Pod attr_accessor :lockfile attr_accessor :sandbox + ...
Compatibility with the new CocoaPods Spec layout
jcampbell05_cocoapods-deploy
train
rb
02a9b4c3f447c06ac41775b969c605e097c636b3
diff --git a/gcsio/src/test/java/com/google/cloud/hadoop/gcsio/GoogleCloudStorageFileSystemIntegrationTest.java b/gcsio/src/test/java/com/google/cloud/hadoop/gcsio/GoogleCloudStorageFileSystemIntegrationTest.java index <HASH>..<HASH> 100644 --- a/gcsio/src/test/java/com/google/cloud/hadoop/gcsio/GoogleCloudStorageFileS...
Fix test flakiness. Failed test example: []
GoogleCloudPlatform_bigdata-interop
train
java
ddb29609b1dcbd35a030cb1d2f42cffbef0be0ab
diff --git a/lib/wupee/notifier.rb b/lib/wupee/notifier.rb index <HASH>..<HASH> 100644 --- a/lib/wupee/notifier.rb +++ b/lib/wupee/notifier.rb @@ -77,16 +77,22 @@ module Wupee end end + notifications = [] + notif_type_configs.each do |notif_type_config| notification = Wupee::Notif...
Wupee::Notifier#execute method now returns an array of sent notifications
sleede_wupee
train
rb
5a997c1b0dfe7e6b99f6ddeb74f9144b69e24a3a
diff --git a/dev/io.openliberty.concurrent.cdi/src/io/openliberty/concurrent/cdi/interceptor/AsyncInterceptor.java b/dev/io.openliberty.concurrent.cdi/src/io/openliberty/concurrent/cdi/interceptor/AsyncInterceptor.java index <HASH>..<HASH> 100644 --- a/dev/io.openliberty.concurrent.cdi/src/io/openliberty/concurrent/cdi...
Void.class is different from void
OpenLiberty_open-liberty
train
java
bcce6ccad25a94ab61d69486f671192b9db9859c
diff --git a/chess/pgn.py b/chess/pgn.py index <HASH>..<HASH> 100644 --- a/chess/pgn.py +++ b/chess/pgn.py @@ -1597,7 +1597,10 @@ def read_game(handle: TextIO, *, Visitor: Any = GameBuilder) -> Any: board.pop() board_stack.append(board) elif token == ")": -...
Call matching end_variation while skipping (#<I>)
niklasf_python-chess
train
py
e4f5de5278857ad57ed06cd45a99ca9e40790990
diff --git a/src/frontend/org/voltdb/VoltZK.java b/src/frontend/org/voltdb/VoltZK.java index <HASH>..<HASH> 100644 --- a/src/frontend/org/voltdb/VoltZK.java +++ b/src/frontend/org/voltdb/VoltZK.java @@ -56,7 +56,7 @@ public class VoltZK { /* * Processes that want to block catalog updates create children here...
For ENG-<I>, fix a misnamed ZK path
VoltDB_voltdb
train
java
0d7182f8bd64a194e7aace094b11c8390ee2d5ce
diff --git a/test/e2e/apps/job.go b/test/e2e/apps/job.go index <HASH>..<HASH> 100644 --- a/test/e2e/apps/job.go +++ b/test/e2e/apps/job.go @@ -181,7 +181,7 @@ var _ = SIGDescribe("Job", func() { Expect(err).NotTo(HaveOccurred()) By("Ensuring job exceed backofflimit") - err = framework.WaitForJobFailure(f.Clien...
Fix e2e Flaky Apps/Job BackoffLimit test This fix is linked to the PR #<I> that introduce the JobSpec.BackoffLimit. Previously the Timeout used in the test was too agressive and generates flaky test execution. Now it used the default framework.JobTimeout used in others tests.
kubernetes_kubernetes
train
go
4927df59a5bc76df3e5cb9fe10cc24bdd485e5bd
diff --git a/qbit/core/src/main/java/io/advantageous/qbit/service/impl/CallbackManagerWithTimeout.java b/qbit/core/src/main/java/io/advantageous/qbit/service/impl/CallbackManagerWithTimeout.java index <HASH>..<HASH> 100644 --- a/qbit/core/src/main/java/io/advantageous/qbit/service/impl/CallbackManagerWithTimeout.java +...
fixing auto-checkin and adding debugging for callback handler
advantageous_qbit
train
java
75bf3a771d8be4958328b43af7695f9e095d154f
diff --git a/lib/steam/packets/A2A_INFO_ResponsePacket.php b/lib/steam/packets/A2A_INFO_ResponsePacket.php index <HASH>..<HASH> 100644 --- a/lib/steam/packets/A2A_INFO_ResponsePacket.php +++ b/lib/steam/packets/A2A_INFO_ResponsePacket.php @@ -47,8 +47,8 @@ class A2A_INFO_ResponsePacket extends SteamPacket $this->bot...
* (PHP) Changed A2A_INFO response to store boolean values of passwordProtected and secure * (PHP) Fixed typo in A2A_INFO_ResponsePacket * (Java) Removed ipAddress and portNumber from SourceServer * (Ruby) Fixed some file properties
koraktor_steam-condenser-php
train
php
678e9123660986cb069ebfaace5be24d8a7590c0
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -8,6 +8,9 @@ var EventEmitter = require('eventemitter3'); // some validation routines var checkCandidate = require('rtc-validator/candidate'); +// the sdp cleaner +var sdpclean = require('rtc-sdpclean'); + var PRIORITY_LO...
Ensure generated sdp is valid before setting local description
rtc-io_rtc-taskqueue
train
js
85dfa745b6c2895d968409780c650e783328899f
diff --git a/satpy/modifiers/geometry.py b/satpy/modifiers/geometry.py index <HASH>..<HASH> 100644 --- a/satpy/modifiers/geometry.py +++ b/satpy/modifiers/geometry.py @@ -17,6 +17,8 @@ # satpy. If not, see <http://www.gnu.org/licenses/>. """Modifier classes for corrections based on sun and other angles.""" +from _...
Refactor SZA and cos(SZA) generation to reduce duplicate computations
pytroll_satpy
train
py
e9c03f355ed5859ddc1002653c3425b7a0f9f0f2
diff --git a/lib/pdk/cli/exec/interactive_command.rb b/lib/pdk/cli/exec/interactive_command.rb index <HASH>..<HASH> 100644 --- a/lib/pdk/cli/exec/interactive_command.rb +++ b/lib/pdk/cli/exec/interactive_command.rb @@ -1,4 +1,4 @@ -require 'pdk/cli/exec/command' +require 'pdk' module PDK module CLI
(maint) Ensure pdk/cli/exec/interactive_command works standalone
puppetlabs_pdk
train
rb
7561c4c2326f9c0a1ece372fdb4ae9cd458a7e93
diff --git a/GPy/core/parameterised.py b/GPy/core/parameterised.py index <HASH>..<HASH> 100644 --- a/GPy/core/parameterised.py +++ b/GPy/core/parameterised.py @@ -191,8 +191,8 @@ class parameterised(object): self.constrain(which, transformations.logistic(lower, upper)) def all_constrained_indices(self):...
fixed a bug in all_constrained_indices
SheffieldML_GPy
train
py
89a18a3c3a237dbfd21c6968fd7dc27cdff5aedc
diff --git a/Slim/Http/Stream.php b/Slim/Http/Stream.php index <HASH>..<HASH> 100644 --- a/Slim/Http/Stream.php +++ b/Slim/Http/Stream.php @@ -317,7 +317,7 @@ class Stream implements StreamInterface $this->seekable = false; if ($this->isAttached()) { $meta = $this->getMetadata...
gh-<I> removed check for isPipe from Stream::isSeekable
slimphp_Slim
train
php
d37dac9c06113e2461bf2038fe0dfb5d35e54040
diff --git a/imgaug/augmenters/blend.py b/imgaug/augmenters/blend.py index <HASH>..<HASH> 100644 --- a/imgaug/augmenters/blend.py +++ b/imgaug/augmenters/blend.py @@ -387,6 +387,18 @@ class Alpha(meta.Augmenter): # pylint: disable=locally-disabled, unused-variabl keypoints_on_images, random_state, parents...
Add polygon augmentation method to Alpha
aleju_imgaug
train
py
2a642b22722ba1e1cdd35710b63fe6ab53307a74
diff --git a/scripts/npm-release.js b/scripts/npm-release.js index <HASH>..<HASH> 100644 --- a/scripts/npm-release.js +++ b/scripts/npm-release.js @@ -148,7 +148,7 @@ const waitOnTests = async (names, packageInfo) => { console.log(`\nWaiting on the following CI jobs: ${jobs.join(', ')}`) return Promise.all(jobs...
chore: adding bluebird promise to release script (#<I>)
cypress-io_cypress
train
js
bace01c04796eb25d80f50000f4243a40a48b90f
diff --git a/plugins/udp/src/main/java/kg/apc/jmeter/samplers/DNSJavaTCPClientImpl.java b/plugins/udp/src/main/java/kg/apc/jmeter/samplers/DNSJavaTCPClientImpl.java index <HASH>..<HASH> 100644 --- a/plugins/udp/src/main/java/kg/apc/jmeter/samplers/DNSJavaTCPClientImpl.java +++ b/plugins/udp/src/main/java/kg/apc/jmeter/...
Add read method for Jmeter-<I> TCPClient signature (#<I>) * Add read method for Jmeter-<I> TCPClient signature * Fix missing semi-colon.
undera_jmeter-plugins
train
java
32bd20d40878e3979f8236a72ca7035f50285cfd
diff --git a/amibaker/ami_baker.py b/amibaker/ami_baker.py index <HASH>..<HASH> 100644 --- a/amibaker/ami_baker.py +++ b/amibaker/ami_baker.py @@ -18,7 +18,7 @@ class AmiBaker(object): ec2 = AmiEc2(quiet=self.__quiet, recipe=self.__recipe) if self._instance_id: - ec2.grab_existing_instanc...
Renamed method name to match others
hamidnazari_amibaker
train
py,py
479398f555c667cf24e77fd87632e27dcb9ba932
diff --git a/dev_tools/modules.py b/dev_tools/modules.py index <HASH>..<HASH> 100644 --- a/dev_tools/modules.py +++ b/dev_tools/modules.py @@ -303,6 +303,9 @@ def parse(args): def main(argv: List[str]): + if argv == []: + # If no arguments are given, print the help/usage info. + argv = ['--help'] ...
Fix <I>: prevent confusing error if `dev_tools/modules.py` is invoked without arguments (#<I>) This PR changes `main` in `dev_tools/modules.py` in a very simple way: if the user invokes it without any arguments, it pretends that `--help` was given as the argument instead. This prevents the error described in issue #<I...
quantumlib_Cirq
train
py
ae02e7d62d2fc0e0fa33bfa6646c3356831705d5
diff --git a/lib/config.js b/lib/config.js index <HASH>..<HASH> 100644 --- a/lib/config.js +++ b/lib/config.js @@ -78,7 +78,7 @@ var init = function() { } fs.writeFileSync(g_configPath, JSON.stringify({ installDir: path.resolve(path.normalize(path.join(__dirname, ".."))), - gamesDir: path.resolve(...
move default games dir to the config folder
greggman_HappyFunTimes
train
js
306e5b61e74d9130b3d82a16805287723235e792
diff --git a/router_test.go b/router_test.go index <HASH>..<HASH> 100644 --- a/router_test.go +++ b/router_test.go @@ -319,12 +319,7 @@ func Test_buildRouteName(t *testing.T) { func Test_CatchAll_Route(t *testing.T) { r := require.New(t) - rr := render.New(render.Options{ - // HTMLLayout: "application.html", ...
cleaning out test to use only what it needs
gobuffalo_buffalo
train
go
d63bee8bc345171db74a77782f295e325926f3e3
diff --git a/zone.go b/zone.go index <HASH>..<HASH> 100644 --- a/zone.go +++ b/zone.go @@ -577,8 +577,15 @@ func (api *API) PurgeEverything(zoneID string) (PurgeCacheResponse, error) { // // API reference: https://api.cloudflare.com/#zone-purge-individual-files-by-url-and-cache-tags func (api *API) PurgeCache(zoneID...
feat(zones): Add PurgeCacheContext method (#<I>) Support context for purging cache. Adds a *Context method as suggested in #<I>, and used in ListZonesContext.
cloudflare_cloudflare-go
train
go
bc81777677de2f0138ef55de9a58077a05f33864
diff --git a/sailthru/Sailthru_Client.php b/sailthru/Sailthru_Client.php index <HASH>..<HASH> 100644 --- a/sailthru/Sailthru_Client.php +++ b/sailthru/Sailthru_Client.php @@ -579,8 +579,9 @@ class Sailthru_Client { * @param Mixed $tags Null for empty values, or String or arrays * @link http://docs.sailthru....
Update Sailthru_Client.php
sailthru_sailthru-php5-client
train
php
f8f507a09d8007d1c1bb58a88000217e994f9c90
diff --git a/lib/htmlRenderer.js b/lib/htmlRenderer.js index <HASH>..<HASH> 100644 --- a/lib/htmlRenderer.js +++ b/lib/htmlRenderer.js @@ -61,7 +61,9 @@ HTMLRenderer.prototype.renderPage = function (url, pageData, cb) { renderData.gpsiData = pageData.gpsi; renderData.browsertimeData = pageData.browsertime; ...
don't get phantomjs metrics if we don't fetch phantomjs
sitespeedio_sitespeed.io
train
js
35fc7a13c8b69ca056b47a8990d9c059cd5f0f74
diff --git a/test/src/test/java/hudson/search/SearchTest.java b/test/src/test/java/hudson/search/SearchTest.java index <HASH>..<HASH> 100644 --- a/test/src/test/java/hudson/search/SearchTest.java +++ b/test/src/test/java/hudson/search/SearchTest.java @@ -173,7 +173,7 @@ public class SearchTest extends HudsonTestCase { ...
fixed test error. we expected application/json.
jenkinsci_jenkins
train
java
8cd2ad37eb126fee01ec3201f8bbedd5cd8c20a5
diff --git a/lib/mtgox/client.rb b/lib/mtgox/client.rb index <HASH>..<HASH> 100644 --- a/lib/mtgox/client.rb +++ b/lib/mtgox/client.rb @@ -33,10 +33,10 @@ module MtGox # offers.bids[0, 3] def offers offers = get('/code/data/getDepth.php') - offers['asks'] = offers['asks'].sort_by{|ask| ask[0].to...
Don't waste memory by duplicating objects
sferik_mtgox
train
rb
9e1306b9619c50374777b9f7e86e9628b2d11c99
diff --git a/tests/test_creation.py b/tests/test_creation.py index <HASH>..<HASH> 100644 --- a/tests/test_creation.py +++ b/tests/test_creation.py @@ -142,8 +142,9 @@ class CreationTest(g.unittest.TestCase): path = g.np.c_[x, y, z] # Extrude - mesh = g.trimesh.creation.sweep_polygon(poly, pat...
Use available triangulation engines in tests In test_path_sweep and test_triangulate_plumbing, use all available triangulation engines (and no unavailable ones). This specifically allows the tests to run when the 'earcut' engine is available but the non-free 'triangle' engine is not. It also provides coverage of the '...
mikedh_trimesh
train
py
05bbff3e3a8f59b4d08cfa4f5fc9d9927fe723d0
diff --git a/extensions/composer/Installer.php b/extensions/composer/Installer.php index <HASH>..<HASH> 100644 --- a/extensions/composer/Installer.php +++ b/extensions/composer/Installer.php @@ -176,6 +176,9 @@ class Installer extends LibraryInstaller protected function saveExtensions(array $extensions) { ...
composer: create directory if it does not exists may happen if yii is installed globally. fixes #<I>
yiisoft_yii-core
train
php
49596ea0d1b439fb0feb628bf5253ee2206fcacf
diff --git a/test/test_coursera.py b/test/test_coursera.py index <HASH>..<HASH> 100755 --- a/test/test_coursera.py +++ b/test/test_coursera.py @@ -3,9 +3,10 @@ Test functionality of coursera module. """ -import unittest import os import os.path +import unittest + from coursera import coursera_dl TEST_SYLLABUS...
test: Sort stdlib imports and separate local import from the former.
coursera-dl_coursera-dl
train
py
0a02871f37186f8aeb5e15b60430aa0bdcce3c1b
diff --git a/holoviews/core/dimension.py b/holoviews/core/dimension.py index <HASH>..<HASH> 100644 --- a/holoviews/core/dimension.py +++ b/holoviews/core/dimension.py @@ -483,6 +483,9 @@ class Dimensioned(LabelledData): if selection == 'all': dims = [dim for group in self._dim_groups ...
Dimensioned.dimensions now accepts list of selections
pyviz_holoviews
train
py
3d6b9f4593748eb6c17bde71259520ff479ec57a
diff --git a/lib/client.js b/lib/client.js index <HASH>..<HASH> 100644 --- a/lib/client.js +++ b/lib/client.js @@ -1206,6 +1206,7 @@ function doInitialSync(client, historyLen) { client.emit("syncComplete"); _pollForEvents(client); }, function(err) { + console.error("/initialSync error: %s"...
Add more logging when sync requests fail.
matrix-org_matrix-js-sdk
train
js
fd88d180b315b8c70bada350017b62c8d5e5bb6c
diff --git a/daemon/cmd/daemon_main.go b/daemon/cmd/daemon_main.go index <HASH>..<HASH> 100644 --- a/daemon/cmd/daemon_main.go +++ b/daemon/cmd/daemon_main.go @@ -936,7 +936,7 @@ func initEnv(cmd *cobra.Command) { // Prepopulate option.Config with options from CLI. option.Config.Populate() - // add hooks after se...
daemon_main: fix comments error The option.Confog is replaced with option.Config.
cilium_cilium
train
go
9547e6ab425f742fef59245c725ae35ce7fdcb0c
diff --git a/models/event/event.go b/models/event/event.go index <HASH>..<HASH> 100644 --- a/models/event/event.go +++ b/models/event/event.go @@ -46,6 +46,8 @@ const ( DisconnectedFromServer string = "discFromServer" MatchEnded string = "matchEnded" Test string = "test" + + Reservat...
stop lobby when the serveme reservation is over
TF2Stadium_Helen
train
go
6dde7e2d735f6e1419304345dea958cafd4d87dc
diff --git a/src/OAuth/Services/OAuthService.php b/src/OAuth/Services/OAuthService.php index <HASH>..<HASH> 100644 --- a/src/OAuth/Services/OAuthService.php +++ b/src/OAuth/Services/OAuthService.php @@ -251,7 +251,7 @@ class OAuthService */ public function getAppToken(\DTS\eBaySDK\OAuth\Types\GetAppTokenRest...
Pass through the request for grabbing the app token.
davidtsadler_ebay-sdk-php
train
php