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
6449d80998fb1983951a3fce26825b1224469c34
diff --git a/src/stylable.js b/src/stylable.js index <HASH>..<HASH> 100644 --- a/src/stylable.js +++ b/src/stylable.js @@ -5,7 +5,18 @@ import hoistStatics from 'hoist-non-react-statics' import Node from './node' function getDisplayName (comp) { - return comp.displayName || comp.name || 'Component' + if (typeof c...
fix: make getDisplayName to be almost equal to react getElementName
vovkasm_react-native-stylable
train
js
235859d75e4d8d6601085a7f8d788f48d163f039
diff --git a/src/types.js b/src/types.js index <HASH>..<HASH> 100644 --- a/src/types.js +++ b/src/types.js @@ -19,10 +19,23 @@ export type InnerRef = ElementRef<typeof HTMLElement>; export type PropsWithInnerRef = { innerRef: InnerRef, }; + export type PropsWithStyles = { getStyles: (string, any) => {}, }; ...
Adding CommonProps type (needs work to be applied everywhere)
JedWatson_react-select
train
js
83729e2fe36a0a629c2a5a52a7e2970287d57036
diff --git a/actionpack/lib/action_view/render/layouts.rb b/actionpack/lib/action_view/render/layouts.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_view/render/layouts.rb +++ b/actionpack/lib/action_view/render/layouts.rb @@ -65,7 +65,7 @@ module ActionView if formats.size == 1 _find_la...
Formats should always be an array.
rails_rails
train
rb
5ad851d97495a2a200b7d5e16f9053351e68c4c5
diff --git a/src/TooltipFactory.js b/src/TooltipFactory.js index <HASH>..<HASH> 100644 --- a/src/TooltipFactory.js +++ b/src/TooltipFactory.js @@ -341,7 +341,7 @@ var addMutation = function(tooltip) { }; var addXRefs = function(tooltip, xrefs) { - if (xrefs) { + if (xrefs && (xrefs.length !== 0)) { v...
Check xrefs length.
ebi-uniprot_ProtVista
train
js
27fc1711da698d5534d1958d78fcca2e23184d1f
diff --git a/sos/plugins/libreswan.py b/sos/plugins/libreswan.py index <HASH>..<HASH> 100644 --- a/sos/plugins/libreswan.py +++ b/sos/plugins/libreswan.py @@ -49,7 +49,7 @@ class Libreswan(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): self.add_forbidden_path([ '/etc/ipsec.secrets', - ...
[libreswan] fix directory blacklist style Plugins must use 'path/to/exclude' rather than 'path/to/exclude/*' in order to omit a directory and all its content from the report.
sosreport_sos
train
py
5361894bd1232f198c2bd56c4ebe6784ac60b3fb
diff --git a/tests/test_arg_parsing.py b/tests/test_arg_parsing.py index <HASH>..<HASH> 100644 --- a/tests/test_arg_parsing.py +++ b/tests/test_arg_parsing.py @@ -18,7 +18,7 @@ from cookiecutter import main def test_parse_cookiecutter_args(): args = main.parse_cookiecutter_args(['project/']) assert args.inpu...
Change comparision to 'is' in order to fix flake8
audreyr_cookiecutter
train
py
e1e8cbaa57032de76c2b8511f7f4c571c186880a
diff --git a/lib/sup/mode.rb b/lib/sup/mode.rb index <HASH>..<HASH> 100644 --- a/lib/sup/mode.rb +++ b/lib/sup/mode.rb @@ -83,6 +83,7 @@ EOS ### helper functions def save_to_file fn, talk=true + FileUtils.mkdir_p File.dirname(fn) if File.exist? fn unless BufferManager.ask_yes_or_no "File \"#{fn}\" ...
Create directory for saving files if it doesn't exist yet
sup-heliotrope_sup
train
rb
b96f176cc1afa11792256815195449a3228a3839
diff --git a/lib/toml-rb/dumper.rb b/lib/toml-rb/dumper.rb index <HASH>..<HASH> 100644 --- a/lib/toml-rb/dumper.rb +++ b/lib/toml-rb/dumper.rb @@ -93,12 +93,12 @@ module TomlRB obj.strftime("%Y-%m-%dT%H:%M:%SZ") elsif obj.is_a?(Date) obj.strftime("%Y-%m-%d") - elsif obj.is_a? Regexp + ...
Fix linter and sytle-inconsistency.
emancu_toml-rb
train
rb
310bfcae6166496eeffb5624e2bf887903197921
diff --git a/src/Engine/SocketIO.php b/src/Engine/SocketIO.php index <HASH>..<HASH> 100644 --- a/src/Engine/SocketIO.php +++ b/src/Engine/SocketIO.php @@ -81,10 +81,9 @@ abstract class SocketIO implements EngineInterface */ protected function getServerInformation() { - $server = array_replace($th...
The transport should not be in the url configuration
Wisembly_elephant.io
train
php
cf78d13c6d17e8413d08bc1758f385dcc79daf3b
diff --git a/Kwc/Form/Component.php b/Kwc/Form/Component.php index <HASH>..<HASH> 100644 --- a/Kwc/Form/Component.php +++ b/Kwc/Form/Component.php @@ -134,7 +134,6 @@ class Kwc_Form_Component extends Kwc_Abstract_Composite_Component if (!$this->_errors) { try { $this->...
fixed order of before-/after- save calls in form component correct is beforeInsert/beforeUpdate - beforeSave - save - afterInsert/afterUpdate - afterSave
koala-framework_koala-framework
train
php
a4ec698624cff5180dd50bfe088b686c63f8fa05
diff --git a/lib/cli/finder.js b/lib/cli/finder.js index <HASH>..<HASH> 100644 --- a/lib/cli/finder.js +++ b/lib/cli/finder.js @@ -135,7 +135,15 @@ function find(globs, callback) { } return globs.some(function (glob) { - return match(filePath, glob) && stat(filePath).isFile();...
Fix non-magic globs from matching all files For a while, remark(1) included all files nested in directories if that directory was given on the CLI. For example, if `content` was given, `content/foo.jpg` was included by mistake. Now, if a glob does not contain magic (as in, it is a file-path) and represents a directo...
remarkjs_remark
train
js
79549d665e6e37204918d3f880f34ec52a01c321
diff --git a/openquake/engine/utils/tasks.py b/openquake/engine/utils/tasks.py index <HASH>..<HASH> 100644 --- a/openquake/engine/utils/tasks.py +++ b/openquake/engine/utils/tasks.py @@ -157,9 +157,9 @@ def oqtask(task_func): # the revoke functionality can work EnginePerformanceMonitor.store_task_id(j...
Removed parens breaking a with statement Former-commit-id: d<I>f5c<I>e6f<I>fafc<I>efb<I>cf4ded3f
gem_oq-engine
train
py
cdbaf33fc17d722fc849c656c3bb97673bd354f3
diff --git a/src/nwmatcher.js b/src/nwmatcher.js index <HASH>..<HASH> 100644 --- a/src/nwmatcher.js +++ b/src/nwmatcher.js @@ -69,9 +69,13 @@ NW.Dom = (function(global) { reIdSelector = /\#([-\w]+)$/, reWhiteSpace = /[\x20\t\n\r\f]+/g, + // match missing R/L context reLeftContext = /^\s*[>+~]+/, reRightC...
added regular expression to aid in guessing document type, added missing comment
dperini_nwmatcher
train
js
9211b3a3d2133a30e591e2c4ff1b25b6b3ba2ce4
diff --git a/dynamic_rest/viewsets.py b/dynamic_rest/viewsets.py index <HASH>..<HASH> 100644 --- a/dynamic_rest/viewsets.py +++ b/dynamic_rest/viewsets.py @@ -519,12 +519,9 @@ class DynamicModelViewSet(WithDynamicViewSetMixin, viewsets.ModelViewSet): bulk_payload = self._get_bulk_payload(request) if b...
Only return <I> on AssertionError (unable to retrieve pk)
AltSchool_dynamic-rest
train
py
d305465256be19dfc0163c300821c0913d930189
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ instructions. setup( name="django-prometheus", - version="0.0.8", + version="0.0.9", author="Uriel Corfa", author_email="uriel@corfa.fr", description=(
Release <I> Breaking change: the in-thread exporter is now disabled by default, and exporting /metrics as a django view is now the "common" way of doing things.
korfuri_django-prometheus
train
py
5b652bcfd8552bba4c7aafefa84be0f0cf90ba21
diff --git a/client/consul/sync.go b/client/consul/sync.go index <HASH>..<HASH> 100644 --- a/client/consul/sync.go +++ b/client/consul/sync.go @@ -268,8 +268,8 @@ func (c *ConsulService) deregisterCheck(ID string) error { return c.client.Agent().CheckDeregister(ID) } -// SyncWithConsul triggers periodic syncing of...
Renaming the SyncWithConsul method
hashicorp_nomad
train
go,go
b262f2cd341fff3553008a4228b45bf808bcce7f
diff --git a/javascript/hasoneautocompletefield.js b/javascript/hasoneautocompletefield.js index <HASH>..<HASH> 100644 --- a/javascript/hasoneautocompletefield.js +++ b/javascript/hasoneautocompletefield.js @@ -105,15 +105,15 @@ getCurrentTextElement: function() { - return this.closest('...
Update JS to account for FieldGroup markup changing between SS versions
nathancox_silverstripe-hasoneautocompletefield
train
js
f166b5945a63b3f13288faa4dc378aabef18d43b
diff --git a/lib/cancan/controller_additions.rb b/lib/cancan/controller_additions.rb index <HASH>..<HASH> 100644 --- a/lib/cancan/controller_additions.rb +++ b/lib/cancan/controller_additions.rb @@ -151,6 +151,9 @@ module CanCan # [:+except+] # Does not apply before filter to given actions. # + ...
Just add singleton to description of authorize_resource
ryanb_cancan
train
rb
a407951ee5a8f2cd47d3fad7ff1c0a7552c8d0a5
diff --git a/pytodoist/todoist.py b/pytodoist/todoist.py index <HASH>..<HASH> 100644 --- a/pytodoist/todoist.py +++ b/pytodoist/todoist.py @@ -1119,7 +1119,7 @@ class RequestError(Exception): HTTP_OK = 200 def _fail_if_contains_errors(response): - """Raise a TodoistError Exception if a given response + """Rai...
Fixed a docstring inconsistency.
Garee_pytodoist
train
py
75d4ac6ae930196bbf40e98f73e1a92f0b369c86
diff --git a/src/CRUDlex/CRUDControllerProvider.php b/src/CRUDlex/CRUDControllerProvider.php index <HASH>..<HASH> 100644 --- a/src/CRUDlex/CRUDControllerProvider.php +++ b/src/CRUDlex/CRUDControllerProvider.php @@ -205,7 +205,7 @@ class CRUDControllerProvider implements ControllerProviderInterface { } ...
don't count soft deleted items in the total amount on the list page
philiplb_CRUDlex
train
php
a8dccbc3be9bbbfd25fc6776c9412055e382d998
diff --git a/lib/ecm/videos/version.rb b/lib/ecm/videos/version.rb index <HASH>..<HASH> 100644 --- a/lib/ecm/videos/version.rb +++ b/lib/ecm/videos/version.rb @@ -1,5 +1,5 @@ module Ecm module Videos - VERSION = '2.0.0'.freeze + VERSION = '2.1.0'.freeze end end
Bumped version to <I>
robotex82_ecm_videos
train
rb
9a427513229df7f218ecab8d9e214222302f3531
diff --git a/src/Jasny/Router.php b/src/Jasny/Router.php index <HASH>..<HASH> 100644 --- a/src/Jasny/Router.php +++ b/src/Jasny/Router.php @@ -326,7 +326,7 @@ class Router */ public function getUrl() { - if (!isset($this->url)) $this->url = preg_replace('/\?.*$/', '', $_SERVER['REQUEST_URI']); + ...
Decode the URL got from $_SERVER['REQUEST_URI']
jasny_router
train
php
d60e2ffe0190f1472f38f8e1152da61c598920e9
diff --git a/spyder/widgets/variableexplorer/dataframeeditor.py b/spyder/widgets/variableexplorer/dataframeeditor.py index <HASH>..<HASH> 100644 --- a/spyder/widgets/variableexplorer/dataframeeditor.py +++ b/spyder/widgets/variableexplorer/dataframeeditor.py @@ -45,7 +45,7 @@ COMPLEX_NUMBER_TYPES = (complex, np.complex...
Default float format change Edited default float format, according to previous change in array editor.
spyder-ide_spyder
train
py
55cbcdb8f8e18630061e13f8e358c39341d54d1d
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -17,9 +17,6 @@ export default function serve (options = { contentBase: '' }) { options.https = options.https || false mime.default_type = 'text/plain' - let server - // Fallback to http protocol if ht...
Cleanup Refactor single-use `PROTOCOL` variable Move declaration of `server`
thgh_rollup-plugin-serve
train
js
39087184f144dfa83dd4b037d3f99c3435f20fe0
diff --git a/faq-bundle/contao/dca/tl_faq.php b/faq-bundle/contao/dca/tl_faq.php index <HASH>..<HASH> 100644 --- a/faq-bundle/contao/dca/tl_faq.php +++ b/faq-bundle/contao/dca/tl_faq.php @@ -368,7 +368,7 @@ class tl_faq extends Backend if (!strlen($varValue)) { $autoAlias = true; - $varValue = standardize($...
[Faq] Moved `Controller::restoreBasicEntities()` to the `String` class (see #<I>)
contao_contao
train
php
14f0943fe8ee63050146b44cb949e4887ee5261f
diff --git a/generators/app/templates/api/auth/auth.router.test.js b/generators/app/templates/api/auth/auth.router.test.js index <HASH>..<HASH> 100644 --- a/generators/app/templates/api/auth/auth.router.test.js +++ b/generators/app/templates/api/auth/auth.router.test.js @@ -66,16 +66,6 @@ test.serial('POST /auth 400 (m...
Remove duplicate test from auth router tests
diegohaz_rest
train
js
d8ce91dadfd4360b0e14f30e938f92a595227a87
diff --git a/framework/js/onsen.js b/framework/js/onsen.js index <HASH>..<HASH> 100644 --- a/framework/js/onsen.js +++ b/framework/js/onsen.js @@ -549,7 +549,9 @@ limitations under the License. } }; - return ons._createPopoverOriginal(page, options); + return ons._createPopoverOrigin...
fix(ons-popover): Changed ons.createPopover() to resolve component view object instead of ons-popover element on angular bindings.
OnsenUI_OnsenUI
train
js
1c160f016ce7b1d3802ba1963c7ce536f21da822
diff --git a/shakedown/cli/helpers.py b/shakedown/cli/helpers.py index <HASH>..<HASH> 100644 --- a/shakedown/cli/helpers.py +++ b/shakedown/cli/helpers.py @@ -67,6 +67,7 @@ def fchr(char): return { 'PP': chr(10003), 'FF': chr(10005), + 'SK': chr(10073), '>>': chr(12299) }.get...
adding a pause char for skip
dcos_shakedown
train
py,py
46d9ae82539aff0af5c8702e21641cfa8935a114
diff --git a/schema.js b/schema.js index <HASH>..<HASH> 100644 --- a/schema.js +++ b/schema.js @@ -25,7 +25,7 @@ class SchemaItem { // mapping names to either attributes (to add) or null (to remove // the attribute by that name). static updateAttrs(attrs) { - this.prototype.attrs = overlayObj(this.prototype...
Fix the way updateAttrs overwrites the member property
ProseMirror_prosemirror-model
train
js
6135bf0cb614a18d0c044161cbe5b08fbf0788fd
diff --git a/lib/dm-migrations/adapters/dm-sqlserver-adapter.rb b/lib/dm-migrations/adapters/dm-sqlserver-adapter.rb index <HASH>..<HASH> 100644 --- a/lib/dm-migrations/adapters/dm-sqlserver-adapter.rb +++ b/lib/dm-migrations/adapters/dm-sqlserver-adapter.rb @@ -47,7 +47,7 @@ module DataMapper # TODO: update...
Changed usage of alias to alias_method
datamapper_dm-migrations
train
rb,rb
932bf325530c2cd61789c91213aa42b5fc2d30ea
diff --git a/app.py b/app.py index <HASH>..<HASH> 100644 --- a/app.py +++ b/app.py @@ -181,7 +181,6 @@ def get_random_condcount(): filter(or_(Participant.status == 4, Participant.status == 5, Participant.beginhit > starttime)).\ - ...
Delete line that prevents previous conditions>3 to be counted before drawing new condition
NYUCCL_psiTurk
train
py
e8f976f575e0ae0d9b73ebca3e40aa2437d9a358
diff --git a/src/Git/CheckedOutRepository.php b/src/Git/CheckedOutRepository.php index <HASH>..<HASH> 100644 --- a/src/Git/CheckedOutRepository.php +++ b/src/Git/CheckedOutRepository.php @@ -17,7 +17,6 @@ final class CheckedOutRepository public static function fromPath(string $path) : self { - Assert...
Verify that non-git directories are rejected in `CheckedOutRepository`
Roave_BackwardCompatibilityCheck
train
php,php
b7469b553d4eade2e84728eed93730d559ca809c
diff --git a/tests/dummy/app/controllers/application.js b/tests/dummy/app/controllers/application.js index <HASH>..<HASH> 100644 --- a/tests/dummy/app/controllers/application.js +++ b/tests/dummy/app/controllers/application.js @@ -6,7 +6,7 @@ export default Ember.Controller.extend({ dynamicCurrent: 5, actions: ...
Fix dummy for prod build
knownasilya_pagination-pager
train
js
c65b24335453ed1809b238bd33e9a8da5ad59964
diff --git a/lib/better_errors/error_page.rb b/lib/better_errors/error_page.rb index <HASH>..<HASH> 100644 --- a/lib/better_errors/error_page.rb +++ b/lib/better_errors/error_page.rb @@ -28,6 +28,11 @@ module BetterErrors def render(template_name = "main") binding.eval(self.class.template(template_name).s...
Improve backtrace when a BE template raises error This is purely for BE development.
BetterErrors_better_errors
train
rb
9de360fff88c3b3eb6e1555fe470a473fb23f574
diff --git a/djcelery/snapshot.py b/djcelery/snapshot.py index <HASH>..<HASH> 100644 --- a/djcelery/snapshot.py +++ b/djcelery/snapshot.py @@ -33,7 +33,7 @@ debug = logger.debug def aware_tstamp(secs): """Event timestamps uses the local timezone.""" - return maybe_make_aware(datetime.fromtimestamp(secs)) + ...
Fix snapshot.aware_tstamp by converting from utc timestamp
celery_django-celery
train
py
6109df8d36909414a0c82da2447f467371ab63c0
diff --git a/src/views/part/_objectParts.php b/src/views/part/_objectParts.php index <HASH>..<HASH> 100644 --- a/src/views/part/_objectParts.php +++ b/src/views/part/_objectParts.php @@ -78,6 +78,7 @@ echo \hipanel\grid\GridView::widget([ [ 'label' => Yii::t('hipanel.finance.price', 'Price'), ...
Due to use the `_objectParts` view from other modules, it was necessary to additionally limit visibility
hiqdev_hipanel-module-stock
train
php
5f0d07b36bcd34988fd064596a7784aeadea4e09
diff --git a/src/transformers/models/big_bird/modeling_big_bird.py b/src/transformers/models/big_bird/modeling_big_bird.py index <HASH>..<HASH> 100755 --- a/src/transformers/models/big_bird/modeling_big_bird.py +++ b/src/transformers/models/big_bird/modeling_big_bird.py @@ -1378,6 +1378,13 @@ class BigBirdAttention(nn....
Make BigBird model compatiable to fp<I> dtype. (#<I>) * Make BigBird model compatiable to fp<I> dtype. * Use tree_map instead of map * Reformat the code * Fix import order * Convert masks to the correct dtype * Fix format issue * Address comments.
huggingface_pytorch-pretrained-BERT
train
py
431b947149a838e8cb8acc86e18dfb8cdf43386c
diff --git a/cmd/influx_inspect/help/help.go b/cmd/influx_inspect/help/help.go index <HASH>..<HASH> 100644 --- a/cmd/influx_inspect/help/help.go +++ b/cmd/influx_inspect/help/help.go @@ -31,6 +31,7 @@ Usage: influx_inspect [[command] [arguments]] The commands are: + dumptsi dumps low-level details ...
Add dumptsi command to help command.
influxdata_influxdb
train
go
f7e8cb31d4fc08307b90654007dc7bff146c7b69
diff --git a/bbb.go b/bbb.go index <HASH>..<HASH> 100644 --- a/bbb.go +++ b/bbb.go @@ -238,17 +238,19 @@ func (p *bbbAnalogPin) Close() error { return nil } -// BBBPWMDefaultPolarity represents the default polarity (Positve or 1) for pwm. -const BBBPWMDefaultPolarity = Positive +const ( + // BBBPWMDefaultPolarity ...
doc: group the bbb constants together
kidoman_embd
train
go
5aed0aced14fd29f414bd9e962d6e31ea2e2b175
diff --git a/robotium-solo/src/main/java/com/jayway/android/robotium/solo/ScreenshotTaker.java b/robotium-solo/src/main/java/com/jayway/android/robotium/solo/ScreenshotTaker.java index <HASH>..<HASH> 100644 --- a/robotium-solo/src/main/java/com/jayway/android/robotium/solo/ScreenshotTaker.java +++ b/robotium-solo/src/m...
Bugfix for issue-<I>
RobotiumTech_robotium
train
java
e56b55fd045f4e81e9d7ebb6b0f1ea25713ec33a
diff --git a/scraper.rb b/scraper.rb index <HASH>..<HASH> 100644 --- a/scraper.rb +++ b/scraper.rb @@ -55,10 +55,20 @@ class Scraper end end + private + + def self.rules + @rules ||= {} + end + + def self.inherited(subclass) + subclass.rules.update self.rules + end + # Rule declaration i...
declare methods that usually shouldn't be overriden as private
mislav_nibbler
train
rb
c632d917214c104f44c5a9fba532d26af4e8866f
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -22,5 +22,5 @@ setup( setup_requires=['pytest-runner', 'setuptools_scm'], # put pytest last to workaround this bug # https://bitbucket.org/pypa/setuptools/issues/196/tests_require-pytest-pytest-cov-breaks - t...
Pin moto version This is to circumvent an upstream issue with a required library (aws-xray-sdk) that is pinned to a version not available on pypi anymore.
mozilla_python_moztelemetry
train
py
5584229e3e0090a2cc7a5a4d70100219eca6f584
diff --git a/core/src/main/java/hudson/model/TopLevelItemDescriptor.java b/core/src/main/java/hudson/model/TopLevelItemDescriptor.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/hudson/model/TopLevelItemDescriptor.java +++ b/core/src/main/java/hudson/model/TopLevelItemDescriptor.java @@ -40,6 +40,7 @@ import ...
[JENKINS-<I>] LOGGER.log() instead of LOGGER.warning()
jenkinsci_jenkins
train
java
686c983f3e14ebde19d39ff5bdfc9f97fe3faf52
diff --git a/security/Member.php b/security/Member.php index <HASH>..<HASH> 100644 --- a/security/Member.php +++ b/security/Member.php @@ -1073,6 +1073,7 @@ class Member extends DataObject { */ public function isInGroup($groupID) { user_error('Member::isInGroup() is deprecated. Please use inGroup() instead.', E...
Updated Member::isInGroup() to function as well as being deprecated git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@<I> <I>b<I>ca-7a2a-<I>-9d3b-<I>d<I>a<I>a9
silverstripe_silverstripe-framework
train
php
bdc324760d754f098e338b1fca8fe4fb4ee03c15
diff --git a/telethon/events/newmessage.py b/telethon/events/newmessage.py index <HASH>..<HASH> 100644 --- a/telethon/events/newmessage.py +++ b/telethon/events/newmessage.py @@ -137,12 +137,6 @@ class NewMessage(EventBuilder): else: return - # Make messages sent to ourselves outgoing unl...
Move message.out patching in self-chat to Message May fix #<I>.
LonamiWebs_Telethon
train
py,py
c27d954016377bb0500251b7c8ba78895d4d87b7
diff --git a/http/query.go b/http/query.go index <HASH>..<HASH> 100644 --- a/http/query.go +++ b/http/query.go @@ -117,7 +117,7 @@ func toSpec(p *ast.Program, now func() time.Time) (*flux.Spec, error) { return nil, err } - if err := itrp.Eval(semProg); err != nil { + if err := itrp.Eval(semProg, nil); err != nil...
fix: pass nil importer to Eval
influxdata_influxdb
train
go
9b64bea8fa7f169af4ee31bb99052a190c6dc0ec
diff --git a/sos/policies/redhat.py b/sos/policies/redhat.py index <HASH>..<HASH> 100644 --- a/sos/policies/redhat.py +++ b/sos/policies/redhat.py @@ -106,7 +106,8 @@ No changes will be made to system configuration. def check(self): """This method checks to see if we are running on RHEL. It returns True ...
Fix Fedora policy detection Make sure that the Fedora policy gets a chance to run by checking for the absence of /etc/fedora-release in the RHEL policy and fix the inheritance of FedoraPolicy.
sosreport_sos
train
py
25e6896332d28b6a06aaeeef600ee75edc5cab15
diff --git a/templates/releaf/installer.rb b/templates/releaf/installer.rb index <HASH>..<HASH> 100644 --- a/templates/releaf/installer.rb +++ b/templates/releaf/installer.rb @@ -90,6 +90,9 @@ if dummy mysql_password = ask_wizard("Password for MySQL user #{mysql_username}?", '') gsub_file "config/database.y...
Possibility to define dummy database name
cubesystems_releaf
train
rb
d60269c70a30bda26abf0bd029100ae3eb185cdc
diff --git a/resources/lang/fa-IR/forms.php b/resources/lang/fa-IR/forms.php index <HASH>..<HASH> 100644 --- a/resources/lang/fa-IR/forms.php +++ b/resources/lang/fa-IR/forms.php @@ -168,7 +168,7 @@ return [ 'analytics' => [ 'analytics_google' => 'Google Analytics code', 'analyt...
New translations forms.php (Persian)
CachetHQ_Cachet
train
php
b0c83b721985f648c59cdbe5af473fdb196e0462
diff --git a/hyperbahn/service_proxy.js b/hyperbahn/service_proxy.js index <HASH>..<HASH> 100644 --- a/hyperbahn/service_proxy.js +++ b/hyperbahn/service_proxy.js @@ -302,10 +302,12 @@ function removeServicePeer(serviceName, hostPort) { return; } - var peer = svcchan.peers.get(hostPort); - if (pee...
ServiceDispatchHandler: get peer from root channel in #removeServicePeer
uber_tchannel-node
train
js
2295e7de9e854e25594732091a4c96688b0bce6d
diff --git a/source/application/components/widgets/oxwarticlebox.php b/source/application/components/widgets/oxwarticlebox.php index <HASH>..<HASH> 100644 --- a/source/application/components/widgets/oxwarticlebox.php +++ b/source/application/components/widgets/oxwarticlebox.php @@ -95,6 +95,10 @@ class oxwArticleBox ex...
Load article description in article box widget for recommendation list.
OXID-eSales_oxideshop_ce
train
php
9bed27b98f3c7c4f0c147756d6df3b66242c458a
diff --git a/bigchaindb/version.py b/bigchaindb/version.py index <HASH>..<HASH> 100644 --- a/bigchaindb/version.py +++ b/bigchaindb/version.py @@ -1,2 +1,2 @@ -__version__ = '1.2.0.dev' -__short_version__ = '1.2.dev' +__version__ = '1.3.0.dev' +__short_version__ = '1.3.dev'
Updated to <I>.dev in version.py
bigchaindb_bigchaindb
train
py
2f1ab45f468caaa4119647f01dd8261885196e30
diff --git a/intranet/apps/eighth/serializers.py b/intranet/apps/eighth/serializers.py index <HASH>..<HASH> 100644 --- a/intranet/apps/eighth/serializers.py +++ b/intranet/apps/eighth/serializers.py @@ -143,7 +143,9 @@ class EighthBlockDetailSerializer(serializers.Serializer): "administrative": scheduled_a...
fix(eighth): add finance and comments field
tjcsl_ion
train
py
457afb90c1d18ef006b8089a76f69656fb8a6638
diff --git a/app/models/outgoing_message_prototype.rb b/app/models/outgoing_message_prototype.rb index <HASH>..<HASH> 100644 --- a/app/models/outgoing_message_prototype.rb +++ b/app/models/outgoing_message_prototype.rb @@ -163,11 +163,15 @@ class OutgoingMessagePrototype if @html_body.blank? && attachments.empty...
don't create empty parts in a multi part email (#<I>)
atech_postal
train
rb
fe401bceb80f74fa5b91412a19fd760bce3c98c2
diff --git a/test/test_helper.rb b/test/test_helper.rb index <HASH>..<HASH> 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -9,7 +9,7 @@ class Test::Unit::TestCase define_method("test_#{name.gsub(/\s+/,'_')}".to_sym, block) end - def environment + def default_environment { "RACK_ENV" => "...
allow overriding settings in test environment
github_janky
train
rb
038a1e4e3b912170c7a21ea5605c60a95a3ad82f
diff --git a/lib/array.js b/lib/array.js index <HASH>..<HASH> 100644 --- a/lib/array.js +++ b/lib/array.js @@ -12,6 +12,13 @@ module.exports.max = function(array) return Math.max.apply(Math, array); }; +//Get the min value in an array +module.exports.min = function(obj) +{ + //Return the min value + return Math...
lib/array.js: added array.min method to get the minimum value in an array
jmjuanes_utily
train
js
c4d7a63e8dbfd398e0a152ea8557a26877ae05ef
diff --git a/client.go b/client.go index <HASH>..<HASH> 100644 --- a/client.go +++ b/client.go @@ -110,8 +110,9 @@ func NewDockerClientTimeout(daemonUrl string, tlsConfig *tls.Config, timeout tim u.Scheme = "https" } } + copiedUrl, _ := url.Parse(u.String()) httpClient := newHttpClient(u, tlsConfig, timeout,...
fix for newHttpClient is not idempotency
mijia_adoc
train
go
fcd1d1f876c80082831af50a0ab6cea8d676c0e9
diff --git a/src/resolvers/ClassNameResolver.php b/src/resolvers/ClassNameResolver.php index <HASH>..<HASH> 100644 --- a/src/resolvers/ClassNameResolver.php +++ b/src/resolvers/ClassNameResolver.php @@ -28,7 +28,7 @@ class ClassNameResolver implements DependencyResolverInterface throw new NotInstantiableEx...
Update src/resolvers/ClassNameResolver.php
yiisoft_di
train
php
960b9317449f8b5507e05774d4ab7828b1bcee1c
diff --git a/conductor/src/main/java/com/bluelinelabs/conductor/Controller.java b/conductor/src/main/java/com/bluelinelabs/conductor/Controller.java index <HASH>..<HASH> 100755 --- a/conductor/src/main/java/com/bluelinelabs/conductor/Controller.java +++ b/conductor/src/main/java/com/bluelinelabs/conductor/Controller.ja...
Added a view state getter, which is needed if view state must be obtained at the time of view creation (ex: for Google Maps)
bluelinelabs_Conductor
train
java
48c48ac457d18c16c91e5a8c68f64e36ee72d985
diff --git a/src/keymaps/index.js b/src/keymaps/index.js index <HASH>..<HASH> 100644 --- a/src/keymaps/index.js +++ b/src/keymaps/index.js @@ -152,7 +152,7 @@ export default () => { if (ableTorun || opts.force) { opts.prevent && canvas.getCanvasView().preventDefault(e); typeof handler == ...
Execute shortcut commands from the Commands manager. Closes #<I>
artf_grapesjs
train
js
5105d2e4e4844bab149f41767a230ea9c15da42f
diff --git a/cluster_state_test.go b/cluster_state_test.go index <HASH>..<HASH> 100644 --- a/cluster_state_test.go +++ b/cluster_state_test.go @@ -91,3 +91,15 @@ func TestClusterStateURLs(t *testing.T) { } } } + +func TestClusterStateGet(t *testing.T) { + client := setupTestClientAndCreateIndex(t) // , SetTraceLo...
Add test for Cluster State API Trying to find issue mentioned in #<I>.
olivere_elastic
train
go
891f7f97e73b522b223c2083666b0e4ae6b484de
diff --git a/lib/economic/entity.rb b/lib/economic/entity.rb index <HASH>..<HASH> 100644 --- a/lib/economic/entity.rb +++ b/lib/economic/entity.rb @@ -207,10 +207,6 @@ module Economic ) end - def soap_action_name(action) - Endpoint.new.soap_action_name(self.class, action) - end - def class...
Remove unused soap_action_name method This should probably have been removed as part of commit eb<I>e<I>e<I>d8dbcbafeaf<I>e<I>f<I>a1.
substancelab_rconomic
train
rb
695bc0bea2a8183f72e71597e56c6fe55bd35350
diff --git a/molgenis-data-annotators/src/main/java/org/molgenis/data/annotation/core/resources/impl/tabix/TabixReader.java b/molgenis-data-annotators/src/main/java/org/molgenis/data/annotation/core/resources/impl/tabix/TabixReader.java index <HASH>..<HASH> 100644 --- a/molgenis-data-annotators/src/main/java/org/molgen...
Fix three "Class variable fields should not have public accessibility" vulnerabilities reported by Sonar
molgenis_molgenis
train
java
2ca70dc10d67a1b5d899660caf24a7bd201c6544
diff --git a/project/library/CM/Session.php b/project/library/CM/Session.php index <HASH>..<HASH> 100644 --- a/project/library/CM/Session.php +++ b/project/library/CM/Session.php @@ -233,7 +233,7 @@ class CM_Session { } } - public static function gc() { + public static function deleteExpired() { CM_Mysql::exe...
t<I>: Rename Session::gc() to deleteExpired()
cargomedia_cm
train
php
c4db465402ecffa90065cfe8a66228b7c3426a81
diff --git a/Eloquent/Model.php b/Eloquent/Model.php index <HASH>..<HASH> 100755 --- a/Eloquent/Model.php +++ b/Eloquent/Model.php @@ -1125,9 +1125,11 @@ abstract class Model implements ArrayAccess, ArrayableInterface, JsonableInterfa */ protected function updateTimestamps() { + $time = $this->freshTimestamp();...
Fix timestamp bug in Eloquent models.
illuminate_database
train
php
3415ba326a2892b26bfc89307967651e5403f32c
diff --git a/src/InfoViz/Native/MutualInformationDiagram/index.js b/src/InfoViz/Native/MutualInformationDiagram/index.js index <HASH>..<HASH> 100644 --- a/src/InfoViz/Native/MutualInformationDiagram/index.js +++ b/src/InfoViz/Native/MutualInformationDiagram/index.js @@ -780,7 +780,7 @@ function informationDiagram(publi...
fix(MutualInfoDiagram): Fix a query that missed using instance id to generate element id
Kitware_paraviewweb
train
js
19b020dbc72b9aeb5d6e3faca95bb55ce5418bb5
diff --git a/src/js/pannellum.js b/src/js/pannellum.js index <HASH>..<HASH> 100644 --- a/src/js/pannellum.js +++ b/src/js/pannellum.js @@ -1784,10 +1784,12 @@ function destroyHotSpots() { if (hs) { for (var i = 0; i < hs.length; i++) { var current = hs[i].div; - while(current.paren...
Check to make sure hot spot div exists before deleting it (#<I>).
mpetroff_pannellum
train
js
77dbf98f06f6bd99eb3b65abffd8b955fa652f0f
diff --git a/functions_defs_crypto_rand.go b/functions_defs_crypto_rand.go index <HASH>..<HASH> 100644 --- a/functions_defs_crypto_rand.go +++ b/functions_defs_crypto_rand.go @@ -10,6 +10,15 @@ import ( ) func loadStandardFunctionsCryptoRand() funcGroup { + // TODO: + // urlencode/urldecode + // rv[`md5`] = + // rv...
funcdoc: stubs
ghetzel_diecast
train
go
f3843ce527609057ea49f455e5a87afa217a9a57
diff --git a/openquake/engine/tests/calculators/hazard/general_test.py b/openquake/engine/tests/calculators/hazard/general_test.py index <HASH>..<HASH> 100644 --- a/openquake/engine/tests/calculators/hazard/general_test.py +++ b/openquake/engine/tests/calculators/hazard/general_test.py @@ -215,7 +215,7 @@ class Calcula...
Fixed a test broken by the change in the output_weight
gem_oq-engine
train
py
5a22e0775677bce917511cef9e01c6a0b329d964
diff --git a/test/test-helper/index.js b/test/test-helper/index.js index <HASH>..<HASH> 100644 --- a/test/test-helper/index.js +++ b/test/test-helper/index.js @@ -8,6 +8,8 @@ let { randomBytes } = require("crypto"); let { exec, spawn } = require("./child_process"); +let { COPY_KARMA } = process.env; + function ge...
Add support for the COPY_KARMA option This is actually outputted in error, saying it can be used, but it couldn't up until now.
badeball_karma-jsdom-launcher
train
js
81c6a007c0e3b91625e1cb7620f414030c973ec1
diff --git a/src/Http/Controllers/Adminarea/AccountPasswordController.php b/src/Http/Controllers/Adminarea/AccountPasswordController.php index <HASH>..<HASH> 100644 --- a/src/Http/Controllers/Adminarea/AccountPasswordController.php +++ b/src/Http/Controllers/Adminarea/AccountPasswordController.php @@ -31,7 +31,7 @@ cla...
Force save password regardless of any other fields validation errors - This action only deal with password change anyway.
rinvex_cortex-auth
train
php
b9494daca3d524c6b8f53d1dfd962962893345e3
diff --git a/studio/websetup.py b/studio/websetup.py index <HASH>..<HASH> 100644 --- a/studio/websetup.py +++ b/studio/websetup.py @@ -117,14 +117,6 @@ def setup_app(command, conf, vars): admin.groups.append(admin_gp) meta.Session.add(admin) - # Create user enduser - enduser = model.User() - enduse...
remove the enduser account created during setup-app
camptocamp_Studio
train
py
4fb9e2b23ba36a5d3660238554fc5d8a6186c107
diff --git a/jupyterlab_widgets/setup.py b/jupyterlab_widgets/setup.py index <HASH>..<HASH> 100644 --- a/jupyterlab_widgets/setup.py +++ b/jupyterlab_widgets/setup.py @@ -205,7 +205,7 @@ setup_args = dict( 'jupyterlab_widgets/static/jupyterlab_widgets.bundle.js', 'jupyterlab_widgets/static/jup...
Fix python package for jlab
jupyter-widgets_ipywidgets
train
py
85152679ce910d0993a2902ec00d199b8cc14e4d
diff --git a/admin.go b/admin.go index <HASH>..<HASH> 100644 --- a/admin.go +++ b/admin.go @@ -311,13 +311,18 @@ type adminHandler struct { // ServeHTTP is the external entry point for API requests. // It will only be called once per request. func (h adminHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { ...
admin: lower log level to Debug for /metrics requests (#<I>) * admin: lower log level to Debug for /metrics requests
mholt_caddy
train
go
76a88bd80e3553e85d0055dbadde1ca6c4638de8
diff --git a/lib/ndr_support/version.rb b/lib/ndr_support/version.rb index <HASH>..<HASH> 100644 --- a/lib/ndr_support/version.rb +++ b/lib/ndr_support/version.rb @@ -3,5 +3,5 @@ # This defines the NdrSupport version. If you change it, rebuild and commit the gem. # Use "rake build" to build the gem, see rake -T for a...
# bump to <I> with various ruby support fixes
PublicHealthEngland_ndr_support
train
rb
76a3368ea1a306bfa936ce886028825860c32a93
diff --git a/lib/support/har/index.js b/lib/support/har/index.js index <HASH>..<HASH> 100644 --- a/lib/support/har/index.js +++ b/lib/support/har/index.js @@ -56,6 +56,20 @@ function addTimingsToHAR(harPage, visualMetricsData, timings, cpu) { // only add first paint if we don't have visual metrics harPageTimi...
Include LCP and FCP in the HAR timings (#<I>)
sitespeedio_browsertime
train
js
b74a51c0ec10ec15f571da39710afef566ed5e52
diff --git a/findbugs/src/java/edu/umd/cs/findbugs/detect/FindNullDeref.java b/findbugs/src/java/edu/umd/cs/findbugs/detect/FindNullDeref.java index <HASH>..<HASH> 100644 --- a/findbugs/src/java/edu/umd/cs/findbugs/detect/FindNullDeref.java +++ b/findbugs/src/java/edu/umd/cs/findbugs/detect/FindNullDeref.java @@ -1009,...
if priority not even LOW, don't bother creating bug instance git-svn-id: <URL>
spotbugs_spotbugs
train
java
148e4b6c7889df3e10fa00edd54ec096a47f57a5
diff --git a/config_unix.go b/config_unix.go index <HASH>..<HASH> 100644 --- a/config_unix.go +++ b/config_unix.go @@ -1,4 +1,5 @@ // +build darwin freebsd linux netbsd openbsd + package peco import (
I think a newline was necessary
peco_peco
train
go
20894c99480886ad807bd8c2936941cf5815bbf4
diff --git a/runcommands/run.py b/runcommands/run.py index <HASH>..<HASH> 100644 --- a/runcommands/run.py +++ b/runcommands/run.py @@ -40,14 +40,18 @@ class Run(Command): '(higher precedence than keyword args)' ) = None, # Special globals ...
Tweak run command arg help for env, version, and echo
wylee_runcommands
train
py
443f9d9c7f10b75e66330c067e38fb0160bee908
diff --git a/test/test_helper.rb b/test/test_helper.rb index <HASH>..<HASH> 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -8,6 +8,7 @@ require "active_support/notifications" ENV["RACK_ENV"] = "test" +# for reloadable synonyms ENV["ES_PATH"] ||= "#{ENV["HOME"]}/elasticsearch/#{ENV["ELASTICSEARCH_VE...
Added comment [skip ci]
ankane_searchkick
train
rb
08c9693ee87c3e7a09fb3720d3d58870a911cc71
diff --git a/lib/closure_tree/model.rb b/lib/closure_tree/model.rb index <HASH>..<HASH> 100644 --- a/lib/closure_tree/model.rb +++ b/lib/closure_tree/model.rb @@ -48,7 +48,7 @@ module ClosureTree scope :without, lambda { |instance| if instance.new_record? - scoped + all else...
down to <I> failures
ClosureTree_closure_tree
train
rb,rb
61c972d75f14f3e5712a6856dd22e742ac071dc6
diff --git a/Command/EventSourcingCommandHandlerTrait.php b/Command/EventSourcingCommandHandlerTrait.php index <HASH>..<HASH> 100644 --- a/Command/EventSourcingCommandHandlerTrait.php +++ b/Command/EventSourcingCommandHandlerTrait.php @@ -19,10 +19,6 @@ trait EventSourcingCommandHandlerTrait $event = $this->ge...
SA fixes (#<I>)
msgphp_domain
train
php
786ed80b2e324b543d1f9e2ccb259fe247e74ed9
diff --git a/pingouin/regression.py b/pingouin/regression.py index <HASH>..<HASH> 100644 --- a/pingouin/regression.py +++ b/pingouin/regression.py @@ -627,10 +627,10 @@ def logistic_regression(X, y, coef_only=False, alpha=0.05, .. caution:: This function is a wrapper around the :py:class:`sklearn.linear_m...
DOCS add how Logistic Regression is modified to match R and statsmodels The docs didn't say how the scikit-learn default solver was changed. Inquiring minds would have to go to the source code. I added the default solver.
raphaelvallat_pingouin
train
py
7d49255926bb8941cbef090abdccffcedbff1e39
diff --git a/superset/assets/cypress/integration/explore/control.test.js b/superset/assets/cypress/integration/explore/control.test.js index <HASH>..<HASH> 100644 --- a/superset/assets/cypress/integration/explore/control.test.js +++ b/superset/assets/cypress/integration/explore/control.test.js @@ -61,7 +61,7 @@ describ...
This control test is flaky and affecting travis runs, turning it off for now (#<I>)
apache_incubator-superset
train
js
a8391519dba5ac77e61c2c18a74e84cc20a5c16e
diff --git a/lib/ezutils/classes/ezextension.php b/lib/ezutils/classes/ezextension.php index <HASH>..<HASH> 100644 --- a/lib/ezutils/classes/ezextension.php +++ b/lib/ezutils/classes/ezextension.php @@ -245,7 +245,7 @@ class eZExtension $hasExtensions = true; } if ( $hasExtensions ) - ...
Switch to using ->load() instead of ->loadCache() directly (should have been protected)
ezsystems_ezpublish-legacy
train
php
ee46cd78a97987dcd106442743966a0a2060a216
diff --git a/src/main/java/zmq/TcpConnecter.java b/src/main/java/zmq/TcpConnecter.java index <HASH>..<HASH> 100644 --- a/src/main/java/zmq/TcpConnecter.java +++ b/src/main/java/zmq/TcpConnecter.java @@ -235,7 +235,13 @@ public class TcpConnecter extends Own implements IPollEvents { // resolve address again t...
Sometimes hostname resolution will fail. Make sure that, if it does, we don't break the ioloop.
zeromq_jeromq
train
java
76add2088b049c035e7f35302e651fd452e44c35
diff --git a/components/markdown/code.js b/components/markdown/code.js index <HASH>..<HASH> 100644 --- a/components/markdown/code.js +++ b/components/markdown/code.js @@ -6,7 +6,7 @@ import Code from '../code/code'; const MarkdownCode = ({value, language, inline}) => ( <Code language={language} - code={valu...
RG-<I> Support empty value for markdown Code to be usable as preview for editor
JetBrains_ring-ui
train
js,js
15a2e5d89eddb04b364eeec89fdcf54df86407ef
diff --git a/src/main/java/zmq/Mailbox.java b/src/main/java/zmq/Mailbox.java index <HASH>..<HASH> 100644 --- a/src/main/java/zmq/Mailbox.java +++ b/src/main/java/zmq/Mailbox.java @@ -95,6 +95,9 @@ public final class Mailbox implements Closeable // Receive the signal. signaler.recv(); + if (e...
in zmq.Mailbox, a call to Signaler.recv could set errno to EINTR This was not checked, cpipe.read will return null, active will be set. I'm not sure that is a an expected state, and the assert make my tests fails.
zeromq_jeromq
train
java
8db62b11b8e88c729e743b7a6377ecae216bfb20
diff --git a/spec/feed_spec.rb b/spec/feed_spec.rb index <HASH>..<HASH> 100644 --- a/spec/feed_spec.rb +++ b/spec/feed_spec.rb @@ -17,7 +17,7 @@ describe Stream::Feed do expect { Stream::Feed.new(nil, "feed-slug", "user_id", "") }.to raise_error Stream::StreamInputData end - it "should refuse feed_slug with ...
Fix spec for underscore support for feed slugs
GetStream_stream-ruby
train
rb
add1b341b6276bdd563ac85f50d9581942b71385
diff --git a/src/Presentation/Console/Command/InitCommand.php b/src/Presentation/Console/Command/InitCommand.php index <HASH>..<HASH> 100644 --- a/src/Presentation/Console/Command/InitCommand.php +++ b/src/Presentation/Console/Command/InitCommand.php @@ -42,7 +42,9 @@ class InitCommand extends AbstractCommand implement...
caution message must be displayed only on prod environment
llaville_php-compatinfo-db
train
php
e931edae6dedd6b8288cb21e7e99a2f3484d29dc
diff --git a/scripts/multibuild/mb/command.py b/scripts/multibuild/mb/command.py index <HASH>..<HASH> 100644 --- a/scripts/multibuild/mb/command.py +++ b/scripts/multibuild/mb/command.py @@ -19,7 +19,8 @@ def build(testfile, indy_url, delay, vagrant_dir): with open(testfile) as f: build_config = yaml.safe...
allow script to work without vagrant
Commonjava_indy
train
py
55822adfb4a5801abe519aa448a92bd5abaaa78a
diff --git a/lib/cmis.js b/lib/cmis.js index <HASH>..<HASH> 100644 --- a/lib/cmis.js +++ b/lib/cmis.js @@ -88,6 +88,17 @@ }; /** + * sets character set used for non file fields in posted + * multipart/form-data resource + * @param {string} characterSet + * @return {CmisSession} + */ + ...
Allow to specify the charset used for non-file fields posted int multipart/form-data If you post a file with properties to update into the same multipart/form-data, you must be able to specify the charset used for your non-file fields to avoid a wrong decoding by the server. The HTML specs specifies the use of a pseudo...
agea_CmisJS
train
js
a9eb6bd8d3d0e114d306a0480ab4d4758e455dab
diff --git a/tests/unit-tests/Database/MultiDatabaseTest.php b/tests/unit-tests/Database/MultiDatabaseTest.php index <HASH>..<HASH> 100644 --- a/tests/unit-tests/Database/MultiDatabaseTest.php +++ b/tests/unit-tests/Database/MultiDatabaseTest.php @@ -41,8 +41,9 @@ class MultiDatabaseTest extends Test $this->...
assert checking response of method is not valid
tenancy_multi-tenant
train
php
e24490fb0c0af91b9d65c20b065cc3bd2e6a9688
diff --git a/main.go b/main.go index <HASH>..<HASH> 100644 --- a/main.go +++ b/main.go @@ -114,11 +114,11 @@ func flush(postMetrics [][]DDMetric) { // // TODO Is this the right type? // NewPostMetric("veneur.stats.metrics_posted", float32(totalCount+1), "", "counter", *Interval), // ) - postJSON, _ := json....
Stop being so printy, don't indent JSON
stripe_veneur
train
go
015e38267faf1359906f8ca271515e0cef655b5f
diff --git a/test/default-level-test.js b/test/default-level-test.js index <HASH>..<HASH> 100644 --- a/test/default-level-test.js +++ b/test/default-level-test.js @@ -26,25 +26,22 @@ define(['test/test-helpers'], function(testHelpers) { it("new level is always set", function(log) { log.set...
Tests for new things shouldn't be sprinkled into existing tests
pimterry_loglevel
train
js
5c53b57f0a5e518567f71ef92b214eb3aa429313
diff --git a/core/interpreter/src/main/java/org/overture/interpreter/assistant/pattern/PPatternAssistantInterpreter.java b/core/interpreter/src/main/java/org/overture/interpreter/assistant/pattern/PPatternAssistantInterpreter.java index <HASH>..<HASH> 100644 --- a/core/interpreter/src/main/java/org/overture/interpreter...
restore and remove static keywords again because of problems in the ide.
overturetool_overture
train
java
312342af02cc67dc6877758fb8dad552f37c0eb3
diff --git a/autofit/optimize/non_linear/multi_nest.py b/autofit/optimize/non_linear/multi_nest.py index <HASH>..<HASH> 100644 --- a/autofit/optimize/non_linear/multi_nest.py +++ b/autofit/optimize/non_linear/multi_nest.py @@ -142,7 +142,15 @@ class MultiNest(NonLinearOptimizer): # noinspection PyUnusedLocal...
Fixed major bug with howw the unit cube was converted to a physical cube in multinest
rhayes777_PyAutoFit
train
py
da81d1a9ce7a037f7d3f3b43596ac65c34e44aa9
diff --git a/src/Storage/Query/SearchWeighter.php b/src/Storage/Query/SearchWeighter.php index <HASH>..<HASH> 100644 --- a/src/Storage/Query/SearchWeighter.php +++ b/src/Storage/Query/SearchWeighter.php @@ -113,11 +113,19 @@ class SearchWeighter foreach ($this->getContentFields() as $field => $weight...
convert taxonomy arrays to a string to perform text search
bolt_bolt
train
php
fdc3843887954d488e763dd5c3e4bb61051f7692
diff --git a/lib/api_auth.js b/lib/api_auth.js index <HASH>..<HASH> 100644 --- a/lib/api_auth.js +++ b/lib/api_auth.js @@ -145,7 +145,6 @@ api.verifySignature = function(req, sig, account, callback) var query = (sig.query).split("&").sort().filter(function(x) { return x != "" && x.indexOf(api.signatureHeaderName) ...
revert cleartext pw check
vseryakov_backendjs
train
js
11b49ad8cc46d163de356e575057eb236a08020b
diff --git a/lib/dynflow/executors/parallel/core.rb b/lib/dynflow/executors/parallel/core.rb index <HASH>..<HASH> 100644 --- a/lib/dynflow/executors/parallel/core.rb +++ b/lib/dynflow/executors/parallel/core.rb @@ -66,6 +66,7 @@ module Dynflow Terminate.(~any) >-> future do logger.in...
Fix termination when no work is being executed
Dynflow_dynflow
train
rb,rb