hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
4cc6d244cdc5be374cf0e3298c9a56f2f477607f
diff --git a/app/models/room.js b/app/models/room.js index <HASH>..<HASH> 100644 --- a/app/models/room.js +++ b/app/models/room.js @@ -91,6 +91,10 @@ RoomSchema.method('isAuthorized', function(userId) { return true; } + if (this.owner.equals(userId)) { + return true; + } + return this....
Room owner shouldn't have to enter password
sdelements_lets-chat
train
db6b869eae416e72fa30b1d7271b0ed1d7dc1a55
diff --git a/sqlalchemy_json/__init__.py b/sqlalchemy_json/__init__.py index <HASH>..<HASH> 100644 --- a/sqlalchemy_json/__init__.py +++ b/sqlalchemy_json/__init__.py @@ -35,6 +35,8 @@ class NestedMutable(Mutable): @classmethod def coerce(cls, key, value): """Convert plain dictionary to NestedMutable...
Fix error when setting JSON value to be `None` Previously this would raise an attribute error as `None` does not have the `coerce` attribute.
edelooff_sqlalchemy-json
train
9741de159b188b96b7ed05d7f85d82e983d80b79
diff --git a/crabpy/tests/gateway/test_crab.py b/crabpy/tests/gateway/test_crab.py index <HASH>..<HASH> 100644 --- a/crabpy/tests/gateway/test_crab.py +++ b/crabpy/tests/gateway/test_crab.py @@ -82,6 +82,12 @@ class CrabGatewayTests(unittest.TestCase): self.assertEqual(res[0].gewest.id, 2) def test_list...
extended provincie tests to improve coverage refs #<I>
OnroerendErfgoed_crabpy
train
70a471954084beebb31a3fe6412558ec38c141f0
diff --git a/app/controllers/renalware/letters/formatted_letters_controller.rb b/app/controllers/renalware/letters/formatted_letters_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/renalware/letters/formatted_letters_controller.rb +++ b/app/controllers/renalware/letters/formatted_letters_controller.rb @...
Fix N<I> warnings in letters controllers
airslie_renalware-core
train
af3dc21081fe574ca9fb79423586ccabfd09b92a
diff --git a/satpy/tests/reader_tests/test_olci_nc.py b/satpy/tests/reader_tests/test_olci_nc.py index <HASH>..<HASH> 100644 --- a/satpy/tests/reader_tests/test_olci_nc.py +++ b/satpy/tests/reader_tests/test_olci_nc.py @@ -38,9 +38,19 @@ class TestOLCIReader(unittest.TestCase): from satpy.readers.olci_nc impor...
Update OLCI tests to improve coverage, including testing the angles reader.
pytroll_satpy
train
e3ebc3a391dcc9c1639ef08f3950fdc03381ac4c
diff --git a/potpy/test/test_configparser.py b/potpy/test/test_configparser.py index <HASH>..<HASH> 100644 --- a/potpy/test/test_configparser.py +++ b/potpy/test/test_configparser.py @@ -1,5 +1,10 @@ +from __future__ import with_statement +try: + import unittest2 as unittest +except ImportError: + import unittest...
support older pythons in test modules
dhain_potpy
train
1e7df0ea530c53b169cc111f37af9606160321ac
diff --git a/public/js/components/Autocomplete.js b/public/js/components/Autocomplete.js index <HASH>..<HASH> 100644 --- a/public/js/components/Autocomplete.js +++ b/public/js/components/Autocomplete.js @@ -5,6 +5,8 @@ const classnames = require("classnames"); require("./Autocomplete.css"); const Svg = require("./uti...
default to selecting the first item in the list adds an INITIAL_SELECTED_INDEX const to handle the two locations where the initial selected index needs to be set.
firefox-devtools_debugger
train
644b322b68b28201b3534eba30d3ddf3aa7b876f
diff --git a/lib/request_log_analyzer/controller.rb b/lib/request_log_analyzer/controller.rb index <HASH>..<HASH> 100644 --- a/lib/request_log_analyzer/controller.rb +++ b/lib/request_log_analyzer/controller.rb @@ -156,12 +156,16 @@ module RequestLogAnalyzer controller.add_filter(:timespan, filter_options) ...
Ignoring :reject and :select options when they are not passed to Controller::build(). This commit makes it so you don't get exceptions when you fail to pass these options.
wvanbergen_request-log-analyzer
train
9fc3f77b4ce980362e7780a97fc68cd20f4df334
diff --git a/src/BackgroundTokenizer.js b/src/BackgroundTokenizer.js index <HASH>..<HASH> 100644 --- a/src/BackgroundTokenizer.js +++ b/src/BackgroundTokenizer.js @@ -1,17 +1,12 @@ ace.provide("ace.BackgroundTokenizer"); -ace.BackgroundTokenizer = function(tokenizer, onUpdate, onComplete) { +ace.BackgroundTokenizer ...
Use events for the backgroundtokenizer
joewalker_gcli
train
5932d3685c38ea969eee9148959d8cba320d06e6
diff --git a/specs/bug81aSpec.js b/specs/bug81aSpec.js index <HASH>..<HASH> 100644 --- a/specs/bug81aSpec.js +++ b/specs/bug81aSpec.js @@ -1,37 +1,10 @@ var test = require('./test'); describe('bug 8.1.a', function() { - describe('expands shorthand', function() { - it('with px', function(done) { - ...
Remove unnecessary tests The regex `/calc\(.*?\)/` safely covers any argument to `calc()`.
luisrudge_postcss-flexbugs-fixes
train
7d4f641975e54847af4b57bac3a854935590f3dc
diff --git a/Log/display.php b/Log/display.php index <HASH>..<HASH> 100644 --- a/Log/display.php +++ b/Log/display.php @@ -85,6 +85,8 @@ class Log_display extends Log /* Lastly, the line ending sequence is also configurable. */ if (isset($conf['linebreak'])) { $this->_lineFormat .= $conf[...
The default value for the display handler's lineBreak configuration value wasn't being applied. Bug: <I>
pear_Log
train
b90dfd81d292ca4448eceab64d401a6c90cd970e
diff --git a/invenio_records_rest/schemas/json.py b/invenio_records_rest/schemas/json.py index <HASH>..<HASH> 100644 --- a/invenio_records_rest/schemas/json.py +++ b/invenio_records_rest/schemas/json.py @@ -82,8 +82,8 @@ class RecordMetadataSchemaJSONV1(OriginalKeysMixin): @post_load() def inject_pid(self, da...
marshmallow: delete duplicated pid field * Delete duplicated pid field from the loaded data since the ``pid`` field in the ``PersistentIdentifier`` object is a ``Generated`` field and therefore, it should not exists per se.
inveniosoftware_invenio-records-rest
train
a9e5aecabb16605cbf16f06b83f43f2ea282438e
diff --git a/packages/material-ui-system/src/borders.js b/packages/material-ui-system/src/borders.js index <HASH>..<HASH> 100644 --- a/packages/material-ui-system/src/borders.js +++ b/packages/material-ui-system/src/borders.js @@ -48,14 +48,12 @@ export const borderColor = style({ }); export const borderRadius = (p...
[system] Fix gap, rowGap, columnGap, borderRadius reponsive support (#<I>)
mui-org_material-ui
train
ff4c50a9a27dd18610ec1bf04422e02bb81a5592
diff --git a/mod/quiz/lib.php b/mod/quiz/lib.php index <HASH>..<HASH> 100644 --- a/mod/quiz/lib.php +++ b/mod/quiz/lib.php @@ -1069,9 +1069,9 @@ function quiz_print_quiz_questions($quiz, $results=NULL, $questions=NULL, $shuff echo "<br />"; } - $results->attemptbuildsonthelast = isset($results->attem...
As showing/hiding "Save my answers" button was based in empty($results), moved $results->attemptbuildsonthelast to $attemptbuildsonthelast. This was introduced in my latest CVS version, trying to take out some notices...solved now.
moodle_moodle
train
13af3e86f482f440c30059b98fe80791f188d855
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -71,10 +71,29 @@ is_threaded = True synth_base = join('ajg', 'synth') is_windows = sys.platform == 'win32' +def get_and_set_windows_msvc_version(): + latest, path = None, None + + for name, value in os.environ.item...
Attempt to detect MSVC's version from env vars
ajg_synth
train
3a8b8c327cd3c5530a3bb3400db2a325ba39873b
diff --git a/functional/server_tests.js b/functional/server_tests.js index <HASH>..<HASH> 100644 --- a/functional/server_tests.js +++ b/functional/server_tests.js @@ -35,18 +35,21 @@ exports['Should correctly reconnect to server with automatic reconnect enabled'] result.connection.write(a); } catch(...
Refactored <I> and earlier commands to use prototype
mongodb_node-mongodb-native
train
302eb158535790223cee010d7ac25013933f7de5
diff --git a/library/BrowserDetector/Detector/Device/Mobile/SonyEricsson.php b/library/BrowserDetector/Detector/Device/Mobile/SonyEricsson.php index <HASH>..<HASH> 100644 --- a/library/BrowserDetector/Detector/Device/Mobile/SonyEricsson.php +++ b/library/BrowserDetector/Detector/Device/Mobile/SonyEricsson.php @@ -137,6...
fixed detection error for Sony C<I>
mimmi20_BrowserDetector
train
0b604fac50320f5ee1e95cb6e32ea425c8c5ff5f
diff --git a/lib/response-cache/cache.js b/lib/response-cache/cache.js index <HASH>..<HASH> 100644 --- a/lib/response-cache/cache.js +++ b/lib/response-cache/cache.js @@ -40,10 +40,18 @@ function Cache(options) { size: options.size }); this.rules = options.rules; + this.nGets = 0; + this.nHits = 0; } Cac...
Support getting cache statistics by /cache/statistics
droonga_express-droonga
train
38800cef230fdcaba78d5f7cfe4951ec6154819c
diff --git a/tweepy/api.py b/tweepy/api.py index <HASH>..<HASH> 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -1286,15 +1286,24 @@ class API: lists first, so with ``reverse=true``, 20 owned lists and 80 subscriptions would be returned. - :param user_id: |user_id| - :param screen_na...
Update and improve documentation for API.lists_all
tweepy_tweepy
train
63efa18e8815eec328acae1bac411afd2f2b8cbd
diff --git a/code/model/URLArrayObject.php b/code/model/URLArrayObject.php index <HASH>..<HASH> 100644 --- a/code/model/URLArrayObject.php +++ b/code/model/URLArrayObject.php @@ -98,8 +98,7 @@ class URLArrayObject extends ArrayObject { //only add URLs of a certain length and only add URLs not already added if (...
Ensure URLs get queued when BASE_URL is set
silverstripe_silverstripe-staticpublishqueue
train
5381c05ba58a2ca8c1df20e2172bbe2bdfce5db4
diff --git a/tangelo/plugins/girder/control.py b/tangelo/plugins/girder/control.py index <HASH>..<HASH> 100644 --- a/tangelo/plugins/girder/control.py +++ b/tangelo/plugins/girder/control.py @@ -42,6 +42,10 @@ def setup(config, store): "staticRoot": "/plugin/girder/girder/static" }) + root.api.v1.upd...
Added some code to bring girder plugin up-to-date with new Girder version This new version of Girder serves the Swagger documentation dynamically in the same way as the web client. The extra call is necessary to let the Girder app know where to find the swagger docs.
Kitware_tangelo
train
a2c1d915f5c51f84c308af83ab51caa4efac0657
diff --git a/lib/cached_resource/caching.rb b/lib/cached_resource/caching.rb index <HASH>..<HASH> 100644 --- a/lib/cached_resource/caching.rb +++ b/lib/cached_resource/caching.rb @@ -45,6 +45,7 @@ module CachedResource def cache_collection_synchronize(object, *arguments) if object.is_a? Array ...
Add more detail about the object being cached to log messages
mhgbrown_cached_resource
train
b97435baa5b94e601c0dfa5a0e8293db8edef692
diff --git a/src/xworkflows/base.py b/src/xworkflows/base.py index <HASH>..<HASH> 100644 --- a/src/xworkflows/base.py +++ b/src/xworkflows/base.py @@ -2,6 +2,7 @@ """Base components of XWorkflows.""" import functools +import inspect import re @@ -171,10 +172,12 @@ class WorkflowEnabledMeta(type): @class...
When a custom TransitionImplementation overrides one argument, but the transition expects it, pass it to the transition too.
rbarrois_xworkflows
train
c1c576f75a2c4c2f8fad314c10588f45c5a5c573
diff --git a/xarray/plot/plot.py b/xarray/plot/plot.py index <HASH>..<HASH> 100644 --- a/xarray/plot/plot.py +++ b/xarray/plot/plot.py @@ -624,7 +624,7 @@ def _plot2d(plotfunc): @functools.wraps(plotfunc) def newplotfunc(darray, x=None, y=None, figsize=None, size=None, aspect=None, ax=Non...
Plotting: restore xyincrease kwarg default to True (#<I>)
pydata_xarray
train
a1f3f021e356214af14ff6008a3c9a00fbc55927
diff --git a/eZ/Publish/Core/MVC/Legacy/Templating/Adapter/BlockAdapter.php b/eZ/Publish/Core/MVC/Legacy/Templating/Adapter/BlockAdapter.php index <HASH>..<HASH> 100644 --- a/eZ/Publish/Core/MVC/Legacy/Templating/Adapter/BlockAdapter.php +++ b/eZ/Publish/Core/MVC/Legacy/Templating/Adapter/BlockAdapter.php @@ -11,6 +11,...
EZP-<I> - Made Page BlockAdapter to generate a legacy eZPageBlock since block_view_gui seems not to like BlockAdapter...
ezsystems_ezpublish-kernel
train
7ded025884a003cb58825f7db80189f5ea8f8d96
diff --git a/api/auth/handler_test.go b/api/auth/handler_test.go index <HASH>..<HASH> 100644 --- a/api/auth/handler_test.go +++ b/api/auth/handler_test.go @@ -506,7 +506,6 @@ func (s *S) TestAddKeyFunctionCreatesTheKeyFileInTheGitosisRepository(c *C) { func (s *S) TestAddKeyFunctionAddTheMemberWithTheKeyNameInTheGit...
api/auth: removing some time.Sleep We still have some resistent time.Sleep in tests, but I'm keep them for now.
tsuru_tsuru
train
142d0017ec443e5e15e811dc558af70ccc3ee84f
diff --git a/src/changes/changes.xml b/src/changes/changes.xml index <HASH>..<HASH> 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -20,6 +20,11 @@ Fix for parsing during DST overlap. See #77. </action> + <action dev="jodastephen" type="fix" > + Fix for parsing...
Fix parsing in later JDKs Problem caused by TZDB data Fixes #<I>
ThreeTen_threetenbp
train
d2659ee9eeb6d490148a2fdd5d1972f2ea882bd6
diff --git a/cafe/logging/__init__.py b/cafe/logging/__init__.py index <HASH>..<HASH> 100644 --- a/cafe/logging/__init__.py +++ b/cafe/logging/__init__.py @@ -6,6 +6,8 @@ from os import getenv from os.path import isfile from yaml import safe_load as load +from cafe.patterns.mixins import ContextMixin + LOGGING_LEV...
Move logged object to inherit from ContextMixin
abn_cafeteria
train
c90ba16f5173153a36cc3f8d90e596d631c43988
diff --git a/mod/lesson/pagetypes/matching.php b/mod/lesson/pagetypes/matching.php index <HASH>..<HASH> 100644 --- a/mod/lesson/pagetypes/matching.php +++ b/mod/lesson/pagetypes/matching.php @@ -382,26 +382,23 @@ class lesson_page_type_matching extends lesson_page { } else { $answe...
MDL-<I> lesson mod: fixed grade report error on matching and shortanswers questions
moodle_moodle
train
34e8d4862c432546b7e25aa7a445960aac88d9c7
diff --git a/pkg/oc/cli/describe/describer.go b/pkg/oc/cli/describe/describer.go index <HASH>..<HASH> 100644 --- a/pkg/oc/cli/describe/describer.go +++ b/pkg/oc/cli/describe/describer.go @@ -226,7 +226,12 @@ func describeBuildDuration(build *buildapi.Build) string { // time a still running build has been running in ...
handle build describer edge-case Fix potential cause for panic in build-duration describer. Whenever a build's status contained a nil StartTimestamp & a nil CompletionStamp & the build.Status.Phase == "Cancelled", the default attempt at obtaining a duration value would try to access an `Rfc<I>Copy().Time` value from t...
openshift_origin
train
ed25c87ef5d000c36d00ec48850b9d90c43096d1
diff --git a/pyemma/util/tests/test_config.py b/pyemma/util/tests/test_config.py index <HASH>..<HASH> 100644 --- a/pyemma/util/tests/test_config.py +++ b/pyemma/util/tests/test_config.py @@ -68,7 +68,7 @@ class TestConfig(unittest.TestCase): self.config_inst.cfg_dir = '/dev/null' self.assertIn("no...
[test-config] skip chmod based test because of a Docker bug.
markovmodel_PyEMMA
train
92ecc98786dcd2f68ce40c18e4dd988c425bacd3
diff --git a/main.js b/main.js index <HASH>..<HASH> 100755 --- a/main.js +++ b/main.js @@ -25,7 +25,7 @@ var paramedic = require('./lib/paramedic'); var ParamedicConfig = require('./lib/ParamedicConfig'); var USAGE = "Error missing args. \n" + - "cordova-paramedic --platform PLATFORM --plugin PAT...
CB-<I>: add a `--version` flag, which will just print the version from package.json and exit. Closes #<I>.
ratson_cordova-testbed
train
8adcae2f399ff2bc5437dec139b44dacc24f5294
diff --git a/packages/react-atlas-core/src/input/Input.js b/packages/react-atlas-core/src/input/Input.js index <HASH>..<HASH> 100644 --- a/packages/react-atlas-core/src/input/Input.js +++ b/packages/react-atlas-core/src/input/Input.js @@ -50,7 +50,10 @@ Input.defaultProps = { "disabled": false, "type": 'text'...
Add a default theme prop so that these components don't fail when no theme prop is set. Fixes issue #<I>.
DigitalRiver_react-atlas
train
e3e7c47123cc146bf9b9a41b73b34aae2f7e2aea
diff --git a/rootfs_linux.go b/rootfs_linux.go index <HASH>..<HASH> 100644 --- a/rootfs_linux.go +++ b/rootfs_linux.go @@ -212,6 +212,9 @@ func mountToRootfs(m *configs.Mount, rootfs, mountLabel string) error { // top of /proc or /sys. // dest is required to be an abs path and have any symlinks resolved before callin...
Prohibit bind mounts into /
opencontainers_runc
train
365f2818138a0c044675b7be8b8d3c70090d570f
diff --git a/src/system/save.js b/src/system/save.js index <HASH>..<HASH> 100644 --- a/src/system/save.js +++ b/src/system/save.js @@ -1,4 +1,3 @@ -import device from "./device.js"; import * as event from "./event.js"; /** @@ -95,7 +94,7 @@ var save = { */ set (value) { ...
fix cyclic dependency between device and save
melonjs_melonJS
train
0ab3f9258c04fa936ee81ed9ea94be91a1a81be5
diff --git a/cellpy/utils/cell_ocv.py b/cellpy/utils/cell_ocv.py index <HASH>..<HASH> 100644 --- a/cellpy/utils/cell_ocv.py +++ b/cellpy/utils/cell_ocv.py @@ -105,7 +105,7 @@ def relaxation_rc(time, v0, r, c, slope): return v0 * (modify + np.exp(-time / tau(time, r, c, slope))) -def ocv_relax_func(time, r_rc, ...
trying to make it flexible to a variable set of parameters
jepegit_cellpy
train
6ea1dcaac1629da4cebd0feb0dba25291e6f4063
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -108,11 +108,13 @@ The maximum number of entries in the co-concurrence and similarity matrix is k(n example ------- +These recommendations were calculated from 2,3mb "profile visit"-data (taken from www.talentsuche.de)...
limit max user_row length to <I> - cuts memory usage by <I>% :)
Pathgather_predictor
train
138977bbef668f2092c7fff947b5fc32095081ae
diff --git a/spyder/plugins/editor/widgets/editor.py b/spyder/plugins/editor/widgets/editor.py index <HASH>..<HASH> 100644 --- a/spyder/plugins/editor/widgets/editor.py +++ b/spyder/plugins/editor/widgets/editor.py @@ -2395,11 +2395,6 @@ class EditorStack(QWidget): state = finfo.editor.document().isModifie...
Remove tooltip reset code as no longer needed
spyder-ide_spyder
train
f2f4cd80ff02a9267fd466045cef6b147baed195
diff --git a/source/library/com/restfb/Version.java b/source/library/com/restfb/Version.java index <HASH>..<HASH> 100644 --- a/source/library/com/restfb/Version.java +++ b/source/library/com/restfb/Version.java @@ -64,19 +64,26 @@ public enum Version { VERSION_2_9("v2.9", true), /** - * <tt>Graph API 2.10</tt...
Issue #<I> - version <I> added to enum
restfb_restfb
train
6a81ec18bceacc4f5a957b26871a8fec1406bd43
diff --git a/core/peer/peer.go b/core/peer/peer.go index <HASH>..<HASH> 100644 --- a/core/peer/peer.go +++ b/core/peer/peer.go @@ -297,6 +297,30 @@ func GetCurrConfigBlock(cid string) *common.Block { return nil } +// GetMSPIDs returns the ID of each application MSP defined on this chain +func GetMSPIDs(cid string)...
[FAB-<I>] Default endorsement policy If no custom endorsement policy was specified, the peer used to set a default endorsement policy requiring a signature from a member of MSP "DEFAULT". However this MSP may not always exist. The solution is to default to the following policy: a signature from a member of any of the ...
hyperledger_fabric
train
e529cd1be1846044b8562e6f09d995633edc6ac8
diff --git a/definitions/npm/bluebird_v3.x.x/flow_v0.70.x-/bluebird_v3.x.x.js b/definitions/npm/bluebird_v3.x.x/flow_v0.70.x-/bluebird_v3.x.x.js index <HASH>..<HASH> 100644 --- a/definitions/npm/bluebird_v3.x.x/flow_v0.70.x-/bluebird_v3.x.x.js +++ b/definitions/npm/bluebird_v3.x.x/flow_v0.70.x-/bluebird_v3.x.x.js @@ -5...
Expose static class definitions for Bluebird Errors (#<I>) * Expose static class definitions for Errors * Fix copy paste syntax typo
flow-typed_flow-typed
train
da17fb7d03ffddc0ef1f8f0e58621194039dee47
diff --git a/src/patch.js b/src/patch.js index <HASH>..<HASH> 100644 --- a/src/patch.js +++ b/src/patch.js @@ -68,7 +68,9 @@ export default class Patch { && comparePoints(endNode.inputLeftExtent, startNode.inputLeftExtent) === 0) { startNode.isChangeStart = endNode.isChangeStart this.deleteNode(e...
Make splay tree work with combineChanges: true
atom_superstring
train
9baa13f9b6ef2baa7c89e6e6146d729c1ec71d5e
diff --git a/lib/tesla_api/client.rb b/lib/tesla_api/client.rb index <HASH>..<HASH> 100644 --- a/lib/tesla_api/client.rb +++ b/lib/tesla_api/client.rb @@ -141,7 +141,10 @@ module TeslaApi end code = CGI.parse(URI(response.headers["location"]).query)["code"].first + exchange_oauth_code(code, code_ve...
Break out a code exchange method. You can load up the authorize URL in your browser to work around the Recaptcha nonsense for now.
timdorr_tesla-api
train
ca38586ae850657e0c8b0ac5dabf903eb15e790a
diff --git a/lib/ecic/cli.rb b/lib/ecic/cli.rb index <HASH>..<HASH> 100644 --- a/lib/ecic/cli.rb +++ b/lib/ecic/cli.rb @@ -8,9 +8,10 @@ module Ecic shell.say "Usage: ecic COMMAND [ARGS]" shell.say "" super - shell.say "To get more help on a specific command, try 'ecic help [COMMAND]'" ...
Updated help text to include support for abbreviated commands
ic-factory_ecic
train
43c8716f8611f376f3e14354a49ee0f257cca029
diff --git a/sources/EngineWorks/DBAL/Traits/MethodSqlQuote.php b/sources/EngineWorks/DBAL/Traits/MethodSqlQuote.php index <HASH>..<HASH> 100644 --- a/sources/EngineWorks/DBAL/Traits/MethodSqlQuote.php +++ b/sources/EngineWorks/DBAL/Traits/MethodSqlQuote.php @@ -6,27 +6,30 @@ trait MethodSqlQuote { private functi...
Fix sqlQuoteParseNumber when locale is C, act as en_US
eclipxe13_engineworks-dbal
train
d545b7cbe0d62416778e862e2e9eab91be76862a
diff --git a/lxd/events/connections.go b/lxd/events/connections.go index <HASH>..<HASH> 100644 --- a/lxd/events/connections.go +++ b/lxd/events/connections.go @@ -104,6 +104,7 @@ func (e *websockListenerConnection) Reader(ctx context.Context, recvFunc EventHa e.lock.Unlock() return } + err := e.WriteContr...
lxd/events: Inserts newlines after blocks.
lxc_lxd
train
fcefbcb0b8adfa11cb3ff6a1ac390c663ed984d1
diff --git a/pkg/testing/integration/pulumi.go b/pkg/testing/integration/pulumi.go index <HASH>..<HASH> 100644 --- a/pkg/testing/integration/pulumi.go +++ b/pkg/testing/integration/pulumi.go @@ -83,9 +83,3 @@ func GetStacks(e *testing.Environment) ([]string, *string) { return stackNames, currentStack } - -// TestA...
Remove test token We now handle test credentials via Travis, so we don't need this anymore.
pulumi_pulumi
train
f984a3599f3c1fc3f9e31794acbce228f51b4c1f
diff --git a/chef/lib/chef/data_bag.rb b/chef/lib/chef/data_bag.rb index <HASH>..<HASH> 100644 --- a/chef/lib/chef/data_bag.rb +++ b/chef/lib/chef/data_bag.rb @@ -152,9 +152,17 @@ class Chef (couchdb || Chef::CouchDB.new).load("data_bag", name) end - # Load a Data Bag by name via the RESTful API + #...
[CHEF-<I>] ability to load a local data bag in solo
chef_chef
train
3e4fd2448148d6d0ff2244b4bfdf905ff4358db1
diff --git a/src/commands/view/SelectComponent.js b/src/commands/view/SelectComponent.js index <HASH>..<HASH> 100644 --- a/src/commands/view/SelectComponent.js +++ b/src/commands/view/SelectComponent.js @@ -97,6 +97,7 @@ export default { ); em[method]('change:canvasOffset', this.updateAttached, this); em...
Add `tools` option to `editor.refresh` method
artf_grapesjs
train
b9dbbea98e31f80997e5367283a03798a83cd210
diff --git a/theanets/layers.py b/theanets/layers.py index <HASH>..<HASH> 100644 --- a/theanets/layers.py +++ b/theanets/layers.py @@ -574,10 +574,23 @@ class RNN(Layer): implemented here is known as an Elman layer or an SRN (Simple Recurrent Network) -- the output from the layer at the previous time step is ...
Add a "direction" kwarg to change direction of recurrent scan.
lmjohns3_theanets
train
80b588ccdd70f21c6e7e5436ce7bb3ace62fd09d
diff --git a/lib/solr/query/handler.rb b/lib/solr/query/handler.rb index <HASH>..<HASH> 100644 --- a/lib/solr/query/handler.rb +++ b/lib/solr/query/handler.rb @@ -5,20 +5,20 @@ require 'solr/query/http_request_builder' module Solr module Query class Handler - attr_reader :query, :page, :page_size + a...
Allows start/rows arguments on query runner (#<I>) * Update Query::Request::Runner to accept offset/rows arguments * Fix Solr::Commit::Request spec * Simplify Solr::Query::Request::Runner interface * Add run_paged method for Query::Request * Reimplementation after merge * Single run method on Solr::Quer...
machinio_solrb
train
171058eebc2d539a58751c4b176b9073d57aa353
diff --git a/dusty/commands/setup.py b/dusty/commands/setup.py index <HASH>..<HASH> 100644 --- a/dusty/commands/setup.py +++ b/dusty/commands/setup.py @@ -28,20 +28,23 @@ def _get_default_specs_repo(): return _get_raw_input('Input the full name of your specs repo, e.g. github.com/gamechanger/example-dusty-specs: '...
fix minor bugs. still need to fix tests
gamechanger_dusty
train
69250712afca3c77500a6d57a230ed869a803d2b
diff --git a/core/src/main/java/org/infinispan/remoting/transport/jgroups/CommandAwareRpcDispatcher.java b/core/src/main/java/org/infinispan/remoting/transport/jgroups/CommandAwareRpcDispatcher.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/infinispan/remoting/transport/jgroups/CommandAwareRpcDispatcher....
ISPN-<I> Remote package refactor * fixed performance issue (put missing dont bundle flag)
infinispan_infinispan
train
33016daa8b498763f0b43de1029c73ba8e5a5589
diff --git a/core/server/master/src/main/java/alluxio/master/file/DefaultFileSystemMaster.java b/core/server/master/src/main/java/alluxio/master/file/DefaultFileSystemMaster.java index <HASH>..<HASH> 100644 --- a/core/server/master/src/main/java/alluxio/master/file/DefaultFileSystemMaster.java +++ b/core/server/master/...
De-flake concurrency test
Alluxio_alluxio
train
c1830807f6f8b95792e797dd9ef5bd507c47446d
diff --git a/spec/group_spec.rb b/spec/group_spec.rb index <HASH>..<HASH> 100644 --- a/spec/group_spec.rb +++ b/spec/group_spec.rb @@ -118,6 +118,7 @@ describe GroupCli do end it "reads members as a reader" do + pending "real uaa can't search for groups by name with scim.me/readers" unless @stub_uaa Cli...
mark test pending until uaa is fixed.
cloudfoundry_cf-uaac
train
da31f3b620ea848414782662cb38c25773008db6
diff --git a/examples/hmm_em.py b/examples/hmm_em.py index <HASH>..<HASH> 100644 --- a/examples/hmm_em.py +++ b/examples/hmm_em.py @@ -2,15 +2,19 @@ from __future__ import division import autograd.numpy as np import autograd.numpy.random as npr from autograd.scipy.misc import logsumexp -from autograd import grad +fr...
improve HMM EM example by training on rnn/lstm train data, printing likelihood
HIPS_autograd
train
208e3123fb19188056a4c8bb668cb77885b26f9d
diff --git a/src/Carbon/Carbon.php b/src/Carbon/Carbon.php index <HASH>..<HASH> 100644 --- a/src/Carbon/Carbon.php +++ b/src/Carbon/Carbon.php @@ -1847,7 +1847,7 @@ class Carbon extends DateTime implements JsonSerializable /** * Set the default format used when type juggling a Carbon instance to a string ...
Support closure based $toStringFormat (#<I>)
briannesbitt_Carbon
train
bb082920445a69ff421a26c67f22bde230d7a870
diff --git a/events/eventbriteEvents.js b/events/eventbriteEvents.js index <HASH>..<HASH> 100644 --- a/events/eventbriteEvents.js +++ b/events/eventbriteEvents.js @@ -26,7 +26,7 @@ function constructAddress(venue) { function isFreeWithVenue(event) { var hasVenue = event.venue && event.venue.address && event.venue...
fix(events): added check if ticket_classes exist for eventbrite events
webuildorg_webuild-repos
train
f32edd67e6043ea9721329192f8568f8bb6de99b
diff --git a/lib/delfos/patching/unstubber.rb b/lib/delfos/patching/unstubber.rb index <HASH>..<HASH> 100644 --- a/lib/delfos/patching/unstubber.rb +++ b/lib/delfos/patching/unstubber.rb @@ -32,6 +32,14 @@ module Delfos instance.unstub! end + + class_methods.each do |key, method_sourc...
add class methods to unstubbing
ruby-analysis_delfos
train
8664916b9862fc085a19b7f30bf7c68dc79fdfc7
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ setup( extras_require=deps, license="MIT", zip_safe=False, - package_data={'eth-keys': ['py.typed']}, + package_data={'eth_keys': ['py.typed']}, keywords='ethereum', packages=find_...
Fixed package_data configuration to include py.typed
ethereum_eth-keys
train
953d662d63e6a2ec278693fd523147a2559af2db
diff --git a/simplemediawiki.py b/simplemediawiki.py index <HASH>..<HASH> 100644 --- a/simplemediawiki.py +++ b/simplemediawiki.py @@ -63,13 +63,8 @@ class MediaWiki(): self._cj = cookielib.CookieJar() self._opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(self._cj)) - def call(self,...
Add normalize_api_url function This function basically checks to see if it can access some sort of API based on the URL you gave it.
iliana_python-simplemediawiki
train
691164fea1dc23dd7dad884889cd7ebdf9f26943
diff --git a/gsshapy/orm/generic.py b/gsshapy/orm/generic.py index <HASH>..<HASH> 100644 --- a/gsshapy/orm/generic.py +++ b/gsshapy/orm/generic.py @@ -11,7 +11,7 @@ __all__ = ['GenericFile'] from sqlalchemy import Column, ForeignKey -from sqlalchemy.types import Integer, String, Binary +from sqlalchemy.types import...
modified from Binary to LargeBinary to fix deprecation waring
CI-WATER_gsshapy
train
901c5b89216886e1b7dee1125105ce04f4a6c7ba
diff --git a/go/vt/vttablet/endtoend/misc_test.go b/go/vt/vttablet/endtoend/misc_test.go index <HASH>..<HASH> 100644 --- a/go/vt/vttablet/endtoend/misc_test.go +++ b/go/vt/vttablet/endtoend/misc_test.go @@ -272,8 +272,10 @@ func TestConsolidation(t *testing.T) { defer framework.Server.SetPoolSize(framework.Server.Poo...
tests: deflake TestConsolidation Fixes #<I>
vitessio_vitess
train
5e7be4fd325f418576c22d389f49651b920a1df1
diff --git a/algoliasearch/src/test/java/com/algolia/search/saas/IndexTest.java b/algoliasearch/src/test/java/com/algolia/search/saas/IndexTest.java index <HASH>..<HASH> 100644 --- a/algoliasearch/src/test/java/com/algolia/search/saas/IndexTest.java +++ b/algoliasearch/src/test/java/com/algolia/search/saas/IndexTest.ja...
Tests: Explicitly set connectTimeout before testing it
algolia_algoliasearch-client-android
train
8aa3d1107625c8cb1467881a86d5eeb4c9dd60ac
diff --git a/openquake/engine/engine.py b/openquake/engine/engine.py index <HASH>..<HASH> 100644 --- a/openquake/engine/engine.py +++ b/openquake/engine/engine.py @@ -302,11 +302,11 @@ def run_calc(job_id, oqparam, exports, hazard_calculation_id=None, **kw): calc.datastore.set_attrs('input/zip', nbytes=dat...
Cleanup and set submitted status only if max_concurrent is set
gem_oq-engine
train
9b4d66bfc4d84d8b45ca117d8fb3e8eec395f3d2
diff --git a/semver.js b/semver.js index <HASH>..<HASH> 100644 --- a/semver.js +++ b/semver.js @@ -537,8 +537,16 @@ exports.cmp = cmp; function cmp(a, op, b, loose) { var ret; switch (op) { - case '===': ret = a === b; break; - case '!==': ret = a !== b; break; + case '===': + if (typeof a === 'obj...
support SemVer objects in cmp function
npm_node-semver
train
5f189d82c9dc8c08213568cf91f6b0cadb58be14
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,6 +18,7 @@ import os # Mock modules for readthedocs.org support. MOCK_MODULES = [ 'glfw', + 'pg.glfw', ] class Mock(object):
ignore pg.glfw in docs
fogleman_pg
train
db9419ee332da8b4b563cd9ea794797169dfddf7
diff --git a/parsl/dataflow/flow_control.py b/parsl/dataflow/flow_control.py index <HASH>..<HASH> 100644 --- a/parsl/dataflow/flow_control.py +++ b/parsl/dataflow/flow_control.py @@ -86,10 +86,7 @@ class FlowControl(object): if time_to_die: return - if prev == self._wake_up_ti...
Remove an unused code path in flow control (#<I>)
Parsl_parsl
train
4adf0bbb3adc0661c27d04fc619f73cf4650ee25
diff --git a/alerta/snmptrap/handler.py b/alerta/snmptrap/handler.py index <HASH>..<HASH> 100644 --- a/alerta/snmptrap/handler.py +++ b/alerta/snmptrap/handler.py @@ -10,7 +10,7 @@ from alerta.common.heartbeat import Heartbeat from alerta.common import severity_code from alerta.common.api import ApiClient -Version ...
adjust logging for suppressed snmp traps
alerta_alerta
train
23153926332237aa7d7714f042a03cf1c6d34b94
diff --git a/dolo/algos/simulations.py b/dolo/algos/simulations.py index <HASH>..<HASH> 100644 --- a/dolo/algos/simulations.py +++ b/dolo/algos/simulations.py @@ -42,6 +42,7 @@ def find_index(sim, values): from dolo.numeric.processes import DiscreteMarkovProcess from dolo.numeric.grids import CartesianGrid, Unstruc...
FIX: simulate and tabulate optionally take solution object as input.
EconForge_dolo
train
1a68138fdbaeedfb2a9137b8c725bb296047ec40
diff --git a/nolds/examples.py b/nolds/examples.py index <HASH>..<HASH> 100644 --- a/nolds/examples.py +++ b/nolds/examples.py @@ -236,8 +236,7 @@ if __name__ == "__main__": # run this with the following command: # python -m nolds.examples lyapunov-logistic import sys - if len(sys.argv) < 2: - print("pleas...
prints hint also when an unknown example name is given
CSchoel_nolds
train
1482fa5e551fc80270c45d9596e89d461532813f
diff --git a/src/Connections/Ldap.php b/src/Connections/Ldap.php index <HASH>..<HASH> 100644 --- a/src/Connections/Ldap.php +++ b/src/Connections/Ldap.php @@ -204,12 +204,7 @@ class Ldap implements ConnectionInterface $hostname = $protocol.implode(' '.$protocol, $hostname); } - if ($this-...
Don't set bound to true on ldap_connect
Adldap2_Adldap2
train
715cd7a6eb67cc6c7f27e61d909d7544d93a068e
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -193,8 +193,8 @@ ShellCraft.prototype.shell = function (callback) { var cmd = cmdArgs[0]; cmdArgs.shift (); - if (cmd.length && cmd !== history[history.length - 1]) { - history.push (cmd); + if...
Fixes history for commands with arguments.
Xcraft-Inc_shellcraft.js
train
d559367d53557c7bba3e6fc78bcd0e3e1a68901d
diff --git a/salt/utils/templates.py b/salt/utils/templates.py index <HASH>..<HASH> 100644 --- a/salt/utils/templates.py +++ b/salt/utils/templates.py @@ -86,7 +86,8 @@ def wrap_tmpl_func(render_str): output = os.linesep.join(output.splitlines()) except SaltRenderError as exc: - r...
Raise SaltRenderError exceptions rather than suppressing them
saltstack_salt
train
3c6216cee9edf3fc4c08e8f16168464f1ba8a6f9
diff --git a/doc/source/10min.rst b/doc/source/10min.rst index <HASH>..<HASH> 100644 --- a/doc/source/10min.rst +++ b/doc/source/10min.rst @@ -291,12 +291,10 @@ Using the :func:`~Series.isin` method for filtering: .. ipython:: python - df['E']=['one', 'one','two','three','four','three'] - df - good_numbers=[...
DOC: small change to <I>min.rst TST: fix stata issue with NaT (GH<I>) TST: fix issue with now time comparisons (GH<I>)
pandas-dev_pandas
train
4daea80672ab5a32a4f546252e7379ac9f07843e
diff --git a/couch_test.go b/couch_test.go index <HASH>..<HASH> 100644 --- a/couch_test.go +++ b/couch_test.go @@ -20,6 +20,9 @@ type RetTestObj struct { TestObj } +var Caddy *caddyshack.Caddies +var Key string + func (t *TestObj) GetKey() string { return t.Id } @@ -56,34 +59,54 @@ func TestInit(t *testing.T) ...
adding update. Delete looks like a TODO when it gets added to the ORM of couch DB.
gospackler_caddyshack-couchdb
train
c9d13ee722b603ea4e7c0892b976464e61a7906b
diff --git a/pkg_resources/__init__.py b/pkg_resources/__init__.py index <HASH>..<HASH> 100644 --- a/pkg_resources/__init__.py +++ b/pkg_resources/__init__.py @@ -2205,12 +2205,14 @@ def _handle_ns(packageName, path_item): # use find_spec (PEP 451) and fall-back to find_module (PEP 302) try: - loader...
fix failures w/ py3-only loaders
pypa_setuptools
train
8dee706c7c4e36ad207b7e22003e14ff8d5e96cf
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -10,37 +10,32 @@ except ImportError: HERE = os.path.dirname(os.path.abspath(__file__)) setup( - name="django-json-rpc", - version="0.7.1", - description="A simple JSON-RPC implementation for Django", - long_description...
pep8 formatting for setup.py
samuraisam_django-json-rpc
train
636c9ebb8b0ef6da08e376a0cdafbc27aa722421
diff --git a/sonar-ws-generator/src/main/java/org/sonarqube/wsgenerator/Helper.java b/sonar-ws-generator/src/main/java/org/sonarqube/wsgenerator/Helper.java index <HASH>..<HASH> 100644 --- a/sonar-ws-generator/src/main/java/org/sonarqube/wsgenerator/Helper.java +++ b/sonar-ws-generator/src/main/java/org/sonarqube/wsgen...
In ws-client-generator, remove obsolete class name special cases
SonarSource_sonarqube
train
1b16863b718cfae87eda602c74f2c545834f99c5
diff --git a/lib/static/components/section/body/index.js b/lib/static/components/section/body/index.js index <HASH>..<HASH> 100644 --- a/lib/static/components/section/body/index.js +++ b/lib/static/components/section/body/index.js @@ -1,6 +1,6 @@ 'use strict'; -import {isEmpty} from 'lodash'; +import {isEmpty, defau...
fix: show error info in tab which failed without any images
gemini-testing_html-reporter
train
543444f747e32fafed1f77e904746edb361e4916
diff --git a/lexer.go b/lexer.go index <HASH>..<HASH> 100644 --- a/lexer.go +++ b/lexer.go @@ -418,6 +418,7 @@ func (l *tomlLexer) lexNumber() tomlLexStateFn { l.accept("-") } pointSeen := false + expSeen := false digitSeen := false for { next := l.next() @@ -429,6 +430,11 @@ func (l *tomlLexer) lexNumber...
Fixes #<I>: Implement exp notation in floats
pelletier_go-toml
train
d25a3594492ff77867647f5496fc31042d4abc8f
diff --git a/client/blocks/inline-help/contextual-help.js b/client/blocks/inline-help/contextual-help.js index <HASH>..<HASH> 100644 --- a/client/blocks/inline-help/contextual-help.js +++ b/client/blocks/inline-help/contextual-help.js @@ -33,8 +33,8 @@ const getFallbackLinks = () => [ ), }, { - link: localizeUr...
Customer Home: Fix Support Link to Domains (#<I>)
Automattic_wp-calypso
train
d292462cf6c6b4e5fb0cfc15dd7fe97d0b48eb46
diff --git a/views/js/runner/plugins/navigation/next.js b/views/js/runner/plugins/navigation/next.js index <HASH>..<HASH> 100644 --- a/views/js/runner/plugins/navigation/next.js +++ b/views/js/runner/plugins/navigation/next.js @@ -31,12 +31,10 @@ define([ 'taoQtiTest/runner/helpers/messages', 'taoQtiTest/runn...
Revert unneeded changes in next plugin & unit tests
oat-sa_extension-tao-testqti
train
f728d78b329ca91655a68755c7950f230c44a0e2
diff --git a/tangelo/tangelo/__main__.py b/tangelo/tangelo/__main__.py index <HASH>..<HASH> 100644 --- a/tangelo/tangelo/__main__.py +++ b/tangelo/tangelo/__main__.py @@ -153,7 +153,7 @@ def polite(signum, frame): def die(signum, frame): - tangelo.log_error("TANGELO", "Received quit signal. Exiting immediately...
Promoting all "must-exit-now" error messages to CRITICAL
Kitware_tangelo
train
5cf9d9064005ff7bc6205c05277169b929e52fb5
diff --git a/spec/prepare.spec.js b/spec/prepare.spec.js index <HASH>..<HASH> 100644 --- a/spec/prepare.spec.js +++ b/spec/prepare.spec.js @@ -84,7 +84,12 @@ describe('prepare command', function() { }); plugman_prepare = spyOn(plugman, 'prepare').andReturn(Q()); find_plugins = spyOn(util, 'fi...
CB-<I> Fix spy to return a default platform JSON instead of an empty object Fixes broken tests because of the refactoring in plugman regarding CB-<I> github: close #<I>
apache_cordova-lib
train
e76b49e600d8e6ba0c9212621a91b46ee3d1fdd4
diff --git a/lib/transforms/splitCssIfIeLimitIsReached.js b/lib/transforms/splitCssIfIeLimitIsReached.js index <HASH>..<HASH> 100644 --- a/lib/transforms/splitCssIfIeLimitIsReached.js +++ b/lib/transforms/splitCssIfIeLimitIsReached.js @@ -48,7 +48,7 @@ module.exports = function () { warning = new Error...
Switch transforms/splitCssIfIeLimitIsReached to emit 'info' instead of 'warn'
assetgraph_assetgraph
train
f0324d965567cb8fb98bd5f23a449945ff1bbb7d
diff --git a/salt/modules/ifttt.py b/salt/modules/ifttt.py index <HASH>..<HASH> 100644 --- a/salt/modules/ifttt.py +++ b/salt/modules/ifttt.py @@ -29,8 +29,7 @@ def __virtual__(): ''' if not __salt__['config.get']('ifttt.secret_key') and \ not __salt__['config.get']('ifttt:secret_key'): - log.e...
Don't error log missing IFTTT keys Also uses the the tuple-variant of `__virtual__` by returning a tuple with the reason, which puts the reason in the debug log.
saltstack_salt
train
236e6e9a331be8190c71a677a23d114756541d5c
diff --git a/tests/test_image.py b/tests/test_image.py index <HASH>..<HASH> 100644 --- a/tests/test_image.py +++ b/tests/test_image.py @@ -82,8 +82,8 @@ def test_exif_gps(tmpdir): raw, simple = get_exif_tags(dst_file) assert 'gps' in simple - lat = 35.266666 - lon = -117.216666 + lat = 34.029167 + ...
Fix testcase for GPS info GPS coordinates for the sample photo were incorrect in the test case. Found the correct coordinates from: <URL>
saimn_sigal
train
0b82b64c7030c14d53ddbcd31ae23d698214c2a6
diff --git a/test/decorators/on.spec.js b/test/decorators/on.spec.js index <HASH>..<HASH> 100644 --- a/test/decorators/on.spec.js +++ b/test/decorators/on.spec.js @@ -134,7 +134,7 @@ describe('@on decorator', () => { milkey_1_a_function_spy.callCount.should.eql(2); milkey_1_b_function_spy.callCount.should.eql(2...
test/decorators/on.spec.js: corrected header description
SerkanSipahi_app-decorators
train
f039d4fa431fcf2b3f79a059ad9a7f2bd8a168e3
diff --git a/src/Auth/Entity/User.php b/src/Auth/Entity/User.php index <HASH>..<HASH> 100644 --- a/src/Auth/Entity/User.php +++ b/src/Auth/Entity/User.php @@ -12,6 +12,8 @@ use Core\Entity\AbstractIdentifiableEntity; use Core\Entity\EntityInterface; use Core\Entity\RelationEntity; use Doctrine\ODM\MongoDB\Mapping\An...
[Settings,Core,Auth] Migrates settings module (Settings Entities and Controller plugin) (references gh-<I>)
yawik_auth
train
9b2cb3525c08fa54e0813233140898e8cfa0cbd6
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,9 @@ Python wrapper for LoRa payloads from Thingpark/Actility. It supports decryption of the payload. -- Depends on [PyCrypto] and [lxml] +- Depends on [cryptography] - Based on crypto code in [Lora-net/LoRaMa...
Prepare releasing <I> with python 3 support
jieter_python-lora
train
104958e25ff0d4fd654f115180000d1ebccf8949
diff --git a/core/field_image.js b/core/field_image.js index <HASH>..<HASH> 100644 --- a/core/field_image.js +++ b/core/field_image.js @@ -38,11 +38,11 @@ goog.require('goog.userAgent'); * @param {number} width Width of the image. * @param {number} height Height of the image. * @param {string=} opt_alt Optional a...
Cleanup: semicolons, spacing, etc. (#<I>)
LLK_scratch-blocks
train
a6d2d7b5f76f06a6ffe56f3d96b24add133ff8e1
diff --git a/middleware/autopath/autopath.go b/middleware/autopath/autopath.go index <HASH>..<HASH> 100644 --- a/middleware/autopath/autopath.go +++ b/middleware/autopath/autopath.go @@ -48,7 +48,7 @@ import ( // If AutoPathFunc returns a nil slice, no autopathing will be done. type AutoPathFunc func(request.Request)...
go lint cleanup (#<I>)
coredns_coredns
train
927d5c8466b2be6b79b34820986d976b4e2b5552
diff --git a/plugins/Admin/src/Controller/BlogPostsController.php b/plugins/Admin/src/Controller/BlogPostsController.php index <HASH>..<HASH> 100644 --- a/plugins/Admin/src/Controller/BlogPostsController.php +++ b/plugins/Admin/src/Controller/BlogPostsController.php @@ -63,6 +63,7 @@ class BlogPostsController extends A...
on add pages blog posts and manufacturers is_private defaults true
foodcoopshop_foodcoopshop
train
04c720fdf0d1772546069d01308f9355cb67efdd
diff --git a/tests/Integration/Seo/PaginationSeoTest.php b/tests/Integration/Seo/PaginationSeoTest.php index <HASH>..<HASH> 100644 --- a/tests/Integration/Seo/PaginationSeoTest.php +++ b/tests/Integration/Seo/PaginationSeoTest.php @@ -545,6 +545,10 @@ class PaginationSeoTest extends \OxidEsales\TestingLibrary\UnitTestC...
OXDEV-<I> Stabilize test (cherry picked from commit <I>)
OXID-eSales_oxideshop_ce
train
a691af082da84813c48f287b278af14db5d0d572
diff --git a/examples/the-high-street/components/meta.py b/examples/the-high-street/components/meta.py index <HASH>..<HASH> 100644 --- a/examples/the-high-street/components/meta.py +++ b/examples/the-high-street/components/meta.py @@ -201,7 +201,7 @@ def add_alias(actor, alias, entity_id): actor.tell("You're u...
Allow definition of aliases using aliases They don't chain, though.
vreon_figment
train
cc06f8a00fcd195e7fa9e1f35c5781de0259e8fd
diff --git a/cmakelint/main.py b/cmakelint/main.py index <HASH>..<HASH> 100644 --- a/cmakelint/main.py +++ b/cmakelint/main.py @@ -172,12 +172,18 @@ class _CMakePackageState(object): _lint_state = _CMakeLintState() _package_state = _CMakePackageState() -def CleanComments(line): - if line.find('#') == -1: - ...
Remove quoted out sections of commands Clean out things that are in quoted chunks, which fixes a lot of false positives from trying to parse non-CMake code (e.g. in C test snippets)
richq_cmake-lint
train
c4c5dbdf660a66d400d9fb82ad19e66339b123bc
diff --git a/ansible_runner/__main__.py b/ansible_runner/__main__.py index <HASH>..<HASH> 100644 --- a/ansible_runner/__main__.py +++ b/ansible_runner/__main__.py @@ -76,6 +76,8 @@ def main(): parser.add_argument("--role-skip-facts", action="store_true", default=False, help="Disable fact...
Add artifact dir to cli tool
ansible_ansible-runner
train
5999cb4369705a7c7ac6c0e498e6d80f2ee35e56
diff --git a/lib/que.rb b/lib/que.rb index <HASH>..<HASH> 100644 --- a/lib/que.rb +++ b/lib/que.rb @@ -1,4 +1,3 @@ -require 'time' # For Time#iso8601 require 'socket' # For hostname module Que
Clean up a require that's no longer used.
chanks_que
train
a382e564a81a870d04fa63b5054c3e07f7d00ce3
diff --git a/liquibase-core/src/main/java/liquibase/change/core/LoadDataChange.java b/liquibase-core/src/main/java/liquibase/change/core/LoadDataChange.java index <HASH>..<HASH> 100644 --- a/liquibase-core/src/main/java/liquibase/change/core/LoadDataChange.java +++ b/liquibase-core/src/main/java/liquibase/change/core/L...
'usePreparedStatement' default to 'true' in 'LoadDataChange' and changed its weight in later decision
liquibase_liquibase
train