hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
d62a27da61887b9cc71b00e3437d51b04be208b5 | diff --git a/chef-server/lib/init.rb b/chef-server/lib/init.rb
index <HASH>..<HASH> 100644
--- a/chef-server/lib/init.rb
+++ b/chef-server/lib/init.rb
@@ -69,6 +69,10 @@ Gem.path.unshift(Merb.root / "gems")
# disable the ActiveSupport json annoying stuff, as it breaks our to_json
Merb.disable :json
+Merb::BootLoade... | Moving the Logger swap to before_app_loads, per Yehuda's recommendation | chef_chef | train |
bbea2748abf5c137a9d2c470afefbeb356092e7a | diff --git a/tools/readks.py b/tools/readks.py
index <HASH>..<HASH> 100755
--- a/tools/readks.py
+++ b/tools/readks.py
@@ -68,12 +68,14 @@ def get_entry_bits(entry):
return as_pem(entry.cert, "CERTIFICATE")
if __name__ == "__main__":
- parser = ArgumentParser()
+ parser = ArgumentParser(description="U... | tools/readks.py: Added better description and help strings | kurtbrose_pyjks | train |
286bc9414992f231fe15e180a7368e8a34e39447 | diff --git a/pusherclient/connection.py b/pusherclient/connection.py
index <HASH>..<HASH> 100755
--- a/pusherclient/connection.py
+++ b/pusherclient/connection.py
@@ -75,6 +75,7 @@ class Connection(Thread):
self.needs_reconnect = False
if self.socket:
self.socket.close()
+ self.joi... | Join connection thread on disconnect.
Without joining the thread, an exception gets thrown when the interpreter shutsdown. | ekulyk_PythonPusherClient | train |
baaf3769ff179248353ced0c60495c349a912fe1 | diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb
index <HASH>..<HASH> 100644
--- a/actionmailer/lib/action_mailer/base.rb
+++ b/actionmailer/lib/action_mailer/base.rb
@@ -902,8 +902,8 @@ module ActionMailer
end
def collect_responses_from_templates(headers)
- ... | Don't mutate headers in ActionMailer::Base#collect_responses_from_templates | rails_rails | train |
6a9c558ba843a2ed827fd90af3fa026ea74aa3f7 | diff --git a/treebeard/forms.py b/treebeard/forms.py
index <HASH>..<HASH> 100644
--- a/treebeard/forms.py
+++ b/treebeard/forms.py
@@ -178,11 +178,8 @@ class MoveNodeForm(forms.ModelForm):
def add_subtree(cls, for_node, node, options):
""" Recursively build options tree. """
if cls.is_loop_safe(f... | Updated add_subtree method with a get_annotated_list call instead of get_childern call see <I> | django-treebeard_django-treebeard | train |
17da04730ec11569736fd38a9f6cda8c158fc634 | diff --git a/cmd/kubeadm/app/phases/controlplane/manifests.go b/cmd/kubeadm/app/phases/controlplane/manifests.go
index <HASH>..<HASH> 100644
--- a/cmd/kubeadm/app/phases/controlplane/manifests.go
+++ b/cmd/kubeadm/app/phases/controlplane/manifests.go
@@ -40,7 +40,8 @@ import (
const (
DefaultCloudConfigPath = "/etc/... | kubeadm: add Priority to admission control | kubernetes_kubernetes | train |
a161b2b84669e343ed9004811496f401895344b9 | diff --git a/lib/chef/resource/apt_package.rb b/lib/chef/resource/apt_package.rb
index <HASH>..<HASH> 100644
--- a/lib/chef/resource/apt_package.rb
+++ b/lib/chef/resource/apt_package.rb
@@ -25,6 +25,35 @@ class Chef
provides :apt_package, target_mode: true
provides :package, platform_family: "debian", ... | Add examples to apt_package | chef_chef | train |
fefbf51c79cc1113de0027ce8cc65aea81939037 | diff --git a/lib/devise/controllers/helpers.rb b/lib/devise/controllers/helpers.rb
index <HASH>..<HASH> 100644
--- a/lib/devise/controllers/helpers.rb
+++ b/lib/devise/controllers/helpers.rb
@@ -42,7 +42,7 @@ module Devise
end
def #{mapping}_signed_in?
- warden.authenticate?(:scope =>... | scope_signed_in? helpers now simply delegate to current_scope to improve performance. | plataformatec_devise | train |
d4363ce2a0d18fc2b11c252d9e2a5effada0fe2b | diff --git a/admin/config/email_types.php b/admin/config/email_types.php
index <HASH>..<HASH> 100644
--- a/admin/config/email_types.php
+++ b/admin/config/email_types.php
@@ -14,7 +14,7 @@ $config['email_types'] = [
(object) [
'slug' => 'data_export',
'name' => 'Admin: Dat... | Changes `isUnsubscribable` to `can_unsubscribe` | nails_module-admin | train |
f3a46ac6c134fc5dbf67704b000ad71cc63c1b0c | diff --git a/closure/goog/array/array.js b/closure/goog/array/array.js
index <HASH>..<HASH> 100644
--- a/closure/goog/array/array.js
+++ b/closure/goog/array/array.js
@@ -1643,3 +1643,23 @@ goog.array.copyByIndex = function(arr, index_arr) {
goog.array.forEach(index_arr, function(index) { result.push(arr[index]); })... | Add goog.array.concatMap.
Used the the simplest implementation (goog.array.concat) and not the supposedly optimized one (push.apply), since according to my measurements it's faster in most cases.
RELNOTES[NEW]: Added goog.array.concatMap method.
-------------
Created by MOE: <URL> | google_closure-library | train |
993215801c163773530223059ae583600f886044 | diff --git a/ppb/features/twophase.py b/ppb/features/twophase.py
index <HASH>..<HASH> 100644
--- a/ppb/features/twophase.py
+++ b/ppb/features/twophase.py
@@ -2,7 +2,7 @@
A system for two phase updates: Update, and Commit.
"""
from dataclasses import dataclass
-from ppb.systems import System
+from ppb.systemslib imp... | Missed some refactoring there | ppb_pursuedpybear | train |
6f601c5333040f250c94f3619ec46b5ca011941e | diff --git a/lib/extendConfig.js b/lib/extendConfig.js
index <HASH>..<HASH> 100644
--- a/lib/extendConfig.js
+++ b/lib/extendConfig.js
@@ -19,7 +19,9 @@ function addTransports (reporter) {
transport: 'console',
level: defaultLevel,
timestamp: true,
- colorize: true
+ colorize: true,
+ handl... | handle uncaught exceptions also in other log transports, and also make the uncaught error more readable
this also enables docker to show the error in docker logs | jsreport_jsreport | train |
f60f2147efe2998bbdeb8c30e5776a4d151b6de0 | diff --git a/ui/js/controllers/main.js b/ui/js/controllers/main.js
index <HASH>..<HASH> 100644
--- a/ui/js/controllers/main.js
+++ b/ui/js/controllers/main.js
@@ -27,8 +27,14 @@ treeherder.controller('MainCtrl', [
};
$scope.closeJob = function() {
- // setting the selectedJob to null clos... | Bug <I> - Deselect job when closing job panel | mozilla_treeherder | train |
0314931f120c01a74f46573689c0c413412bdbbb | diff --git a/graphene_django/tests/test_converter.py b/graphene_django/tests/test_converter.py
index <HASH>..<HASH> 100644
--- a/graphene_django/tests/test_converter.py
+++ b/graphene_django/tests/test_converter.py
@@ -237,16 +237,12 @@ def test_should_manytomany_convert_connectionorlist_connection():
def test_sho... | Removed Django < <I> compatibility checks from tests | graphql-python_graphene-django | train |
dfd99f9e9023181cf26d2e7e21f9bcfb896b58fa | diff --git a/pandas/tests/io/json/test_json_table_schema.py b/pandas/tests/io/json/test_json_table_schema.py
index <HASH>..<HASH> 100644
--- a/pandas/tests/io/json/test_json_table_schema.py
+++ b/pandas/tests/io/json/test_json_table_schema.py
@@ -753,6 +753,9 @@ class TestTableOrientReader:
result = pd.read_js... | CI: filter json DeprecationWarning (#<I>) | pandas-dev_pandas | train |
84a26e2472b0d8358c25870e8b3e8ac08c88560a | diff --git a/packages/object-safe-get/index.js b/packages/object-safe-get/index.js
index <HASH>..<HASH> 100644
--- a/packages/object-safe-get/index.js
+++ b/packages/object-safe-get/index.js
@@ -40,10 +40,13 @@ function get(obj, propsArg) {
}
while (props.length) {
prop = props.shift();
- obj = obj[prop];... | fix falsey over-correction | angus-c_just | train |
32222c45f5be8128b924dd65a88fae1b84164145 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100755
--- a/index.js
+++ b/index.js
@@ -3,10 +3,7 @@
// Entry file for Markbind project
const chokidar = require('chokidar');
-const fs = require('fs-extra-promise');
-const htmlBeautify = require('js-beautify').html;
const liveServer = require('live-server');... | Remove render and include commands (#<I>) | MarkBind_markbind | train |
1f8d371f341de67df8afaaa67e0d2ebf33478133 | 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
@@ -53,6 +53,18 @@ class SimSymbolicMemory(SimMemory): #pylint:disable=abstract-method
SimMemory.set_state(self, s)
... | serialized SimSymbolicMemory now has concrete repr | angr_angr | train |
1a05a8b57b4a72d43474c336e6c6c760f810e7f7 | diff --git a/blockstack_client/app.py b/blockstack_client/app.py
index <HASH>..<HASH> 100644
--- a/blockstack_client/app.py
+++ b/blockstack_client/app.py
@@ -50,7 +50,7 @@ from .schemas import *
from keys import HDWallet, get_pubkey_hex
-def app_make_session( app_domain, methods, app_public_key, master_data_privk... | rework signin so as to authorize an externally-given public key | blockstack_blockstack-core | train |
b73cdbbd907390b6cef779b84d8399513e94d0c9 | diff --git a/pysat/instruments/supermag_magnetometer.py b/pysat/instruments/supermag_magnetometer.py
index <HASH>..<HASH> 100644
--- a/pysat/instruments/supermag_magnetometer.py
+++ b/pysat/instruments/supermag_magnetometer.py
@@ -107,13 +107,13 @@ def list_files(tag='', sat_id=None, data_path=None, format_str=None):
... | station length comments
Fixed formatting and added comments. | rstoneback_pysat | train |
d75c5c8da85ccbba03f1cd1627a78e553704e821 | diff --git a/panoramix/viz.py b/panoramix/viz.py
index <HASH>..<HASH> 100644
--- a/panoramix/viz.py
+++ b/panoramix/viz.py
@@ -372,7 +372,6 @@ class BigNumberViz(BaseViz):
'metric',
'compare_lag',
'compare_suffix',
- #('rolling_type', 'rolling_periods'),
]
def reassignments... | Setting min_periods to 1 for rolling windows | apache_incubator-superset | train |
f7920cedb8ab4277b7e2f3831fe185f74eb52494 | diff --git a/vyked/__init__.py b/vyked/__init__.py
index <HASH>..<HASH> 100644
--- a/vyked/__init__.py
+++ b/vyked/__init__.py
@@ -13,4 +13,4 @@ from .exceptions import RequestException
from .utils.log import setup_logging, config_logs
from .wrappers import Response, Request
-__version__ = '2.1.53'
+__version__ = '... | human readable timestamps included in log | kashifrazzaqui_vyked | train |
ae3524d92a1c339f08a57b8243a5a9b017524497 | diff --git a/azure-client-runtime/src/main/java/com/microsoft/azure/AzureEnvironment.java b/azure-client-runtime/src/main/java/com/microsoft/azure/AzureEnvironment.java
index <HASH>..<HASH> 100644
--- a/azure-client-runtime/src/main/java/com/microsoft/azure/AzureEnvironment.java
+++ b/azure-client-runtime/src/main/java... | Add trailing slash to all full URLs (#<I>) | Azure_autorest-clientruntime-for-java | train |
59c81d2ae428ee0a9fb1650aa61f05a78a4b5235 | diff --git a/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/core/query/lucene/SharedFieldCache.java b/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/impl/core/query/lucene/SharedFieldCache.java
index <HASH>..<HASH> 100644
--- a/exo.jcr.component.core/src/main/java/org/exoplatf... | JCR-<I>: The method SharedFieldCache.getValueIndex needs to be optimized | exoplatform_jcr | train |
2c99cc5a91a1180d174101aafa489a0afe7095cb | diff --git a/pypsa/opf.py b/pypsa/opf.py
index <HASH>..<HASH> 100644
--- a/pypsa/opf.py
+++ b/pypsa/opf.py
@@ -303,6 +303,8 @@ def define_passive_branch_flows(network,snapshots,formulation="angles",ptdf_tole
define_passive_branch_flows_with_PTDF(network,snapshots,ptdf_tolerance)
elif formulation == "cycle... | Include direct formulation of LOPF using Kirchoff's Laws | PyPSA_PyPSA | train |
62b1cbc65aacb0d391052665ab0917de223312d0 | diff --git a/test/extended/deployments/util.go b/test/extended/deployments/util.go
index <HASH>..<HASH> 100644
--- a/test/extended/deployments/util.go
+++ b/test/extended/deployments/util.go
@@ -162,10 +162,9 @@ func checkDeploymentInvariants(dc *deployapi.DeploymentConfig, rcs []*corev1.Rep
running.Insert(k)
}
... | Enable back the old check for multiple deployer pods temporarily disabled in <URL> | openshift_origin | train |
45e62d2ce97bba98293e3202795d94ecffd38b07 | diff --git a/src/fonduer/utils/udf.py b/src/fonduer/utils/udf.py
index <HASH>..<HASH> 100644
--- a/src/fonduer/utils/udf.py
+++ b/src/fonduer/utils/udf.py
@@ -114,11 +114,19 @@ class UDFRunner(object):
udf.start()
# Fill queue with docs; progress bar will not be updated until this is done
- ... | Made changes such that progress bar will start updating in much earlier in parallel mode | HazyResearch_fonduer | train |
6d691ae7be5649d43178254e0b72d9f93028aeb2 | diff --git a/Bundle/WidgetBundle/Twig/LinkExtension.php b/Bundle/WidgetBundle/Twig/LinkExtension.php
index <HASH>..<HASH> 100644
--- a/Bundle/WidgetBundle/Twig/LinkExtension.php
+++ b/Bundle/WidgetBundle/Twig/LinkExtension.php
@@ -35,6 +35,11 @@ class LinkExtension extends \Twig_Extension
extract($parameters);... | Protect LinkExtension when widget (or page) is deleted
On branch master
Your branch is behind 'origin/master' by 3 commits, and can be fast-forwarded.
(use "git pull" to update your local branch)
Changes to be committed:
(use "git reset HEAD <file>..." to unstage)
modified: Bundle/WidgetBundle/Twig/LinkExte... | Victoire_victoire | train |
a0bace4efca671526c35b9ffe2c7fb21587adee2 | diff --git a/models.py b/models.py
index <HASH>..<HASH> 100644
--- a/models.py
+++ b/models.py
@@ -17,10 +17,7 @@
## along with Invenio; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
-"""
- invenio.modules.record.models
- ----------------------... | records: PEP8/<I> improvements in models | inveniosoftware_invenio-records | train |
93508e7c1c8aa307ca204ad82a4398f326aa76ba | diff --git a/packages/workbox-routing/src/lib/navigation-route.js b/packages/workbox-routing/src/lib/navigation-route.js
index <HASH>..<HASH> 100644
--- a/packages/workbox-routing/src/lib/navigation-route.js
+++ b/packages/workbox-routing/src/lib/navigation-route.js
@@ -30,8 +30,10 @@ import logHelper from '../../../..... | Include the URL's search when matching the NavigationRoute white/blacklist. (#<I>) | GoogleChrome_workbox | train |
37e5bce7e16eac712d55328c98dcf429b38a3720 | diff --git a/src/models/ComponentStyle.js b/src/models/ComponentStyle.js
index <HASH>..<HASH> 100644
--- a/src/models/ComponentStyle.js
+++ b/src/models/ComponentStyle.js
@@ -3,7 +3,8 @@ import parse from '../postcss/parse'
import postcssNested from '../postcss/postcss-nested'
import { hashObject } from 'aphrodite/li... | not sure if theres any reason not to do this | styled-components_styled-components | train |
a173b643aa2d72c0237a713c5e4a73abefc60b7e | diff --git a/src/JMS/Serializer/Context.php b/src/JMS/Serializer/Context.php
index <HASH>..<HASH> 100644
--- a/src/JMS/Serializer/Context.php
+++ b/src/JMS/Serializer/Context.php
@@ -59,9 +59,6 @@ abstract class Context
/** @var \SplStack */
private $metadataStack;
- /** @var boolean */
- private $for... | Changed option 'formatOutput' to context of XmlSerialization only | schmittjoh_serializer | train |
7fe5f490f3164593864884574505ee5dfffd7b15 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -53,10 +53,9 @@ $screen-large
### Using the React Components
Use the components just as you would any other. Component reference must be capitalized.
-ex. `var Alert = require('synfrastructure').Alert;`
+ex. for es5 `v... | Update to React <I> and ES6 | synapsestudios_synfrastructure | train |
775ea3d89eb257609c1f210f172d79ccc001f0df | diff --git a/composer.json b/composer.json
index <HASH>..<HASH> 100644
--- a/composer.json
+++ b/composer.json
@@ -1,6 +1,6 @@
{
"name": "op3nvoice/op3nvoice-helper",
- "version": "0.8.0",
+ "version": "0.9.1",
"type": "library",
"description": "A PHP wrapper for the OP3Nvoice API",
"keywords... | making the library properly opinionated
bumped the minor version number;
minor example updates | Clarify_clarify-php | train |
a5e8649b990ab50be8425883e3c3bd6d0ccdf1c9 | diff --git a/Space/Figure/Cone.py b/Space/Figure/Cone.py
index <HASH>..<HASH> 100644
--- a/Space/Figure/Cone.py
+++ b/Space/Figure/Cone.py
@@ -15,7 +15,7 @@ class ConicalWedge(Figure):
self.theta = reduced_angle
self.phi = reduce_angle(float(phi))
self.r_min = abs(float(r_min))
- z_min... | Added cone surface area and volume calculations. | bond-anton_BDSpace | train |
3fb50d734fd557ad21f7d8bf295c7dc199b514a8 | diff --git a/src/EchoIt/JsonApi/Handler.php b/src/EchoIt/JsonApi/Handler.php
index <HASH>..<HASH> 100644
--- a/src/EchoIt/JsonApi/Handler.php
+++ b/src/EchoIt/JsonApi/Handler.php
@@ -25,7 +25,7 @@ abstract class Handler
const ERROR_NO_ID = 4;
const ERROR_INVALID_ATTRS = 8;
const ERROR_HTTP_METHOD_NOT_ALL... | Add a new error constant to use when an ID is provided, but this is not allowed | egeriis_laravel-jsonapi | train |
da78b10ce0ff1104c3ce2dff6fd63bce0f166042 | diff --git a/repository/flickr_public/lib.php b/repository/flickr_public/lib.php
index <HASH>..<HASH> 100644
--- a/repository/flickr_public/lib.php
+++ b/repository/flickr_public/lib.php
@@ -280,19 +280,19 @@ class repository_flickr_public extends repository {
$licenses = implode(',', $licenses);
- ... | MDL-<I>, fixed flickr public plugin should check
search text, tag and nsid before searching photos | moodle_moodle | train |
89e4b3bd5282e74bddd78188a20205b3685c77dc | diff --git a/faker/providers/date_time/__init__.py b/faker/providers/date_time/__init__.py
index <HASH>..<HASH> 100644
--- a/faker/providers/date_time/__init__.py
+++ b/faker/providers/date_time/__init__.py
@@ -5,7 +5,7 @@ from __future__ import unicode_literals
import re
from calendar import timegm
-from datetime ... | Close #<I>. Cap years to <I> to support <I>-bit platforms
TODO: remove this as we get closer to <I> | joke2k_faker | train |
e02e0727e57f123f9a8de506e9c098bb374f7a23 | diff --git a/hugolib/content_factory.go b/hugolib/content_factory.go
index <HASH>..<HASH> 100644
--- a/hugolib/content_factory.go
+++ b/hugolib/content_factory.go
@@ -113,11 +113,6 @@ func (f ContentFactory) CreateContentPlaceHolder(filename string) (string, error
filename = filepath.Clean(filename)
_, abs := f.h.A... | Fix file permissions in new archetype implementation
Closes #<I> | gohugoio_hugo | train |
9ed0f8339771ae6aff9df5d1adf361673609366d | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -127,6 +127,9 @@ function createContext (opts) {
viewport: [0, 0, gl.drawingBufferWidth, gl.drawingBufferHeight]
}
+ const capabilities = {
+ }
+
// extensions
if (!gl.drawElementsInstanced) {
const ext ... | Check if instancing is supported before setting divisor | pex-gl_pex-context | train |
1afc2a539dfca74fe8c48e001d6c6dc80d29bc77 | diff --git a/spool/spool.py b/spool/spool.py
index <HASH>..<HASH> 100644
--- a/spool/spool.py
+++ b/spool/spool.py
@@ -114,6 +114,34 @@ class Spool(object):
return txid
@dispatch
+ def consigned_registration(self, from_address, to_address, hash, password, edition_num, min_confirmations=6, sync=False,... | Added consigned_registration spoolverb | ascribe_pyspool | train |
e46b454e96711693b6ac9a5ed2a42809aba871d1 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -87,10 +87,21 @@ def configure_library(library_dir, env_options=None, options=[]):
# pysam.
# external: use shared libhts.so compiled outside of
# pysam
-HTSLIB_MODE = "shared"
+HTSLIB_MODE = os.environ.ge... | Improve handling of build system for external htslib | pysam-developers_pysam | train |
4698e169e5102b3cab298d8989342532c0920351 | diff --git a/course/classes/output/activity_navigation.php b/course/classes/output/activity_navigation.php
index <HASH>..<HASH> 100644
--- a/course/classes/output/activity_navigation.php
+++ b/course/classes/output/activity_navigation.php
@@ -27,6 +27,7 @@ defined('MOODLE_INTERNAL') || die();
use renderable;
use te... | MDL-<I> course: Add dropdown menu for activity list
Part of MDL-<I>. | moodle_moodle | train |
6f7ebcddc267f4fff4014b01a6f6ffb5a7ee2ec8 | diff --git a/lib/godmin/helpers/translations.rb b/lib/godmin/helpers/translations.rb
index <HASH>..<HASH> 100644
--- a/lib/godmin/helpers/translations.rb
+++ b/lib/godmin/helpers/translations.rb
@@ -12,14 +12,12 @@ module Godmin
scope ||= @resource_class.to_s.underscore
options[:resource] ||= @res... | Cleanup of translation method :lipstick: | varvet_godmin | train |
1d04ef5a2d19dfe0a6a961f443e4d4fc6b883d7a | diff --git a/oslash/ioaction.py b/oslash/ioaction.py
index <HASH>..<HASH> 100644
--- a/oslash/ioaction.py
+++ b/oslash/ioaction.py
@@ -48,6 +48,7 @@ class Put(IOAction):
def __init__(self, text: str, action: IOAction):
super().__init__()
+ self.print_func = print
self._get_value = lambda... | Make is possible to override input and print | dbrattli_OSlash | train |
315b7afdf3b68ff402787c5ba0d47500c8d33d06 | diff --git a/packages/messageformat/src/compiler.js b/packages/messageformat/src/compiler.js
index <HASH>..<HASH> 100644
--- a/packages/messageformat/src/compiler.js
+++ b/packages/messageformat/src/compiler.js
@@ -100,17 +100,6 @@ export default class Compiler {
break;
case 'function':
- if (
... | feat: Refactor formatter caching during compilation
BREAKING CHANGE: This drops MessageFormat.formatters as well as
MessageFormat#fmt, which had public visibility but were not explicitly
documented as public. | messageformat_messageformat | train |
128bfc6c08304472db881563c63ba5b2098f05e8 | diff --git a/lib/pkgcloud/openstack/client.js b/lib/pkgcloud/openstack/client.js
index <HASH>..<HASH> 100644
--- a/lib/pkgcloud/openstack/client.js
+++ b/lib/pkgcloud/openstack/client.js
@@ -195,6 +195,10 @@ Client.prototype._request = function (options, callback) {
self.emit('log::trace', 'Creating Authenticate... | 1. Add abort on openstack's client.download
2. Add headers on openstack's request | pkgcloud_pkgcloud | train |
e230d1d1dd4c196da32fda6232cdc3437e114db2 | diff --git a/sacrud/action.py b/sacrud/action.py
index <HASH>..<HASH> 100644
--- a/sacrud/action.py
+++ b/sacrud/action.py
@@ -11,7 +11,7 @@ CREATE, READ, DELETE, UPDATE actions for SQLAlchemy models
"""
import transaction
-from .common import columns_by_group, get_obj, get_pk
+from .common import columns_by_group,... | now can set pk from request | sacrud_sacrud | train |
6aaa973595c66005d9fb471da618fa8071d456e5 | diff --git a/src/you_get/extractors/yinyuetai.py b/src/you_get/extractors/yinyuetai.py
index <HASH>..<HASH> 100644
--- a/src/you_get/extractors/yinyuetai.py
+++ b/src/you_get/extractors/yinyuetai.py
@@ -17,14 +17,22 @@ def yinyuetai_download_by_id(vid, title=None, output_dir='.', merge=True, info_o
download_ur... | [yinyuetai] support playlist | soimort_you-get | train |
56ceb766045c2fb2d77a01244adf8692f739be59 | diff --git a/lib/jwt/encode.rb b/lib/jwt/encode.rb
index <HASH>..<HASH> 100644
--- a/lib/jwt/encode.rb
+++ b/lib/jwt/encode.rb
@@ -28,7 +28,7 @@ module JWT
end
def encoded_payload
- raise InvalidPayload, 'exp claim must be an integer' if @payload && !@payload.is_a?(Array) && @payload.key?('exp') && !@p... | Fix failing test
Exp claim check is only executed when the given payload is a Hash.
Fixes <I>. | jwt_ruby-jwt | train |
91a4df68cf1332d69aeef5c0dbba897238572660 | diff --git a/prospector/autodetect.py b/prospector/autodetect.py
index <HASH>..<HASH> 100644
--- a/prospector/autodetect.py
+++ b/prospector/autodetect.py
@@ -55,9 +55,14 @@ def find_from_requirements(path):
def autodetect_libraries(path):
+ adaptor_names = []
+
try:
adaptor_names = find_from_requ... | Searching packages if 0 requirements are found, rather than just on requirements searching failure | PyCQA_prospector | train |
5bd116ccf4e341b25dbba418b6c5f0ed3b0c5187 | diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index <HASH>..<HASH> 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Make sure with_scope takes both :select and :joins into account when setting :readonly. Allows you to save records you retrieve using method_mis... | Make sure with_scope takes both :select and :joins into account when setting :readonly. Allows you to save records you retrieve using finders on a has_many :through associations. [Koz]
git-svn-id: <URL> | rails_rails | train |
59f423e90a548ec8b9780a960214b4b113dfb234 | diff --git a/src/Sylius/Bundle/ThemeBundle/Command/AssetsInstallCommand.php b/src/Sylius/Bundle/ThemeBundle/Command/AssetsInstallCommand.php
index <HASH>..<HASH> 100644
--- a/src/Sylius/Bundle/ThemeBundle/Command/AssetsInstallCommand.php
+++ b/src/Sylius/Bundle/ThemeBundle/Command/AssetsInstallCommand.php
@@ -34,7 +34,... | Reverted default value that causes BC break | Sylius_Sylius | train |
c35e8b1c15d1ce5457ba114b746c0e83a2d7649d | diff --git a/lib/weblib.php b/lib/weblib.php
index <HASH>..<HASH> 100644
--- a/lib/weblib.php
+++ b/lib/weblib.php
@@ -2815,9 +2815,7 @@ function print_continue($link, $return=false) {
}
$output .= '<div class="continuebutton">';
- // MDL-7861, referer string might not be xhtml strict
- // e.g. &
... | removed xhtml strict todo comment - already fixed | moodle_moodle | train |
7dfdc016f8b236a4637ea39e1b5f48e5f3584bbf | diff --git a/lib/Supra/Package/Cms/Pages/Editable/Filter/HtmlFilter.php b/lib/Supra/Package/Cms/Pages/Editable/Filter/HtmlFilter.php
index <HASH>..<HASH> 100644
--- a/lib/Supra/Package/Cms/Pages/Editable/Filter/HtmlFilter.php
+++ b/lib/Supra/Package/Cms/Pages/Editable/Filter/HtmlFilter.php
@@ -135,12 +135,16 @@ class H... | Minor fixes so the generated HTML would pass validation. | sitesupra_sitesupra | train |
2206c414c4b3b323b6e7d3f46f6ec7ecc9e6eaaa | diff --git a/json_merger.js b/json_merger.js
index <HASH>..<HASH> 100644
--- a/json_merger.js
+++ b/json_merger.js
@@ -252,7 +252,78 @@ processors.unknown = function(super_value, class_value, path, root) {
var merge = function(super_json, child_json) {
return processors.unknown(super_json, child_json, null, super_js... | [Issue#4] Created '.fromObject' | andlrc_json_merger | train |
f37b57da79f868ab4bdbe9b088ebfac30fdefd56 | diff --git a/lib/interface/migratorInterface.js b/lib/interface/migratorInterface.js
index <HASH>..<HASH> 100644
--- a/lib/interface/migratorInterface.js
+++ b/lib/interface/migratorInterface.js
@@ -120,6 +120,12 @@ MigratorInterface.prototype = {
arguments[arguments.length - 1]('not implemented');
},
+
+ cr... | add some missing methods to migrator interface
good night commit... | db-migrate_node-db-migrate | train |
4a9c8bca14ef162a257bd1e09c86473edd727df5 | diff --git a/instabot/api/api.py b/instabot/api/api.py
index <HASH>..<HASH> 100644
--- a/instabot/api/api.py
+++ b/instabot/api/api.py
@@ -444,7 +444,7 @@ class API(object):
return not self.is_logged_in
def set_proxy(self):
- if self.proxy:
+ if getattr(self, 'proxy', None):
p... | Bugfixed: AttributeError: 'API' object has no attribute 'proxy' by Travis CI | instagrambot_instabot | train |
9b10c8a86652d50e4b3e38dc5dd8ca14ffb5619c | diff --git a/src/Symfony/Bundle/WebProfilerBundle/WebDebugToolbarListener.php b/src/Symfony/Bundle/WebProfilerBundle/WebDebugToolbarListener.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Bundle/WebProfilerBundle/WebDebugToolbarListener.php
+++ b/src/Symfony/Bundle/WebProfilerBundle/WebDebugToolbarListener.php
@@ -5... | [WebProfileBundle] Adding more information to the Response content returned when an intercept is redirected.
Since this is a debug-only feature, I think the more details we can include, the less trouble it'll cause when people are not expecting their requests to be intercepted. It's a good feature - this better-commun... | symfony_symfony | train |
7a76c770e78599b6d9d928c02d8556f834455fe3 | diff --git a/kernel/classes/clusterfilehandlers/ezdbfilehandler.php b/kernel/classes/clusterfilehandlers/ezdbfilehandler.php
index <HASH>..<HASH> 100644
--- a/kernel/classes/clusterfilehandlers/ezdbfilehandler.php
+++ b/kernel/classes/clusterfilehandlers/ezdbfilehandler.php
@@ -1293,7 +1293,7 @@ class eZDBFileHandler
... | Enhanced extensibility of cluster file handlers by bumping visibilities to protected | ezsystems_ezpublish-legacy | train |
5be449721ee70d5865451812d32a4542a0e149d3 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -22,10 +22,11 @@ setup(
url='https://github.com/takeflight/wagtail-schema.org',
install_requires=[
- 'wagtail>=2.15,<4.0',
- 'jinja2>=2.10,<3.0',
- 'markupsafe==2.0.1',
+ 'wagtail>=2.15,... | Move testing dependencies to testing_requires | neon-jungle_wagtail-schema.org | train |
db3368795fe7cb357ed10d5bfbf5f2aba507d843 | diff --git a/Countable.js b/Countable.js
index <HASH>..<HASH> 100644
--- a/Countable.js
+++ b/Countable.js
@@ -17,7 +17,7 @@
* @constructor
*
* @param {HTMLElement} element The element to be used for the
- * couting.
+ * c... | Fixed typos in comments
Just a couple of typos | RadLikeWhoa_Countable | train |
70f31a38ff80e5258774d851868fea99e3906c41 | diff --git a/src/Http/Middleware/Reauthenticate.php b/src/Http/Middleware/Reauthenticate.php
index <HASH>..<HASH> 100644
--- a/src/Http/Middleware/Reauthenticate.php
+++ b/src/Http/Middleware/Reauthenticate.php
@@ -14,25 +14,26 @@ class Reauthenticate
* @param \Illuminate\Http\Request $request
* @param \Clo... | Allow grouping reauthentication routes | rinvex_cortex-auth | train |
31d5bb0c1d787427cdb95fc600619f064309eaa4 | diff --git a/angr/exploration_techniques/tracer.py b/angr/exploration_techniques/tracer.py
index <HASH>..<HASH> 100644
--- a/angr/exploration_techniques/tracer.py
+++ b/angr/exploration_techniques/tracer.py
@@ -121,6 +121,9 @@ class Tracer(ExplorationTechnique):
return simgr.step(stash=stash, **kwargs)
... | quit tracing if state exits early, e.g. returning from main with simprocedures on | angr_angr | train |
0144e54196392351511247050f131390a10ef163 | diff --git a/rope/refactor/extract.py b/rope/refactor/extract.py
index <HASH>..<HASH> 100644
--- a/rope/refactor/extract.py
+++ b/rope/refactor/extract.py
@@ -478,15 +478,21 @@ class _ExtractMethodParts(object):
def _get_function_signature(self, args):
args = list(args)
prefix = ''
- if se... | extract: reporting extracting a method from a method with no args | python-rope_rope | train |
e31c1c6a10d20961b29170c6592791adcb23e128 | diff --git a/lib/Doctrine/Common/DataFixtures/Purger/ORMPurger.php b/lib/Doctrine/Common/DataFixtures/Purger/ORMPurger.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/Common/DataFixtures/Purger/ORMPurger.php
+++ b/lib/Doctrine/Common/DataFixtures/Purger/ORMPurger.php
@@ -145,48 +145,48 @@ class ORMPurger implements ... | Renaming `$calc` to `$sorter` | doctrine_data-fixtures | train |
9436f3624a18d7d98a8a78e421f2e0f4cd474b7f | diff --git a/wikitextparser/_wikitext.py b/wikitextparser/_wikitext.py
index <HASH>..<HASH> 100644
--- a/wikitextparser/_wikitext.py
+++ b/wikitextparser/_wikitext.py
@@ -1,9 +1,5 @@
"""Define the WikiText and SubWikiText classes."""
-# Todo: see if it is possible to use shadow position instead of using subpsans
-# ... | chore: remove some of the old todo comments
The performance is currently good enough. I have no plans for these. | 5j9_wikitextparser | train |
d39016bed73dd67877a9c76bb52cefbed964ba18 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -69,7 +69,8 @@ The string `%HOST%` in the metric name will automatically be replaced with the h
* `HEAD`:
* Added stdout client ("echo" service for debugging)
- *
+ * Fixed issue #23: GaugeDelta event Stats(... | issue #<I>: GaugeDelta event should not send an absolute value of 0; compile-time assertion to verify default events implement the Event interface; added tests | quipo_statsd | train |
b3b35e7667712b70a50190dcbacec11b939e1bfe | diff --git a/pyAudioAnalysis/ShortTermFeatures.py b/pyAudioAnalysis/ShortTermFeatures.py
index <HASH>..<HASH> 100644
--- a/pyAudioAnalysis/ShortTermFeatures.py
+++ b/pyAudioAnalysis/ShortTermFeatures.py
@@ -586,6 +586,9 @@ def feature_extraction(signal, sampling_rate, window, step):
feature_names += ["chroma_{0:d}... | delta features added in short term feature extraction | tyiannak_pyAudioAnalysis | train |
98fe03d32e4cc6bd3e759afbc42976806b9dafd4 | diff --git a/lib/babelfish.js b/lib/babelfish.js
index <HASH>..<HASH> 100644
--- a/lib/babelfish.js
+++ b/lib/babelfish.js
@@ -94,7 +94,6 @@ function mergeTranslations(receiver, transmitter, locale) {
receiver[key] = {
type: 'object',
locale: null,
- orig: null,
va... | Removes `orig` property | nodeca_babelfish | train |
4e283cf7cf598e748e937a3c4bdb1083fadfa212 | diff --git a/cellbase-build/src/main/java/org/opencb/cellbase/build/transform/VariationParser.java b/cellbase-build/src/main/java/org/opencb/cellbase/build/transform/VariationParser.java
index <HASH>..<HASH> 100644
--- a/cellbase-build/src/main/java/org/opencb/cellbase/build/transform/VariationParser.java
+++ b/cellbas... | VariationParser: Added some log messages and removed other | opencb_cellbase | train |
39243958c802612c0489b817f75514c3c80278ec | diff --git a/runtime/launchpad/index.js b/runtime/launchpad/index.js
index <HASH>..<HASH> 100644
--- a/runtime/launchpad/index.js
+++ b/runtime/launchpad/index.js
@@ -1,10 +1,8 @@
import { connect } from 'react-redux'
import { navigate, updateSettings } from '../../actions.js'
import { setViewportWidth } from '../ac... | fix: disable animations for launchpad | UXtemple_panels | train |
edf6143ad96465b9075e033906179d4d814f0b37 | diff --git a/lib/cobweb.rb b/lib/cobweb.rb
index <HASH>..<HASH> 100644
--- a/lib/cobweb.rb
+++ b/lib/cobweb.rb
@@ -62,6 +62,9 @@ class CobWeb
uri = Addressable::URI.parse(url.strip)
# retrieve data
+ if uri.scheme == "https"
+ uri.port = 443
+ end
http = Net::HTTP.new(uri.h... | added workaround for addressable on https url's | stewartmckee_cobweb | train |
0f11e60f1b0891cb7100fa9c77cf933e77c497ab | diff --git a/ipyrad/__main__.py b/ipyrad/__main__.py
index <HASH>..<HASH> 100644
--- a/ipyrad/__main__.py
+++ b/ipyrad/__main__.py
@@ -392,7 +392,7 @@ def main():
sys.exit(2)
if not args.params:
- if not any([args.branch, args.results, args.steps]):
+ if any([args.branch, args.results,... | Fix a bug that catches when you don't pass in the -p flag for branching | dereneaton_ipyrad | train |
56a2e6f0780340867b34ddea96c6491988ee7a15 | diff --git a/rails_event_store_active_record/lib/rails_event_store_active_record/event_repository_reader.rb b/rails_event_store_active_record/lib/rails_event_store_active_record/event_repository_reader.rb
index <HASH>..<HASH> 100644
--- a/rails_event_store_active_record/lib/rails_event_store_active_record/event_reposit... | Handling empty valid_at for historic records | RailsEventStore_rails_event_store | train |
ccb65529dd40e9fcb563b5e1406b2210d5359056 | diff --git a/invenio_oauth2server/forms.py b/invenio_oauth2server/forms.py
index <HASH>..<HASH> 100644
--- a/invenio_oauth2server/forms.py
+++ b/invenio_oauth2server/forms.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
#
# This file is part of Invenio.
-# Copyright (C) 2014, 2015, 2016 CERN.
+# Copyright (C) 2014, 2015,... | forms: validate length for token form name
* Validates the length of the name provided in the TokenForm.
(closes #<I>) | inveniosoftware_invenio-oauth2server | train |
0d0bbacb2465863bd82737236b854740a30ea604 | diff --git a/jbpm-designer-client/src/main/java/org/jbpm/designer/client/DesignerView.java b/jbpm-designer-client/src/main/java/org/jbpm/designer/client/DesignerView.java
index <HASH>..<HASH> 100644
--- a/jbpm-designer-client/src/main/java/org/jbpm/designer/client/DesignerView.java
+++ b/jbpm-designer-client/src/main/j... | JBPM-<I> - Designer gets broken in KIE workbench with locale | kiegroup_jbpm-designer | train |
41b5f28f997682e3ebeb696fdb353e8c72b200d6 | diff --git a/input/Option.php b/input/Option.php
index <HASH>..<HASH> 100644
--- a/input/Option.php
+++ b/input/Option.php
@@ -1,5 +1,8 @@
<?php namespace nyx\console\input;
+// External dependencies
+use nyx\core;
+
/**
* Input Option Definition
*
@@ -34,21 +37,16 @@ class Option extends Parameter
*/
... | [Console/Input] Return types, CS and docblocks for input\Option. | unyx_console | train |
37eb7def13a5803636f18caee237ebca16216619 | diff --git a/Command/GenerateProjectCommand.php b/Command/GenerateProjectCommand.php
index <HASH>..<HASH> 100644
--- a/Command/GenerateProjectCommand.php
+++ b/Command/GenerateProjectCommand.php
@@ -503,6 +503,19 @@ class GenerateProjectCommand extends GeneratorCommand
$fileSystem = $this->getContainer()->... | Add option to delete .git folder after generating the project | netgen_site-generator-bundle | train |
af90440428d6da7af715a01f5d837fcb0f65f342 | diff --git a/clients/python/girder_client/cli.py b/clients/python/girder_client/cli.py
index <HASH>..<HASH> 100755
--- a/clients/python/girder_client/cli.py
+++ b/clients/python/girder_client/cli.py
@@ -53,10 +53,10 @@ class GirderCli(GirderClient):
unit = ''
units = ['K', 'M', 'G', 'P... | girder_cli: Report progress with 2 digit precision when using python <I>
This commit explicitly divides by a float number to support python version
that do not implement PEP<I> by default.
See <URL> | girder_girder | train |
7a0c697318b07c374c45b63b74048dc5a660bb1b | diff --git a/fluent_dashboard/items.py b/fluent_dashboard/items.py
index <HASH>..<HASH> 100644
--- a/fluent_dashboard/items.py
+++ b/fluent_dashboard/items.py
@@ -1,25 +1,27 @@
"""
-Custom menu items
+Additional menu items.
"""
from admin_tools.menu import items
+from django.contrib.contenttypes.models import Conten... | ReturnToSiteItem: implemented frontend detection in a generic way.
Implemented during API docs update. | django-fluent_django-fluent-dashboard | train |
bf90ce939f5c6e56c8d2d522658025d7cdeee8b1 | diff --git a/src/Pay/Service/Impl/PayServiceImpl.php b/src/Pay/Service/Impl/PayServiceImpl.php
index <HASH>..<HASH> 100644
--- a/src/Pay/Service/Impl/PayServiceImpl.php
+++ b/src/Pay/Service/Impl/PayServiceImpl.php
@@ -54,6 +54,11 @@ class PayServiceImpl extends BaseService implements PayService
return $trade;... | getTradeByTradeSn | codeages_biz-framework | train |
dfd1bd9f5b79212bd37b2737ed5b3130704ca4e7 | diff --git a/pythonforandroid/recipes/cymunk/__init__.py b/pythonforandroid/recipes/cymunk/__init__.py
index <HASH>..<HASH> 100644
--- a/pythonforandroid/recipes/cymunk/__init__.py
+++ b/pythonforandroid/recipes/cymunk/__init__.py
@@ -6,7 +6,7 @@ class CymunkRecipe(CythonRecipe):
url = 'https://github.com/tito/cym... | - let cymunk also be built with python3 recipe | kivy_python-for-android | train |
d4cd5402bcd2c5de359614ff046512e633228ead | diff --git a/lib/redistat/label.rb b/lib/redistat/label.rb
index <HASH>..<HASH> 100644
--- a/lib/redistat/label.rb
+++ b/lib/redistat/label.rb
@@ -11,6 +11,11 @@ module Redistat
self.new(name, opts).save
end
+ def self.join(*args)
+ args = args.map {|i| i.to_s}
+ self.new(args.reject {|i|... | create Label#join method for easily joining Labels | jimeh_redistat | train |
f457f24e211045c85037341e94d3a7527f914908 | diff --git a/ast/expressions.go b/ast/expressions.go
index <HASH>..<HASH> 100644
--- a/ast/expressions.go
+++ b/ast/expressions.go
@@ -145,7 +145,11 @@ type BetweenExpr struct {
// Format the ExprNode into a Writer.
func (n *BetweenExpr) Format(w io.Writer) {
n.Expr.Format(w)
- fmt.Fprint(w, " BETWEEN ")
+ if n.Not... | ast: fix format bug for some expressions (#<I>) | pingcap_tidb | train |
14d6a6f9b5474ef25bcfe6f94cc45dd7c081ec3a | diff --git a/tests/dummy/app/mirage/config.js b/tests/dummy/app/mirage/config.js
index <HASH>..<HASH> 100644
--- a/tests/dummy/app/mirage/config.js
+++ b/tests/dummy/app/mirage/config.js
@@ -1,8 +1,8 @@
import config from '../config/environment'
export default function () {
- if (config && config.isDemo) {
- th... | Have mirage get namespace from environment. (For frost-guide when it moves to multiple sites) | ciena-frost_ember-frost-list | train |
6a7841d9e38c210ea3cfcda6a904a00f1cc66b60 | diff --git a/lib/simple_form/inputs/string_input.rb b/lib/simple_form/inputs/string_input.rb
index <HASH>..<HASH> 100644
--- a/lib/simple_form/inputs/string_input.rb
+++ b/lib/simple_form/inputs/string_input.rb
@@ -10,7 +10,7 @@ module SimpleForm
input_options[:size] ||= [limit, SimpleForm.default_input... | Ensure placeholders are not generated with blank values | plataformatec_simple_form | train |
0cfce77bb34cf210480f7c7c1347869481847b4d | diff --git a/HISTORY.rst b/HISTORY.rst
index <HASH>..<HASH> 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -10,6 +10,7 @@ v0.24 (unreleased)
* Support custom validators for dataclasses, #454 by @primal100
* fix ``parse_obj`` to cope with dict-like objects, #472 by @samuelcolvin
* fix to schema generation in nested da... | fix json for Path, FilePath, and DirectoryPath objects (#<I>)
* fix json for Path, FilePath, and DirectoryPath objects, fix #<I>
* convert to single spaces
* assert result to a string
* Update test_json.py
* encode entire Path hierarchy the same way | samuelcolvin_pydantic | train |
4541dbb04e1429af314d9c6c3426571a85856b05 | diff --git a/code/MemberTableField.php b/code/MemberTableField.php
index <HASH>..<HASH> 100755
--- a/code/MemberTableField.php
+++ b/code/MemberTableField.php
@@ -89,30 +89,6 @@ class MemberTableField extends ComplexTableField {
if(!$hidePassword) {
$fieldList["SetPassword"] = "Password";
}
-
- if(isset($... | ENHANCEMENT Removed overloaded MemberTableField->DetailForm() and reduced overloaded constructor logic - same behaviour found in parent classes
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@<I> <I>b<I>ca-7a2a-<I>-9d3b-<I>d<I>a<I>a9 | silverstripe_silverstripe-reports | train |
97b0ceead6ee21675421c268c4a5c3bfd9a2d8aa | diff --git a/SlevomatCodingStandard/Sniffs/Typehints/TypeHintDeclarationSniff.php b/SlevomatCodingStandard/Sniffs/Typehints/TypeHintDeclarationSniff.php
index <HASH>..<HASH> 100644
--- a/SlevomatCodingStandard/Sniffs/Typehints/TypeHintDeclarationSniff.php
+++ b/SlevomatCodingStandard/Sniffs/Typehints/TypeHintDeclaratio... | @return static and @return $this are not useless doctags when the return typehint is self | slevomat_coding-standard | train |
c6d68c450236ef25b82625082340b63c2dff68c1 | diff --git a/TYPO3.Neos/Resources/Public/JavaScript/Content/Model/PublishableNodes.js b/TYPO3.Neos/Resources/Public/JavaScript/Content/Model/PublishableNodes.js
index <HASH>..<HASH> 100644
--- a/TYPO3.Neos/Resources/Public/JavaScript/Content/Model/PublishableNodes.js
+++ b/TYPO3.Neos/Resources/Public/JavaScript/Content... | [BUGFIX] Fix unpublished changes marker in page tree for moved nodes
Change-Id: Ib<I>d7a<I>d<I>e0eea<I>d<I>d
Reviewed-on: <URL> | neos_neos-development-collection | train |
e07894c6e4105300b273858e6f648ca6781a7393 | diff --git a/moto/ec2/responses/security_groups.py b/moto/ec2/responses/security_groups.py
index <HASH>..<HASH> 100644
--- a/moto/ec2/responses/security_groups.py
+++ b/moto/ec2/responses/security_groups.py
@@ -9,9 +9,9 @@ def process_rules_from_querystring(querystring):
except:
group_name_or_id = queryst... | When adding security group rules, allow a source group only to be specified - as per boto docs & functionality | spulec_moto | train |
96aa3bd0eae0afa98a1a16d87f5e0b6fa0005dab | diff --git a/actionpack/lib/action_dispatch/http/url.rb b/actionpack/lib/action_dispatch/http/url.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_dispatch/http/url.rb
+++ b/actionpack/lib/action_dispatch/http/url.rb
@@ -64,7 +64,7 @@ module ActionDispatch
end
def host_or_subdomain_and_dom... | Clean up subdomain code a bit. | rails_rails | train |
212eca9d13745d9d318318c9edb2746ce0d37608 | diff --git a/packages/arrow/src/index.js b/packages/arrow/src/index.js
index <HASH>..<HASH> 100644
--- a/packages/arrow/src/index.js
+++ b/packages/arrow/src/index.js
@@ -1,7 +1,5 @@
const ARROW_EXP = 'ArrowFunctionExpression';
-// test arrow change
-
export default {
name: 'arrow',
diff --git a/packages/ternar... | ci: sync with upstream | soney_jsep | train |
fc634c3dd6059de37fa798683b82e1a32414bb56 | diff --git a/packages/node_modules/@ciscospark/spark-core/src/lib/spark-plugin.js b/packages/node_modules/@ciscospark/spark-core/src/lib/spark-plugin.js
index <HASH>..<HASH> 100644
--- a/packages/node_modules/@ciscospark/spark-core/src/lib/spark-plugin.js
+++ b/packages/node_modules/@ciscospark/spark-core/src/lib/spark... | style(@ciscospark/spark-core): reorder imports | webex_spark-js-sdk | train |
e01ef39cb57e596f07ce78a4384ca044c092e5f9 | diff --git a/src/Providers/SessionServiceProvider.php b/src/Providers/SessionServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/Providers/SessionServiceProvider.php
+++ b/src/Providers/SessionServiceProvider.php
@@ -20,9 +20,10 @@ class SessionServiceProvider extends ServiceProvider
$secure = Config::ge... | Start and save the Session
This is kinda important and was totally overlooked - oops! | Rareloop_lumberjack-core | train |
c88d197f6933d325887d77dee479fac70109d28a | diff --git a/sufia-models/lib/generators/sufia/models/install_generator.rb b/sufia-models/lib/generators/sufia/models/install_generator.rb
index <HASH>..<HASH> 100644
--- a/sufia-models/lib/generators/sufia/models/install_generator.rb
+++ b/sufia-models/lib/generators/sufia/models/install_generator.rb
@@ -57,8 +57,6 @@... | Proxies and full-text indexing should not have the same method name in the generator, and the install generator should not duplicate the work of the proxies generator | samvera_hyrax | train |
b33a4cd3b7384f1be5fcce45e5272948457fe4cc | diff --git a/doc.go b/doc.go
index <HASH>..<HASH> 100644
--- a/doc.go
+++ b/doc.go
@@ -9,12 +9,14 @@ From Wikipedia [0]:
Its features and syntax are inspired by the PEG.js project [1], while
the implementation is loosely based on [2]. Formal presentation of the
-PEG theory by Bryan Ford is also an important referen... | doc: document types of labeled expressions | mna_pigeon | train |
3e8262b5ec9152373159612979cd827c68232753 | diff --git a/app/services/custom-forms.js b/app/services/custom-forms.js
index <HASH>..<HASH> 100644
--- a/app/services/custom-forms.js
+++ b/app/services/custom-forms.js
@@ -56,6 +56,7 @@ export default Ember.Service.extend({
}
});
}
+ return model;
});
}
diff --git a/app/visi... | Changed setDefaultCustomForms to return model | HospitalRun_hospitalrun-frontend | train |
e7c36a50ceb5942c3be334937dc38c99d114c885 | diff --git a/web/static/scripts/mumoro.js b/web/static/scripts/mumoro.js
index <HASH>..<HASH> 100644
--- a/web/static/scripts/mumoro.js
+++ b/web/static/scripts/mumoro.js
@@ -66,11 +66,7 @@ function handleClick(coord, mark) {
// Coordinates in 4326 projection (lon/lat)
function setMark(lonlat, mark)
{
- if(node_m... | Corrected a bug in mumoro.js : when marker was not set, it still tried to delete it | Tristramg_mumoro | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.