hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
188fe4f645868f828bb4fe5c2927b95f80893807 | diff --git a/src/js/mep-feature-progress.js b/src/js/mep-feature-progress.js
index <HASH>..<HASH> 100644
--- a/src/js/mep-feature-progress.js
+++ b/src/js/mep-feature-progress.js
@@ -219,6 +219,10 @@
updateSlider(e);
}, false);
+ t.container.on('controlsresize', function() {
+ player.setProgressRail(... | Size the progress rails on `controlsresize`
Use the `controlsresize` event to change the progress and current rail. | mediaelement_mediaelement | train |
b6876f418ec27f5e3d85d9f6ac487f4b0cfe4eec | diff --git a/config/webpack/webpack.config.js b/config/webpack/webpack.config.js
index <HASH>..<HASH> 100644
--- a/config/webpack/webpack.config.js
+++ b/config/webpack/webpack.config.js
@@ -5,7 +5,7 @@ var webpack = require('webpack'),
module.exports = {
// target: 'web',
- // cache: true,
+ cache: true,
//... | added uglify plugin and caching | redsift_redsift-bundler | train |
a889844188b3f954b10360a0da64a68c28130276 | diff --git a/ghost/admin/app/components/gh-editor.js b/ghost/admin/app/components/gh-editor.js
index <HASH>..<HASH> 100644
--- a/ghost/admin/app/components/gh-editor.js
+++ b/ghost/admin/app/components/gh-editor.js
@@ -41,7 +41,7 @@ export default Ember.Component.extend({
// scrollPosition value such that when eit... | guard against missing $previewContent/ViewPort in gh-editor.scrollPosition
issue #<I>
- fixes occasional issue with editor not rendering due to scrollPosition being requested before the relevant jquery elements have been set | TryGhost_Ghost | train |
0677a4b8e1485cebaf95290ae09dd24a8f6f13c3 | diff --git a/bridge/lib/bridge.js b/bridge/lib/bridge.js
index <HASH>..<HASH> 100644
--- a/bridge/lib/bridge.js
+++ b/bridge/lib/bridge.js
@@ -170,15 +170,6 @@ Bridge.prototype.createCallback = function(service) {
};
Bridge.prototype.joinChannel = function(name, handler, callback) {
- var self = this;
- // Detect... | some cleanup in the JS api | getbridge_bridge-js | train |
ae1e16d4c1185b2937f499cc8412a2e097e45274 | diff --git a/source/getPlaybackInfos.js b/source/getPlaybackInfos.js
index <HASH>..<HASH> 100644
--- a/source/getPlaybackInfos.js
+++ b/source/getPlaybackInfos.js
@@ -14,7 +14,7 @@ function _getAllHuxleyfilesPaths(globs) {
// use glob to find every huxleyfile in the path, including nested ones.
// Normall... | Fix passing absolute path to hux cmd | chenglou_node-huxley | train |
f9dc31187284013491f1e7045d9f264a26a47ba1 | diff --git a/gears/processors.py b/gears/processors.py
index <HASH>..<HASH> 100644
--- a/gears/processors.py
+++ b/gears/processors.py
@@ -33,32 +33,29 @@ class DirectivesProcessor(BaseProcessor):
match = self.header_re.match(self.source)
if match:
self.source_header = match.group(0)
- ... | Process directives on initialization in DirectivesProcessor | gears_gears | train |
dd7377736bdfe0edd382f98d367362569f946546 | diff --git a/src/Entity/CustomField.php b/src/Entity/CustomField.php
index <HASH>..<HASH> 100644
--- a/src/Entity/CustomField.php
+++ b/src/Entity/CustomField.php
@@ -63,22 +63,6 @@ class CustomField implements MappableEntity
}
/**
- * @return string
- */
- public function getName()
- {
- ... | CustomField: removed surplus getters; added unit test for mapped properties | wirecard_paymentSDK-php | train |
3560d3fe279946dbbf4249525f4a2c3fd44f0243 | diff --git a/django_transfer/tests.py b/django_transfer/tests.py
index <HASH>..<HASH> 100644
--- a/django_transfer/tests.py
+++ b/django_transfer/tests.py
@@ -8,6 +8,7 @@ from django.core.exceptions import ImproperlyConfigured
from django_transfer import settings
from django_transfer import SERVER_HEADERS
+from dja... | make_tempfile() shared by views/tests. Close file descriptor in finally clause. | smartfile_django-transfer | train |
9eabedee03ff62e2ee05eac1410a0abdcf00c490 | diff --git a/lib/syllabification_context.rb b/lib/syllabification_context.rb
index <HASH>..<HASH> 100644
--- a/lib/syllabification_context.rb
+++ b/lib/syllabification_context.rb
@@ -33,6 +33,10 @@ module Pronounce
# or pending_syllable has no nucleus
end
+ def sonority_trough?
+ current_phone <= ... | Moved more contextual logic into syllabification context. | josephwilk_pronounce | train |
45ab8034cdd95f0a0722bd6ba65b7cf10c407bf4 | diff --git a/buku.py b/buku.py
index <HASH>..<HASH> 100755
--- a/buku.py
+++ b/buku.py
@@ -1665,10 +1665,14 @@ class BukuDb:
for tag in html_tags:
# Extract comment from <dd> tag
+ try:
+ if (is_nongeneric_url(tag['href'])):
+ cont... | Ignore spurious tags.
Please refer to #<I>. The spurious '<a></a>' tag leads to a crash; with or
without any text within. | jarun_Buku | train |
5387bda6dc2deeb3e8f7b8d6352546c4e5dcbf72 | diff --git a/Kwf/Util/Https.php b/Kwf/Util/Https.php
index <HASH>..<HASH> 100644
--- a/Kwf/Util/Https.php
+++ b/Kwf/Util/Https.php
@@ -25,11 +25,27 @@ class Kwf_Util_Https
}
}
+ /**
+ * Returns if the current request would support https and ensureHttps() would redirect to https
+ */
publ... | add method that returns if a given domains supports https | koala-framework_koala-framework | train |
6e6b946976b7017589c0836d5ae7d552ad738cd6 | diff --git a/classes/phing/parser/TaskHandler.php b/classes/phing/parser/TaskHandler.php
index <HASH>..<HASH> 100755
--- a/classes/phing/parser/TaskHandler.php
+++ b/classes/phing/parser/TaskHandler.php
@@ -177,9 +177,6 @@ class TaskHandler extends AbstractHandler {
}
*/
} else {
- ... | Refs #<I> - remove commented lines | phingofficial_phing | train |
b1b24249802dbe8359f091e4cc0ac3f093994259 | diff --git a/Cake/Test/TestCase/Utility/CollectionTest.php b/Cake/Test/TestCase/Utility/CollectionTest.php
index <HASH>..<HASH> 100644
--- a/Cake/Test/TestCase/Utility/CollectionTest.php
+++ b/Cake/Test/TestCase/Utility/CollectionTest.php
@@ -474,4 +474,27 @@ class CollectionTest extends TestCase {
$this->assertCon... | Adding tests for the two new methods in Collection | cakephp_cakephp | train |
036ba292d03e7e09addfb8fce79373bfa3dd77e2 | diff --git a/chatterbot/adapters/storage/mongodb.py b/chatterbot/adapters/storage/mongodb.py
index <HASH>..<HASH> 100644
--- a/chatterbot/adapters/storage/mongodb.py
+++ b/chatterbot/adapters/storage/mongodb.py
@@ -96,7 +96,7 @@ class MongoDatabaseAdapter(DatabaseAdapter):
if self.count() < 1:
rai... | no need to multiply by 'count'
values = list(statement)[0]
IndexError: list index out of range | gunthercox_ChatterBot | train |
a50c754ff675794e465e4e45b8dc150f26bc680a | diff --git a/pcef/modes/python/py_cc.py b/pcef/modes/python/py_cc.py
index <HASH>..<HASH> 100644
--- a/pcef/modes/python/py_cc.py
+++ b/pcef/modes/python/py_cc.py
@@ -24,6 +24,7 @@ from pcef.modes.cc import Suggestion
Icons = {'Class': ':/icons/rc/class.png',
'Import': ':/icons/rc/import.png',
'Sta... | Added a new suggestion type support: ForFlow | pyQode_pyqode.core | train |
4d08c61528b283c6069ffd0516c3e5ed1f3dbf5b | diff --git a/src/sap.m/src/sap/m/SplitContainer.js b/src/sap.m/src/sap/m/SplitContainer.js
index <HASH>..<HASH> 100644
--- a/src/sap.m/src/sap/m/SplitContainer.js
+++ b/src/sap.m/src/sap/m/SplitContainer.js
@@ -1915,6 +1915,10 @@ sap.ui.define(['jquery.sap.global', './library', 'sap/ui/core/Control', 'sap/ui/
aAggr... | [INTERNAL] SplitContainer setMode fails when header is missing
Change-Id: If<I>e<I>bd9f<I>b5a1d4dab<I>c<I>eefc<I> | SAP_openui5 | train |
d0b32cbf2a74a9b07f2c3cb737e603ea03894c61 | diff --git a/voltron/cmd.py b/voltron/cmd.py
index <HASH>..<HASH> 100644
--- a/voltron/cmd.py
+++ b/voltron/cmd.py
@@ -40,8 +40,7 @@ class VoltronCommand (object):
def start(self):
if not self.running:
print("Starting voltron")
- self.running = True
- self.register_hooks... | Fixed self.running being set to True when using LLDB, even when target stop-hook fails. | snare_voltron | train |
d197e0730684708f38d434b278981ed8c0fd01af | diff --git a/lib/info.rb b/lib/info.rb
index <HASH>..<HASH> 100644
--- a/lib/info.rb
+++ b/lib/info.rb
@@ -1,5 +1,5 @@
module MultiRepo
NAME = "git-multirepo"
- VERSION = "1.0.0.beta7"
+ VERSION = "1.0.0.beta8"
DESCRIPTION = "Track multiple Git repositories side-by-side."
end
\ No newline at end of file
diff ... | Added multi checkout --exact (checks out the exact specified branch for each repo, regardless of the contents of the lock file). | fortinmike_git-multirepo | train |
5e8e8065dde6c9a27f0b68eac0240d63ba4aee98 | diff --git a/bucky/carbon.py b/bucky/carbon.py
index <HASH>..<HASH> 100644
--- a/bucky/carbon.py
+++ b/bucky/carbon.py
@@ -44,13 +44,15 @@ class CarbonClient(object):
log.debug("Connected the debug socket.")
self.sock = DebugSocket()
return
- self.sock = socket.socket(socke... | Change default reconnect behavior
By default we should limit the number of times we attempt to reconnect
to Graphite as well as the number of times we try to send data. By
default we limit to three attempts. If a number less than or equal to
zero is specified in the config file we will retry forever. | trbs_bucky | train |
dc1bd7538ef255efe319f805fda57b4a2381c2fe | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -31,3 +31,4 @@ export elevation from './styles/elevation';
export * as timings from './styles/timings';
export * as colors from './styles/colors';
export breakpoints from './styles/breakpoints';
+export getN... | Added exporting of getNotDeclaredProps | HenriBeck_materialize-react | train |
74d13300edec76c118408de18769dee46fbffe4b | diff --git a/app/models/staypuft/deployment.rb b/app/models/staypuft/deployment.rb
index <HASH>..<HASH> 100644
--- a/app/models/staypuft/deployment.rb
+++ b/app/models/staypuft/deployment.rb
@@ -68,13 +68,12 @@ module Staypuft
platform: Platform::RHEL6 }.merge(attributes),
options)
+ ... | Hostgroup of Deployment has to be created before param defaults | theforeman_staypuft | train |
80c418f2112846e43bf40b8abb8d00537fc750c6 | diff --git a/lib/fluent/plugin/in_forward.rb b/lib/fluent/plugin/in_forward.rb
index <HASH>..<HASH> 100644
--- a/lib/fluent/plugin/in_forward.rb
+++ b/lib/fluent/plugin/in_forward.rb
@@ -169,10 +169,11 @@ module Fluent
if entries.class == String
# PackedForward
- es = MessagePackEventStream.new... | pass `size` to initilizer of MessagePackEventStream
* pass `size` to initilizer of MessagePackEventStream if `size` exists in `option` at in_forward
* remove unnecessary condtion | fluent_fluentd | train |
f8d06936eb5004e40613565b9bacc940ddcdc3fd | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -64,7 +64,6 @@ Options can be passed into the Signature class as a fifth parameter, below is a
| Option | Default | Description |
| ---------------- | ----------- |------------- |
-| expires | ... | Remove the old expires header (wasn't being used) | eddturtle_direct-upload | train |
b517654a4272b1ab67151d02ed2b6828a99431ed | diff --git a/allauth/socialaccount/providers/oauth2/views.py b/allauth/socialaccount/providers/oauth2/views.py
index <HASH>..<HASH> 100644
--- a/allauth/socialaccount/providers/oauth2/views.py
+++ b/allauth/socialaccount/providers/oauth2/views.py
@@ -2,6 +2,7 @@ from __future__ import absolute_import
from datetime i... | Render authentication error in case of state issue (closes #<I>) | pennersr_django-allauth | train |
9993d43543a1ca5a6f614a75b7788bfe541dbd23 | diff --git a/player.go b/player.go
index <HASH>..<HASH> 100644
--- a/player.go
+++ b/player.go
@@ -202,6 +202,12 @@ func (p *Player) collideWith(other collidableEntity, t WorldTime) {
case CT_SWAP:
p.mi.UndoLastApply()
+
+ case CT_A_INTO_B:
+ // If I'm A then I don't move
+ if collision.A == *pa {
+ ... | A_INTO_B movement is disallowed | ghthor_filu | train |
0f2d605fb3f714ee5b69246a9e311e525440d7b0 | diff --git a/visidata/vdtui/_sheet.py b/visidata/vdtui/_sheet.py
index <HASH>..<HASH> 100644
--- a/visidata/vdtui/_sheet.py
+++ b/visidata/vdtui/_sheet.py
@@ -24,11 +24,14 @@ theme('disp_endtop_sep', '║', '') # ╽╿┃╖╢
theme('disp_endmid_sep', '║', '') # ╽╿┃
theme('disp_endbot_sep', '║', '') # ╽╿┃╜‖
-def splitcell(s,... | [multiline] splitcell splitlines first | saulpw_visidata | train |
19fb03e010089ffa288d79915862864a5fd3f214 | diff --git a/jobs/create-version-branch.js b/jobs/create-version-branch.js
index <HASH>..<HASH> 100644
--- a/jobs/create-version-branch.js
+++ b/jobs/create-version-branch.js
@@ -76,9 +76,9 @@ module.exports = async function (
// Some uses may want to use project lockfiles for version pinning, in this case, we shoul... | refactor: rename config key for not updating lockfiles | greenkeeperio_greenkeeper | train |
e2d2d9b9ddbab2f34f31efdd5551eebc4bb950d9 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -6,12 +6,17 @@ export function setupBonds(_api = parity.api) {
let api = _api;
var bonds = {};
- if (!api.util.abiSignature) {
+ if (!api.util.abiSignature) {
console.info("Polyfilling api.util.abiSi... | Fix signing for rsv/vrs | paritytech_oo7-parity | train |
5f2e1828ed19750910caf7f52400dfd9b0c39828 | diff --git a/src/RestRoute.php b/src/RestRoute.php
index <HASH>..<HASH> 100644
--- a/src/RestRoute.php
+++ b/src/RestRoute.php
@@ -51,7 +51,8 @@ class RestRoute implements IRouter {
* @return Request|NULL
*/
public function match(IRequest $httpRequest) {
- $cleanPath = str_replace($httpRequest->getUrl()->... | Fixing a matching an URL.
When a virtual host is used (api.domain.com/...) $cleanPath was bad and Route not match an URL. | newPOPE_Nette-RestRoute | train |
f049335d63cdbba7048e18a7f92a6964bf0e1337 | diff --git a/src/Interface.py b/src/Interface.py
index <HASH>..<HASH> 100755
--- a/src/Interface.py
+++ b/src/Interface.py
@@ -4,23 +4,28 @@ class Interface:
def __init__(self):
self.ifname = ""
self.ifUp = False
-
+
def create_interface(self, int_alias, ifname, ip_address, netmask):
... | Made two interfaces tests pass cleanly | robotframework_Rammbock | train |
b953e0c7274fcac5b2b5a9a483939603d2bea471 | diff --git a/lib/reda/importers/iris_syscal_pro.py b/lib/reda/importers/iris_syscal_pro.py
index <HASH>..<HASH> 100644
--- a/lib/reda/importers/iris_syscal_pro.py
+++ b/lib/reda/importers/iris_syscal_pro.py
@@ -186,6 +186,9 @@ def import_bin(filename, **kwargs):
return data after a jump to smaller measurement ... | [syscal binary importer] hopefully fix imports in the cases where data belonging to other measurements was also downloaded and included into the binary data file | geophysics-ubonn_reda | train |
858a8ae731bbf02e58abad522b3511a9fd193463 | diff --git a/lib/waterline/utils/normalize.js b/lib/waterline/utils/normalize.js
index <HASH>..<HASH> 100644
--- a/lib/waterline/utils/normalize.js
+++ b/lib/waterline/utils/normalize.js
@@ -13,7 +13,7 @@ var normalize = module.exports = {
// Empty undefined values from criteria object
_.each(criteria, func... | assume that undefined === null when it comes to criteria. closes #<I> | balderdashy_waterline | train |
36166a9d9ff9898dcfa89a2fa8a75b9450372ca4 | diff --git a/includes/old_messages.php b/includes/old_messages.php
index <HASH>..<HASH> 100644
--- a/includes/old_messages.php
+++ b/includes/old_messages.php
@@ -31,6 +31,10 @@
exit;
+/* I18N: This message is deleted in webtrees-1.3.3 */ WT_I18N::translate('"UK census images have been obtained from "The National... | The "National Archives copyright message" contains line-breaks, nested quotations, and probably shouldn't even be translated. Many translators have commented as such. It's also wrong, as some UK censuses are held elsewhere - e.g. Scotland. | fisharebest_webtrees | train |
30750abee14803f1075c32ca66ab220e686c904a | diff --git a/taskw/warrior.py b/taskw/warrior.py
index <HASH>..<HASH> 100644
--- a/taskw/warrior.py
+++ b/taskw/warrior.py
@@ -567,15 +567,16 @@ class TaskWarriorShellout(TaskWarriorBase):
if 'id' in task:
del task['id']
- task_to_modify = copy.deepcopy(original_task)
- task_to_mod... | Do not attempt to set parameters unless they are explicitly defined in the incoming data. | ralphbean_taskw | train |
74cf06dc74a7ceb7c2a8b178c50042ea86444d74 | diff --git a/lib/travis/model/build/matrix.rb b/lib/travis/model/build/matrix.rb
index <HASH>..<HASH> 100644
--- a/lib/travis/model/build/matrix.rb
+++ b/lib/travis/model/build/matrix.rb
@@ -29,7 +29,7 @@ class Build
'erlang' => [:otp_release],
'go' => [:go],
'groovy' => [:jdk],
... | Expand on `:ghc` for Haskell projects | travis-ci_travis-core | train |
d2f0d8fa96a0ec7648fee8005aabf91b0fdf2068 | diff --git a/salt/modules/gpg.py b/salt/modules/gpg.py
index <HASH>..<HASH> 100644
--- a/salt/modules/gpg.py
+++ b/salt/modules/gpg.py
@@ -614,9 +614,6 @@ def import_key(user=None,
# include another check for Salt unit tests
gnupg_version = distutils.version.LooseVersion(gnupg.__version__)
if gnupg_versi... | variable was referenced before assignment. Just removing the variable and checking the return from distutils.version.LooseVersion directly. | saltstack_salt | train |
f8b8fad197e20a9302ce406dd8639549a1687b52 | diff --git a/src/FabianBeiner/Todoist/TodoistTasksTrait.php b/src/FabianBeiner/Todoist/TodoistTasksTrait.php
index <HASH>..<HASH> 100644
--- a/src/FabianBeiner/Todoist/TodoistTasksTrait.php
+++ b/src/FabianBeiner/Todoist/TodoistTasksTrait.php
@@ -139,7 +139,7 @@ trait TodoistTasksTrait
return false;
... | Switched from GET to POST. | FabianBeiner_Todoist-PHP-API-Library | train |
fe0fa076c36788ec669e54d9c284d4b296912d13 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -53,8 +53,6 @@ def read_to_rst(fname):
except ImportError:
return read(fname)
-read_to_rst('README.md')
-
version_dummy = {}
exec(read('paramz/__version__.py'), version_dummy)
__version__ = version_dummy['__... | [regexp] matching setting getting and concatenation | sods_paramz | train |
984294a0e81cc0ccde01efce8aea766cf0d7ac1c | diff --git a/pysyncobj/pysyncobj3/revision.py b/pysyncobj/pysyncobj3/revision.py
index <HASH>..<HASH> 100644
--- a/pysyncobj/pysyncobj3/revision.py
+++ b/pysyncobj/pysyncobj3/revision.py
@@ -1,4 +1,4 @@
#
# WARNING: this is generated file, use generate.sh to update it.
#
-REVISION = 'b5350716082a359e45558d682910026... | Another attempt to fix journal in random test | bakwc_PySyncObj | train |
a401864dc1c653e19c4d2ab5984316f6269df71d | diff --git a/src/main/java/org/eobjects/datacleaner/output/datastore/DatastoreCreationDelegateImpl.java b/src/main/java/org/eobjects/datacleaner/output/datastore/DatastoreCreationDelegateImpl.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/eobjects/datacleaner/output/datastore/DatastoreCreationDelegateImpl.jav... | Added synchronized block around datastore creation | datacleaner_DataCleaner | train |
2298af3b2db8391464b71f9ee16759501f83fad4 | diff --git a/test/test_conll.py b/test/test_conll.py
index <HASH>..<HASH> 100644
--- a/test/test_conll.py
+++ b/test/test_conll.py
@@ -17,8 +17,7 @@ from test_stanforddependencies import (tree4, tree4_out_CCprocessed,
tree5_out_collapsedTree_no_punc,
... | test_conll.py: Better Python version detection
This is hopefully more portable. | dmcc_PyStanfordDependencies | train |
e054f8d9eaf25cdac7e50a678036d000f7b17ea0 | diff --git a/Neos.Flow/Classes/Http/Cookie.php b/Neos.Flow/Classes/Http/Cookie.php
index <HASH>..<HASH> 100644
--- a/Neos.Flow/Classes/Http/Cookie.php
+++ b/Neos.Flow/Classes/Http/Cookie.php
@@ -122,7 +122,7 @@ class Cookie
* @api
* @throws \InvalidArgumentException
*/
- public function __construct... | TASK: Define lax as default sameSite
Change the default sameSite in the Settings from null to
lax. Null is not also not allowed anymore. Samesite null will be changed to the
new default lax. | neos_flow-development-collection | train |
87dbae1331f240845e6ba4366a1e48008b5f6693 | diff --git a/spyder/utils/ipython/spyder_kernel.py b/spyder/utils/ipython/spyder_kernel.py
index <HASH>..<HASH> 100644
--- a/spyder/utils/ipython/spyder_kernel.py
+++ b/spyder/utils/ipython/spyder_kernel.py
@@ -206,6 +206,10 @@ class SpyderKernel(IPythonKernel):
if valid:
return getsource(obj)
+... | IPython Console: Restore connection to the Working Directory plugin | spyder-ide_spyder-kernels | train |
c399409d3eebccb12fe07386e5fb3e94fd08086e | diff --git a/rollup.config.js b/rollup.config.js
index <HASH>..<HASH> 100644
--- a/rollup.config.js
+++ b/rollup.config.js
@@ -9,6 +9,6 @@ export default {
name: 'areaKeys'
},
plugins: [
- json({ indent: false })
+ json({ indent: '' })
]
}; | Actually it should be indent:'' | osmlab_id-area-keys | train |
ed768cb02a068390a165bc32f7aee74cac858693 | diff --git a/omero_marshal/decode/decoders/timestamp_annotation.py b/omero_marshal/decode/decoders/timestamp_annotation.py
index <HASH>..<HASH> 100644
--- a/omero_marshal/decode/decoders/timestamp_annotation.py
+++ b/omero_marshal/decode/decoders/timestamp_annotation.py
@@ -12,7 +12,7 @@
from .annotation import Annota... | Converge on instance usage rather than helper functions | openmicroscopy_omero-marshal | train |
2fae37f0acbb4154fe75c22a892f79e158016866 | diff --git a/actionpack/lib/action_dispatch/routing/polymorphic_routes.rb b/actionpack/lib/action_dispatch/routing/polymorphic_routes.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_dispatch/routing/polymorphic_routes.rb
+++ b/actionpack/lib/action_dispatch/routing/polymorphic_routes.rb
@@ -197,7 +197,8 @@ m... | Allow polymorphic routes with nil when a route can still be drawn
Suppose you have two resources routed in the following manner:
```ruby
resources :blogs do
resources :posts
end
resources :posts
```
When using polymorphic resource routing like `url_for([@blog, @post])`, and `@blog` is `nil` Rails should still try... | rails_rails | train |
3762618b3cbf73cbf5646843a01cb7807d0a3581 | diff --git a/lib/shields_up/parameters.rb b/lib/shields_up/parameters.rb
index <HASH>..<HASH> 100644
--- a/lib/shields_up/parameters.rb
+++ b/lib/shields_up/parameters.rb
@@ -111,10 +111,6 @@ end
end
end
- def ==(params)
- @original_params = params.instance_variable_get(:@original_params) && @cont... | ol -moved == into test since it is only used there | appfolio_shields_up | train |
ceca6672459f51d455c029770a41866dd02c7ead | diff --git a/core/src/main/java/com/orientechnologies/orient/core/serialization/serializer/record/string/ORecordSerializerStringAbstract.java b/core/src/main/java/com/orientechnologies/orient/core/serialization/serializer/record/string/ORecordSerializerStringAbstract.java
index <HASH>..<HASH> 100644
--- a/core/src/main... | - fixed bug on usage of LONG type in queries
- auto conversion of big Integers in Longs
- auto conversion to long of date in queries when compare a date field with a number | orientechnologies_orientdb | train |
185cbff84d3da0d5a56710ed0c29f86040231b06 | diff --git a/src/Router.php b/src/Router.php
index <HASH>..<HASH> 100644
--- a/src/Router.php
+++ b/src/Router.php
@@ -22,6 +22,7 @@ class Router
if(!defined('HTTP_HOST') AND isset($_SERVER['HTTP_HOST']))
define('HTTP_HOST', $_SERVER['HTTP_HOST']);
+
elseif(!defined('HTTP_HOST'))
... | delete unused method, update condition, beautification code | dframe_dframe | train |
47bd3ac9d1d64affeec8cd864e4823c7caf375b1 | diff --git a/src/test/java/com/xtremelabs/robolectric/shadows/ContentUrisTest.java b/src/test/java/com/xtremelabs/robolectric/shadows/ContentUrisTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/com/xtremelabs/robolectric/shadows/ContentUrisTest.java
+++ b/src/test/java/com/xtremelabs/robolectric/shadows/Conten... | fix ant build, initialize variables in setup instead of field declaration | robolectric_robolectric | train |
ee36ff348ea134f5d2ca4745368307e4629109bb | diff --git a/lib/Doctrine/Common/Persistence/PersistentObject.php b/lib/Doctrine/Common/Persistence/PersistentObject.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/Common/Persistence/PersistentObject.php
+++ b/lib/Doctrine/Common/Persistence/PersistentObject.php
@@ -109,7 +109,7 @@ abstract class PersistentObject i... | Allow null as a return value for association's target (#<I>) | doctrine_persistence | train |
0bdf8a84de287c09679ea74666763281e0c865ec | diff --git a/lib/mongo_client.js b/lib/mongo_client.js
index <HASH>..<HASH> 100644
--- a/lib/mongo_client.js
+++ b/lib/mongo_client.js
@@ -35,7 +35,7 @@ var validOptionNames = ['poolSize', 'ssl', 'sslValidate', 'sslCA', 'sslCert',
'socketTimeoutMS', 'reconnectTries', 'reconnectInterval', 'ha', 'haInterval',
'repl... | refactor(MongoClient): remove duplicate option `promoteLongs`
`promoteLongs` was listed twice | mongodb_node-mongodb-native | train |
15704a7665e43607e3f13aef015722fedb336f48 | diff --git a/pkg/test/ginkgo/cmd_runsuite.go b/pkg/test/ginkgo/cmd_runsuite.go
index <HASH>..<HASH> 100644
--- a/pkg/test/ginkgo/cmd_runsuite.go
+++ b/pkg/test/ginkgo/cmd_runsuite.go
@@ -102,9 +102,9 @@ func (opt *Options) AsEnv() []string {
func (opt *Options) SelectSuite(suites []*TestSuite, args []string) (*TestS... | test: allow -f to match tests for any test suite
This allows the -f option for openshift-tests to work with specific
test suites instead of assuming the "files" test suite. | openshift_origin | train |
381669613700e995e3ad03a8e9e25fa500c3bd64 | diff --git a/pybooru/pybooru.py b/pybooru/pybooru.py
index <HASH>..<HASH> 100755
--- a/pybooru/pybooru.py
+++ b/pybooru/pybooru.py
@@ -35,22 +35,26 @@ from resources import site_list
class PybooruError(Exception):
- """
- Class for return error message
+ """Class for return error message
+
+ msg: Th... | Changes in PybooruError | LuqueDaniel_pybooru | train |
82b21873336a7fa891ce180ce52be23d8e8c1d61 | diff --git a/src/GameWorld.js b/src/GameWorld.js
index <HASH>..<HASH> 100644
--- a/src/GameWorld.js
+++ b/src/GameWorld.js
@@ -92,7 +92,7 @@ class GameWorld {
/**
* Remove an object from the game world
- * @param object
+ * @param {Object} object object to remove
*/
addObject(object) {
... | store playerId as property in PhysicalObject2D | lance-gg_lance | train |
89a7fcb257ba490e9688b0c7fc0927a5115a17ad | diff --git a/apiserver/common/networkingcommon/linklayer.go b/apiserver/common/networkingcommon/linklayer.go
index <HASH>..<HASH> 100644
--- a/apiserver/common/networkingcommon/linklayer.go
+++ b/apiserver/common/networkingcommon/linklayer.go
@@ -181,9 +181,8 @@ func (o *MachineLinkLayerOp) MatchingIncoming(dev LinkLay... | Logs instead of throwing errors from networkAddressStateArgsForHWAddr.
This mirrors current behaviour for NetworkInterfacesToStateArgs. | juju_juju | train |
5462a48e565c7bee8e6544bb3869ed35ae79b83f | diff --git a/js/modules/qbChat.js b/js/modules/qbChat.js
index <HASH>..<HASH> 100644
--- a/js/modules/qbChat.js
+++ b/js/modules/qbChat.js
@@ -15,10 +15,11 @@
* - onDisconnectingListener
*/
-var inBrowser = typeof window !== "undefined";
+var isBrowser = typeof window !== "undefined";
+var unsupported = "This fu... | Node.js compatibilty
Also, delete dialog added. | QuickBlox_quickblox-javascript-sdk | train |
42a2672e34149eb05aba03448ea441d87e3e6b77 | diff --git a/compiler/linkname.go b/compiler/linkname.go
index <HASH>..<HASH> 100644
--- a/compiler/linkname.go
+++ b/compiler/linkname.go
@@ -116,7 +116,7 @@ func parseGoLinknames(fset *token.FileSet, pkgPath string, file *ast.File) ([]Go
decl := obj.Decl.(*ast.FuncDecl)
if decl.Body != nil {
- if pkgPath ==... | Ignore go:linkname directives in the `internal/fuzz` package.
All they do is insert fuzzing implementation stubs into the runtime
package, which our runtime doesn't use anyway. The stubs should be
discarded by dead code elimination automatically, so there is no
disadvantage compared to excluding the original source fi... | gopherjs_gopherjs | train |
0546cdd0f19c77888c797095af7fe760ac142991 | diff --git a/src/Controllers/ResourceController.php b/src/Controllers/ResourceController.php
index <HASH>..<HASH> 100644
--- a/src/Controllers/ResourceController.php
+++ b/src/Controllers/ResourceController.php
@@ -110,23 +110,16 @@ trait ResourceController
$factory = null;
$filterResults = null;
- ... | Refactor filters to allow for authorization based on indexes. | CatLabInteractive_charon-laravel | train |
16f6ad084b757259897907c49dc92dd651b3d848 | diff --git a/test/faker/vehicle.spec.js b/test/faker/vehicle.spec.js
index <HASH>..<HASH> 100644
--- a/test/faker/vehicle.spec.js
+++ b/test/faker/vehicle.spec.js
@@ -7,7 +7,7 @@ const data = require('../../data/vehicle.json');
describe('Vehicle', () => {
describe('#vin', () => {
- it('should return a vin', si... | Added Vehicle faker test for handling vehicle without a wmiExt. | mrstebo_fakergem | train |
b10dc00cfd22827186b2dd466ac2b71c23683e79 | diff --git a/core/cas-server-core-authentication-attributes/src/main/java/org/apereo/cas/services/ReturnMappedAttributeReleasePolicy.java b/core/cas-server-core-authentication-attributes/src/main/java/org/apereo/cas/services/ReturnMappedAttributeReleasePolicy.java
index <HASH>..<HASH> 100644
--- a/core/cas-server-core-... | Fix external groovy script reference for mapped attributes release policy (#<I>) | apereo_cas | train |
3d60b7c7ad363519f98abef605a54fdcef52df2b | diff --git a/src/Analyser/Scope.php b/src/Analyser/Scope.php
index <HASH>..<HASH> 100644
--- a/src/Analyser/Scope.php
+++ b/src/Analyser/Scope.php
@@ -676,6 +676,33 @@ class Scope
return new ArrayType($this->getType($argumentValue), false, true);
}
+ $functionsThatCombineAllArgumentTypes = [
+ 'min' => ... | Result type of min and max functions is mostly known | phpstan_phpstan | train |
5f33b11f08929ea31b3d4da31afe92339db34607 | diff --git a/lib/bare_migration.rb b/lib/bare_migration.rb
index <HASH>..<HASH> 100644
--- a/lib/bare_migration.rb
+++ b/lib/bare_migration.rb
@@ -55,9 +55,7 @@
# script will still work.
module BareMigration
- def self.append_features(base)
- base.extend(ClassMethods)
-
+ def self.included(base)
# Set t... | Remove unused parts of BareMigration | publify_publify | train |
2c0c4ebb7b7c6e04e6886cbd71f588e36e3b50be | diff --git a/lib/rom/command.rb b/lib/rom/command.rb
index <HASH>..<HASH> 100644
--- a/lib/rom/command.rb
+++ b/lib/rom/command.rb
@@ -9,7 +9,7 @@ module ROM
include Equalizer.new(:relation, :options)
- defines :relation, :result, :input, :validator, :register_as
+ defines :adapter, :relation, :result, :... | Adapter relations and commands define their adapter identifier
This makes it possible to automatically set adapter for a plugin
removing duplication from class definitions. It is an opt-in for
adapters, if they support plugins they need to set `adapter` identifier
on their relation and command classes.
/cc @cflipse | rom-rb_rom | train |
4763f2bedc229675abda37fc87d8063d62a5ee1b | diff --git a/alot/commands/envelope.py b/alot/commands/envelope.py
index <HASH>..<HASH> 100644
--- a/alot/commands/envelope.py
+++ b/alot/commands/envelope.py
@@ -197,8 +197,8 @@ class EditCommand(Command):
blacklist = set(settings.get('edit_headers_blacklist'))
if '*' in blacklist:
black... | Fix blacklist bug, and don't keep edit_headers in the object for now | pazz_alot | train |
3e3c48a136902ac67efce938bd10930e653a8075 | diff --git a/airflow/www/security.py b/airflow/www/security.py
index <HASH>..<HASH> 100644
--- a/airflow/www/security.py
+++ b/airflow/www/security.py
@@ -424,7 +424,9 @@ class AirflowSecurityManager(SecurityManager, LoggingMixin):
"""Determines whether a user has DAG read access."""
if not user:
... | Apply parent dag permissions to subdags. (#<I>)
This fixes a bug where users can't access a subdag even when they have access to the parent dag.
closes: #<I>
related: #<I> | apache_airflow | train |
52348c64767bdc384d2dd88cd83afb6483c9a360 | diff --git a/lib/snapshot/runner.rb b/lib/snapshot/runner.rb
index <HASH>..<HASH> 100644
--- a/lib/snapshot/runner.rb
+++ b/lib/snapshot/runner.rb
@@ -45,8 +45,6 @@ module Snapshot
else
Helper.log.info "Successfully finished generating #{counter} screenshots.".green
end
-
- ScreenshotFlatten... | Alpha channel is now removed even if the tests failed | fastlane_fastlane | train |
3dbb9d4c65fc3eef0b26c3193f852aa177602ce3 | diff --git a/plugins/pilot/lib/types.js b/plugins/pilot/lib/types.js
index <HASH>..<HASH> 100644
--- a/plugins/pilot/lib/types.js
+++ b/plugins/pilot/lib/types.js
@@ -40,6 +40,7 @@ define(function(require, exports, module) {
/**
* Some types can detect validity, that is to say they can distinguish between
* valid ... | Have Status use string constants in place of numbers for easy debugging for now | joewalker_gcli | train |
dd7be637a0052e88305934d21e89e6d4a13e1558 | diff --git a/src/chart/baseGroupedSeasonalLineChart.js b/src/chart/baseGroupedSeasonalLineChart.js
index <HASH>..<HASH> 100644
--- a/src/chart/baseGroupedSeasonalLineChart.js
+++ b/src/chart/baseGroupedSeasonalLineChart.js
@@ -304,10 +304,10 @@ sn.chart.baseGroupedSeasonalLineChart = function(containerSelector, chartCo... | Fix bug where self was not returned from setter invocation. | SolarNetwork_solarnetwork-d3 | train |
9b9784b0edce4a55be2567858fcc06ba52679b6a | diff --git a/openpnm/algorithms/TransientReactiveTransport.py b/openpnm/algorithms/TransientReactiveTransport.py
index <HASH>..<HASH> 100644
--- a/openpnm/algorithms/TransientReactiveTransport.py
+++ b/openpnm/algorithms/TransientReactiveTransport.py
@@ -226,9 +226,9 @@ class TransientReactiveTransport(ReactiveTranspor... | set zero ICs if nothing is imposed by the user | PMEAL_OpenPNM | train |
2088cf879a2838afbbd1d008f5d0085bc48891ab | diff --git a/Cache/Clear/CacheClearer.php b/Cache/Clear/CacheClearer.php
index <HASH>..<HASH> 100644
--- a/Cache/Clear/CacheClearer.php
+++ b/Cache/Clear/CacheClearer.php
@@ -116,7 +116,7 @@ class CacheClearer implements CacheClearerInterface
private function getCommands(string $set, $aliases = null): array
{... | Refactor list cache clear form factory. | DarvinStudio_DarvinAdminBundle | train |
3f0ed205e721008759297909f1f224ebd58c6673 | diff --git a/actionpack/lib/action_dispatch/testing/assertions/routing.rb b/actionpack/lib/action_dispatch/testing/assertions/routing.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_dispatch/testing/assertions/routing.rb
+++ b/actionpack/lib/action_dispatch/testing/assertions/routing.rb
@@ -152,6 +152,7 @@ m... | Remind us that RoutingAssertions should work in an integration context | rails_rails | train |
660a17dee7fae9eb85f646d99d87e889afdbd599 | diff --git a/Kwf/Util/ClearCache.php b/Kwf/Util/ClearCache.php
index <HASH>..<HASH> 100644
--- a/Kwf/Util/ClearCache.php
+++ b/Kwf/Util/ClearCache.php
@@ -107,6 +107,23 @@ class Kwf_Util_ClearCache
$loader = new Kwf_Assets_Loader();
$loader->getDependencies()->getMaxFileMTime(); //this is expe... | refresh assets, but commented out because it is quite slow | koala-framework_koala-framework | train |
4f306521d829fef21ebd70557b37f8199b82572b | diff --git a/packages/discord.js/src/structures/MessagePayload.js b/packages/discord.js/src/structures/MessagePayload.js
index <HASH>..<HASH> 100644
--- a/packages/discord.js/src/structures/MessagePayload.js
+++ b/packages/discord.js/src/structures/MessagePayload.js
@@ -143,7 +143,11 @@ class MessagePayload {
}
... | fix(MessagePayload): don't set reply flags to target flags (#<I>) | discordjs_discord.js | train |
ef8903451c009a5730d090e0dd7fee78523cc86d | diff --git a/closure/goog/promise/thenable.js b/closure/goog/promise/thenable.js
index <HASH>..<HASH> 100644
--- a/closure/goog/promise/thenable.js
+++ b/closure/goog/promise/thenable.js
@@ -41,8 +41,7 @@ goog.Thenable = function() {};
* with the rejection reason as argument, and the child Promise will be rejected
... | Unwrap promises with the experimental "type transformation language" (aka TTL).
Fixes github issue <I>
-------------
Created by MOE: <URL> | google_closure-library | train |
36281f17b13fab88223a1b832884a6816a756774 | diff --git a/src/org/mozilla/javascript/Interpreter.java b/src/org/mozilla/javascript/Interpreter.java
index <HASH>..<HASH> 100644
--- a/src/org/mozilla/javascript/Interpreter.java
+++ b/src/org/mozilla/javascript/Interpreter.java
@@ -2190,20 +2190,22 @@ public class Interpreter extends LabelTable {
ca... | In Interpreter.interpret THROW/JTHROW switch cases do not use result variable to hold temporary values to throw, use locally declared "Object exception" for that as result should only be used for value of Interpreter.interpret | mozilla_rhino | train |
18b97912bef42ca371a8b889c8ccd7db9651a363 | diff --git a/pysyte/iteration.py b/pysyte/iteration.py
index <HASH>..<HASH> 100644
--- a/pysyte/iteration.py
+++ b/pysyte/iteration.py
@@ -12,7 +12,22 @@ def first(sequence, message=None):
try:
return next(iter(sequence))
except StopIteration:
- raise ValueError(message or 'Sequence is empty')... | Get first and last text streams
first() will be "a file" or "clipboard"
last() will be "sys.stdin" | jalanb_pysyte | train |
b1c135f6b784a1f663e229d6bebd05b0dd6e3924 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -22,7 +22,7 @@ version_file = path.join(
'flask_restful',
'__version__.py'
)
-with open(version_file, 'rb') as fp:
+with open(version_file, 'r') as fp:
m = re.search(
r"^__version__ = ['\"]([^'\"]*)['\... | Remove binary flag on file read (#<I>) | flask-restful_flask-restful | train |
f3d96bebd0e7cf30362f43cf41165636f6af51f7 | diff --git a/plugins/ml/src/main/java/org/mwg/ml/algorithm/regression/LiveLinearRegressionNode.java b/plugins/ml/src/main/java/org/mwg/ml/algorithm/regression/LiveLinearRegressionNode.java
index <HASH>..<HASH> 100644
--- a/plugins/ml/src/main/java/org/mwg/ml/algorithm/regression/LiveLinearRegressionNode.java
+++ b/plug... | compatibility of mwg to Java 7 | datathings_greycat | train |
1052cd706daa3d206e85a331e0cb0dc58631488f | diff --git a/tests/tests.py b/tests/tests.py
index <HASH>..<HASH> 100644
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -61,17 +61,14 @@ class TestJavaobj(unittest.TestCase):
Calls Maven to compile & run Java classes that will generate serialized
data
"""
- # Compute the java directory (... | Find .ser files in tests/java/ or in tests/ | tcalmant_python-javaobj | train |
f068c6e7ad7d076e22646148d6bb7fe2d599317a | diff --git a/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/wizards/elements/oop/newclass/NewSarlClassWizardPage.java b/main/coreplugins/io.sarl.eclipse/src/io/sarl/eclipse/wizards/elements/oop/newclass/NewSarlClassWizardPage.java
index <HASH>..<HASH> 100644
--- a/main/coreplugins/io.sarl.eclipse/src/io/sarl/ecli... | [eclipse] Do not add "extends Object" into the class's code template.
see #<I> | sarl_sarl | train |
7b8c7b45a1c08fad0a629eb46717ee3e444ccce9 | diff --git a/repobee_plug/__version.py b/repobee_plug/__version.py
index <HASH>..<HASH> 100644
--- a/repobee_plug/__version.py
+++ b/repobee_plug/__version.py
@@ -1 +1 @@
-__version__ = "0.10.0-alpha"
+__version__ = "0.10.0-alpha.1"
diff --git a/repobee_plug/apimeta.py b/repobee_plug/apimeta.py
index <HASH>..<HASH> 100... | [fact] Remove enum.auto emulation, fix #<I> | repobee_repobee-plug | train |
cc2727f1f84ef81a6efe0cee06e5bf22d953911f | diff --git a/shared/actions/platform-specific.native.js b/shared/actions/platform-specific.native.js
index <HASH>..<HASH> 100644
--- a/shared/actions/platform-specific.native.js
+++ b/shared/actions/platform-specific.native.js
@@ -56,7 +56,16 @@ function saveAttachmentDialog(filePath: string): Promise<NextURI> {
ret... | clear any non-plaintext notifications in the notification center if they exist when plaintext is shown (#<I>)
* clear dup notifications
* guard and comment
* feedback | keybase_client | train |
865b3cb62b18e97353d67c920200eedfbbf6c0be | diff --git a/plenum/common/exceptions.py b/plenum/common/exceptions.py
index <HASH>..<HASH> 100644
--- a/plenum/common/exceptions.py
+++ b/plenum/common/exceptions.py
@@ -212,31 +212,6 @@ class OrientDBNotRunning(GraphStorageNotAvailable):
pass
-class EndpointException(Exception):
- pass
-
-
-class MissingE... | move connection related exceptions to stp project | hyperledger_indy-plenum | train |
dc923e6ea7f5fc2e3c3b18c1d27237a23971a5e0 | diff --git a/dipper/models/Genotype.py b/dipper/models/Genotype.py
index <HASH>..<HASH> 100644
--- a/dipper/models/Genotype.py
+++ b/dipper/models/Genotype.py
@@ -68,7 +68,8 @@ class Genotype():
'coding_transgene_feature': 'GENO:0000638',
'protein_coding_gene': 'SO:0001217',
'ncRNA_gene': 'SO... | add heritable_phenotypic_marker curie | monarch-initiative_dipper | train |
8fb36cd0c0626bfec47f1936a4d8ea16927a028b | diff --git a/bin/genversion.js b/bin/genversion.js
index <HASH>..<HASH> 100755
--- a/bin/genversion.js
+++ b/bin/genversion.js
@@ -8,15 +8,11 @@ const path = require('path')
// Setup
const program = commander.program
-const increaseVerbosity = (verb, total) => {
- return total + 1
-}
-
program
.version(v, '-V,... | Simplify verbosity option | axelpale_genversion | train |
b0ab7d7f599b185dbbd09b1c95d14ab8b155a4e5 | diff --git a/closure/goog/deps.js b/closure/goog/deps.js
index <HASH>..<HASH> 100644
--- a/closure/goog/deps.js
+++ b/closure/goog/deps.js
@@ -638,7 +638,7 @@ goog.addDependency('labs/testing/decoratormatcher.js', ['goog.labs.testing.Anyth
goog.addDependency('labs/testing/decoratormatcher_test.js', ['goog.labs.testing... | Add property replacer to Environment.
RELNOTES[NEW]: A PropertyReplacer is now available on goog.labs.testing.Environment.
-------------
Created by MOE: <URL> | google_closure-library | train |
b74cdf93d8c061f36d5df19e7e3e754a4f3caa81 | diff --git a/cloudinit/sshinit/configure.go b/cloudinit/sshinit/configure.go
index <HASH>..<HASH> 100644
--- a/cloudinit/sshinit/configure.go
+++ b/cloudinit/sshinit/configure.go
@@ -119,13 +119,13 @@ func ConfigureScript(cloudcfg *cloudinit.Config) (string, error) {
// * --assume-yes answers yes to any yes/no questi... | revert back cloudinit.aptget | juju_juju | train |
249c35c5527f636867df2ab237a62d07bd2b741a | diff --git a/app/services/stellar_base/deposit_requests/send_asset.rb b/app/services/stellar_base/deposit_requests/send_asset.rb
index <HASH>..<HASH> 100644
--- a/app/services/stellar_base/deposit_requests/send_asset.rb
+++ b/app/services/stellar_base/deposit_requests/send_asset.rb
@@ -34,9 +34,8 @@ module StellarBase
... | Condense code into one step; print whole faraday error | bloom-solutions_stellar_base-rails | train |
349a2b279e7f2ec133aa9adac77d8bea56493129 | diff --git a/tests/unit/states/test_file.py b/tests/unit/states/test_file.py
index <HASH>..<HASH> 100644
--- a/tests/unit/states/test_file.py
+++ b/tests/unit/states/test_file.py
@@ -1202,6 +1202,7 @@ class TestFileState(TestCase, LoaderModuleMockMixin):
{'file.directory_exists': mock_f,
... | Prepend test needs file.touch method | saltstack_salt | train |
87d21a8f070dbc684c47b998baac68d0ff39533b | diff --git a/PutIO/Engines/PutIO/FilesEngine.php b/PutIO/Engines/PutIO/FilesEngine.php
index <HASH>..<HASH> 100644
--- a/PutIO/Engines/PutIO/FilesEngine.php
+++ b/PutIO/Engines/PutIO/FilesEngine.php
@@ -185,7 +185,7 @@ class FilesEngine extends PutIOHelper
$saveAs = $info['name'];
}
- ... | Fix the mp4 capitalization in mp4 file version download link | nicoSWD_put.io-api-v2 | train |
64692aa8cc61859801d5d8996f74574a5087d8ba | diff --git a/Log.php b/Log.php
index <HASH>..<HASH> 100644
--- a/Log.php
+++ b/Log.php
@@ -112,7 +112,8 @@ class Log
/* If the class exists, return a new instance of it. */
if (class_exists($class)) {
- return new $class($name, $ident, $conf, $maxLevel);
+ $object =& new $class... | Alter the way we return a reference to the newly-created object to satisfy
Zend Engine 2's new object model. | pear_Log | train |
bd23ab2a2ed4c41c648978cfc8e46cc8e82dac05 | diff --git a/parsl/executors/high_throughput/interchange.py b/parsl/executors/high_throughput/interchange.py
index <HASH>..<HASH> 100644
--- a/parsl/executors/high_throughput/interchange.py
+++ b/parsl/executors/high_throughput/interchange.py
@@ -26,19 +26,6 @@ HEARTBEAT_CODE = (2 ** 32) - 1
PKL_HEARTBEAT_CODE = pickl... | Remove unused ShutdownRequest interchange (#<I>)
This hasn't been used for a long time, since 8fbee5f | Parsl_parsl | train |
6c2358fc686ac146e1d11d0dbbe4198607f765b5 | diff --git a/gulpfile.babel.js b/gulpfile.babel.js
index <HASH>..<HASH> 100644
--- a/gulpfile.babel.js
+++ b/gulpfile.babel.js
@@ -25,7 +25,11 @@ gulp.task("build-data", function()
let stringified = stringify(value, null, " ")
let result = `"use strict";Object.defineProperty(exports,"__esModule",{value:t... | Fixed hidden non-working behavior when error is produced during file creation | sebastian-software_vue-locale | train |
5b5ad931381f7e40ad1d324ae4436ae9667d09c5 | diff --git a/core/testing/framework/src/main/java/org/overture/core/tests/AbsResultTest.java b/core/testing/framework/src/main/java/org/overture/core/tests/AbsResultTest.java
index <HASH>..<HASH> 100644
--- a/core/testing/framework/src/main/java/org/overture/core/tests/AbsResultTest.java
+++ b/core/testing/framework/sr... | Make AbsResultTest public.
In preparation for moving the ExampleTests out of the main
tests package. | overturetool_overture | train |
af75421c546b47934f02595b99e51e57c4b02e14 | diff --git a/course/renderer.php b/course/renderer.php
index <HASH>..<HASH> 100644
--- a/course/renderer.php
+++ b/course/renderer.php
@@ -209,9 +209,9 @@ class core_course_renderer extends plugin_renderer_base {
$formcontent .= html_writer::start_tag('div', array('class' => 'submitbuttons'));
$form... | MDL-<I> Adjustments to styling of module chooser
These changes fix several points and suggested changes:
* increase the size of the help popup to <I>x<I>
* fix issues with centering of the dialogue
* swap next/cancel buttons
* convert next button to use string for 'Add'
* convert add text to 'Add an activity or resour... | moodle_moodle | train |
d71db3be5f6e62e8163ae3672d888bf4311a6859 | diff --git a/lib/engine.go b/lib/engine.go
index <HASH>..<HASH> 100644
--- a/lib/engine.go
+++ b/lib/engine.go
@@ -118,9 +118,11 @@ func NewEngine(r Runner, o Options) (*Engine, error) {
}
e.SetPaused(o.Paused.Bool)
+ // Use Stages if available, if not, construct a stage to fill the specified duration.
+ // Speci... | A valid duration of 0 = infinite stage | loadimpact_k6 | train |
d4d37868cd231014c32a90531de583993aa16e5f | diff --git a/binstar_client/inspect_package/pypi.py b/binstar_client/inspect_package/pypi.py
index <HASH>..<HASH> 100644
--- a/binstar_client/inspect_package/pypi.py
+++ b/binstar_client/inspect_package/pypi.py
@@ -13,7 +13,7 @@ import pkg_resources
from binstar_client import errors
from binstar_client.inspect_packag... | Fix tests for pip <I> (py<I>) | Anaconda-Platform_anaconda-client | train |
928290ac4659c5da387b6bd511818b31535eb09e | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,9 +1,7 @@
# coding=utf-8
from setuptools import setup, find_packages
-long_description = open('README.md').read()
-
-VERSION = "0.1.10"
+VERSION = "0.1.11"
setup(
name="PyTrustNFe",
@@ -27,7 +25,7 @@ later (LGPL... | FIX - No such file or directory: 'README.md' | danimaribeiro_PyTrustNFe | train |
7468e066f40dd634e16fed9cf5c6219a5a70628f | diff --git a/cutlass/cf.go b/cutlass/cf.go
index <HASH>..<HASH> 100644
--- a/cutlass/cf.go
+++ b/cutlass/cf.go
@@ -44,6 +44,7 @@ type App struct {
Stack string
Buildpacks []string
Memory string
+ Disk string
Stdout *bytes.Buffer
appGUID string
env map[string]string
@@ -57,6 +58,... | Allow setting of disk size on app push | cloudfoundry_libbuildpack | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.