hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
d4b6c298c453a9ed2169f3aec0f8bce816b9c8bf | diff --git a/src/lang-yaml.js b/src/lang-yaml.js
index <HASH>..<HASH> 100644
--- a/src/lang-yaml.js
+++ b/src/lang-yaml.js
@@ -10,16 +10,18 @@
PR.registerLangHandler(
PR.createSimpleLexer(
[
- [PR.PR_PUNCTUATION, /^[:|>?]/, null, ':|>?'],
+ [PR.PR_PUNCTUATION, /^[:|>?]+/, null, ':|>?'],
[PR.PR... | reduced the number of tokens generated by YAML mode by coallescing tokens | google_code-prettify | train |
2f5e6c88227acbeb11102b7b3ec3fc11f2c62028 | diff --git a/nosedjango/__init__.py b/nosedjango/__init__.py
index <HASH>..<HASH> 100644
--- a/nosedjango/__init__.py
+++ b/nosedjango/__init__.py
@@ -1 +1,2 @@
# Just a place holder for Windows.
+__version__ = (0, 6) | added a version code to nosedjango | nosedjango_nosedjango | train |
20690b918a78b8ae67b5fd693dda202cb5ae0799 | diff --git a/src/Role/ReadModel/Constraints/Doctrine/UserConstraintsReadRepository.php b/src/Role/ReadModel/Constraints/Doctrine/UserConstraintsReadRepository.php
index <HASH>..<HASH> 100644
--- a/src/Role/ReadModel/Constraints/Doctrine/UserConstraintsReadRepository.php
+++ b/src/Role/ReadModel/Constraints/Doctrine/Use... | III-<I> Make sure to only return user constraints with non empty constraints when getting those constraints by user id and permission. | cultuurnet_udb3-php | train |
76cfd77b3a88ce17508471bf335829eb0628abcf | diff --git a/mmcv/utils/config.py b/mmcv/utils/config.py
index <HASH>..<HASH> 100644
--- a/mmcv/utils/config.py
+++ b/mmcv/utils/config.py
@@ -121,7 +121,7 @@ class Config:
regexp = r'\{\{\s*' + str(key) + r'\s*\}\}'
value = value.replace('\\', '/')
config_file = re.sub(regexp, va... | Fix config parsing error caused by non-ascii characters (#<I>)
* explicitly set encoding as 'utf-8' | open-mmlab_mmcv | train |
d8e270ba9868f29edf9ff1ce384d548d93a3bea4 | diff --git a/lib/shopify_theme/version.rb b/lib/shopify_theme/version.rb
index <HASH>..<HASH> 100644
--- a/lib/shopify_theme/version.rb
+++ b/lib/shopify_theme/version.rb
@@ -1,3 +1,3 @@
module ShopifyTheme
- VERSION = "0.0.4"
+ VERSION = "0.0.5"
end | Packaging for version <I> release | Shopify_shopify_theme | train |
12760b9d44650914a3c087547b1b0f760b29e16d | diff --git a/devassistant/package_managers.py b/devassistant/package_managers.py
index <HASH>..<HASH> 100644
--- a/devassistant/package_managers.py
+++ b/devassistant/package_managers.py
@@ -70,11 +70,6 @@ class PackageManager(object):
raise NotImplementedError()
@classmethod
- def is_installed(cls, ... | Remove extraneous is_installed method from package managers, we are ok with just works() | devassistant_devassistant | train |
76e2b55996bc5994b0fb7c0f17c45e7915686dba | diff --git a/src/ossos-pipeline/ossos/gui/image.py b/src/ossos-pipeline/ossos/gui/image.py
index <HASH>..<HASH> 100644
--- a/src/ossos-pipeline/ossos/gui/image.py
+++ b/src/ossos-pipeline/ossos/gui/image.py
@@ -5,8 +5,6 @@ import tempfile
from astropy.io import fits
-from ossos import daophot
-
class Downloaded... | Moved daophot import to the method where it is used so that IRAF is not
loaded unless needed. This improves startup time for processing
candidates. | OSSOS_MOP | train |
22988308f842c14af7ee505f9461fc7c832d6ab4 | diff --git a/lib/karafka/process.rb b/lib/karafka/process.rb
index <HASH>..<HASH> 100644
--- a/lib/karafka/process.rb
+++ b/lib/karafka/process.rb
@@ -6,7 +6,7 @@ module Karafka
# Signal types that we handle
HANDLED_SIGNALS = %i(
- SIGINT SIGQUIT
+ SIGINT SIGQUIT SIGTERM
).freeze
HANDL... | for running on Heroku, allow server to respond to SIGTERM and shut down accordingly (#<I>) | karafka_karafka | train |
7addf6a62c04b4211efd0c0ae18eefe503b9ccc5 | diff --git a/src/Client.php b/src/Client.php
index <HASH>..<HASH> 100644
--- a/src/Client.php
+++ b/src/Client.php
@@ -76,7 +76,7 @@ class Client
*/
public function send($zpl)
{
- if (!@socket_write($this->socket, $zpl)) {
+ if (false === @socket_write($this->socket, $zpl)) {
... | don't throw error on empty response | robgridley_zebra | train |
ecb2477c77f95db0517e37702071b94a8d6b22dd | diff --git a/lib/puppet/parser/ast/leaf.rb b/lib/puppet/parser/ast/leaf.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/parser/ast/leaf.rb
+++ b/lib/puppet/parser/ast/leaf.rb
@@ -113,10 +113,10 @@ class Puppet::Parser::AST
# not include syntactical constructs, like '$' and '{}').
def evaluate(scope)
pa... | ast: code cleanup for variable nodes.
This just rearranges an if statement so that it doesn't have a double
negatives causing mental load evaluating the code as written. | puppetlabs_puppet | train |
b7145eb849788fee6f5715b4beb66965f9aca690 | diff --git a/lib/how_is/sources/ci/travis.rb b/lib/how_is/sources/ci/travis.rb
index <HASH>..<HASH> 100644
--- a/lib/how_is/sources/ci/travis.rb
+++ b/lib/how_is/sources/ci/travis.rb
@@ -30,8 +30,7 @@ module HowIs
validate_default_branch_response!(response)
branches = response["branches"]
- ... | clean up ci/travis.rb some more. | duckinator_inq | train |
1e2eb5565be04878d4f40b61d363a10d78bcc255 | diff --git a/resources/src/main/java/org/robolectric/res/android/ResTable_config.java b/resources/src/main/java/org/robolectric/res/android/ResTable_config.java
index <HASH>..<HASH> 100644
--- a/resources/src/main/java/org/robolectric/res/android/ResTable_config.java
+++ b/resources/src/main/java/org/robolectric/res/an... | Fix sign extension after byte order conversion.
Android's ResTable_config uses uint<I>, but Robolectric uses Java short+int.
When converting byte order for 0xFFFF, we need to ensure that it stays that
value. This primarilly applies to the resource qualifier "mnc<I>", which gets
encoded as 0xFFFF.
PiperOrigin-RevId: ... | robolectric_robolectric | train |
c051f209e8bf680e319c309439eaaac7aa81345f | diff --git a/lib/punchblock/translator/asterisk/call.rb b/lib/punchblock/translator/asterisk/call.rb
index <HASH>..<HASH> 100644
--- a/lib/punchblock/translator/asterisk/call.rb
+++ b/lib/punchblock/translator/asterisk/call.rb
@@ -28,6 +28,10 @@ module Punchblock
send_pb_event offer_event
end
+ ... | [FEATURE] Translator::Asterisk::Call#to_s should give call ID and channel name | adhearsion_punchblock | train |
add8b5caff157c0b3fd2c9c319d69f27f9ed013b | diff --git a/octokit/gist_comments.go b/octokit/gist_comments.go
index <HASH>..<HASH> 100644
--- a/octokit/gist_comments.go
+++ b/octokit/gist_comments.go
@@ -20,6 +20,8 @@ type GistCommentsService struct {
}
// Get a list of all gist comments
+//
+// https://developer.github.com/v3/gists/comments/#list-comments-on... | Add doc urls gist_comments | octokit_go-octokit | train |
0b7bb62da983d62fbbfafbc6bde95c1eecc46649 | diff --git a/lib/netflix2.class.js b/lib/netflix2.class.js
index <HASH>..<HASH> 100644
--- a/lib/netflix2.class.js
+++ b/lib/netflix2.class.js
@@ -54,19 +54,12 @@ class Netflix {
}
/**
- * login credentials
- * @typedef {Object} credentials
- * @property {string} email - your email address
- * @propert... | Add JsDoc for other methods (#<I>) | LBBO_node-netflix2 | train |
3050565568354f6e4a319a611a4f8ee020b4f0c0 | diff --git a/bcbio/structural/prioritize.py b/bcbio/structural/prioritize.py
index <HASH>..<HASH> 100644
--- a/bcbio/structural/prioritize.py
+++ b/bcbio/structural/prioritize.py
@@ -148,10 +148,12 @@ def _cnvkit_prioritize(sample, genes, allele_file, metrics_file):
"""
mdf = pd.read_table(metrics_file)
... | CNV prioritization: only filter genes if present
Avoids error when no gene names available for prioritization. | bcbio_bcbio-nextgen | train |
841ff590ea6f4b195016b6a176876461b7af94e3 | diff --git a/command/hook_ui.go b/command/hook_ui.go
index <HASH>..<HASH> 100644
--- a/command/hook_ui.go
+++ b/command/hook_ui.go
@@ -60,6 +60,7 @@ const (
uiResourceCreate
uiResourceModify
uiResourceDestroy
+ uiResourceRead
)
func (h *UiHook) PreApply(addr addrs.AbsResourceInstance, gen states.Generation, a... | command: Add UI hooks for read actions | hashicorp_terraform | train |
de796263898826698b30f4a75f0035ea57fd2336 | diff --git a/res/generators/templates/application/app/javascript_index.js b/res/generators/templates/application/app/javascript_index.js
index <HASH>..<HASH> 100644
--- a/res/generators/templates/application/app/javascript_index.js
+++ b/res/generators/templates/application/app/javascript_index.js
@@ -99,7 +99,9 @@ var... | js app generation fix: Rho.RhoConnectClient is chechked on existance now before setting the notifications | rhomobile_rhodes | train |
7ebc6078e34504541dfbb528ab80dea00cc80963 | diff --git a/features/step_definitions/manage_patients_steps.rb b/features/step_definitions/manage_patients_steps.rb
index <HASH>..<HASH> 100644
--- a/features/step_definitions/manage_patients_steps.rb
+++ b/features/step_definitions/manage_patients_steps.rb
@@ -15,7 +15,7 @@ Given(/^some patients who need renal treatm... | Amended patient sex attribute to use string value instead of interger for factory instance. | airslie_renalware-core | train |
ede323e2b3481b4a9bf0cc1fc905dbafa73ce1af | diff --git a/course/lib.php b/course/lib.php
index <HASH>..<HASH> 100644
--- a/course/lib.php
+++ b/course/lib.php
@@ -2930,6 +2930,8 @@ function delete_course_module($id) {
// very quick on an empty table)
$DB->delete_records('course_modules_completion', array('coursemoduleid' => $cm->id));
$DB->delete_... | MDL-<I> Ensure that completion criteria are deleted when removing a course module
Conflicts:
lib/db/upgrade.php
version.php | moodle_moodle | train |
67d9f83f1552e2bcdeb20f12e572b27e9546f5ba | diff --git a/lib/build.js b/lib/build.js
index <HASH>..<HASH> 100644
--- a/lib/build.js
+++ b/lib/build.js
@@ -30,9 +30,26 @@ module.exports = {
return path.join(this.path, this.basename)
},
+ complete: function () {
+ return Promise.resolve(this)
+ },
+
exists: function (dirs) {
return dirs.some... | add post-processing hook and file writer to Build | nodenv_node-build-update-defs | train |
e4bc212c824129bbc5394fe9b02b47466ea18499 | diff --git a/java/client/test/org/openqa/selenium/CorrectEventFiringTest.java b/java/client/test/org/openqa/selenium/CorrectEventFiringTest.java
index <HASH>..<HASH> 100644
--- a/java/client/test/org/openqa/selenium/CorrectEventFiringTest.java
+++ b/java/client/test/org/openqa/selenium/CorrectEventFiringTest.java
@@ -3... | JimEvans: Changing Java CorrectEventFiringTest.testUploadingFileShouldFireOnChangeEvent to click on a specific element after upload to force event to fire. Previously, it was clicking on the <body> element.
r<I> | SeleniumHQ_selenium | train |
2e2e2f9d6455b8ad290748bee6cfae101253baaf | diff --git a/tests/spec/fs.truncate.spec.js b/tests/spec/fs.truncate.spec.js
index <HASH>..<HASH> 100644
--- a/tests/spec/fs.truncate.spec.js
+++ b/tests/spec/fs.truncate.spec.js
@@ -223,3 +223,18 @@ describe('fs.truncate', function() {
});
});
});
+
+
+describe('fsPromises.truncate', function () {
+ beforeEa... | Fixed issue#<I> using promises to test fs.truncate when path does not exist (#<I>)
* added a test for issue#<I> using promises to test fs.truncate
* Fixed issue#<I> tesing fs.truncate using promises when path does not exist | filerjs_filer | train |
25d7ee286d4a964076ef0a9b53642c4cb580b3af | diff --git a/revision_store.py b/revision_store.py
index <HASH>..<HASH> 100644
--- a/revision_store.py
+++ b/revision_store.py
@@ -58,7 +58,6 @@ class AbstractRevisionStore(object):
serializer = self.repo._format._serializer
search_key_name = serializer.search_key_name
maximum_size = serializ... | parent_id_to_basename_index is no longer a serializer attribute - always required now | jelmer_python-fastimport | train |
5721e75a599da008af80a06a951f54ffa39fbbfc | diff --git a/pythainlp/ner/__init__.py b/pythainlp/ner/__init__.py
index <HASH>..<HASH> 100644
--- a/pythainlp/ner/__init__.py
+++ b/pythainlp/ner/__init__.py
@@ -5,6 +5,7 @@ Named-entity recognizer
from pythainlp.corpus import download, get_file, stopwords
from pythainlp.tag import pos_tag
from pythainlp.tokenize i... | Filter out non-Thai words and low frequency words from word frequency list for spell checker | PyThaiNLP_pythainlp | train |
f7a82e8d9a7698e05dc623c74f246d5bebc8a74d | diff --git a/metrics-core/src/main/java/com/codahale/metrics/ScheduledReporter.java b/metrics-core/src/main/java/com/codahale/metrics/ScheduledReporter.java
index <HASH>..<HASH> 100644
--- a/metrics-core/src/main/java/com/codahale/metrics/ScheduledReporter.java
+++ b/metrics-core/src/main/java/com/codahale/metrics/Sche... | Add support for disabling some metrics from being reported
Add a facility to disable set of metrics which should not be reported to a
remote system. `ScheduledReporter` only saves them. The decision to
how to filter the metric is delegated to concrete reporters. | dropwizard_metrics | train |
3c57ee74c73884ea3c0a24d0ec40796453657823 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -237,7 +237,7 @@ install_requires = [
'rtree>=0.9.7',
'setuptools>=39.0.0',
'sphinx>=0.6.6',
- 'spyder-kernels>=2.0.3,<2.1.0',
+ 'spyder-kernels>=2.0.4,<2.1.0',
'textdistance>=4.2.0',
'three-merg... | Update spyder-kernels dependency | spyder-ide_spyder | train |
09141d2a8f8cb0096c9ff9d079786f056fb4de8c | diff --git a/superset-frontend/webpack.config.js b/superset-frontend/webpack.config.js
index <HASH>..<HASH> 100644
--- a/superset-frontend/webpack.config.js
+++ b/superset-frontend/webpack.config.js
@@ -340,6 +340,9 @@ const config = {
exclude: [/superset-ui.*\/node_modules\//, /\.test.jsx?$/],
includ... | fix(build): update webpack jsx paths (#<I>) | apache_incubator-superset | train |
8ba38b8efadf3a222a3721610cf8d163cf9834b3 | diff --git a/pygmsh/geometry.py b/pygmsh/geometry.py
index <HASH>..<HASH> 100644
--- a/pygmsh/geometry.py
+++ b/pygmsh/geometry.py
@@ -257,7 +257,18 @@ class Geometry(object):
)
else:
raise RuntimeError('Specify at least translation or rotation.')
- return name
+
+ #... | return top and extruded entity separately from extrude() | nschloe_pygmsh | train |
d824225d2bf54fce99ddcbfa0804dcc24c3a2b30 | diff --git a/core/typechecker/src/main/java/org/overture/typechecker/visitor/TypeCheckerDefinitionVisitor.java b/core/typechecker/src/main/java/org/overture/typechecker/visitor/TypeCheckerDefinitionVisitor.java
index <HASH>..<HASH> 100644
--- a/core/typechecker/src/main/java/org/overture/typechecker/visitor/TypeChecker... | Typecheck of LetDefBindingTraceDefinition was being completely neglected. This commit adds the typecheck. | overturetool_overture | train |
38e2909a12712c4ecd01008f0ea6eb79cf569ed3 | diff --git a/test/test_variant.py b/test/test_variant.py
index <HASH>..<HASH> 100644
--- a/test/test_variant.py
+++ b/test/test_variant.py
@@ -151,6 +151,44 @@ def test_serialization():
reconstituted = Variant.from_json(serialized)
eq_(original, reconstituted)
+def test_deserialization_old_keywords(... | added keyword aliases to Variant | openvax_varcode | train |
77bc344c5536aeaa4970fd2626f4ff22106ed841 | diff --git a/de.tudarmstadt.ukp.statistics/src/main/java/de/tudarmstadt/ukp/dkpro/statistics/unitizing/UnitizingStudy.java b/de.tudarmstadt.ukp.statistics/src/main/java/de/tudarmstadt/ukp/dkpro/statistics/unitizing/UnitizingStudy.java
index <HASH>..<HASH> 100644
--- a/de.tudarmstadt.ukp.statistics/src/main/java/de/tuda... | Remark on initial continuum length (=0) | dkpro_dkpro-statistics | train |
35b08f1edfed0dc5205415d117b462ed99658fc5 | diff --git a/ontrack-web/src/app/service/service.event.js b/ontrack-web/src/app/service/service.event.js
index <HASH>..<HASH> 100644
--- a/ontrack-web/src/app/service/service.event.js
+++ b/ontrack-web/src/app/service/service.event.js
@@ -14,67 +14,74 @@ angular.module('ot.service.event', [
);
};
... | #<I> Property event at client side | nemerosa_ontrack | train |
1cd1a21666eae100f1b4041d8f17b0d56908ae94 | diff --git a/spec/support/matchers/perform_queries.rb b/spec/support/matchers/perform_queries.rb
index <HASH>..<HASH> 100644
--- a/spec/support/matchers/perform_queries.rb
+++ b/spec/support/matchers/perform_queries.rb
@@ -15,4 +15,8 @@ RSpec::Matchers.define :perform_queries do |expected|
@counter.query_count
... | RSpec: Support block argument for #perform_queries | ledermann_rails-settings | train |
a9d47ba0be0ee44b672b2eee6a4056b189e5f5ea | diff --git a/samples/detect-intent-sentiment.v2.js b/samples/detect-intent-sentiment.v2.js
index <HASH>..<HASH> 100644
--- a/samples/detect-intent-sentiment.v2.js
+++ b/samples/detect-intent-sentiment.v2.js
@@ -72,9 +72,7 @@ async function main(
` Score: ${result.sentimentAnalysisResult.queryTextSentiment.sco... | refactor: changes formatting of various statements | googleapis_nodejs-dialogflow | train |
67d7757e9f285539decc2b94e519fcfc576d4cc5 | diff --git a/cmd/tusd/main.go b/cmd/tusd/main.go
index <HASH>..<HASH> 100644
--- a/cmd/tusd/main.go
+++ b/cmd/tusd/main.go
@@ -89,7 +89,7 @@ func main() {
handler, err := tusd.NewHandler(tusd.Config{
MaxSize: maxSize,
- BasePath: "files/",
+ BasePath: basepath,
DataSt... | fix hardcoded basePath | tus_tusd | train |
19c739962dcb41a27c01b85b7609cd8bd19290a5 | diff --git a/lib/events/index.js b/lib/events/index.js
index <HASH>..<HASH> 100644
--- a/lib/events/index.js
+++ b/lib/events/index.js
@@ -455,6 +455,14 @@ export default function (self) {
if (self.contextMenu || self.input) {
return;
}
+
+ // Cancel dragging action if user ventures outside grid
+ ... | Cancel moving when cursor exits grid (#<I>, fixes #<I>)
* fix stuck issue on Move-selection
* Add explanatory comment for change | TonyGermaneri_canvas-datagrid | train |
1d86c412d6b71e1779ea00d220e9335100625646 | diff --git a/karyon-core/src/main/java/com/netflix/karyon/server/KaryonServer.java b/karyon-core/src/main/java/com/netflix/karyon/server/KaryonServer.java
index <HASH>..<HASH> 100644
--- a/karyon-core/src/main/java/com/netflix/karyon/server/KaryonServer.java
+++ b/karyon-core/src/main/java/com/netflix/karyon/server/Kar... | reverted back from constructor to initialize method per Nitesh's suggestion | Netflix_karyon | train |
9ec35b74ec5109a3fc7d4398c91aa82028819b3b | diff --git a/packages/mdc-icon-toggle/foundation.js b/packages/mdc-icon-toggle/foundation.js
index <HASH>..<HASH> 100644
--- a/packages/mdc-icon-toggle/foundation.js
+++ b/packages/mdc-icon-toggle/foundation.js
@@ -89,6 +89,7 @@ class MDCIconToggleFoundation extends MDCFoundation {
init() {
this.refreshToggle... | fix(icon-toggle): Don't nuke tabindex if initializing disabled to false (#<I>) | material-components_material-components-web | train |
a937b29e105026392a40c23fb3ebdc940d4e96db | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -65,7 +65,16 @@ class TestCommand(Command):
import django
if django.VERSION[:2] >= (1, 7):
django.setup()
- call_command('test', 'bakery')
+
+ # With Django 1.6, the way tests were ... | Discover tests in Django <I>
Django's test runner changed in Django <I>, and the way tests
were discovered changed as well. Consequently
`call_command('test', 'bakery')` won't work for Django >= <I>.
Set the test module name to `baker.tests` in more recent versions
of Django so the tests will get discovered.
Addres... | datadesk_django-bakery | train |
7db3f67f9bd60b0e76c4978f120ca53e4e248918 | diff --git a/simuvex/plugins/symbolic_memory.py b/simuvex/plugins/symbolic_memory.py
index <HASH>..<HASH> 100644
--- a/simuvex/plugins/symbolic_memory.py
+++ b/simuvex/plugins/symbolic_memory.py
@@ -256,6 +256,11 @@ class SimSymbolicMemory(SimMemory): #pylint:disable=abstract-method
if len(missing) > 0:
... | pre-reverse ASTs for little-endian memory and registers | angr_angr | train |
8a4d49500031b3528836e01d5486246ba0149b86 | diff --git a/app/mixins/slmodal.js b/app/mixins/slmodal.js
index <HASH>..<HASH> 100755
--- a/app/mixins/slmodal.js
+++ b/app/mixins/slmodal.js
@@ -6,7 +6,7 @@ export default Ember.Mixin.create({
classNames: [ 'modal', 'fade' ],
- attributeBindings: [ 'aria-hidden', 'tabindex', 'role' ],
+ attributeBindin... | Added support for: aria-labelledby and aria-describedby attributes | softlayer_sl-ember-components | train |
e3dda9a68d848c80e8221b3dc124229c8093d9eb | diff --git a/salt/runner.py b/salt/runner.py
index <HASH>..<HASH> 100644
--- a/salt/runner.py
+++ b/salt/runner.py
@@ -42,7 +42,6 @@ class RunnerClient(object):
Execute a runner with the given arguments
'''
self._verify_fun(fun)
- # pylint: disable-msg=W0142
return self.functi... | `W<I>` is now disabled in `,pylintrc` no need to disable it in-line. | saltstack_salt | train |
f25306d7eee0d9b028d9b20d4b53ceeff5f88707 | diff --git a/tests/Tasks/CleanupTest.php b/tests/Tasks/CleanupTest.php
index <HASH>..<HASH> 100644
--- a/tests/Tasks/CleanupTest.php
+++ b/tests/Tasks/CleanupTest.php
@@ -30,11 +30,15 @@ class CleanupTest extends RocketeerTestCase
});
});
+ ob_start();
+
$this->assertTaskOutput('Cleanup', 'Removing <info>... | Suppress output during the tests
This should solve the issue where we have blank lines generated dumped while the test suite it running. | rocketeers_rocketeer | train |
90a6aa7ec0937c068b8d8ae5dd3900685dbb8990 | diff --git a/src/Composer/Command/ShowCommand.php b/src/Composer/Command/ShowCommand.php
index <HASH>..<HASH> 100644
--- a/src/Composer/Command/ShowCommand.php
+++ b/src/Composer/Command/ShowCommand.php
@@ -1227,7 +1227,12 @@ EOT
$targetVersion = '^' . $package->getVersion();
}
- return $... | Make sure we compare packages to their latest without aliases, fixes #<I> | composer_composer | train |
e008fddad45c6c721237ffbd5d2e2bd977fc2ee2 | diff --git a/lib/migration_comments/active_record/connection_adapters/abstract_adapter.rb b/lib/migration_comments/active_record/connection_adapters/abstract_adapter.rb
index <HASH>..<HASH> 100644
--- a/lib/migration_comments/active_record/connection_adapters/abstract_adapter.rb
+++ b/lib/migration_comments/active_reco... | override column options injector method for SchemaCreation introduced in Rails <I> | pinnymz_migration_comments | train |
aad4c61b9e1407c8f0a16863e605fcd9639a78bf | diff --git a/merb-gen/lib/generators/templates/application/merb/config/environments/development.rb b/merb-gen/lib/generators/templates/application/merb/config/environments/development.rb
index <HASH>..<HASH> 100644
--- a/merb-gen/lib/generators/templates/application/merb/config/environments/development.rb
+++ b/merb-ge... | Add notes about :log_stream and :log_file options. | wycats_merb | train |
4470415807b08151a1b0667348c2a6b9b4692701 | diff --git a/nanocomp/NanoComp.py b/nanocomp/NanoComp.py
index <HASH>..<HASH> 100644
--- a/nanocomp/NanoComp.py
+++ b/nanocomp/NanoComp.py
@@ -174,10 +174,10 @@ def validate_split_runs_file(split_runs_file):
if content[0].upper().split('\t') == ['NAME', 'RUN_ID']:
return {c.split('\t')[1]: c.split... | fixed undefined name sysexit | wdecoster_nanocomp | train |
8a1bdcd4b9fa2b8993409141fa8ee8b887cff6d6 | diff --git a/js/admin/src/main.js b/js/admin/src/main.js
index <HASH>..<HASH> 100644
--- a/js/admin/src/main.js
+++ b/js/admin/src/main.js
@@ -6,7 +6,7 @@ app.initializers.add('approval', () => {
extend(PermissionGrid.prototype, 'replyItems', items => {
items.add('replyWithoutApproval', {
icon: 'check',
... | Extract translations
- Adds app.translator calls for forum and admin interfaces.
- Locale file to follow later. | flarum_approval | train |
be70dae33751ddc3e0ae5a55b5cdbf2002a42932 | diff --git a/samples/downloadEncryptedFile.js b/samples/downloadEncryptedFile.js
index <HASH>..<HASH> 100644
--- a/samples/downloadEncryptedFile.js
+++ b/samples/downloadEncryptedFile.js
@@ -56,7 +56,7 @@ function main(
destination: destFileName,
};
- // Descrypts and downloads the file. This can only ... | fix: fixed typo (#<I>) | googleapis_nodejs-storage | train |
e1ad642da0030b38b4e3e9640d3db2fa13e36a6c | diff --git a/pkg/util/procfs/procfs.go b/pkg/util/procfs/procfs.go
index <HASH>..<HASH> 100644
--- a/pkg/util/procfs/procfs.go
+++ b/pkg/util/procfs/procfs.go
@@ -65,6 +65,9 @@ func (pfs *ProcFS) GetFullContainerName(pid int) (string, error) {
func PidOf(name string) []int {
pids := []int{}
filepath.Walk("/proc", ... | Fix intermittent failures in TestPidOf {procfs}
Bailout if WalkFunc is called with an error.
Fixes #<I> | kubernetes_kubernetes | train |
fa67cf71b1a47182d7a0a3a883a8209928f0fd6f | diff --git a/omnic/__init__.py b/omnic/__init__.py
index <HASH>..<HASH> 100644
--- a/omnic/__init__.py
+++ b/omnic/__init__.py
@@ -7,3 +7,5 @@ from omnic.utils.singleton import SingletonManager
singletons = SingletonManager()
# Ensure settings, at least, gets registered
+from omnic import config
+singletons.registe... | cleaning up imports of config properly | michaelpb_omnic | train |
53250552fe22980a5e343d9df687606bf6faef30 | diff --git a/panels/_version.py b/panels/_version.py
index <HASH>..<HASH> 100644
--- a/panels/_version.py
+++ b/panels/_version.py
@@ -1,2 +1,2 @@
# Versions compliant with PEP 440 https://www.python.org/dev/peps/pep-0440
-__version__ = "0.0.15"
+__version__ = "0.0.16" | Update version number to <I> | chaoss_grimoirelab-sigils | train |
b715eedbf1af4bf370b0cd6527b73372f51c5194 | diff --git a/lib/express_templates/components/forms/option_support.rb b/lib/express_templates/components/forms/option_support.rb
index <HASH>..<HASH> 100644
--- a/lib/express_templates/components/forms/option_support.rb
+++ b/lib/express_templates/components/forms/option_support.rb
@@ -5,6 +5,12 @@ module ExpressTempla... | [#<I>] add support for has_many :through to select | aelogica_express_templates | train |
15d4384e041bcc458ae6443a6becab1d995be60c | diff --git a/src/Illuminate/Contracts/Cache/Store.php b/src/Illuminate/Contracts/Cache/Store.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Contracts/Cache/Store.php
+++ b/src/Illuminate/Contracts/Cache/Store.php
@@ -26,7 +26,7 @@ interface Store
* Store an item in the cache for a given number of minutes.
... | Fix @param directives for cache store
Some of this docblocks were using 3 spaces instead
of the recommended 2 in the contributions page. | laravel_framework | train |
218ec889d2fbbf2d75c24b5a8a38dfd582b5cfad | diff --git a/blocks/rss_client/db/access.php b/blocks/rss_client/db/access.php
index <HASH>..<HASH> 100644
--- a/blocks/rss_client/db/access.php
+++ b/blocks/rss_client/db/access.php
@@ -75,7 +75,7 @@ $block_rss_client_capabilities = array(
)
),
- 'block/rss_client:managesharedfeeds' => array(
+ ... | Replaced managesharedfeeds by manageanyfeeds | moodle_moodle | train |
9f08fcc976c3a80310ea7d66499c9e58332afeab | diff --git a/lib/joint/instance_methods.rb b/lib/joint/instance_methods.rb
index <HASH>..<HASH> 100644
--- a/lib/joint/instance_methods.rb
+++ b/lib/joint/instance_methods.rb
@@ -19,7 +19,7 @@ module Joint
next unless io.respond_to?(:read)
io.rewind if io.respond_to?(:rewind)
grid.delet... | leave reading the IO to Mongo::Grid | jnunemaker_joint | train |
c3ae9c70bda2b01b95554bcaa4b9f521a4cb8f70 | diff --git a/tests/parser/types/numbers/test_uint256.py b/tests/parser/types/numbers/test_uint256.py
index <HASH>..<HASH> 100644
--- a/tests/parser/types/numbers/test_uint256.py
+++ b/tests/parser/types/numbers/test_uint256.py
@@ -1,17 +1,44 @@
-# from ethereum.abi import ValueOutOfBounds
+from vyper.exceptions import ... | Check that the sliced bytes is less than the storage capacity of uint<I> | ethereum_vyper | train |
0143ab6449190e2ab134959b114732b0a273ef8e | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -152,14 +152,25 @@ function Swarm (peerInfo) {
var peerIdForConn
muxedConn.on('stream', (conn) => {
- if (peerIdForConn) {
- conn.peerId = peerIdForConn
+ function gotId (... | freeze handling conns till identify is finished on the incomming multiplexed streams | libp2p_js-libp2p-switch | train |
3027871161409f84ecac029231cb444dd6a42c69 | diff --git a/pandas/core/frame.py b/pandas/core/frame.py
index <HASH>..<HASH> 100644
--- a/pandas/core/frame.py
+++ b/pandas/core/frame.py
@@ -389,6 +389,9 @@ class DataFrame(NDFrame):
copy=copy)
elif isinstance(data, list):
if len(data) > 0:
+ ... | ENH: retain Series names when constructing DataFrame from list of Series #<I> | pandas-dev_pandas | train |
d75a895fb36b6728bac3918019b1589abdc2e129 | diff --git a/SwatDB/SwatDBRecordsetWrapper.php b/SwatDB/SwatDBRecordsetWrapper.php
index <HASH>..<HASH> 100644
--- a/SwatDB/SwatDBRecordsetWrapper.php
+++ b/SwatDB/SwatDBRecordsetWrapper.php
@@ -143,7 +143,7 @@ abstract class SwatDBRecordsetWrapper extends SwatObject
$this->objects_by_index[$index] = $object;
... | Fix typo that broke all recordsets
svn commit r<I> | silverorange_swat | train |
82c9f51486b4e44b179bd1437595b080f98ff81e | diff --git a/lib/sensu/client/process.rb b/lib/sensu/client/process.rb
index <HASH>..<HASH> 100644
--- a/lib/sensu/client/process.rb
+++ b/lib/sensu/client/process.rb
@@ -233,25 +233,36 @@ module Sensu
end
end
+ # Determine the Sensu transport subscribe options for a
+ # subscription. If a s... | [roundrobin] use process start time in unique client funnel | sensu_sensu | train |
8577b19f4b12b6c43baed68a5d4aed9f87803ed9 | diff --git a/lib/puppet/ssl/oids.rb b/lib/puppet/ssl/oids.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/ssl/oids.rb
+++ b/lib/puppet/ssl/oids.rb
@@ -70,12 +70,18 @@ module Puppet::SSL::Oids
["1.3.6.1.4.1.34380.1.3.13", 'pp_auth_role', 'Puppet Node Role Name for Authorization'],
]
+ @did_register_puppet_oid... | (maint) Fix tests for OpenSSL <I> | puppetlabs_puppet | train |
c4bae8f4c2d1cdb9f9c66b9df251357aa3fdb3a9 | diff --git a/fs/torrentfs_test.go b/fs/torrentfs_test.go
index <HASH>..<HASH> 100644
--- a/fs/torrentfs_test.go
+++ b/fs/torrentfs_test.go
@@ -11,6 +11,7 @@ import (
"os"
"path/filepath"
"strconv"
+ "strings"
"testing"
"time"
@@ -93,11 +94,15 @@ func TestUnmountWedged(t *testing.T) {
DisableTrackers: tru... | Ignore failures due to FUSE not available | anacrolix_torrent | train |
9e74cf11fa0f8f07f1a93ced28cc7d49a2010c31 | diff --git a/chemlab/graphics/qtviewer.py b/chemlab/graphics/qtviewer.py
index <HASH>..<HASH> 100644
--- a/chemlab/graphics/qtviewer.py
+++ b/chemlab/graphics/qtviewer.py
@@ -71,8 +71,9 @@ class QtViewer(QMainWindow):
# functions without having to show the window first...
context = QGLContext(QGLForma... | Adding cleanup for qt objects | chemlab_chemlab | train |
dfdb7515259d90c0ab7b86f433084b2e98569a7e | diff --git a/main/core/API/Serializer/User/UserSerializer.php b/main/core/API/Serializer/User/UserSerializer.php
index <HASH>..<HASH> 100644
--- a/main/core/API/Serializer/User/UserSerializer.php
+++ b/main/core/API/Serializer/User/UserSerializer.php
@@ -313,6 +313,7 @@ class UserSerializer
}
... | Fix user creation with facets (#<I>) | claroline_Distribution | train |
334873d3784e2baa2b19f8f69b5aade36715ba03 | diff --git a/packages/interface-ipfs-core/src/add-all.js b/packages/interface-ipfs-core/src/add-all.js
index <HASH>..<HASH> 100644
--- a/packages/interface-ipfs-core/src/add-all.js
+++ b/packages/interface-ipfs-core/src/add-all.js
@@ -171,6 +171,28 @@ module.exports = (common, options) => {
expect(root.cid.toStr... | fix: align behaviour between go and js for content without paths (#<I>)
Aligns behaviour between js and go when no path is present during an import
- we now pass an empty string instead of `'unknown'`. | ipfs_js-ipfs | train |
57e18824e8de6d504e94a84a71b53a8b200a067c | diff --git a/drizzlepac/haputils/catalog_utils.py b/drizzlepac/haputils/catalog_utils.py
index <HASH>..<HASH> 100644
--- a/drizzlepac/haputils/catalog_utils.py
+++ b/drizzlepac/haputils/catalog_utils.py
@@ -496,6 +496,10 @@ class HAPCatalogBase:
gain_values = [g for g in gain_keys if g > 0.0]
self.gai... | Set the gain to a value of <I> when processing ACS/SBC data (#<I>)
* Ensure the photometry routine has a value of <I> when the input
data is ACS/SBC to avoid values being set to nan and causing
all of the sources to be trimmed from the output catalogs.
* Set the gain for both ACS/SBC and WFC3/IR and relocate the
... | spacetelescope_drizzlepac | train |
6814694a16d7fc8653c12dfbe3729a2501b2a338 | diff --git a/src/main/java/com/spotify/docker/client/messages/swarm/SwarmInit.java b/src/main/java/com/spotify/docker/client/messages/swarm/SwarmInit.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/spotify/docker/client/messages/swarm/SwarmInit.java
+++ b/src/main/java/com/spotify/docker/client/messages/swarm/... | Remove unnecessary null checks for nullables in SwarmInit | spotify_docker-client | train |
579eac13d1abd2dbb8bb060fe7bb028a517e705c | diff --git a/pythran/passes.py b/pythran/passes.py
index <HASH>..<HASH> 100644
--- a/pythran/passes.py
+++ b/pythran/passes.py
@@ -368,11 +368,18 @@ class NormalizeIdentifiers(ast.NodeVisitor):
node.name=self.rename(node.name)
self.visit(node.args)
[ self.visit(n) for n in node.body ]
+
... | Fix bug in normalize_identifiers.
Previous implementation did not dive into attribute attr. | serge-sans-paille_pythran | train |
7dbaaea87fbda0630c71fc283fc663dcbd0049ba | diff --git a/dingo/core/__init__.py b/dingo/core/__init__.py
index <HASH>..<HASH> 100644
--- a/dingo/core/__init__.py
+++ b/dingo/core/__init__.py
@@ -71,6 +71,7 @@ class NetworkDingo:
self._pf_config = kwargs.get('pf_config', None)
self._static_data = kwargs.get('static_data', {})
+ self.imp... | move nd's PF import to init of nd | openego_ding0 | train |
6677e0abccf9bbb229e301b666c65059b8a5b101 | diff --git a/cake/tests/cases/libs/model/model.test.php b/cake/tests/cases/libs/model/model.test.php
index <HASH>..<HASH> 100644
--- a/cake/tests/cases/libs/model/model.test.php
+++ b/cake/tests/cases/libs/model/model.test.php
@@ -1635,6 +1635,32 @@ class ModelTest extends CakeTestCase {
$result = $this->model->vali... | Adding test I forgot to commit with [<I>]
git-svn-id: <URL> | cakephp_cakephp | train |
2a0657e89b8c9e9d81cb94dab4fc252e16470678 | diff --git a/system/Database/Forge.php b/system/Database/Forge.php
index <HASH>..<HASH> 100644
--- a/system/Database/Forge.php
+++ b/system/Database/Forge.php
@@ -69,7 +69,7 @@ class Forge
* @var array
*/
protected $primaryKeys = [];
-
+
/**
* List of foreign keys.
*
@@ -337,7 +337,7 @@ c... | FK: Recognize ON UPDATE and ON DELETE commands if is not in uppercase | codeigniter4_CodeIgniter4 | train |
8d02d364d5f0675fb1a0fda4a2a3dbf67f9ae8df | diff --git a/src/Leevel/Database/Condition.php b/src/Leevel/Database/Condition.php
index <HASH>..<HASH> 100644
--- a/src/Leevel/Database/Condition.php
+++ b/src/Leevel/Database/Condition.php
@@ -2546,10 +2546,9 @@ class Condition
*
* @param array|\Closure|\Leevel\Database\Condition|\Leevel\Database\Select|s... | fix(database): fix for phpstan level 2 | hunzhiwange_framework | train |
f99bad03b9f35e9242b3f0077255f998b91ed543 | diff --git a/pyatv/protocols/companion/opack.py b/pyatv/protocols/companion/opack.py
index <HASH>..<HASH> 100644
--- a/pyatv/protocols/companion/opack.py
+++ b/pyatv/protocols/companion/opack.py
@@ -8,10 +8,19 @@ from datetime import datetime
# pylint: disable=too-many-branches,too-many-return-statements,too-many-st... | companion: Add support for UID in OPACK
Relates to #<I> | postlund_pyatv | train |
eaa69496d266735c6385653de93a238125bacee3 | diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -21,5 +21,5 @@ module Minitest
end
def run_all_threads
- sleep 0.001
+ Thread.list.each(&:run)
end | spec_helper: suddenly, this seems to work #teamnoidea | chastell_kamerling | train |
797bab33325f9a4d85bcb66517504e9c4379a62e | diff --git a/src/sap.ui.core/src/sap/ui/test/actions/Action.js b/src/sap.ui.core/src/sap/ui/test/actions/Action.js
index <HASH>..<HASH> 100644
--- a/src/sap.ui.core/src/sap/ui/test/actions/Action.js
+++ b/src/sap.ui.core/src/sap/ui/test/actions/Action.js
@@ -127,24 +127,24 @@ function ($, ManagedObject, QUnitUtils, Opa... | [FIX] Opa: fix action focus when IE<I> browser is not focused
Change-Id: If7e<I>a9a4eda8b5e<I>bd<I>f9fe<I>d<I> | SAP_openui5 | train |
c51a3b6fc7c0f779a1572a9af965d148e55af650 | diff --git a/lib/field.js b/lib/field.js
index <HASH>..<HASH> 100644
--- a/lib/field.js
+++ b/lib/field.js
@@ -86,7 +86,6 @@ module.exports = State.extend({
},
probability: {
deps: ['count', 'parent.count'],
- cache: false,
fn: function () {
if (!this.parent) return null;
... | added "Undefined" handling, total_count | mongodb-js_mongodb-schema | train |
b33ad0c5fc7e24abb2c8309a217af5f8ff1318a1 | diff --git a/org/postgresql/jdbc2/PreparedStatement.java b/org/postgresql/jdbc2/PreparedStatement.java
index <HASH>..<HASH> 100644
--- a/org/postgresql/jdbc2/PreparedStatement.java
+++ b/org/postgresql/jdbc2/PreparedStatement.java
@@ -65,14 +65,6 @@ public class PreparedStatement extends Statement implements java.sql.P... | SimpleDateFormat performance improvement, thread-safe.
Barry Lind | pgjdbc_pgjdbc | train |
586579152cff10a86d03346ff77e30ad65542a94 | diff --git a/www/nativescript-webview-interface.js b/www/nativescript-webview-interface.js
index <HASH>..<HASH> 100644
--- a/www/nativescript-webview-interface.js
+++ b/www/nativescript-webview-interface.js
@@ -37,7 +37,7 @@ var NSWebViewinterface = (function () {
}
};
- /**
+ /**
* Handl... | Added provision to execute function in deep object chain in webview, while calling by callJSFunction API from native app. | shripalsoni04_nativescript-webview-interface | train |
6f0e0d7149cd2c1e3e96eef8211c0c9516813659 | diff --git a/Readme.md b/Readme.md
index <HASH>..<HASH> 100644
--- a/Readme.md
+++ b/Readme.md
@@ -364,6 +364,11 @@ or
doctype html
+doctypes are case-insensitive, so the following are equivalent:
+
+ doctype Basic
+ doctype basic
+
Will output the _html 5_ doctype. Below are the doctypes
defined by de... | Added; doctype value is now case-insensitive
should still be defined lowercase | pugjs_then-pug | train |
1dd9578d065b0c15e37e6207ab4a947c7b8a5a65 | diff --git a/mysql/toolkit/components/advanced.py b/mysql/toolkit/components/advanced.py
index <HASH>..<HASH> 100644
--- a/mysql/toolkit/components/advanced.py
+++ b/mysql/toolkit/components/advanced.py
@@ -97,6 +97,6 @@ class Advanced:
self._printer('\t' + str(len(tables)), 'tables truncated')
re... | added conditional print statement to only print number of drops removed if more than 0 | mrstephenneal_mysql-toolkit | train |
bd5c64379cfd1de17ae71a0e734248da0cd03684 | diff --git a/board.py b/board.py
index <HASH>..<HASH> 100644
--- a/board.py
+++ b/board.py
@@ -43,8 +43,7 @@ time.
"calendar_rows_on_screen": "integer DEFAULT 240",
"calendar_scrolled_to": "integer DEFAULT 0"},
("dimension",),
- {"dimension": ("dimension", "name"),
- "wa... | dimension doesn't really need its own table | LogicalDash_LiSE | train |
085c60af49f17751476ee42b51ca72d0ace6efa3 | diff --git a/src/ol/renderer/canvas/TileLayer.js b/src/ol/renderer/canvas/TileLayer.js
index <HASH>..<HASH> 100644
--- a/src/ol/renderer/canvas/TileLayer.js
+++ b/src/ol/renderer/canvas/TileLayer.js
@@ -143,7 +143,7 @@ class CanvasTileLayerRenderer extends CanvasLayerRenderer {
const tileSource = tileLayer.getSour... | Remove tile source zDirection getter
The renderer now accesses the zDirection member directly if it exists.
This also has the advantage of not advertising any object methods that
hav no use for most tile sources. | openlayers_openlayers | train |
fbe6b93e386ecbb165429213c613c489d7df8852 | diff --git a/src/Draggable/Draggable.js b/src/Draggable/Draggable.js
index <HASH>..<HASH> 100644
--- a/src/Draggable/Draggable.js
+++ b/src/Draggable/Draggable.js
@@ -622,7 +622,7 @@ export default class Draggable {
} else if (typeof appendTo === 'function') {
return appendTo(source);
} else {
- r... | Source parent container as appendable container default | Shopify_draggable | train |
24e0bd7767d09acee176108b2c6da49733544509 | diff --git a/packages/mdc-chips/addon/components/mdc-chip-link-to.js b/packages/mdc-chips/addon/components/mdc-chip-link-to.js
index <HASH>..<HASH> 100644
--- a/packages/mdc-chips/addon/components/mdc-chip-link-to.js
+++ b/packages/mdc-chips/addon/components/mdc-chip-link-to.js
@@ -9,5 +9,7 @@ export default LinkCompon... | feat: Specialized the activeClass on chip links | onehilltech_ember-cli-mdc | train |
bb0af9f85a09e280501fdef4e08c5b1c5f9c5caa | diff --git a/grails-core/src/test/groovy/grails/util/GrailsUtilTests.java b/grails-core/src/test/groovy/grails/util/GrailsUtilTests.java
index <HASH>..<HASH> 100644
--- a/grails-core/src/test/groovy/grails/util/GrailsUtilTests.java
+++ b/grails-core/src/test/groovy/grails/util/GrailsUtilTests.java
@@ -25,7 +25,7 @@ imp... | Corrected GrailsUtilTests to BUILD-SNAPSHOT | grails_grails-core | train |
9def1e807e1f4cb5475874e00d2770c25f066497 | diff --git a/templates/js/ui.atk4_loader.js b/templates/js/ui.atk4_loader.js
index <HASH>..<HASH> 100644
--- a/templates/js/ui.atk4_loader.js
+++ b/templates/js/ui.atk4_loader.js
@@ -250,8 +250,9 @@ $.widget('ui.atk4_loader', {
if(!f.hasClass('nofocus'))f.focus();
});
},function(){ // second cal... | Update templates/js/ui.atk4_loader.js
trigger after html hase been changed with ajax | atk4_atk4 | train |
fc9198a84aac1eefbdd7e64a4f3e8a3c18793c00 | diff --git a/rtv/content.py b/rtv/content.py
index <HASH>..<HASH> 100644
--- a/rtv/content.py
+++ b/rtv/content.py
@@ -431,19 +431,19 @@ class SubredditContent(Content):
raise exceptions.SubredditError('Unrecognized order "%s"' % order)
if query:
- loc = None
- if listing =... | Make search work for different types of reddit pages | michael-lazar_rtv | train |
db622c3ea4f7746471c7888303badf8215a12877 | diff --git a/lib/validates_lengths_from_database/version.rb b/lib/validates_lengths_from_database/version.rb
index <HASH>..<HASH> 100644
--- a/lib/validates_lengths_from_database/version.rb
+++ b/lib/validates_lengths_from_database/version.rb
@@ -1,3 +1,3 @@
module ValidatesLengthsFromDatabase
- VERSION = "0.1.1"
+ ... | Bumped version for new gem release. | rubiety_validates_lengths_from_database | train |
08534b28a2195d30bb3c45dce0b834f3696028b8 | diff --git a/internal/goofys_test.go b/internal/goofys_test.go
index <HASH>..<HASH> 100644
--- a/internal/goofys_test.go
+++ b/internal/goofys_test.go
@@ -4200,10 +4200,12 @@ func (s *GoofysTest) testReadMyOwnWriteFuse(t *C, externalUpdate bool) {
if !externalUpdate {
// we flushed and ttl expired, next lookup sho... | Fix TestReadMyOwnWriteFuse for gcs | kahing_goofys | train |
2cfd54f05447bd5627bfd9315bd36f4eda4b82a6 | diff --git a/lib/torquespec/server.rb b/lib/torquespec/server.rb
index <HASH>..<HASH> 100644
--- a/lib/torquespec/server.rb
+++ b/lib/torquespec/server.rb
@@ -13,11 +13,11 @@ module TorqueSpec
def start(opts={})
if ready?
if TorqueSpec.lazy
- puts "Using running JBoss (try lazy=false if yo... | Adds the option to make TorqueSpec a quieter.
* Logs through RSpec messages instead of farting out of $stdout all the
time.
* Adds the option to make it silent, in which case the output should
look similar to vanilla RSpec (without torquespec).
* Verbosity is ON by default (to behave as closely to the original as ... | torquebox_torquespec | train |
ca07251938cde89d23090f3b4382e1ca9f9ac03d | diff --git a/code/forms/CancelOrderForm.php b/code/forms/CancelOrderForm.php
index <HASH>..<HASH> 100644
--- a/code/forms/CancelOrderForm.php
+++ b/code/forms/CancelOrderForm.php
@@ -5,12 +5,11 @@
* @package shop
* @subpackage forms
*/
-class Order_CancelForm extends Form {
+class CancelOrderForm extends Form {
... | Renamed Order_CancelForm to CancelOrderForm | silvershop_silvershop-core | train |
035085d3831d3a080b1491f04888112ff77a0dee | diff --git a/templar/link.py b/templar/link.py
index <HASH>..<HASH> 100644
--- a/templar/link.py
+++ b/templar/link.py
@@ -2,6 +2,7 @@ import argparse
import os
import re
import sys
+import textwrap
from collections import OrderedDict
from templar.markdown import convert
@@ -126,9 +127,6 @@ def scrape_headers(te... | Add warning when linker cannot find an included filepath (fixes #<I>) | albert12132_templar | train |
68642fc2b9f62504fc8bc1f60dce27c508db6916 | diff --git a/hawk/src/main/java/com/orhanobut/hawk/HawkBuilder.java b/hawk/src/main/java/com/orhanobut/hawk/HawkBuilder.java
index <HASH>..<HASH> 100644
--- a/hawk/src/main/java/com/orhanobut/hawk/HawkBuilder.java
+++ b/hawk/src/main/java/com/orhanobut/hawk/HawkBuilder.java
@@ -167,17 +167,10 @@ public class HawkBuilde... | Replace custom AES crypto implementation with conceal as default | orhanobut_hawk | train |
5c3916d8be950a1c3c0b8c370ae915cf63eacc6b | diff --git a/src/server/worker/serverworkermanager.js b/src/server/worker/serverworkermanager.js
index <HASH>..<HASH> 100644
--- a/src/server/worker/serverworkermanager.js
+++ b/src/server/worker/serverworkermanager.js
@@ -51,18 +51,21 @@ function ServerWorkerManager(_parameters) {
_workers[worker.pid] = {... | serverworkermanager: handle when a worker exits unexpectedly
Former-commit-id: 4b<I>f5a<I>b<I>b<I>fb<I>c<I>bb<I> | webgme_webgme-engine | train |
bd57416c0ae99411f112ba56aab75943df876306 | diff --git a/zinnia_wymeditor/admin.py b/zinnia_wymeditor/admin.py
index <HASH>..<HASH> 100644
--- a/zinnia_wymeditor/admin.py
+++ b/zinnia_wymeditor/admin.py
@@ -10,6 +10,7 @@ from django.contrib.staticfiles.storage import staticfiles_storage
from zinnia.models import Entry
from zinnia.admin.entry import EntryAdmi... | Only register the EntryAdminWYMEditor if Entry model is based on AbstractEntry | django-blog-zinnia_zinnia-wysiwyg-wymeditor | train |
bfd24867a9729f7400d44fdb632676b319b4f7d2 | diff --git a/lib/spaceship/tunes/app_version.rb b/lib/spaceship/tunes/app_version.rb
index <HASH>..<HASH> 100644
--- a/lib/spaceship/tunes/app_version.rb
+++ b/lib/spaceship/tunes/app_version.rb
@@ -199,6 +199,11 @@ module Spaceship
client.update_app_version!(application.apple_id, is_live?, raw_data)
en... | Added url method to app_version and application | fastlane_fastlane | train |
19479ebdfb3a658e1e959f6cc779c6b3166a0d75 | diff --git a/backup/restorelib.php b/backup/restorelib.php
index <HASH>..<HASH> 100644
--- a/backup/restorelib.php
+++ b/backup/restorelib.php
@@ -551,6 +551,16 @@
$course->hiddensections = addslashes($course_header->course_hiddensections);
$course->timecreated = addslashes($course_header->cou... | Calculate NEXT course->sortorder in restore to avoid
sortorder grown always (by fix_course_sortorder()).
Merged from MOODLE_<I>_STABLE | moodle_moodle | train |
0e2eeb7e3315e51881b5bd941165dbad1ca0a533 | diff --git a/deep.js b/deep.js
index <HASH>..<HASH> 100644
--- a/deep.js
+++ b/deep.js
@@ -212,6 +212,9 @@ define([
deep.client = {};
require("./lib/stores/chain");
+ deep.delay = function(ms){
+ return deep({}).delay(ms);
+ }
//___________________________________________________________... | add deep.delay (front API) | deepjs_deepjs | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.