hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
f5470d716fc771c674391bf9e9fdbd85d74bbebe | diff --git a/implementations/micrometer-registry-dynatrace/src/test/java/io/micrometer/dynatrace/DynatraceMeterRegistryCompatibilityTest.java b/implementations/micrometer-registry-dynatrace/src/test/java/io/micrometer/dynatrace/DynatraceMeterRegistryCompatibilityTest.java
index <HASH>..<HASH> 100644
--- a/implementatio... | Use localhost instead of fake URIs that could go to the internet
The tests right now never use this value to send an HTTP request, but in the future a test may, so proactively changes the values to something safer.
See #<I> | micrometer-metrics_micrometer | train |
2e7142b038aa8802b5fc3f0446e91c68908f80d2 | diff --git a/test/core.tests.js b/test/core.tests.js
index <HASH>..<HASH> 100644
--- a/test/core.tests.js
+++ b/test/core.tests.js
@@ -26,24 +26,24 @@ const Core = new Highway.Core();
// Assertions
describe('Highway.Core', () => {
+ const link = document.querySelector('a');
+
it('Should be an instance of `Highw... | :construction: Add Core Unit Tests | Dogstudio_highway | train |
d571bdde74a3655966b9d522838bd111c29b9ef0 | diff --git a/awkward/type.py b/awkward/type.py
index <HASH>..<HASH> 100644
--- a/awkward/type.py
+++ b/awkward/type.py
@@ -215,7 +215,10 @@ class UnionType(Type):
return "UnionType({0})".format(", ".join(repr(x) if isinstance(x, numpy.dtype) else x._repr(labeled, seen) for x in self._possibilities))
def... | the __str__ formatting has some bugs, but that's not important right now | scikit-hep_awkward-array | train |
4d65cff5a8e3eba84f852c6dd27047fa8f8c904c | diff --git a/tests/utils/helpers.py b/tests/utils/helpers.py
index <HASH>..<HASH> 100644
--- a/tests/utils/helpers.py
+++ b/tests/utils/helpers.py
@@ -638,14 +638,7 @@ def get_hazard_job(cfg, username=None):
"""
username = username if username is not None else default_user().user_name
- job = engine.prep... | tests/utils/helpers:
Simplified and corrected a util function.
Former-commit-id: 6a<I>a<I>a<I>a<I>f<I>cf<I>a<I>e<I>d<I>ff | gem_oq-engine | train |
23439974dc0ef5dac879e11e575ce944396aadf1 | diff --git a/visidata/tests/test_commands.py b/visidata/tests/test_commands.py
index <HASH>..<HASH> 100644
--- a/visidata/tests/test_commands.py
+++ b/visidata/tests/test_commands.py
@@ -36,6 +36,8 @@ class CommandsTestCase(unittest.TestCase):
self.scr.addstr = Mock()
self.scr.move = Mock()
s... | Fix unittests (curses.curs_set stub; BACKSPACE no longer deletes at start) | saulpw_visidata | train |
74b1691c472db9d8eb8eed5bb939e763324ad155 | diff --git a/tests/test_get_logs.py b/tests/test_get_logs.py
index <HASH>..<HASH> 100644
--- a/tests/test_get_logs.py
+++ b/tests/test_get_logs.py
@@ -4,44 +4,49 @@ import pytest
from vent.info_tools import get_logs
def test_msg():
- """tests custom output"""
- get_logs.msg()
+ """ tests custom output """
+ g... | cleanup spacing, add test for main and core | CyberReboot_vent | train |
cfcf6bf3c8ef06e11ca27e25b4931794b507e46b | diff --git a/glances/glances.py b/glances/glances.py
index <HASH>..<HASH> 100755
--- a/glances/glances.py
+++ b/glances/glances.py
@@ -612,7 +612,12 @@ class glancesStats:
procstat['mem_percent'] = proc.get_memory_percent()
procstat['pid'] = proc.pid
... | Change process nice for PsUtil <I> | nicolargo_glances | train |
b40443c5dec048986f0b369cb1a7f799e7a234d8 | diff --git a/mock.py b/mock.py
index <HASH>..<HASH> 100644
--- a/mock.py
+++ b/mock.py
@@ -840,6 +840,11 @@ def _importer(target):
return thing
+def _is_started(patcher):
+ # XXXX horrible
+ return hasattr(patcher, 'is_local')
+
+
class _patch(object):
attribute_name = None
@@ -928,6 +933,13 @@ c... | Initial attempt to fix unpatching with patch.multiple failures | testing-cabal_mock | train |
6954a7d97d9a72ee063daae445939142cabe61d1 | diff --git a/client/state/themes/test/selectors.js b/client/state/themes/test/selectors.js
index <HASH>..<HASH> 100644
--- a/client/state/themes/test/selectors.js
+++ b/client/state/themes/test/selectors.js
@@ -10,6 +10,7 @@ import { values } from 'lodash';
import {
getThemes,
getTheme,
+ isRequestingTheme,
getT... | isRequestingTheme: Add unit tests. (#<I>) | Automattic_wp-calypso | train |
3cb6a07f6447308b032933891904ff00e74c8f24 | diff --git a/cmd/openshift-tests/openshift-tests.go b/cmd/openshift-tests/openshift-tests.go
index <HASH>..<HASH> 100644
--- a/cmd/openshift-tests/openshift-tests.go
+++ b/cmd/openshift-tests/openshift-tests.go
@@ -278,4 +278,5 @@ func bindOptions(opt *testginkgo.Options, flags *pflag.FlagSet) {
flags.IntVar(&opt.Cou... | Make parallelism configurable
So user can run less tests in parallel on small clusters / with small
storage backends. | openshift_origin | train |
39f0e3f36c0529677536257499ab2acb970ac2ff | diff --git a/ontquery/query.py b/ontquery/query.py
index <HASH>..<HASH> 100644
--- a/ontquery/query.py
+++ b/ontquery/query.py
@@ -9,7 +9,7 @@ from ontquery.terms import OntId # FIXME doen't want to import OntId ...
class OntQuery:
- def __init__(self, *services, prefix=None, category=None): # services from O... | query add support for setting result OntTerm class at __init__ | tgbugs_ontquery | train |
65aa4fc544d04c4af5379f2b0d09e432e5a67309 | diff --git a/topdown/eval.go b/topdown/eval.go
index <HASH>..<HASH> 100644
--- a/topdown/eval.go
+++ b/topdown/eval.go
@@ -860,6 +860,7 @@ func (e *eval) biunifyComprehension(a, b *ast.Term, b1, b2 *bindings, swap bool,
}
func (e *eval) biunifyComprehensionPartial(a, b *ast.Term, b1, b2 *bindings, swap bool, iter u... | topdown: Save comprehensions containing unknown terms
Earlier while partially evaluating comprehensions, we would namespace the variables in the comprehension and then save it. This would result in the mutation of the comprehension expression in the orginal query and as a result the same expression containing missing ... | open-policy-agent_opa | train |
50498b852a9c1ccad9af8428c84a8afadce0b8e3 | diff --git a/mbuild/compound.py b/mbuild/compound.py
index <HASH>..<HASH> 100755
--- a/mbuild/compound.py
+++ b/mbuild/compound.py
@@ -2476,8 +2476,8 @@ class Compound(object):
if not val:
box_vec_max[dim] += 0.25
box_vec_min[dim] -= 0.25
- box.mins ... | Switch order that box mins and maxs are set | mosdef-hub_mbuild | train |
084f735d6dc47b6927f8126fc258237a0e036d91 | diff --git a/llvmlite/binding/executionengine.py b/llvmlite/binding/executionengine.py
index <HASH>..<HASH> 100644
--- a/llvmlite/binding/executionengine.py
+++ b/llvmlite/binding/executionengine.py
@@ -3,12 +3,9 @@ from ctypes import byref, POINTER, c_char_p, c_bool, c_uint, c_void_p
from . import ffi, targets
-d... | Do not define no-op functions. | numba_llvmlite | train |
1128b2d1134f15d770248073a9de688978fd9315 | diff --git a/lspreader.py b/lspreader.py
index <HASH>..<HASH> 100644
--- a/lspreader.py
+++ b/lspreader.py
@@ -78,10 +78,6 @@ def convert_frame(d):
class LspOutput(file):
'''represents an lsp output file on call,
reads the header on open'''
- #static variables
- ip=['xi','yi','zi'];
- movie_label... | minor edits to lspreader.py, ready to merge | noobermin_lspreader | train |
9c11040c3e99558754e8d496f39f2997b197c7d7 | diff --git a/pkg/services/serviceaccounts/manager/service.go b/pkg/services/serviceaccounts/manager/service.go
index <HASH>..<HASH> 100644
--- a/pkg/services/serviceaccounts/manager/service.go
+++ b/pkg/services/serviceaccounts/manager/service.go
@@ -42,10 +42,10 @@ func ProvideServiceAccountsService(
return s, nil
... | Serviceaccounts: Filtering service accounts from user queries (#<I>)
* Add extra fields to OSS types to support enterprise
* WIP service accounts
* Update public/app/features/api-keys/ApiKeysForm.tsx | grafana_grafana | train |
b920f5a4269f33778d9107796010a0045016cfd6 | diff --git a/test/pages.js b/test/pages.js
index <HASH>..<HASH> 100644
--- a/test/pages.js
+++ b/test/pages.js
@@ -213,8 +213,10 @@ describe('Pages', function() {
assert(page._ancestors.length === 2);
// The second ancestor should have children
assert(page._ancestors[1]._children);
- // The fi... | Udpdated test to remove false assumption about children results | apostrophecms_apostrophe | train |
1313fce1809d65b22ea0f3ae991d31b2de79bc6a | diff --git a/Classes/Command/RedirectCommandController.php b/Classes/Command/RedirectCommandController.php
index <HASH>..<HASH> 100755
--- a/Classes/Command/RedirectCommandController.php
+++ b/Classes/Command/RedirectCommandController.php
@@ -136,7 +136,7 @@ class RedirectCommandController extends CommandController
... | WIP FEATURE: Allow filtering redirects on export
By type and activity state | neos_redirecthandler | train |
5adefc3f649467c606330596ebb268d6dcf35e05 | diff --git a/dev/test/events/order.spec.js b/dev/test/events/order.spec.js
index <HASH>..<HASH> 100644
--- a/dev/test/events/order.spec.js
+++ b/dev/test/events/order.spec.js
@@ -168,9 +168,14 @@ describe('Order events', function () {
await refundFirstItemFromOrder(this.magentoApi, orderId);
const event... | test(sales-event): check for refund fulfillment event on partial refund CDP-<I> | emartech_magento2-extension | train |
0e46845d609c2ce2eeee19cf69ed2a8b14bfdacd | diff --git a/tensorlayer/files.py b/tensorlayer/files.py
index <HASH>..<HASH> 100644
--- a/tensorlayer/files.py
+++ b/tensorlayer/files.py
@@ -58,14 +58,14 @@ def load_mnist_dataset(shape=(-1, 784), path='data'):
Parameters
----------
shape : tuple
- The shape of digit images (the default is (-1, ... | fix docs typo (#<I>) | tensorlayer_tensorlayer | train |
f8c5fdfbac9d4a94485ccacd6fe47b283dd0bdd0 | diff --git a/engine/node/score-node-impl/src/main/java/io/cloudslang/engine/node/services/WorkerNodeServiceImpl.java b/engine/node/score-node-impl/src/main/java/io/cloudslang/engine/node/services/WorkerNodeServiceImpl.java
index <HASH>..<HASH> 100644
--- a/engine/node/score-node-impl/src/main/java/io/cloudslang/engine/... | Setting the state as NA when monitoring is disabled | CloudSlang_score | train |
09c8cece1564dd84c888c51bd3ffaaa3f6528f22 | diff --git a/app/models/kpi/report.rb b/app/models/kpi/report.rb
index <HASH>..<HASH> 100644
--- a/app/models/kpi/report.rb
+++ b/app/models/kpi/report.rb
@@ -8,8 +8,8 @@ module KPI
blacklist :initialize, :collect!, :entries, :time, :title, :defined_kpis, :result
def initialize(*args)
- options = args... | Options hash available for inherited Reports | sevos_kpi | train |
4e4a5b25328566efad9ade3e7e0737ba48c090ab | diff --git a/graph/push.go b/graph/push.go
index <HASH>..<HASH> 100644
--- a/graph/push.go
+++ b/graph/push.go
@@ -236,7 +236,10 @@ func (s *TagStore) pushImage(r *registry.Session, out io.Writer, imgID, ep strin
// Send the layer
log.Debugf("rendered layer for %s of [%d] size", imgData.ID, layerData.Size)
- chec... | Ensure that progress reader is closed after usage | containers_storage | train |
2c4db19d67cde41b70469a31011f26b0d7cef986 | diff --git a/lib/mongomodel/version.rb b/lib/mongomodel/version.rb
index <HASH>..<HASH> 100644
--- a/lib/mongomodel/version.rb
+++ b/lib/mongomodel/version.rb
@@ -1,3 +1,3 @@
module MongoModel
- VERSION = "0.5.2"
+ VERSION = "0.5.3"
end | Increment version to <I> | spohlenz_mongomodel | train |
7bbb6c0f749af0325ec7e68696bce994f251d16e | diff --git a/GPy/core/gp_base.py b/GPy/core/gp_base.py
index <HASH>..<HASH> 100644
--- a/GPy/core/gp_base.py
+++ b/GPy/core/gp_base.py
@@ -29,6 +29,7 @@ class GPBase(Model):
if normalize_X:
self._Xoffset = X.mean(0)[None, :]
self._Xscale = X.std(0)[None, :]
+ self._Xscale[n... | normalization: avoid division by zero for constant feature dimensions | SheffieldML_GPy | train |
7b08152a120de9b9be2703e81af96d9480483e47 | diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -48,20 +48,23 @@ gulp.task('cleancss', function() {
gulp.task('copy-assets', function() {
gulp.src(basePaths.bower + 'bootstrap-sass/assets/javascripts/*.js')
.pipe(gulp.dest('./js'));
-<<<<<<< HEAD
+... | fixing merge conflict in gulpfile | understrap_understrap | train |
7a5a3f15b34939f31a015e2e751e0997bdd4ed86 | diff --git a/tests.py b/tests.py
index <HASH>..<HASH> 100644
--- a/tests.py
+++ b/tests.py
@@ -161,6 +161,11 @@ class BasePeeweeTestCase(unittest.TestCase):
self.assertEqual(lhs[0].replace('?', interpolation), rhs[0].replace('?', interpolation))
self.assertEqual(lhs[1], rhs[1])
+ def assertSQ... | Adding initial unit test for checking mixing Q() between models | coleifer_peewee | train |
d15af46a490654664e04121f6c84805e7321c243 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -19,9 +19,8 @@ setup(name='curtsies',
packages=['curtsies'],
install_requires = [
'blessings>=1.5',
- 'wcwidth>=0.1.1',
+ 'wcwidth>=0.1.4',
],
- dependency_links=['http://... | use official wcwidth because changes were pushed upstream! | bpython_curtsies | train |
8c3325ee6b92f9e0b15071cfd92b211294d737e9 | diff --git a/src/app/providers/HCACLServiceProvider.php b/src/app/providers/HCACLServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/app/providers/HCACLServiceProvider.php
+++ b/src/app/providers/HCACLServiceProvider.php
@@ -83,9 +83,5 @@ class HCACLServiceProvider extends HCBaseServiceProvider
}... | removed hardcode for cms menu section permission | interactivesolutions_honeycomb-acl | train |
6ed8b749cb486ef270ff1bfa02873be9de729c6d | diff --git a/gargoyle/testutils.py b/gargoyle/testutils.py
index <HASH>..<HASH> 100644
--- a/gargoyle/testutils.py
+++ b/gargoyle/testutils.py
@@ -34,6 +34,7 @@ class SwitchContextManager(object):
"""
def __init__(self, gargoyle=gargoyle, **keys):
self.gargoyle = gargoyle
+ self.is_active_func... | New method of patching is_active for testutils | disqus_gargoyle | train |
85f7841fdce478efae78cca090abe3488aa2d2e5 | diff --git a/lib/Gitter/Repository.php b/lib/Gitter/Repository.php
index <HASH>..<HASH> 100644
--- a/lib/Gitter/Repository.php
+++ b/lib/Gitter/Repository.php
@@ -165,13 +165,20 @@ class Repository
$branches = explode("\n", $branches);
$branches = array_filter(preg_replace('/[\*\s]/', '', $branches));... | Handle detached HEAD state more correctly.
Repository::getBranches() no longer includes '(nobranch)' in this case.
Repository::getHead() now accepts an optional default branch, which
it will return if HEAD is detached *and* the default exists. Otherwise,
it returns the first existing branch. | klaussilveira_gitter | train |
88afdb4079acb75bcea751ce40882768733e3857 | diff --git a/js/tree.js b/js/tree.js
index <HASH>..<HASH> 100644
--- a/js/tree.js
+++ b/js/tree.js
@@ -67,7 +67,7 @@
var loader = $parent.find('.tree-loader:eq(0)');
loader.removeClass('hide');
- this.options.dataSource( this.options.folderSelect ? $parent.data() : $el.data(), function (items) {
+ this.op... | Tree folder select options not returning when folderSelect option set to false | ExactTarget_fuelux | train |
8c669226ca27efee497ff7bded6c75d2626645aa | diff --git a/boiler/collections/paginated_collection.py b/boiler/collections/paginated_collection.py
index <HASH>..<HASH> 100644
--- a/boiler/collections/paginated_collection.py
+++ b/boiler/collections/paginated_collection.py
@@ -1,5 +1,6 @@
from math import ceil
from boiler.collections.pagination import paginate
+f... | Bloody hell! How come this was hardcoded? Guaranteed to always work? | projectshift_shift-boiler | train |
18f950c445bd4de96815483a63baa9bbfdfca9bf | diff --git a/openquake/server/dbserver.py b/openquake/server/dbserver.py
index <HASH>..<HASH> 100644
--- a/openquake/server/dbserver.py
+++ b/openquake/server/dbserver.py
@@ -111,8 +111,7 @@ class DbServer(object):
self.thread.join()
-def runserver(dbpathport=None, loglevel='WARN', logfile=None):
- ... | Turned logfile into a positional argument | gem_oq-engine | train |
74aaf848edfac30a5421edc8e82b661df568111c | diff --git a/src/babel/transformation/transformers/internal/block-hoist.js b/src/babel/transformation/transformers/internal/block-hoist.js
index <HASH>..<HASH> 100644
--- a/src/babel/transformation/transformers/internal/block-hoist.js
+++ b/src/babel/transformation/transformers/internal/block-hoist.js
@@ -1,6 +1,4 @@
-... | Explicitly sort instead of relying on implementation-defined numeric key ordering - fixes #<I>. | babel_babel | train |
9005f3e85a026d72f7b49b31515c991ed797ec17 | diff --git a/packages/neos-ui/src/Containers/SecondaryToolbar/DimensionSwitcher/index.js b/packages/neos-ui/src/Containers/SecondaryToolbar/DimensionSwitcher/index.js
index <HASH>..<HASH> 100644
--- a/packages/neos-ui/src/Containers/SecondaryToolbar/DimensionSwitcher/index.js
+++ b/packages/neos-ui/src/Containers/Secon... | TASK: refactor to spread instead of apply | neos_neos-ui | train |
98fd1233e7fff2b117800ac30824d5f7545a3d39 | diff --git a/auth/mux.go b/auth/mux.go
index <HASH>..<HASH> 100644
--- a/auth/mux.go
+++ b/auth/mux.go
@@ -44,18 +44,10 @@ const (
func BuildMuxHeader(address []byte) ([]byte, error) {
// get current host token
token := AuthToken()
-
- // get a Signer
- myPrivateKey := LocalPrivateKey()
- signer, err := RSASigner(... | refactor build header to use localkeys methods | control-center_serviced | train |
c82ab609565d7b9c49292a999c51655bd139e149 | diff --git a/src/QueryBuilder.php b/src/QueryBuilder.php
index <HASH>..<HASH> 100755
--- a/src/QueryBuilder.php
+++ b/src/QueryBuilder.php
@@ -6,9 +6,9 @@ use Illuminate\Http\Request;
use Illuminate\Support\Collection;
use Illuminate\Database\Eloquent\Builder;
use Spatie\QueryBuilder\Exceptions\InvalidSortQuery;
+us... | StyleCI and PHP <I> compatibility | spatie_laravel-query-builder | train |
05965278f2c2fee4dd963bb84be68ff43c1962ba | diff --git a/lib/WPRequest.js b/lib/WPRequest.js
index <HASH>..<HASH> 100644
--- a/lib/WPRequest.js
+++ b/lib/WPRequest.js
@@ -7,6 +7,7 @@
/*jshint -W079 */// Suppress warning about redefiniton of `Promise`
const Promise = require( 'bluebird' );
const agent = require( 'superagent' );
+const extend = require( 'node.e... | Support filter chaining and key/value filter syntax
Fixes #<I>, Fixes #<I>
TODO: Make it so that filters are reflected in the generated URL! | WP-API_node-wpapi | train |
28b2f0e5826026543e7b30a16fc24ac5de9d7267 | diff --git a/src/funnies.js b/src/funnies.js
index <HASH>..<HASH> 100644
--- a/src/funnies.js
+++ b/src/funnies.js
@@ -188,5 +188,7 @@ export default [
"Bored of slow loading spinner, buy more RAM!",
"Help, I'm trapped in a loader!",
"What is the difference btwn a hippo and a zippo? One is really heavy, the ot... | Added funnies jokes (#<I>) | 1egoman_funnies | train |
645a4e0a0331813bb9bf9971b880dd801339bfb5 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,6 @@
## master
+* [feature] MySQL support
* [bugfix] Added dependency on childprocess' version
* [bugfix] Added UUID for show action in message given by `shelly endpoint help`
diff --git a/lib/sh... | Support for MySQL [#<I>] | Ragnarson_shelly | train |
1de3b0b78774eb0c27acabd39a36a3f3080cad4f | diff --git a/Model/Service/WebhookHandlerService.php b/Model/Service/WebhookHandlerService.php
index <HASH>..<HASH> 100644
--- a/Model/Service/WebhookHandlerService.php
+++ b/Model/Service/WebhookHandlerService.php
@@ -191,7 +191,7 @@ class WebhookHandlerService
$status = $order->getConfig()->getStateDefau... | Corrected order status comment translation tag | checkout_checkout-magento2-plugin | train |
6fda3fb6c46de638cf9ac1f353c1828690f4f97f | diff --git a/abilian/core/extensions/__init__.py b/abilian/core/extensions/__init__.py
index <HASH>..<HASH> 100644
--- a/abilian/core/extensions/__init__.py
+++ b/abilian/core/extensions/__init__.py
@@ -70,8 +70,8 @@ def _filter_metadata_for_connection(target, connection, **kw):
Useful for skipping postgres-specif... | conditional index create: `engines` is now located in `info` dict
this also prepares upgrade to SA <I> | abilian_abilian-core | train |
fb1794638ecaefaf9643e44bfda5536278da12bc | diff --git a/tests/test_treelikelihood.py b/tests/test_treelikelihood.py
index <HASH>..<HASH> 100644
--- a/tests/test_treelikelihood.py
+++ b/tests/test_treelikelihood.py
@@ -34,8 +34,10 @@ class test_TreeLikelihood_ExpCM(unittest.TestCase):
scipy.random.seed(1)
# define tree and write image to a fi... | Fix test after adding `branchScale` in `TreeLikelihood` | jbloomlab_phydms | train |
8c2450cf2387c29e7d01b2347ea3700d38d75bc5 | diff --git a/php/Exchange.php b/php/Exchange.php
index <HASH>..<HASH> 100644
--- a/php/Exchange.php
+++ b/php/Exchange.php
@@ -2304,8 +2304,9 @@ class Exchange {
return $this->filter_by_currency_since_limit($result, $code, $since, $limit, $tail);
}
- public function safe_ledger_entry($ledger_entry) {... | Exchange.php safe_ledger_entry edits | ccxt_ccxt | train |
e01cb84a208598ed6f3fafa6b940440ae7f3bea7 | diff --git a/dyno-jedis/src/main/java/com/netflix/dyno/jedis/DynoJedisClient.java b/dyno-jedis/src/main/java/com/netflix/dyno/jedis/DynoJedisClient.java
index <HASH>..<HASH> 100644
--- a/dyno-jedis/src/main/java/com/netflix/dyno/jedis/DynoJedisClient.java
+++ b/dyno-jedis/src/main/java/com/netflix/dyno/jedis/DynoJedisC... | Implement a multi key operation class for supporting mget | Netflix_dyno | train |
e3ded94aed386b379abcd8de53f85aaf86a7281f | diff --git a/ReText/tab.py b/ReText/tab.py
index <HASH>..<HASH> 100644
--- a/ReText/tab.py
+++ b/ReText/tab.py
@@ -328,10 +328,10 @@ class ReTextTab(QSplitter):
if result:
self.editBox.document().setModified(False)
self.p.fileSystemWatcher.addPath(fileName or self._fileName)
- if result and self._fileName !... | tab: do not trigger file name change when auto-saving to same file
This fixes issue #<I> which caused the window title to change to "New
document" after a minute with auto-save enabled. | retext-project_retext | train |
5770a5cef2c479c8894c7b929fb6ab7c1f0701b2 | diff --git a/sorl/thumbnail/admin/current.py b/sorl/thumbnail/admin/current.py
index <HASH>..<HASH> 100644
--- a/sorl/thumbnail/admin/current.py
+++ b/sorl/thumbnail/admin/current.py
@@ -46,7 +46,7 @@ class AdminImageWidget(forms.ClearableFileInput):
'target="_blank" href="%s">'
... | 'NoneType' object has no attribute '__getitem__' | jazzband_sorl-thumbnail | train |
938b9e897a146388253ed32fe846649abd43c487 | diff --git a/lib/common/init.js b/lib/common/init.js
index <HASH>..<HASH> 100644
--- a/lib/common/init.js
+++ b/lib/common/init.js
@@ -58,3 +58,8 @@ if (process.platform === 'win32') {
process.windowsStore = true
}
}
+
+// Workaround for electron/electron#5050
+if (process.platform === 'linux' && process.env.X... | :penguin: :bug: Workaround for electron/electron#<I>
Chromium only show the Tray icon with libappindicator when the env `XDG_CURRENT_DESKTOP`'s value is `Unity`. But under elementaryOS its value is 'Pantheon'.
Set it to `Unity` before app startup make the tray icon show under elementaryOS. | electron_electron | train |
df28ca04cd361aa325e5412c90e43b662ab22a18 | diff --git a/tests/specs/scoped.js b/tests/specs/scoped.js
index <HASH>..<HASH> 100644
--- a/tests/specs/scoped.js
+++ b/tests/specs/scoped.js
@@ -334,6 +334,43 @@ test('scoped Store .update()', function (t) {
})
})
+test('scoped Store .update() updates the correct scope', function (t) {
+ t.plan(7)
+
+ var sto... | test: store('scope').update() ignores scope
Currently, scope is ignored in the scoped update() store method. This test should pass if the fix is correctly implemented. If an array is passed into find, an array of objects of the same size is returned, with errors in place of items not found. | hoodiehq_hoodie-store-client | train |
10b3f6c23abfb5564ca50d9649c3f7cdb081ad39 | diff --git a/Configuration/Console/Commands.php b/Configuration/Console/Commands.php
index <HASH>..<HASH> 100644
--- a/Configuration/Console/Commands.php
+++ b/Configuration/Console/Commands.php
@@ -19,7 +19,6 @@ return [
'typo3_console:install:defaultconfiguration' => \Helhum\Typo3Console\Core\Booting\RunLeve... | [BUGFIX] Use full bootstrap for cache:flush command (#<I>)
Accidentally we changed cache:flush to not initialize
database connection and not re-enable caches.
Make it a full bootstrap command again | TYPO3-Console_TYPO3-Console | train |
7c8de9a4b53282b8f2d4544e408e72ed7808df4d | diff --git a/ezp/Persistence/User/Role.php b/ezp/Persistence/User/Role.php
index <HASH>..<HASH> 100644
--- a/ezp/Persistence/User/Role.php
+++ b/ezp/Persistence/User/Role.php
@@ -15,18 +15,18 @@ use ezp\Persistence\ValueObject;
class Role extends ValueObject
{
/**
- * Name of the role
+ * ID of the user ... | CS: Put primary key on top and specify id's as mixed and not int|string | ezsystems_ezpublish-kernel | train |
395715f78e2a440249b73391cd3b34160ef63db3 | diff --git a/lib/rules/no-inner-declarations.js b/lib/rules/no-inner-declarations.js
index <HASH>..<HASH> 100644
--- a/lib/rules/no-inner-declarations.js
+++ b/lib/rules/no-inner-declarations.js
@@ -22,7 +22,8 @@ module.exports = function(context) {
generation = 1;
while (ancestor && ["Program",... | Fix: Make no-inner-declarations look for arrow functions (fixes #<I>) | eslint_eslint | train |
3ddd22137d2715d238d6c625a1f22618a7502544 | diff --git a/lib/marshalService.js b/lib/marshalService.js
index <HASH>..<HASH> 100644
--- a/lib/marshalService.js
+++ b/lib/marshalService.js
@@ -72,9 +72,7 @@ var marshal = function(item) {
}
if (_.isUndefined(result)) {
- throw new TypeError(
- 'Marshaling error: encountered ' + ((item)... | Added a TypeError when none of the unmarshaling commands can handle the
type. This shouldn't really ever happen unless you're doing something
really strange like using the unmarshal function on a non dynamodb
object. | CascadeEnergy_dynamoDb-marshaler | train |
b78d5dbde5dc8f6de3727dee95a478f7813c0916 | diff --git a/commons/src/main/java/com/composum/sling/cpnl/ComponentTag.java b/commons/src/main/java/com/composum/sling/cpnl/ComponentTag.java
index <HASH>..<HASH> 100644
--- a/commons/src/main/java/com/composum/sling/cpnl/ComponentTag.java
+++ b/commons/src/main/java/com/composum/sling/cpnl/ComponentTag.java
@@ -34,7 ... | catch NPE when adaptTo fails in ComponentTag | ist-dresden_composum | train |
724eff97ab608b7292cfd37ab931839bd70637df | diff --git a/test/__tests/events.js b/test/__tests/events.js
index <HASH>..<HASH> 100644
--- a/test/__tests/events.js
+++ b/test/__tests/events.js
@@ -999,7 +999,6 @@ function testEventBubbling( fire ) {
}
-
module( 'Component events bubbling proxy events', setup )
testEventBubbling( function ( component ) {
@... | a few basic tests for component methods and args | ractivejs_ractive | train |
429dada472d913987ab5d89cf2f161881b087749 | diff --git a/lib/appsignal/railtie.rb b/lib/appsignal/railtie.rb
index <HASH>..<HASH> 100644
--- a/lib/appsignal/railtie.rb
+++ b/lib/appsignal/railtie.rb
@@ -1,10 +1,14 @@
module Appsignal
class Railtie < Rails::Railtie
initializer "appsignal.configure_rails_initialization" do |app|
- Appsignal.logger = ... | Don't open log file if Rails.root is not set | appsignal_appsignal-ruby | train |
24af70ac1e8a973c541a476595c4f3d26d2fdfb2 | diff --git a/src/org/datasift/User.java b/src/org/datasift/User.java
index <HASH>..<HASH> 100644
--- a/src/org/datasift/User.java
+++ b/src/org/datasift/User.java
@@ -22,7 +22,7 @@ public class User {
*
* @access public
*/
- public final static String _user_agent = "DataSiftJava/0.3.2";
+ public final static ... | Bumped version to <I>. | datasift_datasift-java | train |
9d09323cdd5dec780c0f1b05605a4b838595aae4 | diff --git a/testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/ejb/remote/entity/cmp/commerce/CascadeDeleteTestCase.java b/testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/ejb/remote/entity/cmp/commerce/CascadeDeleteTestCase.java
index <HASH>..<HASH> 100644
--- a/testsuite/i... | Test adjustment - remote JNDI lookup for ejb2 entity bean added | wildfly_wildfly | train |
e6a6578e6fab13b2ea4dc53a56a252907ec974ae | diff --git a/src/errors.js b/src/errors.js
index <HASH>..<HASH> 100644
--- a/src/errors.js
+++ b/src/errors.js
@@ -1,31 +1,44 @@
"use strict";
-// Imports
-// ====
-
-var _ = require('underscore');
var util = require('./util');
-// Module
-// ====
-
var errors = {};
-errors.SubstanceError = function(name, code... | More sophisticated SubstanceError implementation.
As we proceeded our JS skills had grown...
Now the SubstanceError is capable of error chaining as we know it
from all other programming languages.
This is useful to wrap a low-level into a higher-level error. | substance_util | train |
d2f322dbf65e988ee87c123ff5603ce1c3d6b68b | diff --git a/src/Blacklist.php b/src/Blacklist.php
index <HASH>..<HASH> 100644
--- a/src/Blacklist.php
+++ b/src/Blacklist.php
@@ -84,14 +84,12 @@ class Blacklist
protected function getMinutesUntilExpired(Payload $payload)
{
$exp = Utils::timestamp($payload['exp']);
- $refreshExp = Utils::time... | No need to create a 3rd instance | tymondesigns_jwt-auth | train |
887a8ef71c57f60e986b421b7408541b0da7be78 | diff --git a/photos/actions.js b/photos/actions.js
index <HASH>..<HASH> 100644
--- a/photos/actions.js
+++ b/photos/actions.js
@@ -43,7 +43,7 @@ actions.searchPhotos = (req, res, next) => {
.then((flattenedPhotos) => {
return _.sortBy(flattenedPhotos, [
(photo) => {
- return photo.datePublished && photo... | Prefer to sort by `dateCreated` rather than `datePublished`.
Makes more sense with this change [here](<URL>). | randytarampi_me | train |
2a928371f4d2fa230fa2de898f2c27d1d6e820b5 | diff --git a/dogstatsd/dogstatsd.go b/dogstatsd/dogstatsd.go
index <HASH>..<HASH> 100644
--- a/dogstatsd/dogstatsd.go
+++ b/dogstatsd/dogstatsd.go
@@ -49,7 +49,7 @@ func (s sender) Histogram(stat string, value float64, tags ...string) {
// Timing implements xstats.Sender interface
func (s sender) Timing(stat string... | dogstatsd.Timing() incorrectly sending seconds as ms | rs_xstats | train |
ec0fade762135d179f16bf4f4b534b2979fa829e | diff --git a/test/k8sT/Services.go b/test/k8sT/Services.go
index <HASH>..<HASH> 100644
--- a/test/k8sT/Services.go
+++ b/test/k8sT/Services.go
@@ -54,6 +54,8 @@ var _ = Describe("K8sServicesTest", func() {
It("Check Service", func() {
demoDSPath := fmt.Sprintf("%s/demo.yaml", kubectl.ManifestsPath())
kubectl.Ap... | [Ginkgo] Fix issue with k8sT Service
If the service test fails it'll no delete the demo.yaml deployment so
others test may fail due invalid containers. Fixed it using a defer | cilium_cilium | train |
fde16169976a0645c445dfba460238077c93ec9c | diff --git a/common.go b/common.go
index <HASH>..<HASH> 100644
--- a/common.go
+++ b/common.go
@@ -598,23 +598,20 @@ func prepareCommand(command []string, workingDir string, outputStreamWriter io.W
func GetExecutableCommand(isSystemCommand bool, command ...string) *exec.Cmd {
if len(command) == 0 {
panic(errors.N... | changing the way to construct a runner command | getgauge_common | train |
7e10f38880fb0907d0bb61e996b76aedc6f1641e | diff --git a/activerecord/test/cases/migration/helper.rb b/activerecord/test/cases/migration/helper.rb
index <HASH>..<HASH> 100644
--- a/activerecord/test/cases/migration/helper.rb
+++ b/activerecord/test/cases/migration/helper.rb
@@ -2,12 +2,10 @@ require "cases/helper"
module ActiveRecord
class Migration
- c... | Initialize accessors to remove some warnings in Ruby <I> | rails_rails | train |
aae2a6cfdc916c38349ecfdadb1085575292047d | diff --git a/src/you_get/extractor/baidu.py b/src/you_get/extractor/baidu.py
index <HASH>..<HASH> 100755
--- a/src/you_get/extractor/baidu.py
+++ b/src/you_get/extractor/baidu.py
@@ -36,13 +36,18 @@ def baidu_download_lyric(sid, file_name, output_dir):
x.write(lrc)
def baidu_download_song(sid, outpu... | Baidu: fix download link from outside mainland China | soimort_you-get | train |
146f5590c575e088c08f323a041b435e9098fc39 | diff --git a/src/Error/ErrorHandler.php b/src/Error/ErrorHandler.php
index <HASH>..<HASH> 100644
--- a/src/Error/ErrorHandler.php
+++ b/src/Error/ErrorHandler.php
@@ -186,9 +186,11 @@ class ErrorHandler extends BaseErrorHandler
// Disable trace for internal errors.
$this->_config['trace'] = false;
... | Include file and line information in ErrorHandler
Related: #<I> | cakephp_cakephp | train |
3d59d5f3c41edbd95cd0380737261fbd025de57f | diff --git a/tests/plugin_tests.py b/tests/plugin_tests.py
index <HASH>..<HASH> 100644
--- a/tests/plugin_tests.py
+++ b/tests/plugin_tests.py
@@ -242,6 +242,7 @@ class AddCopySpecTests(unittest.TestCase):
def test_single_file(self):
self.mp.add_copy_spec('tests/tail_test.txt')
self.assert_expect... | [plugins] add an extra blank line for separation in plugin_tests | sosreport_sos | train |
265762ac38291909202b4a7fa2cd9d0571512532 | diff --git a/helpers/class.Precompilator.php b/helpers/class.Precompilator.php
index <HASH>..<HASH> 100644
--- a/helpers/class.Precompilator.php
+++ b/helpers/class.Precompilator.php
@@ -320,27 +320,29 @@ class tao_helpers_Precompilator
// $defaultMedia = array("\.jpg","\.jpeg","\.png","\.gif","\.mp3",'\.swf');
... | Regular expression in the item parser improved: it now matches all type media files in a single loop (instead of one loop for each type).
git-svn-id: <URL> | oat-sa_extension-tao-delivery | train |
bbc3c80a776d4c20e99a92c8061fbc37a25467e8 | diff --git a/lib/wgif.rb b/lib/wgif.rb
index <HASH>..<HASH> 100644
--- a/lib/wgif.rb
+++ b/lib/wgif.rb
@@ -3,6 +3,7 @@ require "wgif/download_bar"
require "wgif/downloader"
require "wgif/exceptions"
require "wgif/gif_maker"
+require "wgif/installer"
require "wgif/version"
require "wgif/video"
require "wgif/video_... | Add wgif install command. | ecmendenhall_wgif | train |
aa513ca7ae938ef8f19785fe88755780fd79ed08 | diff --git a/src/server/pps/server/api_server.go b/src/server/pps/server/api_server.go
index <HASH>..<HASH> 100644
--- a/src/server/pps/server/api_server.go
+++ b/src/server/pps/server/api_server.go
@@ -983,6 +983,17 @@ func (a *apiServer) DeletePipeline(ctx context.Context, request *pps.DeletePipel
}
if _, err :... | Move worker deletion to StopPipeline and DeletePipeline | pachyderm_pachyderm | train |
d119c001c1ee6202488421b70cd6530582ee24da | diff --git a/tests/bitExpert/Disco/Annotations/AliasUnitTest.php b/tests/bitExpert/Disco/Annotations/AliasUnitTest.php
index <HASH>..<HASH> 100644
--- a/tests/bitExpert/Disco/Annotations/AliasUnitTest.php
+++ b/tests/bitExpert/Disco/Annotations/AliasUnitTest.php
@@ -61,4 +61,27 @@ class AliasUnitTest extends TestCase
... | Add coverage for invalid service alias names | bitExpert_disco | train |
ac6375de4b78a97ad87c2da28da5791e7420f1cd | diff --git a/src/frontend/org/voltdb/processtools/ProcessData.java b/src/frontend/org/voltdb/processtools/ProcessData.java
index <HASH>..<HASH> 100644
--- a/src/frontend/org/voltdb/processtools/ProcessData.java
+++ b/src/frontend/org/voltdb/processtools/ProcessData.java
@@ -107,6 +107,16 @@ public class ProcessData {
... | More functionality for SSHTools, return a process data instead of a raw process. For PRO-<I> | VoltDB_voltdb | train |
fc7136529aac1988c1282e57faecc32cb883cf04 | diff --git a/Command/ServerCommand.php b/Command/ServerCommand.php
index <HASH>..<HASH> 100644
--- a/Command/ServerCommand.php
+++ b/Command/ServerCommand.php
@@ -7,6 +7,8 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\Outpu... | Mark service deprecated on supported versions, add trigger_error() | GeniusesOfSymfony_WebSocketBundle | train |
78c0226f6466da1a2e690d43066a8551260ff28c | diff --git a/ga4gh/datamodel/genotype_phenotype.py b/ga4gh/datamodel/genotype_phenotype.py
index <HASH>..<HASH> 100644
--- a/ga4gh/datamodel/genotype_phenotype.py
+++ b/ga4gh/datamodel/genotype_phenotype.py
@@ -277,10 +277,10 @@ class PhenotypeAssociationSet(AbstractPhenotypeAssociationSet):
elementClause = No... | Fixes evidence parsing and tests | ga4gh_ga4gh-server | train |
a445a120207dcfbc6a1ee384f330b2cd18007c3b | diff --git a/cake/tests/cases/libs/model/datasources/dbo/dbo_mysql.test.php b/cake/tests/cases/libs/model/datasources/dbo/dbo_mysql.test.php
index <HASH>..<HASH> 100644
--- a/cake/tests/cases/libs/model/datasources/dbo/dbo_mysql.test.php
+++ b/cake/tests/cases/libs/model/datasources/dbo/dbo_mysql.test.php
@@ -599,5 +59... | Implement tests for new dbo source methods for additional table and field parameters support | cakephp_cakephp | train |
720646f50aabde617815c1f942f62fe0b26957bb | diff --git a/src/Http/Controllers/Auth/UserController.php b/src/Http/Controllers/Auth/UserController.php
index <HASH>..<HASH> 100755
--- a/src/Http/Controllers/Auth/UserController.php
+++ b/src/Http/Controllers/Auth/UserController.php
@@ -5,17 +5,50 @@ namespace LibreEHR\FHIR\Http\Controllers\Auth;
use App\Http\Contro... | Add "endpoints" object to /user response (#<I>) | LibreHealthIO_lh-ehr-fhir-api | train |
48195e3b10da296a5fe641b1aa5a555f7b02b3e7 | diff --git a/lib/messaging/controls/metadata.rb b/lib/messaging/controls/metadata.rb
index <HASH>..<HASH> 100644
--- a/lib/messaging/controls/metadata.rb
+++ b/lib/messaging/controls/metadata.rb
@@ -6,16 +6,28 @@ module Messaging
::Messaging::Message::Metadata.build
end
- def self.source_ev... | Correlation metadata doesn't include position. Just stream name. | eventide-project_messaging | train |
09d8f77a5e566f1cbd7185a792f2d12acd4a15b1 | diff --git a/src/main/java/org/jusecase/executors/AbstractUsecaseExecutor.java b/src/main/java/org/jusecase/executors/AbstractUsecaseExecutor.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/jusecase/executors/AbstractUsecaseExecutor.java
+++ b/src/main/java/org/jusecase/executors/AbstractUsecaseExecutor.java
@... | Exception is thrown if no usecase could be resolved. | casid_jusecase | train |
84c8ba677d4f27b2a02c9e1bae5e9d0356575338 | diff --git a/src/Utils/BufferedQuery.php b/src/Utils/BufferedQuery.php
index <HASH>..<HASH> 100644
--- a/src/Utils/BufferedQuery.php
+++ b/src/Utils/BufferedQuery.php
@@ -199,7 +199,7 @@ class BufferedQuery
* treated differently, because of the preceding backslash, it will
* be ignored.
... | Fix parsing of query with \
The previous fix was wrong, it didn't properly handle double escaping.
Fixes <URL> | phpmyadmin_sql-parser | train |
b45d86763da98716049a0330e9a707f0dfc7f2b5 | diff --git a/src/client/bitswap.js b/src/client/bitswap.js
index <HASH>..<HASH> 100644
--- a/src/client/bitswap.js
+++ b/src/client/bitswap.js
@@ -5,6 +5,8 @@ import { isBigJson, bigFromJson } from '../serialization/big'
export default function (opts) {
return {
+ ledger: callbackify.variadic(caller('ipfs.bits... | speculatively adds remaining bitswap functions based on API docs | ipfs-shipyard_ipfs-postmsg-proxy | train |
574e6f3ae50978066e6b20110e83603f5de2a164 | diff --git a/pyrsistent.py b/pyrsistent.py
index <HASH>..<HASH> 100644
--- a/pyrsistent.py
+++ b/pyrsistent.py
@@ -1269,6 +1269,21 @@ class _PListBase(object):
return result
__reversed__ = reverse
+ def split(self, index):
+ left_list = _EMPTY_PLIST
+ right_list = self
+ i = 0
+ ... | More work on balancing when popping deque | tobgu_pyrsistent | train |
b93ae85cbd397503ee28eca77ad8e15865696f8b | diff --git a/merb-gen/app_generators/merb/templates/autotest/merb_rspec.rb b/merb-gen/app_generators/merb/templates/autotest/merb_rspec.rb
index <HASH>..<HASH> 100644
--- a/merb-gen/app_generators/merb/templates/autotest/merb_rspec.rb
+++ b/merb-gen/app_generators/merb/templates/autotest/merb_rspec.rb
@@ -168,10 +168,1... | Added a small fix to autotest/merb_rspec.rb template
spec_commands method could fail to find a spec command.
Now it also tries to get the output of `which spec` as a last resort. | wycats_merb | train |
5f27c4c701b42c4a130708e6883f2e578c325cda | diff --git a/qunit/qunit.js b/qunit/qunit.js
index <HASH>..<HASH> 100644
--- a/qunit/qunit.js
+++ b/qunit/qunit.js
@@ -1060,9 +1060,9 @@ QUnit.jsDump = (function() {
name:'name',
'class':'className'
},
- HTML:true,//if true, entities are escaped ( <, >, \t, space and \n )
+ HTML:false,//if true, entities a... | Added test for jsDump and modified its options to properly output results when document.createTextNode is used; currently tests for DOM elements cause a stackoverflow error in IEs, works fine, with the correct output, elsewhere | JamesMGreene_qunit-assert-html | train |
4246661ca0fece6db919bfe08748ed2ec25c206b | diff --git a/cocaine/services/base.py b/cocaine/services/base.py
index <HASH>..<HASH> 100644
--- a/cocaine/services/base.py
+++ b/cocaine/services/base.py
@@ -84,7 +84,6 @@ class AbstractService(object):
self.name = name
self._stream = None
- self._decoder = None
self._counter = it... | Simplifying determining service's state logic.
* also dropped no longer required class field - decoder. It is now part of stream. | cocaine_cocaine-framework-python | train |
7bfcea9443f19d0c8605cedc681c7eb6d302b657 | diff --git a/tests/unit/resources/networking/test_logical_interconnect_groups.py b/tests/unit/resources/networking/test_logical_interconnect_groups.py
index <HASH>..<HASH> 100644
--- a/tests/unit/resources/networking/test_logical_interconnect_groups.py
+++ b/tests/unit/resources/networking/test_logical_interconnect_gro... | changing variables in camelcase to python style | HewlettPackard_python-hpOneView | train |
468886a77b4b16b44bdb34abba0900bc9231cc31 | diff --git a/framework/db/Query.php b/framework/db/Query.php
index <HASH>..<HASH> 100644
--- a/framework/db/Query.php
+++ b/framework/db/Query.php
@@ -521,7 +521,7 @@ class Query extends Component implements QueryInterface
*
* @inheritdoc
*
- * @param string|array $condition the conditions that sh... | small refactoring for #<I> | yiisoft_yii2 | train |
1f0cefec756efdaf96109c2c4ea08c93860cabd3 | diff --git a/lib/client.js b/lib/client.js
index <HASH>..<HASH> 100644
--- a/lib/client.js
+++ b/lib/client.js
@@ -242,7 +242,7 @@ class Client extends EventEmitter {
const {records, matched, returned} = await fetchRecords(options)
const recordOptions = {...options, elementSetName: 'full'}
re... | Fix harvesting for progressive-element-set-name | geodatagouv_csw-client | train |
dcc73a27864c2f21f16c97b000e7168653206a2e | diff --git a/Auth/OpenID/Message.php b/Auth/OpenID/Message.php
index <HASH>..<HASH> 100644
--- a/Auth/OpenID/Message.php
+++ b/Auth/OpenID/Message.php
@@ -796,6 +796,25 @@ class Auth_OpenID_Message {
return false;
}
}
+
+ function getAliasedArg($aliased_key, $default = null)
+ {
+ ... | [project @ Added Auth_OpenID_Message:getAliasedArg] | openid_php-openid | train |
81f0e8284a86193c0fefbaa8e1e876b13a5e816d | diff --git a/lib/rest/RequestHandler.js b/lib/rest/RequestHandler.js
index <HASH>..<HASH> 100644
--- a/lib/rest/RequestHandler.js
+++ b/lib/rest/RequestHandler.js
@@ -44,6 +44,9 @@ class RequestHandler {
if(method === "DELETE" && route.endsWith("/messages/:id")) { // Delete Messsage endpoint has its own rateli... | "Fix" reaction ratelimiting
Ratelimit for all reaction routes is shared across the entire account | abalabahaha_eris | train |
ffd2a032763e2b696d957756d75d660660a47057 | diff --git a/configargparse.py b/configargparse.py
index <HASH>..<HASH> 100644
--- a/configargparse.py
+++ b/configargparse.py
@@ -855,6 +855,12 @@ class ArgumentParser(argparse.ArgumentParser):
errno, msg = e.args
else:
msg = str(e)
+ # close pr... | Close previously opened config files upon error.
ArgumentParser._open_config_files() opens multiple configuration files, and returns the file streams. If one of the file open() operations fail, and exception is raised. E.g. file not found.
However, this never returns nor closes the previously opened files, leaving dan... | bw2_ConfigArgParse | train |
82a054966f674ebfcac792a3bca475bd1d02e14b | diff --git a/Database/Model.php b/Database/Model.php
index <HASH>..<HASH> 100644
--- a/Database/Model.php
+++ b/Database/Model.php
@@ -330,6 +330,7 @@ class Model
{
// Current models class
$class = new \ReflectionClass(get_called_class());
+ $namespace = $class->getNamespaceName();
... | Changes to how relation model and class are set. | nirix_radium | train |
065d8ba907f17dec653680094929143051200cd8 | diff --git a/src/sap.m/src/sap/m/ComboBox.js b/src/sap.m/src/sap/m/ComboBox.js
index <HASH>..<HASH> 100644
--- a/src/sap.m/src/sap/m/ComboBox.js
+++ b/src/sap.m/src/sap/m/ComboBox.js
@@ -493,6 +493,7 @@ sap.ui.define([
ComboBoxBase.prototype.exit.apply(this, arguments);
this._oSelectedItemBeforeOpen = null;
+... | [FIX] sap.m.ComboBox: Focused item styles adjusted
Prevents .sapMLIBFocused from being added on input.
BCP: <I>
Change-Id: Id<I>e<I>b<I>bc<I>e<I>b3a5c<I> | SAP_openui5 | train |
788f5f9f8c58040dea82c8d79aedd9dc6b32a9ea | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -513,8 +513,9 @@ module.exports = {
description: 'Option that compares to pushVar to determine if it\'s okay to push'
}],
run: function (options, rawArgs) {
- if (!process.env.RO_GH_TOKEN ... | Run ember test if no VISUAL_ACCEPTANCE_TOKEN found | ciena-blueplanet_ember-cli-visual-acceptance | train |
243e600bd01a95f26f435dbf51eba55833923892 | diff --git a/src/cc/Application.php b/src/cc/Application.php
index <HASH>..<HASH> 100644
--- a/src/cc/Application.php
+++ b/src/cc/Application.php
@@ -56,20 +56,13 @@ namespace CloudControl\Cms\cc {
$this->request = new Request();
- $whoops = new Run;
- $whoops->pushHandler(new Pr... | Minor refactor to constructor of Application | jenskooij_cloudcontrol | train |
a92df19abdef4ae9d7fa729c98aa62188bb89e04 | diff --git a/schema/array.go b/schema/array.go
index <HASH>..<HASH> 100644
--- a/schema/array.go
+++ b/schema/array.go
@@ -43,13 +43,13 @@ func (s *ArrayField) Attribute(name string) interface{} {
}
func (s *ArrayField) Definition(scope map[QualifiedName]interface{}) (interface{}, error) {
+ def := copyDefinition(s... | schema: avoid mutating objects in Definition (#<I>)
This is an alternative to #<I> to fix #<I> that may be
considered preferable.
The Definition method doesn't _need_ to mutate its receiver.
Instead of doing that, which is problematic in a concurrent
scenario, copy the definition before mutating it. | actgardner_gogen-avro | train |
f86bcb98d1d05b085bd43197ac595c88a2a414e5 | diff --git a/src/share/classes/com/sun/tools/javac/code/TypeAnnotations.java b/src/share/classes/com/sun/tools/javac/code/TypeAnnotations.java
index <HASH>..<HASH> 100644
--- a/src/share/classes/com/sun/tools/javac/code/TypeAnnotations.java
+++ b/src/share/classes/com/sun/tools/javac/code/TypeAnnotations.java
@@ -434,7... | Fix a counting error when determining inner class annotations. | wmdietl_jsr308-langtools | train |
4b0814e3f3ff97e2bba37899e3d63d1628c6b277 | diff --git a/doc/usage.rst b/doc/usage.rst
index <HASH>..<HASH> 100644
--- a/doc/usage.rst
+++ b/doc/usage.rst
@@ -12,9 +12,9 @@ There are two methods of invoking Rocket. The first is the native method which
::
from rocket import Rocket
- from wsgiref import demo_app
+ from wsgiref.simple_server imp... | Fixed inaccurate documentation.
Added a check to make sure the supplied WSGI app is callable.
Set the example to better match the documentation. | explorigin_Rocket | train |
3f7990bf03450e21ed0e10b06a04a9ad65272502 | diff --git a/pylib/aeon/opx/device.py b/pylib/aeon/opx/device.py
index <HASH>..<HASH> 100644
--- a/pylib/aeon/opx/device.py
+++ b/pylib/aeon/opx/device.py
@@ -35,8 +35,8 @@ class Device(BaseDevice):
good, got = self.api.execute([
'hostname',
- """grep -oP '^OS_VERSION="\K.*\d' /etc/OP... | Bugfix opx version string (#<I>)
* Update OPX version regex to handle some versions of OPX that do not
enclose the version in quotes. | Apstra_aeon-venos | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.