hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
13f6f21e0f9c1cee3cb0eb80c73e5bde38c20803
diff --git a/src/main/java/org/aludratest/scheduler/impl/RunnerTreeBuilderImpl.java b/src/main/java/org/aludratest/scheduler/impl/RunnerTreeBuilderImpl.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/aludratest/scheduler/impl/RunnerTreeBuilderImpl.java +++ b/src/main/java/org/aludratest/scheduler/impl/RunnerTr...
Enable @SequentialGroup use also for methods
AludraTest_aludratest
train
05fe05e21098d2f843f5ff0152172caf11db9fb1
diff --git a/montblanc/examples/MS_tf_example.py b/montblanc/examples/MS_tf_example.py index <HASH>..<HASH> 100644 --- a/montblanc/examples/MS_tf_example.py +++ b/montblanc/examples/MS_tf_example.py @@ -33,8 +33,6 @@ from montblanc.impl.rime.tensorflow.sources import (SourceProvider, from montblanc.impl.rime.tensorflo...
Support (name, size) tuples in update_dimensions Hide hypercube implementation from user
ska-sa_montblanc
train
fb1d9fc01182f656d5bb55a768173f97468a2ab2
diff --git a/lib/rails-api/action_controller/api.rb b/lib/rails-api/action_controller/api.rb index <HASH>..<HASH> 100644 --- a/lib/rails-api/action_controller/api.rb +++ b/lib/rails-api/action_controller/api.rb @@ -99,6 +99,7 @@ module ActionController def helpers_path=(*); end def allow_forgery_protectio...
Added Devise helper method stub to Compatibility
rails-api_rails-api
train
6744a27c98d974f5dfe6ea74703faaa1c230e2a1
diff --git a/go/client/cmd_sibkey.go b/go/client/cmd_sibkey.go index <HASH>..<HASH> 100644 --- a/go/client/cmd_sibkey.go +++ b/go/client/cmd_sibkey.go @@ -5,6 +5,8 @@ import ( "github.com/keybase/client/go/libcmdline" ) +// NewCmdSibkey creates the sibkey command, which is just a holder +// for subcommands. func ...
cmd_sibkey* pass golint, go vet
keybase_client
train
97113c0ad110c9fbdf538b6def54c56ac579d1d2
diff --git a/anchore/anchore-modules/queries/has-package.py b/anchore/anchore-modules/queries/has-package.py index <HASH>..<HASH> 100755 --- a/anchore/anchore-modules/queries/has-package.py +++ b/anchore/anchore-modules/queries/has-package.py @@ -54,7 +54,8 @@ if len(outlist) < 2: anchore.anchore_utils.write_kvfile_...
add ability for queries to throw warnings which will be output to the user, and will cause anchore to exit 2
anchore_anchore
train
ed0f680e97b53c660bf678b76dc9211bb8a2fd3a
diff --git a/isso/js/app/i18n/ru.js b/isso/js/app/i18n/ru.js index <HASH>..<HASH> 100644 --- a/isso/js/app/i18n/ru.js +++ b/isso/js/app/i18n/ru.js @@ -1,26 +1,26 @@ define('app/i18n/ru',{ - "postbox-text": "Комментировать здесь (минимум 3 символа)", + "postbox-text": "Оставить комментарий (минимум 3 символа)", ...
Update Russian translation Pluralization will work just fine now with Russian. Also I corrected several typos and added translation for missed "comment-hidden". I installed Isso via pip and have this part of code in other files.
posativ_isso
train
2caf58d58763a6ec9793021178c65b5cc2c2047b
diff --git a/kuyruk/worker.py b/kuyruk/worker.py index <HASH>..<HASH> 100644 --- a/kuyruk/worker.py +++ b/kuyruk/worker.py @@ -64,7 +64,9 @@ class Worker(multiprocessing.Process): # Finish last task if self.processor: - self.processor.join() + while self.processor.is_alive(): +...
process data events while waiting for task processor to finish
cenkalti_kuyruk
train
17983591973db8ac95a705ea24545c28d306c79e
diff --git a/pkg.go b/pkg.go index <HASH>..<HASH> 100644 --- a/pkg.go +++ b/pkg.go @@ -14,7 +14,7 @@ import ( "strconv" "text/tabwriter" - "github.com/coreos/updatectl/client/update/v1" + update "github.com/coreos/updatectl/client/update/v1" ) type MetadataFile struct { @@ -37,6 +37,7 @@ var ( Subcommands:...
feat(package): add delete command
coreos_updateservicectl
train
f35e623e22eb24842cf547cfe96d26153aac2b1d
diff --git a/cocaine/futures/chain.py b/cocaine/futures/chain.py index <HASH>..<HASH> 100644 --- a/cocaine/futures/chain.py +++ b/cocaine/futures/chain.py @@ -116,9 +116,9 @@ class Deferred(Future): class ConcurrentWorker(object): - def __init__(self, func, ioLoop=None, args=(), kwargs=None): + def __init__(...
ConcurrentWorker refactored. * naming
cocaine_cocaine-framework-python
train
baa4e9cde0e624d7fc89ad4f119dd9c0039a1978
diff --git a/ginga/trcalc.py b/ginga/trcalc.py index <HASH>..<HASH> 100644 --- a/ginga/trcalc.py +++ b/ginga/trcalc.py @@ -11,12 +11,12 @@ interpolation_methods = ['basic'] def use(pkgname): + global interpolation_methods global have_opencv, cv2, cv2_resize global have_opencl, trcalc_cl if pkgn...
Fix collection of interpolation types for opencv under python3
ejeschke_ginga
train
be423db8c209ad088e64f9ad5bab7e05baf1ec90
diff --git a/build_libtcod.py b/build_libtcod.py index <HASH>..<HASH> 100644 --- a/build_libtcod.py +++ b/build_libtcod.py @@ -430,6 +430,20 @@ EXCLUDE_CONSTANT_PREFIXES = [ ] +def update_module_all(filename: str, new_all: str) -> None: + """Update the __all__ of a file with the constants from new_all.""" + ...
Automatically update __all__ in more places with constants. Now I don't have to remember to do this, because I won't.
libtcod_python-tcod
train
7b0594788a01eb65affb0c3c0908a7d0ddb4707b
diff --git a/eway.php b/eway.php index <HASH>..<HASH> 100644 --- a/eway.php +++ b/eway.php @@ -265,23 +265,29 @@ class eway ); /** + * The class constructor. + * + * Chooses the payment method and whether is is a test payment. + * * @param string $gateway The type of gateway to use: 'R...
Fixed up gateway addresses and doc blocks
samuelwilliams_eWay-PHP-API
train
546fef5f0654a93c31e49bd39b11ec3fd577ceef
diff --git a/lib/filelib.php b/lib/filelib.php index <HASH>..<HASH> 100644 --- a/lib/filelib.php +++ b/lib/filelib.php @@ -44,7 +44,12 @@ function get_file_url($path, $options=null, $type='coursefile') { if ($CFG->slasharguments) { $parts = explode('/', $path); - $parts = array_map('rawurlencode'...
link resource MDL-<I> fix anchor into the url (not urlescaped anymore), merged from <I>
moodle_moodle
train
ed4c28c71e489a725a6963d2a972144c80aea6b9
diff --git a/src/DOM.js b/src/DOM.js index <HASH>..<HASH> 100644 --- a/src/DOM.js +++ b/src/DOM.js @@ -995,35 +995,10 @@ class Element extends Node { _elementSetter(this, 'mouseup', onmouseup); } + /** + * Also the output when logging to console or debugger. + */ get outerHTML() { - return this[uti...
flip relationship between outerHTML and util.inspect.custom on HTMLElement
exokitxr_exokit
train
5f473e57c65535f2c85aba550c30af1717f7922f
diff --git a/Uploader/Response/ResponseInterface.php b/Uploader/Response/ResponseInterface.php index <HASH>..<HASH> 100644 --- a/Uploader/Response/ResponseInterface.php +++ b/Uploader/Response/ResponseInterface.php @@ -4,5 +4,10 @@ namespace Oneup\UploaderBundle\Uploader\Response; interface ResponseInterface { + ...
Added doc blocks to ReponseInterface
1up-lab_OneupUploaderBundle
train
8f1116a222169f338f6f3ca4d8717e0a80745f42
diff --git a/pygbif/registry/datasets.py b/pygbif/registry/datasets.py index <HASH>..<HASH> 100644 --- a/pygbif/registry/datasets.py +++ b/pygbif/registry/datasets.py @@ -84,7 +84,3 @@ def datasets(data = 'all', type = None, uuid = None, query = None, id = None, return getdata(data, uuid, args, **kwargs) else: ...
fixed up nodes fxn and all egs work
sckott_pygbif
train
b75beda99cec0853535656776d169812761f1703
diff --git a/src/Composer/Command/RunScriptCommand.php b/src/Composer/Command/RunScriptCommand.php index <HASH>..<HASH> 100644 --- a/src/Composer/Command/RunScriptCommand.php +++ b/src/Composer/Command/RunScriptCommand.php @@ -69,7 +69,7 @@ EOT protected function execute(InputInterface $input, OutputInterface $out...
Bug in RunScriptCommand::execute() When checking for known command in commandEvents and scriptEvent '&&' should be used instead of '||'
mothership-ec_composer
train
e57c10d55e78c32b7a5cfd142a30dea01da1bef3
diff --git a/translator/src/main/java/com/google/devtools/j2objc/Options.java b/translator/src/main/java/com/google/devtools/j2objc/Options.java index <HASH>..<HASH> 100644 --- a/translator/src/main/java/com/google/devtools/j2objc/Options.java +++ b/translator/src/main/java/com/google/devtools/j2objc/Options.java @@ -7...
Fixes missing forward declarations of array types for varargs methods.
google_j2objc
train
7abd437fff4e9ff19b160c54b5e2862442534d1e
diff --git a/hdbscan/hdbscan_.py b/hdbscan/hdbscan_.py index <HASH>..<HASH> 100644 --- a/hdbscan/hdbscan_.py +++ b/hdbscan/hdbscan_.py @@ -142,7 +142,7 @@ def hdbscan(X, min_cluster_size=5, min_samples=None, metric='minkowski', p=2): stability_dict = compute_stability(condensed_tree) cluster_list = get_cluste...
Correct label output to be ints
scikit-learn-contrib_hdbscan
train
5a03ead43cfdcd1ce6c2ebd3d9782f54f681fc39
diff --git a/src/MyBase/Captcha/ImagickCaptcha.php b/src/MyBase/Captcha/ImagickCaptcha.php index <HASH>..<HASH> 100644 --- a/src/MyBase/Captcha/ImagickCaptcha.php +++ b/src/MyBase/Captcha/ImagickCaptcha.php @@ -71,6 +71,7 @@ class ImagickCaptcha extends Image } $img->waveImage(5, mt_rand(60, 100)); ...
add image scale to correct wave distortion height variation
stefanotorresi_MyBase
train
6c04c114d5b190773d261b9120a0bf2eb1394847
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ $manager = $searcher->indicesManager(); ### Defining an index A simple [index](http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/_basic_concepts.html#_index) exists -out of a name and...
Indices: use types instead of mappings.
madewithlove_elasticsearcher
train
fccbe64de928ab340eac94a103b3f610b1feb096
diff --git a/ee/src/main/java/org/jboss/as/ee/component/AbstractComponent.java b/ee/src/main/java/org/jboss/as/ee/component/AbstractComponent.java index <HASH>..<HASH> 100644 --- a/ee/src/main/java/org/jboss/as/ee/component/AbstractComponent.java +++ b/ee/src/main/java/org/jboss/as/ee/component/AbstractComponent.java @...
Rename Disinjection -> Uninjection
wildfly_wildfly
train
c8d4ac312f26960a3dd9afeca5b41c989d2e3bc4
diff --git a/app/services/group_search.rb b/app/services/group_search.rb index <HASH>..<HASH> 100644 --- a/app/services/group_search.rb +++ b/app/services/group_search.rb @@ -6,7 +6,26 @@ class GroupSearch def perform_search return [] if @query.blank? + (exact_matches + partial_matches).uniq + end + + pr...
Return teams with partial matches on team name Return teams where the team name contains all of the words in the query string, ignoring case and punctuation.
ministryofjustice_peoplefinder
train
942d8559d922242ce05fc151d47f483b27788135
diff --git a/lib/asciidoctor/rouge/callouts_substitutor.rb b/lib/asciidoctor/rouge/callouts_substitutor.rb index <HASH>..<HASH> 100644 --- a/lib/asciidoctor/rouge/callouts_substitutor.rb +++ b/lib/asciidoctor/rouge/callouts_substitutor.rb @@ -29,7 +29,7 @@ module Asciidoctor::Rouge escape_char = ::Asciidoctor::S...
Change indexing of callouts hash to 1-based
jirutka_asciidoctor-rouge
train
ec820320551860305077d151c42b40c5f652d193
diff --git a/niworkflows/viz/plots.py b/niworkflows/viz/plots.py index <HASH>..<HASH> 100644 --- a/niworkflows/viz/plots.py +++ b/niworkflows/viz/plots.py @@ -101,14 +101,14 @@ class fMRIPlot(object): name=name, **kwargs) grid_id += 1 - plot_carpet(self.func_file, self.seg_data, s...
fix to carpetplot allowing for tr information to be passed and the correct xlabel to be plotted.
poldracklab_niworkflows
train
98def0d5a20fecdbc1ed5eb56ff1ed97647a6782
diff --git a/lib/billy/cache.rb b/lib/billy/cache.rb index <HASH>..<HASH> 100644 --- a/lib/billy/cache.rb +++ b/lib/billy/cache.rb @@ -30,6 +30,7 @@ module Billy def store(method, url, body, status, headers, content) cached = { + :scope => scope, :url => url, :body => body, ...
Add scope to YAML output hash.
oesmith_puffing-billy
train
6c407a8f45a1338ae1c2f293b8a27f31de919114
diff --git a/lib/yell/adapters/io.rb b/lib/yell/adapters/io.rb index <HASH>..<HASH> 100644 --- a/lib/yell/adapters/io.rb +++ b/lib/yell/adapters/io.rb @@ -32,7 +32,8 @@ module Yell #:nodoc: message = color + message + Colors[-1] end - message << "\n" unless message[-1] == ?\n # add new line...
CHORE: Added some inline documentation
rudionrails_yell
train
b206d2351c0a1992ab5d12e0f1e4c843c2da9fde
diff --git a/addok/core.py b/addok/core.py index <HASH>..<HASH> 100644 --- a/addok/core.py +++ b/addok/core.py @@ -107,10 +107,20 @@ class Result(object): self.type = 'housenumber' break + @property + def keys(self): + to_filter = ['importance', 'housenumbers', 'lat', 'l...
Dynamic keys when building geojson
addok_addok
train
8891e04e1c9dbe105df1aba64f315e188ca37670
diff --git a/lib/reda/importers/eit160.py b/lib/reda/importers/eit160.py index <HASH>..<HASH> 100644 --- a/lib/reda/importers/eit160.py +++ b/lib/reda/importers/eit160.py @@ -32,6 +32,8 @@ Import pipeline: required if we use the arctan2 function?) - compute variance/standard deviation from the repetition values +...
[eit<I>] * add version check * also import Yl3 from the MD struct * documentation fixes
geophysics-ubonn_reda
train
94db5b306e3a9a716aa67edcce8b6f4747d2be3c
diff --git a/anyvcs/git.py b/anyvcs/git.py index <HASH>..<HASH> 100644 --- a/anyvcs/git.py +++ b/anyvcs/git.py @@ -146,11 +146,11 @@ class GitRepo(VCSRepo): cmd.append('--no-merges') single = False if revrange is None: - pass + cmd.append('--all') elif isinstance(revrange, tuple): ...
fix bug in GitRepo.log when revrange=None or (None,None)
ScottDuckworth_python-anyvcs
train
de619e98e5dc1191d082c825715f1a82551bfa03
diff --git a/tinylog-api/src/main/java/org/tinylog/provider/BundleContextProvider.java b/tinylog-api/src/main/java/org/tinylog/provider/BundleContextProvider.java index <HASH>..<HASH> 100644 --- a/tinylog-api/src/main/java/org/tinylog/provider/BundleContextProvider.java +++ b/tinylog-api/src/main/java/org/tinylog/provi...
Make bundle context provider and bundle logging provider public See #<I>
pmwmedia_tinylog
train
8f8eb1dc449fe8efe9b806b151c680268d6d8ec5
diff --git a/src/com/hazelcast/impl/Node.java b/src/com/hazelcast/impl/Node.java index <HASH>..<HASH> 100644 --- a/src/com/hazelcast/impl/Node.java +++ b/src/com/hazelcast/impl/Node.java @@ -17,11 +17,11 @@ package com.hazelcast.impl; -import com.hazelcast.config.Config; -import com.hazelcast.impl.MulticastSer...
Code cleanup fix for issue <I> NPE on shutdown() fix for issue <I> Resetting locks on Hazelcast.shutdown() git-svn-id: <URL>
hazelcast_hazelcast
train
5afd6d116b6ea49ca5bdb526e71a8823629d1668
diff --git a/lib/yoti/doc_scan/client.rb b/lib/yoti/doc_scan/client.rb index <HASH>..<HASH> 100644 --- a/lib/yoti/doc_scan/client.rb +++ b/lib/yoti/doc_scan/client.rb @@ -41,7 +41,7 @@ module Yoti response = create_request .with_http_method('GET') - .with_endpoint(...
SDK-<I>: Template endpoint paths
getyoti_yoti-ruby-sdk
train
27593d8cadc13c4abee0d7884c71e5642595b1f1
diff --git a/locator/src/main/java/org/talend/esb/servicelocator/client/internal/zk/ZKBackend.java b/locator/src/main/java/org/talend/esb/servicelocator/client/internal/zk/ZKBackend.java index <HASH>..<HASH> 100644 --- a/locator/src/main/java/org/talend/esb/servicelocator/client/internal/zk/ZKBackend.java +++ b/locator...
[TESB-<I>] Fix for zookeeper backend, let ensurePathExists method update Node content
Talend_tesb-rt-se
train
411675ddfc15ee9358a4aad5a287dad219731afd
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -21,15 +21,15 @@ def read(*paths): PACKAGE = 'datapackage' NAME = PACKAGE.replace('_', '-') INSTALL_REQUIRES = [ - 'six>=1.10,<2.0', - 'click>=6.7,<8.0', - 'requests>=2.8,<3.0', - 'cchardet>=1.0,<3.0', - 'jso...
Stop locking minimum dependency version (fix #<I>)
frictionlessdata_datapackage-py
train
b17c98f9a35a12007538d216ac353d8e0551b1bd
diff --git a/chaos-monkey-docs/src/main/asciidoc/changes.adoc b/chaos-monkey-docs/src/main/asciidoc/changes.adoc index <HASH>..<HASH> 100644 --- a/chaos-monkey-docs/src/main/asciidoc/changes.adoc +++ b/chaos-monkey-docs/src/main/asciidoc/changes.adoc @@ -11,6 +11,7 @@ Built with Spring Boot {spring-boot-version} ===...
Allow any throwable in ExceptionAssault instead of only exceptions (#<I>) * Allow any throwable
codecentric_chaos-monkey-spring-boot
train
251a89953da146c78d74b7970786c9149f26ca65
diff --git a/src/View/Widget/DateTimeWidget.php b/src/View/Widget/DateTimeWidget.php index <HASH>..<HASH> 100644 --- a/src/View/Widget/DateTimeWidget.php +++ b/src/View/Widget/DateTimeWidget.php @@ -85,13 +85,13 @@ class DateTimeWidget extends \BootstrapUI\View\Widget\DateTimeWidget $datetimePicker += ['da...
Use new FontAwesome 5 class. "fa" is deprecated.
FriendsOfCake_crud-view
train
814c07aebe5d8081b292903ca8c9a3f1a5914bfd
diff --git a/spectator-api/src/main/java/com/netflix/spectator/api/package-info.java b/spectator-api/src/main/java/com/netflix/spectator/api/package-info.java index <HASH>..<HASH> 100644 --- a/spectator-api/src/main/java/com/netflix/spectator/api/package-info.java +++ b/spectator-api/src/main/java/com/netflix/spectator...
remove deprecated calls in package doc example
Netflix_spectator
train
1e21c3fb7765abb46aab854cc429c52f0b2b885b
diff --git a/conu/backend/docker/image.py b/conu/backend/docker/image.py index <HASH>..<HASH> 100644 --- a/conu/backend/docker/image.py +++ b/conu/backend/docker/image.py @@ -387,44 +387,50 @@ class DockerImage(Image): def run_via_api(self, container_params): """ - :param container_params: + ...
run_via_api now using Low-level API
user-cont_conu
train
537ac6dbfbc75738aee4632b75f51679fbd37515
diff --git a/packages/tools/scripts/src/process_manager.js b/packages/tools/scripts/src/process_manager.js index <HASH>..<HASH> 100644 --- a/packages/tools/scripts/src/process_manager.js +++ b/packages/tools/scripts/src/process_manager.js @@ -10,7 +10,8 @@ export const processRegister = (command, opts) => { return p...
Fix process exit code on error (#<I>)
reimagined_resolve
train
b981624346a4abac0e897591092944535aaca550
diff --git a/opinel/utils/profiles.py b/opinel/utils/profiles.py index <HASH>..<HASH> 100644 --- a/opinel/utils/profiles.py +++ b/opinel/utils/profiles.py @@ -4,6 +4,7 @@ import fileinput import os import re +from opinel.utils.aws import get_aws_account_id from opinel.utils.console import printDebug from opinel.u...
1. Make sure file exists before opening 2. Add account_id in AWSProfile class
nccgroup_opinel
train
1532530196ca127a392ea17ac22fd6b5b17f8a52
diff --git a/django_rq/templates/django_rq/jobs.html b/django_rq/templates/django_rq/jobs.html index <HASH>..<HASH> 100644 --- a/django_rq/templates/django_rq/jobs.html +++ b/django_rq/templates/django_rq/jobs.html @@ -36,6 +36,9 @@ <div id="content-main"> <ul class="object-tools"> + {% if queue.name == ...
-- Adding in Requeue All feature for failed queue to make it easier to requeue All failed tasks, instead of just requeuing them <I> at a time.. Includes new url, view, and template button that only shows up for failed queue.
rq_django-rq
train
0fed8e2eb7d44f82ccae8658b01505356d2a115f
diff --git a/cassandra/cluster.py b/cassandra/cluster.py index <HASH>..<HASH> 100644 --- a/cassandra/cluster.py +++ b/cassandra/cluster.py @@ -260,6 +260,7 @@ class ProfileManager(object): for p in self.profiles.values(): p.load_balancing_policy.on_remove(host) +PROFILE_DEFAULT = None class C...
quick change to define the default profile key
datastax_python-driver
train
b5a5942f07e833815b8a2984b3330ff82c4acd4c
diff --git a/uportal-war/src/main/java/org/jasig/portal/concurrency/locking/JpaClusterLockDao.java b/uportal-war/src/main/java/org/jasig/portal/concurrency/locking/JpaClusterLockDao.java index <HASH>..<HASH> 100644 --- a/uportal-war/src/main/java/org/jasig/portal/concurrency/locking/JpaClusterLockDao.java +++ b/uportal...
UP-<I> fix base jpa dao usage Fix up how the base jpa dao is used after rebase
Jasig_uPortal
train
d23372a58adf55211a6be52d7a68e1f54b927730
diff --git a/lib/vault/api/auth.rb b/lib/vault/api/auth.rb index <HASH>..<HASH> 100644 --- a/lib/vault/api/auth.rb +++ b/lib/vault/api/auth.rb @@ -207,7 +207,7 @@ module Vault # STS in the China (Beijing) region (cn-north-1) is sts.cn-north-1.amazonaws.com.cn # Take care changing below regex with that e...
Escape the period because it's actually part of the url
hashicorp_vault-ruby
train
709ed0f2128470022a6d579f491723f88058a90c
diff --git a/telegrambots-abilities/src/main/java/org/telegram/abilitybots/api/bot/BaseAbilityBot.java b/telegrambots-abilities/src/main/java/org/telegram/abilitybots/api/bot/BaseAbilityBot.java index <HASH>..<HASH> 100644 --- a/telegrambots-abilities/src/main/java/org/telegram/abilitybots/api/bot/BaseAbilityBot.java +...
Ease the access modifier on getPrivacy and other auxiliary methods
rubenlagus_TelegramBots
train
4009e4f8a671d33077187647758a3aca092ba804
diff --git a/modules/uadetector-resources/src/main/java/net/sf/uadetector/UADetectorServiceFactory.java b/modules/uadetector-resources/src/main/java/net/sf/uadetector/UADetectorServiceFactory.java index <HASH>..<HASH> 100644 --- a/modules/uadetector-resources/src/main/java/net/sf/uadetector/UADetectorServiceFactory.jav...
Updated the documentation of the UADetectorServiceFactory
before_uadetector
train
4679df6211eebc464c6bea17f1ccf19db383961d
diff --git a/devices/orvibo.js b/devices/orvibo.js index <HASH>..<HASH> 100644 --- a/devices/orvibo.js +++ b/devices/orvibo.js @@ -222,7 +222,7 @@ module.exports = [ }, }, { - zigbeeModel: ['131c854783bc45c9b2ac58088d09571c', 'b2e57a0f606546cd879a1a54790827d6'], + zigbeeModel: ['131c854...
Add <I>fdfb8c<I>a<I>e<I>cf<I> to SN<I>ZW (#<I>) * Add <I>fdfb8c<I>a<I>e<I>cf<I> to SN<I>ZW * Update orvibo.js
Koenkk_zigbee-shepherd-converters
train
f957b6f65d545625bf7087fe3989092e86c34057
diff --git a/memcache.go b/memcache.go index <HASH>..<HASH> 100644 --- a/memcache.go +++ b/memcache.go @@ -398,30 +398,15 @@ func (cte *ConnectTimeoutError) Temporary() bool { } func (c *Client) dial(addr *Addr) (net.Conn, error) { - type connError struct { - cn net.Conn - err error - } if c.timeout > 0 { - c...
Use net.DialTimeout rather than writing our own
rainycape_memcache
train
74d87ebfdd058da13782fe8c6e29684ef6f795c0
diff --git a/rx-run/package.json b/rx-run/package.json index <HASH>..<HASH> 100644 --- a/rx-run/package.json +++ b/rx-run/package.json @@ -26,13 +26,14 @@ "devDependencies": { "babel": "5.8.x", "babelify": "6.1.x", + "browserify": "11.0.0", "eslint": "0.24.x", "eslint-config-cycle": "1.3.x", ...
Fix #<I>, no more requests errors swallowed
cyclejs_cyclejs
train
49194697ba046424611bc3462274e09b72e2cf37
diff --git a/ezp/Content/FieldType/TextLine.php b/ezp/Content/FieldType/TextLine.php index <HASH>..<HASH> 100644 --- a/ezp/Content/FieldType/TextLine.php +++ b/ezp/Content/FieldType/TextLine.php @@ -86,6 +86,7 @@ class TextLine extends FieldType /** * Returns information for FieldValue->$sortKey relevant to ...
Added todo about sort info transformation to be added in future.
ezsystems_ezpublish-kernel
train
1d5f2d26df535f886a64b33b22f3a8088402fc61
diff --git a/src/ruby/spec/credentials_spec.rb b/src/ruby/spec/credentials_spec.rb index <HASH>..<HASH> 100644 --- a/src/ruby/spec/credentials_spec.rb +++ b/src/ruby/spec/credentials_spec.rb @@ -68,10 +68,4 @@ describe Credentials do expect { cred1.compose(cred2) }.to_not raise_error end end - - describ...
Removes a redundant canary test
grpc_grpc
train
b6c069e1a34258d0477337ae6e66f0114cbe6311
diff --git a/hypem-resolver.js b/hypem-resolver.js index <HASH>..<HASH> 100644 --- a/hypem-resolver.js +++ b/hypem-resolver.js @@ -8,11 +8,12 @@ var q = require('q'), var hypemResolver = {}, hypemTrackUrl = "http://hypem.com/track/", - hypemGoUrl = "http://hypem.com/go/sc/"; + hypemGoUrl = "http://hypem.c...
Return an error if the song is not hosted anywhere
feedm3_hypem-resolver
train
77e651aed16c69cd162774dd1d36427f1000ece4
diff --git a/pkg/controller/podautoscaler/metrics/rest_metrics_client.go b/pkg/controller/podautoscaler/metrics/rest_metrics_client.go index <HASH>..<HASH> 100644 --- a/pkg/controller/podautoscaler/metrics/rest_metrics_client.go +++ b/pkg/controller/podautoscaler/metrics/rest_metrics_client.go @@ -58,11 +58,11 @@ type ...
Clarify error messages in HPA metrics With the introduction of the RESTMetrics client, there are two ways to fetch metrics for auto-scaling. However, they previously shared error messages. This could be misleading. Make the error message more clearly show which method is in use.
kubernetes_kubernetes
train
aaa3779dbdc7b8e71a686308ffaf7fce1ebce5a0
diff --git a/lib/rules/space-unary-ops.js b/lib/rules/space-unary-ops.js index <HASH>..<HASH> 100644 --- a/lib/rules/space-unary-ops.js +++ b/lib/rules/space-unary-ops.js @@ -177,6 +177,17 @@ module.exports = { } /** + * Verifies AwaitExpressions satisfy spacing requirements + * @param...
Update: Allow `space-unary-ops` to handle await expressions (#<I>) (refs #<I>)
eslint_eslint
train
4ad5ef281894b815be346e1506f5badfe26a4e11
diff --git a/cocaine/worker.py b/cocaine/worker.py index <HASH>..<HASH> 100644 --- a/cocaine/worker.py +++ b/cocaine/worker.py @@ -125,19 +125,18 @@ class Worker(object): return elif msg.id == message.RPC_INVOKE: - #todo: _stream might be referenced + request = Request() + ...
Fixed possible bug when stream variable is not assigned (maybe, an exception is thrown in init method or earlier)
cocaine_cocaine-framework-python
train
ef09c45f8896c39e01821f9694da9ab9066b3430
diff --git a/http/codegen/service_data.go b/http/codegen/service_data.go index <HASH>..<HASH> 100644 --- a/http/codegen/service_data.go +++ b/http/codegen/service_data.go @@ -751,6 +751,7 @@ func (d ServicesData) analyze(hs *httpdesign.ServiceExpr) *ServiceData { } data := map[string]interface{}{ "PayloadR...
Properly handle non-object payload types (#<I>) When generating CLI tool source code.
goadesign_goa
train
737aba56f5edf440fab5ded100c7546bd8b0ffc8
diff --git a/rope/refactor/extract.py b/rope/refactor/extract.py index <HASH>..<HASH> 100644 --- a/rope/refactor/extract.py +++ b/rope/refactor/extract.py @@ -689,7 +689,7 @@ class _ExtractMethodParts(object): def _insert_globals(self, unindented_body): globals_in_body = self._get_globals_in_body(uninde...
Don't add global statement when the extracted variable is read-only
python-rope_rope
train
cee4302047983fcb9cae3edd5fd031368244471f
diff --git a/FlowCal/io.py b/FlowCal/io.py index <HASH>..<HASH> 100644 --- a/FlowCal/io.py +++ b/FlowCal/io.py @@ -1101,14 +1101,17 @@ class FCSData(np.ndarray): """ Get the range of the specified channel(s). - The range is inferred from the $PnR parameter as ``[0, $PnR - 1]``. - Note ...
Improved description of range in FCSData.
taborlab_FlowCal
train
2d7aee42e702ac2ecbb9d57ac0a32218481993fb
diff --git a/test/tests/events.js b/test/tests/events.js index <HASH>..<HASH> 100644 --- a/test/tests/events.js +++ b/test/tests/events.js @@ -321,4 +321,48 @@ t.equal( ractive.findAll( 'input' ).length, 2 ); }); + test( 'Mousedown followed by click results in a tap event', function ( t ) { + var ractive, tappe...
added test for #<I>, plus general tap event test
ractivejs_ractive
train
16f96fb66147547faea7b3191b4f9efc33b22a41
diff --git a/openquake/engine/tools/import_gmf_scenario.py b/openquake/engine/tools/import_gmf_scenario.py index <HASH>..<HASH> 100644 --- a/openquake/engine/tools/import_gmf_scenario.py +++ b/openquake/engine/tools/import_gmf_scenario.py @@ -1,4 +1,3 @@ -import os import argparse from cStringIO import StringIO from...
Removed a test moved in the right place Former-commit-id: c6aa<I>c0cb<I>c<I>a5de<I>e<I>cc<I>cf<I>eb7
gem_oq-engine
train
4805c1e933017928103ee42a0eb6e6a62fb74954
diff --git a/pyalveo/__init__.py b/pyalveo/__init__.py index <HASH>..<HASH> 100644 --- a/pyalveo/__init__.py +++ b/pyalveo/__init__.py @@ -4,7 +4,7 @@ Module for interfacing with the Alveo API __author__ = 'Steve Cassidy' __email__ = 'Steve.Cassidy@mq.edu.au' -__version__ = '1.0' +__version__ = '1.0.1' from .pya...
Increment version to <I> to fix bad pypi upload.
Alveo_pyalveo
train
61be41eebf962459872631c4ed526b1aed2b9ef3
diff --git a/tests/dummy/app/models/customer.js b/tests/dummy/app/models/customer.js index <HASH>..<HASH> 100644 --- a/tests/dummy/app/models/customer.js +++ b/tests/dummy/app/models/customer.js @@ -6,5 +6,6 @@ export default Model.extend({ firstName: attr('string'), lastName: attr('string'), age: attr('number...
Add test for working with GUIDs in OData
Flexberry_ember-flexberry-data
train
e6cc5647076cd3977f1768549791658ee8d8d769
diff --git a/lib/finite_machine/transition_event.rb b/lib/finite_machine/transition_event.rb index <HASH>..<HASH> 100644 --- a/lib/finite_machine/transition_event.rb +++ b/lib/finite_machine/transition_event.rb @@ -17,11 +17,11 @@ module FiniteMachine # @return [self] # # @api private - def self.build...
Change to pass data to transition event.
piotrmurach_finite_machine
train
9e09ebd5459679477b71d5b239f5ab465e050918
diff --git a/ella/positions/admin.py b/ella/positions/admin.py index <HASH>..<HASH> 100644 --- a/ella/positions/admin.py +++ b/ella/positions/admin.py @@ -10,7 +10,10 @@ class PositionOptions(admin.ModelAdmin): if not obj.target: return '-- %s --' % ugettext('empty position') else: - ...
do not throw AttributeError in method show_title of positon admin if target obj has not title attr
ella_ella
train
e3bd36e8c2cdc43399dad0745853ff4bc5b6014c
diff --git a/test/lib/http.js b/test/lib/http.js index <HASH>..<HASH> 100644 --- a/test/lib/http.js +++ b/test/lib/http.js @@ -32,7 +32,7 @@ OAuthJSONError.prototype = new Error(); OAuthJSONError.prototype.constructor = OAuthJSONError; OAuthJSONError.prototype.toString = function() { - return "OAuthJSONError (" ...
Better stringizing of OAuthJSONError
pump-io_pump.io
train
ea2c3b40e93a859882e92d7ccb569cdcc5063849
diff --git a/lib/DAV/Locks/Plugin.php b/lib/DAV/Locks/Plugin.php index <HASH>..<HASH> 100644 --- a/lib/DAV/Locks/Plugin.php +++ b/lib/DAV/Locks/Plugin.php @@ -565,5 +565,25 @@ class Plugin extends DAV\ServerPlugin { } + /** + * Returns a bunch of meta-data about the plugin. + * + * Providing thi...
Plugin info for the locks plugin.
sabre-io_dav
train
6bd8c6ca79963e22e96a85cf6f03a1b9c101fcf5
diff --git a/command/push.go b/command/push.go index <HASH>..<HASH> 100644 --- a/command/push.go +++ b/command/push.go @@ -58,8 +58,16 @@ func (c *PushCommand) Run(args []string) int { } // Build our client - c.client = harmony.DefaultClient() defer func() { c.client = nil }() + c.client = harmony.DefaultClient...
command/push: support custom endpoints
hashicorp_packer
train
2aec7c1925aee48fab3c77f9f1b9d1925d2ee30a
diff --git a/src/main/java/org/roaringbitmap/buffer/MappeableRunContainer.java b/src/main/java/org/roaringbitmap/buffer/MappeableRunContainer.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/roaringbitmap/buffer/MappeableRunContainer.java +++ b/src/main/java/org/roaringbitmap/buffer/MappeableRunContainer.java @...
getSizeInBytes changed
RoaringBitmap_RoaringBitmap
train
390c0b57a34edf3e1e41c1f4b9773ba58348a15c
diff --git a/Kwf/Component/Abstract/Admin.php b/Kwf/Component/Abstract/Admin.php index <HASH>..<HASH> 100644 --- a/Kwf/Component/Abstract/Admin.php +++ b/Kwf/Component/Abstract/Admin.php @@ -134,7 +134,7 @@ class Kwf_Component_Abstract_Admin $ret[$kFile][] = $i; } e...
fix for <I>b<I>c<I>e5e<I>bb3d<I>e<I>f<I> the extra for requires extra continue
koala-framework_koala-framework
train
c2937146e6d8481ab60003ef18cd9b9c0fe83d25
diff --git a/package.php b/package.php index <HASH>..<HASH> 100644 --- a/package.php +++ b/package.php @@ -4,7 +4,7 @@ require_once 'PEAR/PackageFileManager2.php'; -$version = '1.3.10'; +$version = '1.3.11'; $notes = <<<EOT see ChangeLog EOT;
prepare for release of <I> svn commit r<I>
silverorange_swat
train
906e944f3bb4603590c3555cf56b1ae58c99142f
diff --git a/bundle/PlatformAdminUI/Menu/RoutePrefixVoter.php b/bundle/PlatformAdminUI/Menu/RoutePrefixVoter.php index <HASH>..<HASH> 100644 --- a/bundle/PlatformAdminUI/Menu/RoutePrefixVoter.php +++ b/bundle/PlatformAdminUI/Menu/RoutePrefixVoter.php @@ -35,7 +35,7 @@ final class RoutePrefixVoter implements VoterInterf...
Fix route prefix voter when there is no route
netgen_TagsBundle
train
f3d34553255354000c36bad0e0d09f47421a4b4c
diff --git a/post_office/admin.py b/post_office/admin.py index <HASH>..<HASH> 100644 --- a/post_office/admin.py +++ b/post_office/admin.py @@ -29,7 +29,7 @@ class LogAdmin(admin.ModelAdmin): class EmailTemplateAdmin(admin.modelAdmin): - list_display = ('name', 'created') + list_display = ('name', 'subject', ...
Added changes on the post_office admin
ui_django-post_office
train
9468d11e4f32a340df0fe4edcf79409befe9414f
diff --git a/src/AutosizeInput.js b/src/AutosizeInput.js index <HASH>..<HASH> 100644 --- a/src/AutosizeInput.js +++ b/src/AutosizeInput.js @@ -101,7 +101,7 @@ const AutosizeInput = React.createClass({ const wrapperStyle = this.props.style || {}; if (!wrapperStyle.display) wrapperStyle.display = 'inline-block'; ...
Add 'px' to style inputStyle.width Solve this warning: ``` Warning: a `input` tag (owner: `AutosizeInput`) was passed a numeric string value for CSS property `width` (value: `5`) which will be treated as a unitless number in a future version of React. ```
JedWatson_react-input-autosize
train
44033117dc19304730f081da2f9fd8212741397b
diff --git a/lib/ohai/plugins/linux/virtualization.rb b/lib/ohai/plugins/linux/virtualization.rb index <HASH>..<HASH> 100644 --- a/lib/ohai/plugins/linux/virtualization.rb +++ b/lib/ohai/plugins/linux/virtualization.rb @@ -55,16 +55,16 @@ if File.exists?("/usr/sbin/dmidecode") stdout.each do |line| case lin...
OHAI-<I> - use instance variable to prevent detected manufacturer going out of scope
chef_ohai
train
f197c8dc200095b2ca601988e9740b3e453933b7
diff --git a/state/service_test.go b/state/service_test.go index <HASH>..<HASH> 100644 --- a/state/service_test.go +++ b/state/service_test.go @@ -344,10 +344,6 @@ var serviceUpdateConfigSettingsTests = []struct { about: "unset missing string", update: charm.Settings{"outlook": nil}, }, { - about: `empty string...
charm: changed two forgotten tests influenced by the changed behavior
juju_juju
train
a5b080645c1b22cf4d0ba900235816130ab921c4
diff --git a/dvc/ignore.py b/dvc/ignore.py index <HASH>..<HASH> 100644 --- a/dvc/ignore.py +++ b/dvc/ignore.py @@ -52,16 +52,12 @@ class DvcIgnorePatterns(DvcIgnore): ] @classmethod - def from_files(cls, ignore_file_path, fs, root): - assert os.path.isabs(ignore_file_path) - dirname = o...
dvcignore: refactor from_file(s) (#<I>)
iterative_dvc
train
10dc96d323d8f79faa0ab9ba24f7f9c411619cfa
diff --git a/junit/src/test/java/com/automation/remarks/junit/rule/test/JUnitVideoRecording.java b/junit/src/test/java/com/automation/remarks/junit/rule/test/JUnitVideoRecording.java index <HASH>..<HASH> 100644 --- a/junit/src/test/java/com/automation/remarks/junit/rule/test/JUnitVideoRecording.java +++ b/junit/src/tes...
Tests added for VideoSaveMode feature
SergeyPirogov_video-recorder-java
train
b1a9587ea781c4a378542adea005633a01f31816
diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/RouterDebugCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/RouterDebugCommand.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/RouterDebugCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/RouterDebugCommand.php @...
fixed bug related to the change PR #<I>
symfony_symfony
train
6a44fc7aee3c18d37e179ffb5631500a5d40f5b3
diff --git a/lib/nodes/expression.js b/lib/nodes/expression.js index <HASH>..<HASH> 100644 --- a/lib/nodes/expression.js +++ b/lib/nodes/expression.js @@ -106,8 +106,19 @@ Expression.prototype.push = function(node){ * @api public */ -Expression.prototype.operate = function(op, right){ +Expression.prototype.operat...
Added `[]=` support hacky right now, this is a ternary
stylus_stylus
train
6eb789458013f231e70dee959bad8a04cc4e2fcf
diff --git a/src/directives/jf_drawers/jf_drawer.js b/src/directives/jf_drawers/jf_drawer.js index <HASH>..<HASH> 100644 --- a/src/directives/jf_drawers/jf_drawer.js +++ b/src/directives/jf_drawers/jf_drawer.js @@ -5,7 +5,9 @@ class jfDrawerController { this.utils = JFrogUIUtils; $timeout(() => { - ...
JR-<I> Release Bundle Page improvement - JF Drawer bug fix
jfrog_jfrog-ui-essentials
train
25c4db08b970274e23f1841c19ec32521ee04327
diff --git a/core/src/main/java/org/springframework/security/ui/AbstractProcessingFilter.java b/core/src/main/java/org/springframework/security/ui/AbstractProcessingFilter.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/springframework/security/ui/AbstractProcessingFilter.java +++ b/core/src/main/java/org...
Updated class javadoc to reflect recent changes to AbstractProcessingFilter
spring-projects_spring-security
train
15339973a56b47d68408199baf220f3977dade08
diff --git a/images/lib/refinery/images/dragonfly.rb b/images/lib/refinery/images/dragonfly.rb index <HASH>..<HASH> 100644 --- a/images/lib/refinery/images/dragonfly.rb +++ b/images/lib/refinery/images/dragonfly.rb @@ -44,7 +44,7 @@ module Refinery ## # Injects Dragonfly::Middleware for Refinery::Imag...
Only insert dragonfly middlewares after Rack::Cache when it is defined
refinery_refinerycms
train
32e65738a81108f4d739b2d1b5984159f51ce269
diff --git a/lib/vault/defaults.rb b/lib/vault/defaults.rb index <HASH>..<HASH> 100644 --- a/lib/vault/defaults.rb +++ b/lib/vault/defaults.rb @@ -47,7 +47,7 @@ module Vault end if VAULT_DISK_TOKEN.exist? && VAULT_DISK_TOKEN.readable? - return VAULT_DISK_TOKEN.read + return VAULT_D...
Strip newline from .vault-token
hashicorp_vault-ruby
train
a2187b968ceb00f03eca05adf216645a04595c33
diff --git a/handler.go b/handler.go index <HASH>..<HASH> 100644 --- a/handler.go +++ b/handler.go @@ -393,7 +393,8 @@ func (h *Handler) handlePostImport(w http.ResponseWriter, r *http.Request) { // Validate that this handler owns the slice. if !h.Cluster.OwnsFragment(h.Host, db, slice) { - http.Error(w, "host d...
added info to owns fragrment error message
pilosa_pilosa
train
d72d80813118bd6fb95fa8fdcee0dba5121c2509
diff --git a/wdtk-rdf/src/main/java/org/wikidata/wdtk/rdf/values/GlobeCoordinatesValueConverter.java b/wdtk-rdf/src/main/java/org/wikidata/wdtk/rdf/values/GlobeCoordinatesValueConverter.java index <HASH>..<HASH> 100644 --- a/wdtk-rdf/src/main/java/org/wikidata/wdtk/rdf/values/GlobeCoordinatesValueConverter.java +++ b/w...
Fix coordinate order for RDF export of points GeoSPARQL specifies that the order for the coordinates of a Point is defined by the order of the axes of the chosen coordinate system. The default coordinate system CRS<I> (<URL>) specifies the order as "Axes: longitude, latitude"
Wikidata_Wikidata-Toolkit
train
a266d1f147f29685c54ff47bbea55439e472cd7e
diff --git a/Command/LoadDataFixturesDoctrineCommand.php b/Command/LoadDataFixturesDoctrineCommand.php index <HASH>..<HASH> 100644 --- a/Command/LoadDataFixturesDoctrineCommand.php +++ b/Command/LoadDataFixturesDoctrineCommand.php @@ -41,8 +41,9 @@ class LoadDataFixturesDoctrineCommand extends DoctrineCommand ...
Give users choice between purge with truncate or delete
doctrine_DoctrineFixturesBundle
train
deeb8a70a5ce514d7e4f54ac3978807ce0c9f15e
diff --git a/src/WPDb.php b/src/WPDb.php index <HASH>..<HASH> 100644 --- a/src/WPDb.php +++ b/src/WPDb.php @@ -204,6 +204,36 @@ class WPDb extends Db } } + public function haveCommentMetaInDatabase($comment_id, $meta_key, $meta_value, $meta_id = null) + { + if (!is_int($comment_id)) { + ...
added the haveCommentMetaInDatabase method
lucatume_wp-browser
train
5c455d30b8bcf4902add2c1ed0a6e9216147b43c
diff --git a/src/components/list/list.js b/src/components/list/list.js index <HASH>..<HASH> 100644 --- a/src/components/list/list.js +++ b/src/components/list/list.js @@ -343,9 +343,7 @@ function mdListItemDirective($mdAria, $mdConstant, $mdUtil, $timeout) { ); // Button which shows ripple and e...
fix(list): case where list items are read twice by screen readers - if we create an `aria-label` from the element's text content then mark the content as `aria-hidden="true"` so that screen readers don't announce/traverse the content twice - improve Closure types Fixes #<I>
angular_material
train
bd580c013ac2d2e0cce50aa166dabe4edfc91c59
diff --git a/spec/seed_spec.rb b/spec/seed_spec.rb index <HASH>..<HASH> 100644 --- a/spec/seed_spec.rb +++ b/spec/seed_spec.rb @@ -14,7 +14,7 @@ describe Seeding::CreateSeed, "create" do end - it "should genrate proper row values for a given model" do + it "should generate proper row values for a given m...
Update spec/seed_spec.rb
nikoma_seeding
train
3bb24fd60528334dc371bd5cd75f17d81c16ef90
diff --git a/lib/gpgme/ctx.rb b/lib/gpgme/ctx.rb index <HASH>..<HASH> 100644 --- a/lib/gpgme/ctx.rb +++ b/lib/gpgme/ctx.rb @@ -199,6 +199,10 @@ module GPGME # $stderr.puts # end # + # Note that this function doesn't work with GnuPG 2.0. You can + # use either GnuPG 1.x, which can be installed ...
Mention that passphrase callback doesn't work with GnuPG <I> Suggested in <URL>
ueno_ruby-gpgme
train
e92fe848abd7735375f7fa402a443066de633770
diff --git a/course/lib.php b/course/lib.php index <HASH>..<HASH> 100644 --- a/course/lib.php +++ b/course/lib.php @@ -821,7 +821,7 @@ function make_categories_list(&$list, &$parents, $category=NULL, $path="") { $parents[$cat->id] = $parents[$category->id]; $parents[$cat->id][] = $ca...
Removed needless pass-by-reference to avoid warnings BUG <I> Thanks Eloy!
moodle_moodle
train
194703087cfb2939047b5f664d87b160ad747eb9
diff --git a/py/testdir_single_jvm/test_GLM2_airline.py b/py/testdir_single_jvm/test_GLM2_airline.py index <HASH>..<HASH> 100644 --- a/py/testdir_single_jvm/test_GLM2_airline.py +++ b/py/testdir_single_jvm/test_GLM2_airline.py @@ -1,7 +1,7 @@ import unittest, random, sys, time sys.path.extend(['.','..','py']) -import...
seems I have to import h2o_hosts after h2o. I may change h2o.py to not use the from/import style and just import all of h2o_tests.
h2oai_h2o-2
train
bec4c306820722d839bfcae6b7d2075093480adc
diff --git a/config/icons.js b/config/icons.js index <HASH>..<HASH> 100644 --- a/config/icons.js +++ b/config/icons.js @@ -4,6 +4,7 @@ module.exports = function () { 'free-solid-svg-icons': [ 'angle-double-down', 'angle-double-left', + 'arrow-right-to-bracket', 'arrows-alt', 'backw...
replaces sign-in-alt icon with arrow-right-to-bracket.
ilios_common
train
18fb3b5f7d0b36e3ac65a082fab43fd0ea281a05
diff --git a/server/src/main/java/org/openqa/selenium/server/testgenerator/XlateHtmlSeleneseToJava.java b/server/src/main/java/org/openqa/selenium/server/testgenerator/XlateHtmlSeleneseToJava.java index <HASH>..<HASH> 100644 --- a/server/src/main/java/org/openqa/selenium/server/testgenerator/XlateHtmlSeleneseToJava.jav...
make the title comparison loose; need to revisit why this would be an improvement on the build machine (and not on mine!) r<I>
SeleniumHQ_selenium
train
300d93d6806f293a29f9f7b25359a0f7f0193604
diff --git a/src/RocknRoot/StrayFw/Http/Http.php b/src/RocknRoot/StrayFw/Http/Http.php index <HASH>..<HASH> 100644 --- a/src/RocknRoot/StrayFw/Http/Http.php +++ b/src/RocknRoot/StrayFw/Http/Http.php @@ -119,7 +119,7 @@ abstract class Http $controller = Controllers::get($a['class']); ...
add phpstan-ignore-line in HTTP\HTTP for a false positive
RocknRoot_strayFw
train
32ba534b3ce13178d694eb2da450ad83f72b5983
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -6,7 +6,8 @@ var CFX_PATH = SDK_PATH + '/bin/cfx'; var ENV = { PYTHONPATH: SDK_PATH + '/python-lib/', CUDDLEFISH_ROOT: SDK_PATH, - PATH: process.env.PATH + PATH: process.env.PATH, + DISPLAY: process.env.DISPLAY }; ...
Added DISPLAY variable to ENV. Without this, run breaks on linux.
jsantell_node-cfx
train
d257447331fa6a02c26382fdfed672ba024a1e65
diff --git a/Kwf_js/Ext4/Controller/EditWindow.js b/Kwf_js/Ext4/Controller/EditWindow.js index <HASH>..<HASH> 100644 --- a/Kwf_js/Ext4/Controller/EditWindow.js +++ b/Kwf_js/Ext4/Controller/EditWindow.js @@ -6,12 +6,13 @@ Ext4.define('Kwf.Ext4.Controller.EditWindow', { closeAction: 'hide', stateful: true, ...
Ext4: make EditWindow save button text configurable allows using Ok as text, useful when autoSync is false
koala-framework_koala-framework
train
80838603b67d012227c7aef08dbf5dfb6f1e8872
diff --git a/Kwc/Form/UseViewCachePlugin.php b/Kwc/Form/UseViewCachePlugin.php index <HASH>..<HASH> 100644 --- a/Kwc/Form/UseViewCachePlugin.php +++ b/Kwc/Form/UseViewCachePlugin.php @@ -13,12 +13,18 @@ class Kwc_Form_UseViewCachePlugin extends Kwf_Component_Plugin_Abstract } } - public function skip...
Change SkipProcessInput interface Instead of returning 3 possible constants pass data to method so it can dynamically decide if it should be skipped. Also fix Login Plugins to not skip processInput for it's login form. Fixes problems when a invalid login resulted in an error.
koala-framework_koala-framework
train
ad7a5145636cb5c656027db8c446d0191486adaa
diff --git a/tests/integration/test_install_basic.py b/tests/integration/test_install_basic.py index <HASH>..<HASH> 100644 --- a/tests/integration/test_install_basic.py +++ b/tests/integration/test_install_basic.py @@ -432,7 +432,7 @@ def test_system_and_deploy_work(PipenvInstance): Path(p.pipfile_path).write_...
Fix test that has been broken for who knows how long...
pypa_pipenv
train