hash stringlengths 40 40 | diff stringlengths 172 2.63k | message stringlengths 12 593 | project stringlengths 7 65 | split stringclasses 1
value | diff_languages stringclasses 54
values |
|---|---|---|---|---|---|
e72200046982e390b0a5a7119eabcb230e81afd8 | diff --git a/ibis/backends/tests/test_join.py b/ibis/backends/tests/test_join.py
index <HASH>..<HASH> 100644
--- a/ibis/backends/tests/test_join.py
+++ b/ibis/backends/tests/test_join.py
@@ -133,17 +133,11 @@ def test_mutating_join(backend, con, batting, awards_players, how):
[
param(
"semi",... | test: remove notimpl for impala and clickhouse for test_filtering_join
woohoo! | ibis-project_ibis | train | py |
4e162074537d03110e5641cccf44a49ef6113bcc | diff --git a/framework/core/js/src/forum/components/Post.js b/framework/core/js/src/forum/components/Post.js
index <HASH>..<HASH> 100644
--- a/framework/core/js/src/forum/components/Post.js
+++ b/framework/core/js/src/forum/components/Post.js
@@ -66,8 +66,8 @@ export default class Post extends Component {
... | fix: clicking three dots on post opens all dropdowns in `.Post-actions` (#<I>) | flarum_core | train | js |
5a37197a3ab44072067fe57f85d20a88ddd0daf5 | diff --git a/api/src/opentrons/commands/module_commands.py b/api/src/opentrons/commands/module_commands.py
index <HASH>..<HASH> 100644
--- a/api/src/opentrons/commands/module_commands.py
+++ b/api/src/opentrons/commands/module_commands.py
@@ -92,7 +92,7 @@ def thermocycler_execute_profile(
) -> command_types.Thermocyc... | fix(api): add missing f-string to thermocycler profile command text (#<I>)
Closes #<I> | Opentrons_opentrons | train | py,py |
38e52d533c8a5fd03dc6e43bd3b6245810d0ad7e | diff --git a/demo/index.js b/demo/index.js
index <HASH>..<HASH> 100644
--- a/demo/index.js
+++ b/demo/index.js
@@ -188,7 +188,6 @@ function FullyControlledOnClick() {
interactive={true}
trigger="manual"
visible={isOpen}
- hideOnClick={false}
onClickOutside={close}
>
<button ... | fix: set hideOnClick false by default in controlled mode | atomiks_tippy.js-react | train | js,js |
bb2eb8a47fd0fd1721e5bbbe468b0266e29ff403 | diff --git a/src/resources/views/character/intel/summary.blade.php b/src/resources/views/character/intel/summary.blade.php
index <HASH>..<HASH> 100644
--- a/src/resources/views/character/intel/summary.blade.php
+++ b/src/resources/views/character/intel/summary.blade.php
@@ -153,7 +153,7 @@
</thead>
... | fix(deps): use new offset helper | eveseat_web | train | php |
313c56b7f6e58eac3468fd028bf573185a5a671d | diff --git a/docs/js/main.js b/docs/js/main.js
index <HASH>..<HASH> 100644
--- a/docs/js/main.js
+++ b/docs/js/main.js
@@ -67,6 +67,7 @@ window.onload = function () {
// Download
if (typeof download.download === 'undefined') {
download.className += ' disabled';
+ download.title = 'Your browser does not su... | docs: add download note for outdated browsers | fengyuanchen_cropperjs | train | js |
04e7f555e1401513b69218e8bab8b07c12419b13 | diff --git a/lib/Bacon/App.php b/lib/Bacon/App.php
index <HASH>..<HASH> 100644
--- a/lib/Bacon/App.php
+++ b/lib/Bacon/App.php
@@ -100,6 +100,11 @@ class App
} catch (Exceptions\RouterException $e) {
$this->log->debug($e->getMessage());
+
+ if (!empty($this->config->spa)) {
+ # Route all not found cont... | feat(router): added SPA flag, to route all to root controller | Brainsware_bacon | train | php |
33ea42f3f7ad783088b19090d7aa576617cf68d5 | diff --git a/views/js/controller/creator/views/test.js b/views/js/controller/creator/views/test.js
index <HASH>..<HASH> 100644
--- a/views/js/controller/creator/views/test.js
+++ b/views/js/controller/creator/views/test.js
@@ -160,7 +160,7 @@ function($, _, __, hider, feedback, defaults, actions, testPartView, template... | fix: update index in new test part | oat-sa_extension-tao-testqti | train | js |
5bc68d590d9b933172d12ca4811239f35116f37e | diff --git a/odoa.py b/odoa.py
index <HASH>..<HASH> 100644
--- a/odoa.py
+++ b/odoa.py
@@ -24,8 +24,13 @@ SOFTWARE.
import sys
import json
import random
-import urllib2
import traceback
+try:
+ # For Python 3.0 and later
+ from urllib.request import urlopen
+except ImportError:
+ # Fall back to Python 2's ... | feat: Add python 3 support | Keda87_python-quran-odoa | train | py |
39309ab6da907f605563f870afc146fec8505683 | diff --git a/commitlint.config.js b/commitlint.config.js
index <HASH>..<HASH> 100644
--- a/commitlint.config.js
+++ b/commitlint.config.js
@@ -3,9 +3,7 @@
module.exports = {
rules: {
'body-leading-blank': [2, 'always'],
- 'body-max-line-length': [2, 'always', 72],
'footer-leading-blank': [2, 'always'],... | chore: Do not restrict lines length in body | serverless_serverless | train | js |
3065af0930d6b044b3889c1b79ecd447834b48e3 | diff --git a/app/examples/dynamic-linechart/index.js b/app/examples/dynamic-linechart/index.js
index <HASH>..<HASH> 100644
--- a/app/examples/dynamic-linechart/index.js
+++ b/app/examples/dynamic-linechart/index.js
@@ -1,10 +1,9 @@
import LineChart from '../../../src/candela/components/LineChart';
-import Events from ... | fix(DynamicLineChart): update DynamicLineChart example to work again
(1) Remove Events mixin from DynamicLineChart. (2) Use Vega data update API to make dynamic updates. | Kitware_candela | train | js |
5223064f4bcc02bb42986dd2ba95e72d67bbcdc4 | diff --git a/src/View/Tags/InlineSvg.js b/src/View/Tags/InlineSvg.js
index <HASH>..<HASH> 100644
--- a/src/View/Tags/InlineSvg.js
+++ b/src/View/Tags/InlineSvg.js
@@ -99,6 +99,7 @@ module.exports = function (BaseTag) {
* @return {void}
*/
compile (compiler, lexer, buffer, { body, childs, lineno }) {
+ ... | fix(view): fix inlineSvg tag by escaping backslash | adonisjs_adonis-framework | train | js |
99746ed5a7525a4c24109c05b2f2c243b752ed6a | diff --git a/schedula/dispatcher.py b/schedula/dispatcher.py
index <HASH>..<HASH> 100644
--- a/schedula/dispatcher.py
+++ b/schedula/dispatcher.py
@@ -570,7 +570,7 @@ class Dispatcher(Base):
try: # Set function name.
function_name = func.__name__
except AttributeError as ex:
... | feat(dispatcher): Avoid failure when functions does not have the name. | vinci1it2000_schedula | train | py |
9b4e32ec9b04531a603aaa7a53916abd2b13b343 | diff --git a/src/test/java/io/appium/java_client/ios/IOSNativeWebTapSettingTest.java b/src/test/java/io/appium/java_client/ios/IOSNativeWebTapSettingTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/io/appium/java_client/ios/IOSNativeWebTapSettingTest.java
+++ b/src/test/java/io/appium/java_client/ios/IOSNative... | chore: Ignore the test which has a connected server issue (#<I>) | appium_java-client | train | java |
97b0508ce16775b1125bc35c72f800947ea2be05 | diff --git a/lib/rethink.js b/lib/rethink.js
index <HASH>..<HASH> 100644
--- a/lib/rethink.js
+++ b/lib/rethink.js
@@ -81,6 +81,9 @@ exports.initialize = function initializeDataSource(dataSource, callback) {
};
RethinkDB.prototype.connect = function(cb) {
+ if(!this.db) {
+ this.db = r;
+ }
cb(); ... | feat(app): Expose the driver on the db property of the connector | Yoobic_loopback-connector-rethinkdbdash | train | js |
c81e9dcb66a727ae52a0baf892a18a0e1cd17530 | diff --git a/packages/key-facts/src/key-facts-text.js b/packages/key-facts/src/key-facts-text.js
index <HASH>..<HASH> 100644
--- a/packages/key-facts/src/key-facts-text.js
+++ b/packages/key-facts/src/key-facts-text.js
@@ -3,7 +3,7 @@ import { Text } from "react-native";
import { TextLink } from "@times-components/lin... | fix: fix key facts ast prop warning (#<I>) | newsuk_times-components | train | js |
82dee82bfde4bfc83ba90d8a17c13a075ee13e8c | diff --git a/server/peer_server.go b/server/peer_server.go
index <HASH>..<HASH> 100644
--- a/server/peer_server.go
+++ b/server/peer_server.go
@@ -40,7 +40,7 @@ const (
)
const (
- peerModeFlag = 0
+ peerModeFlag = 0
standbyModeFlag = 1
)
diff --git a/server/registry.go b/server/registry.go
index <HASH>..<... | chore: gofmt go files | etcd-io_etcd | train | go,go |
a74eabb1a14b4f1af4ac142c2ee55406c08cd117 | diff --git a/lib/config/definitions.js b/lib/config/definitions.js
index <HASH>..<HASH> 100644
--- a/lib/config/definitions.js
+++ b/lib/config/definitions.js
@@ -60,7 +60,7 @@ const options = [
'Whether CLI configuration options should be moved to the `force` config section',
stage: 'global',
type: 'b... | fix: Revert "feat: default forceCli to true"
This reverts commit <I>d6f<I>e0cf<I>d7fb6ccaa<I>fffe<I>bc5. | renovatebot_renovate | train | js |
f4668c46ad90dce6f20eee9fcad9d76616c92aae | diff --git a/karma.conf.js b/karma.conf.js
index <HASH>..<HASH> 100644
--- a/karma.conf.js
+++ b/karma.conf.js
@@ -8,7 +8,7 @@ module.exports = function(config) {
plugin: [['tsify', JSON.parse(fs.readFileSync('./tsconfig.json', 'utf8')).compilerOptions]],
transform: ['brfs'],
},
- browsers: ['Chro... | chore: run unit tests in chrome only | mapillary_mapillary-js | train | js |
e8e2682e3ab5900afd5c8cb0b1bfea8766d9a059 | diff --git a/core/src/main/java/com/dtolabs/rundeck/core/execution/workflow/BaseWorkflowExecutor.java b/core/src/main/java/com/dtolabs/rundeck/core/execution/workflow/BaseWorkflowExecutor.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/dtolabs/rundeck/core/execution/workflow/BaseWorkflowExecutor.java
+++ ... | fix: step context captured data should export to global context | rundeck_rundeck | train | java |
72da4ade03ad8b5f92efaa2618856fec8c2ddb78 | diff --git a/lib/crawler.js b/lib/crawler.js
index <HASH>..<HASH> 100644
--- a/lib/crawler.js
+++ b/lib/crawler.js
@@ -75,6 +75,7 @@ class Crawler {
this._preventNewTabs(),
this._authenticate(),
this._emulate(),
+ this._setViewport(),
this._setCacheEnabled(),
this._setUserAgent()... | feat(crawler): support page.setViewport method | yujiosaka_headless-chrome-crawler | train | js |
2180e2f60e9835f79a8917478946e38c6475dc12 | diff --git a/src/components/FileSelector/index.js b/src/components/FileSelector/index.js
index <HASH>..<HASH> 100644
--- a/src/components/FileSelector/index.js
+++ b/src/components/FileSelector/index.js
@@ -225,7 +225,7 @@ FileSelector.propTypes = {
/** Shows the help message below the input. */
bottomHelpTex... | fix: placeholder type on fileselector (#<I>) | 90milesbridge_react-rainbow | train | js |
7cdc14ddf5a069e9ef77ee9a32d0cac65b18a61e | diff --git a/docusaurus/docusaurus.config.js b/docusaurus/docusaurus.config.js
index <HASH>..<HASH> 100644
--- a/docusaurus/docusaurus.config.js
+++ b/docusaurus/docusaurus.config.js
@@ -76,7 +76,8 @@ module.exports = {
sidebarPath: require.resolve('./sidebars.js'),
// Please change this to your... | fix(dinosaurdocs): fixes broken editUrl | Availity_availity-react | train | js |
eb3514b6a19b48e3559e77d6b025040e5d2a810c | diff --git a/src/utils/log.js b/src/utils/log.js
index <HASH>..<HASH> 100644
--- a/src/utils/log.js
+++ b/src/utils/log.js
@@ -6,6 +6,7 @@ export function log (...args) {
process.env.DEBUG === '*' ||
process.env.DEBUG === 'isomorphic-git' ||
(typeof window !== 'undefined' &&
+ typeof window.... | fix: reference to window.localStorage broke WebWorker (#<I>) | isomorphic-git_isomorphic-git | train | js |
27c5a8093ca83b226ff56293ff33cbab6e92606d | diff --git a/packages/mangojuice-core/src/core/run/mount.js b/packages/mangojuice-core/src/core/run/mount.js
index <HASH>..<HASH> 100644
--- a/packages/mangojuice-core/src/core/run/mount.js
+++ b/packages/mangojuice-core/src/core/run/mount.js
@@ -79,9 +79,9 @@
* unmount a view using {@link Mounter#un... | fix(core): mount function (need to add eslint!) | mangojuicejs_mangojuice | train | js |
a411eeb45f09df66af2478d775a70fca45d6b14d | diff --git a/src/dag-node/addNamedLink.js b/src/dag-node/addNamedLink.js
index <HASH>..<HASH> 100644
--- a/src/dag-node/addNamedLink.js
+++ b/src/dag-node/addNamedLink.js
@@ -11,7 +11,7 @@
* @param {numner} position - The position within the array of links
*/
const addNamedLink = (object, name, position) => {
- c... | fix: actually use object keys
The code was wrong, it didn't actually use the keys of the object.
This also broke things in Browser environments.
Fixes <URL> | ipld_js-ipld-dag-pb | train | js |
ad03d261405684c9fd43cfbe38b113cca9417618 | diff --git a/gulpfile.js/config/default.js b/gulpfile.js/config/default.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js/config/default.js
+++ b/gulpfile.js/config/default.js
@@ -20,7 +20,7 @@ var config = {
},
license: {
src: [
- 'node/**/*.js', 'browser/**... | fix: missing lib/util during release | adoyle-h_eslint-config-adoyle-style | train | js |
cdb6091a2216786faf63f10ccb39ce6f7ab8d990 | diff --git a/lib/platform/aws-lambda/index.js b/lib/platform/aws-lambda/index.js
index <HASH>..<HASH> 100644
--- a/lib/platform/aws-lambda/index.js
+++ b/lib/platform/aws-lambda/index.js
@@ -200,7 +200,7 @@ class PlatformLambda {
} else if (body.event === 'workerError') {
this.events.emit(body.event... | fix(lambda): include reason in error messages for worker errors | artilleryio_artillery | train | js |
74fbc90329639523581617c693a04f4b6a4a797a | diff --git a/src/MySQL.js b/src/MySQL.js
index <HASH>..<HASH> 100644
--- a/src/MySQL.js
+++ b/src/MySQL.js
@@ -72,6 +72,23 @@ function completeDoc($, rows, doc) {
case 'default, range':
doc.default = cleaner.cleanDefault(value.text().trim());
break;
+ case 'type... | feat: support 'type: default, range' in MySQL pages | williamdes_mariadb-mysql-kbs | train | js |
435c268a70bbea3225543eeda2ed0e037a8c79d6 | diff --git a/packages/cozy-client/src/dsl.js b/packages/cozy-client/src/dsl.js
index <HASH>..<HASH> 100644
--- a/packages/cozy-client/src/dsl.js
+++ b/packages/cozy-client/src/dsl.js
@@ -44,6 +44,9 @@ export class QueryDefinition {
}
include(includes) {
+ if (!Array.isArray(includes)) {
+ throw new Erro... | feat(dsl): include() throws helpful error if called with wrong args | cozy_cozy-client | train | js |
9db25b15425af46f5f726bd86bd4c2ea687f94ff | diff --git a/test/12-integration-tests.js b/test/12-integration-tests.js
index <HASH>..<HASH> 100644
--- a/test/12-integration-tests.js
+++ b/test/12-integration-tests.js
@@ -320,14 +320,14 @@ describe('Integration tests', () => {
})
)
));
- it('Should pass bran... | test(branch-validation): fix test | inikulin_publish-please | train | js |
176b3e96a78c4590f42817e6dcf44addcc49a13f | diff --git a/src/directive/translate.js b/src/directive/translate.js
index <HASH>..<HASH> 100644
--- a/src/directive/translate.js
+++ b/src/directive/translate.js
@@ -36,10 +36,10 @@ angular.module('pascalprecht.translate')
.config(function ($translateProvider) {
- $translateProvider.translations({
+ ... | fix(docs): fix example in directive ngdoc-documentation (fixes #<I>) | angular-translate_angular-translate | train | js |
718ca02498bc4d34cfff2fbb16b4b45c31ca63bc | diff --git a/gulpfile.babel.js b/gulpfile.babel.js
index <HASH>..<HASH> 100755
--- a/gulpfile.babel.js
+++ b/gulpfile.babel.js
@@ -338,8 +338,8 @@ gulp.task('core-dts-test', (argv['skip-build'] ? [] : ['core']), (done) => {
////////////////////////////////////////
gulp.task('unit-test',
[].concat(
- argv['skip-... | chore(gulpfile): Suppress `core-dts-test` temporarily. | OnsenUI_OnsenUI | train | js |
443b0562774e1ade2a396ced7e5c60b3e7da6234 | diff --git a/packages/react/src/elements/components/Notification/__gemini__/Notifications.gemini.js b/packages/react/src/elements/components/Notification/__gemini__/Notifications.gemini.js
index <HASH>..<HASH> 100644
--- a/packages/react/src/elements/components/Notification/__gemini__/Notifications.gemini.js
+++ b/pack... | test: increase tolerance
Small differences in placeholder text can easily generate false negatives | Autodesk_hig | train | js |
2f62e4531cda02a3a48448212b82b287cf6426c3 | diff --git a/app/actionTypes.js b/app/actionTypes.js
index <HASH>..<HASH> 100644
--- a/app/actionTypes.js
+++ b/app/actionTypes.js
@@ -21,7 +21,6 @@ export const EDITOR_SWITCH_PATCH = 'EDITOR_SWITCH_PATCH';
export const TAB_OPEN = 'TAB_OPEN';
export const TAB_CLOSE = 'TAB_CLOSE';
-export const TAB_SWITCH = 'TAB_SWI... | fix(tabs): remove unneeded props from state (activeTab === currentPatchId) | xodio_xod | train | js,js |
990ef8de05a695b363d0d2027f02e1959634f8ac | diff --git a/webapps/ui/common/tests/test-helper.js b/webapps/ui/common/tests/test-helper.js
index <HASH>..<HASH> 100644
--- a/webapps/ui/common/tests/test-helper.js
+++ b/webapps/ui/common/tests/test-helper.js
@@ -86,8 +86,25 @@ module.exports = function (operations, noReset, done) {
return;
}
... | chore(tests): make test helper more stable | camunda_camunda-bpm-platform | train | js |
d584c3502744462f5e775d24e96be9ed51a82f46 | diff --git a/packages/test/jest-config/index.js b/packages/test/jest-config/index.js
index <HASH>..<HASH> 100644
--- a/packages/test/jest-config/index.js
+++ b/packages/test/jest-config/index.js
@@ -3,4 +3,5 @@ module.exports = {
transform: {
'^.+\\.jsx?$': require.resolve('./transformer'),
},
+ clearMocks:... | feat(jest-config): always clear mocks between tests
BREAKING CHANGE: Mocks are now always cleared between tests | goldwasserexchange_public | train | js |
b05db6f9ea44caab19b49f89dc979d793d499b71 | diff --git a/lib/instrumentation/span.js b/lib/instrumentation/span.js
index <HASH>..<HASH> 100644
--- a/lib/instrumentation/span.js
+++ b/lib/instrumentation/span.js
@@ -7,6 +7,8 @@ var parsers = require('../parsers')
var stackman = require('../stackman')
var Timer = require('./timer')
+const TEST = process.env.EL... | perf: use constant to store test boolean (#<I>)
I'm not sure makes much if any difference in the real world, but it
makes me feel better :D | elastic_apm-agent-nodejs | train | js |
a67706abb5e0ae31b6af91534c1f2b8e16b47ca5 | diff --git a/lib/array/reduce.js b/lib/array/reduce.js
index <HASH>..<HASH> 100644
--- a/lib/array/reduce.js
+++ b/lib/array/reduce.js
@@ -27,14 +27,14 @@ module.exports = function reduceClosure(nativeReduce) {
let i = 0;
const iMax = array.length;
let accumulator = initialValue;
-
+ ... | fix(reduce): Fix undefined bug in Array.reduce | kb-dev_sanic.js | train | js |
c3aebb14bf9b56d99039fb4fd69beaf33eeba8be | diff --git a/tests/schema.py b/tests/schema.py
index <HASH>..<HASH> 100644
--- a/tests/schema.py
+++ b/tests/schema.py
@@ -4,7 +4,7 @@
#
# pylint: disable=missing-docstring, invalid-name, protected-access
# pylint: disable=bare-except
-from __future__ import absolute_import
+from __future__ import absolute_import, p... | fix: add missing import, print_function from __future__ | ssato_python-anyconfig | train | py |
b4b088ded71a29561f86ab72a00c43eff7ff45a3 | diff --git a/webpack.config.js b/webpack.config.js
index <HASH>..<HASH> 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -60,10 +60,11 @@ module.exports = function makeWebpackConfig() {
config.plugins = [
new webpack.optimize.DedupePlugin()
- /*, new webpack.optimize.UglifyJsPlugin({
+ ... | chore(webpack): added compression | BioPhoton_angular1-star-rating | train | js |
24dd282f62983868b2f686d752f813db1275a57a | diff --git a/ruby/server/lib/roma/command/receiver.rb b/ruby/server/lib/roma/command/receiver.rb
index <HASH>..<HASH> 100644
--- a/ruby/server/lib/roma/command/receiver.rb
+++ b/ruby/server/lib/roma/command/receiver.rb
@@ -59,7 +59,7 @@ module Roma
# version
def ev_version(s)
- send_data("VERSION... | refactor:improve a version command result. | roma_roma | train | rb |
1f4dffae00028cb94cf9c8c38dc7f301bd6bb612 | diff --git a/src/components/ebay-fake-menu-button/fake-menu-button.stories.js b/src/components/ebay-fake-menu-button/fake-menu-button.stories.js
index <HASH>..<HASH> 100644
--- a/src/components/ebay-fake-menu-button/fake-menu-button.stories.js
+++ b/src/components/ebay-fake-menu-button/fake-menu-button.stories.js
@@ -1... | fix(fake-menu-button): added href to stories | eBay_ebayui-core | train | js |
ee1b670ec9d8c543f454a26b2cf3b0a64a14dbf8 | diff --git a/providers/providers_test.go b/providers/providers_test.go
index <HASH>..<HASH> 100644
--- a/providers/providers_test.go
+++ b/providers/providers_test.go
@@ -88,8 +88,8 @@ func TestProvidersSerialization(t *testing.T) {
t.Fatal("failed to load set correctly")
}
- if pt1 != lt1 {
- t.Fatal("time was... | fix: go<I> monotonic time is not symetric across serialization using == | libp2p_go-libp2p-kad-dht | train | go |
66f289836de20e4c47e9adaaa5f2be9170a409d9 | diff --git a/lib/Serverless.js b/lib/Serverless.js
index <HASH>..<HASH> 100644
--- a/lib/Serverless.js
+++ b/lib/Serverless.js
@@ -36,6 +36,11 @@ class Serverless {
} else if (configObject.configurationPath === undefined) {
this._shouldResolveConfigurationInternally = true;
}
+ // Due to design flaw... | refactor: Ensure no side effects from config properties | serverless_serverless | train | js |
f1f3e55ef76dd9a7280d49b4bd62357390222a55 | diff --git a/src/loader.js b/src/loader.js
index <HASH>..<HASH> 100644
--- a/src/loader.js
+++ b/src/loader.js
@@ -5,7 +5,7 @@ import * as BufferLayout from 'buffer-layout';
import {Account} from './account';
import {PublicKey} from './publickey';
import {NUM_TICKS_PER_SECOND} from './timing';
-import {Transaction} ... | fix: load programs in larger chunks | solana-labs_solana-web3.js | train | js |
a4a5cd30c67170cabca16a5c6bfea818858b692f | diff --git a/src/Exscript/external/otp/otp.py b/src/Exscript/external/otp/otp.py
index <HASH>..<HASH> 100644
--- a/src/Exscript/external/otp/otp.py
+++ b/src/Exscript/external/otp/otp.py
@@ -91,7 +91,7 @@ def generate(passphrase, seed,
hashmodule = _HASHMODULE[hashfunction]
folder = _FOLDFUNCTION[hashfunction... | fix: don't lower case the seed on OTP | knipknap_exscript | train | py |
a4632092a5336a1c738f3a97d5e7bb01954d58cb | diff --git a/tests/unit/remote/ssh/test_ssh.py b/tests/unit/remote/ssh/test_ssh.py
index <HASH>..<HASH> 100644
--- a/tests/unit/remote/ssh/test_ssh.py
+++ b/tests/unit/remote/ssh/test_ssh.py
@@ -3,7 +3,8 @@ import os
from unittest import TestCase
-from mock import patch, mock_open
+import mock
+from mock import pa... | test: ssh: add mock_open compat version | iterative_dvc | train | py |
ab4b806308abec5d1824ee9b44f71bafcf8c6e3a | diff --git a/src/server/queue/index.js b/src/server/queue/index.js
index <HASH>..<HASH> 100644
--- a/src/server/queue/index.js
+++ b/src/server/queue/index.js
@@ -98,7 +98,11 @@ class Queues {
if (queueConfig.createClient) options.createClient = queueConfig.createClient;
const { BullMQ } = this._config;... | fix: support redis configuration with bullmq (#<I>) | bee-queue_arena | train | js |
2e396594465c4be936244d2eb1d4840aa8b15528 | diff --git a/packages/node_modules/@webex/internal-plugin-ediscovery/src/ediscovery.js b/packages/node_modules/@webex/internal-plugin-ediscovery/src/ediscovery.js
index <HASH>..<HASH> 100644
--- a/packages/node_modules/@webex/internal-plugin-ediscovery/src/ediscovery.js
+++ b/packages/node_modules/@webex/internal-plugi... | chore(ediscovery): tidyup of conditional | webex_spark-js-sdk | train | js |
57d8a059ae1031975214615b2e2187a9140e224a | diff --git a/examples/advanced.js b/examples/advanced.js
index <HASH>..<HASH> 100644
--- a/examples/advanced.js
+++ b/examples/advanced.js
@@ -1,6 +1,6 @@
'use strict'; // eslint-disable-line
const CrawlKit = require('crawlkit');
-const genericAnchors = require('../finders/genericAnchors');
+const genericAnchors = re... | chore: use package instead of relative link | crawlkit_crawlkit | train | js |
0b87f23ac703928c295aaf5aed13a6bff0d834c1 | diff --git a/core/peer/peer.go b/core/peer/peer.go
index <HASH>..<HASH> 100644
--- a/core/peer/peer.go
+++ b/core/peer/peer.go
@@ -209,3 +209,11 @@ type IDSlice []ID
func (es IDSlice) Len() int { return len(es) }
func (es IDSlice) Swap(i, j int) { es[i], es[j] = es[j], es[i] }
func (es IDSlice) Less(i... | chore: add `String()` method to `IDSlice` type (#<I>) | libp2p_go-libp2p | train | go |
acba084abb01b967c239952d49e8e3d7775cbf2c | diff --git a/workflow/util/util.go b/workflow/util/util.go
index <HASH>..<HASH> 100644
--- a/workflow/util/util.go
+++ b/workflow/util/util.go
@@ -505,10 +505,10 @@ func FormulateResubmitWorkflow(wf *wfv1.Workflow, memoized bool) (*wfv1.Workflow
// Append an additional label so it's easy for user to see the
// name... | fix: Avoid unnecessary nil check for annotations of resubmitted workflow (#<I>) | argoproj_argo | train | go |
530767d85d85b5932abdb87721e395c0a214b148 | diff --git a/examples/browser-exchange-files/public/app.js b/examples/browser-exchange-files/public/app.js
index <HASH>..<HASH> 100644
--- a/examples/browser-exchange-files/public/app.js
+++ b/examples/browser-exchange-files/public/app.js
@@ -294,7 +294,7 @@ async function refreshPeerList () {
if (addr.indexOf... | docs: add /p2p/ to add addresses on display (#<I>) | ipfs_js-ipfs | train | js |
c84decaa48e1270d7042bfc2f4e806b616db28f0 | diff --git a/bin/jack.js b/bin/jack.js
index <HASH>..<HASH> 100644
--- a/bin/jack.js
+++ b/bin/jack.js
@@ -603,8 +603,9 @@ Much more documentation available at: https://www.node-tap.org/
ts: flag({
default: process.env.TAP_TS === '1',
- description: `Automatically load .ts and .tsx tests with tap's bundled... | docs: ts-node is not bundled | tapjs_node-tap | train | js |
65cdf9de7bb7cbdaa7bda94d4464af06dae09ba8 | diff --git a/lib/deps/graph.js b/lib/deps/graph.js
index <HASH>..<HASH> 100644
--- a/lib/deps/graph.js
+++ b/lib/deps/graph.js
@@ -259,9 +259,9 @@ Graph.prototype.getEdgeAttribut = function(name) {
Graph.prototype.to_dot = function() {
var dotScript = '';
if (this.relativeGraph == null) {
- dotScript = this.t... | fix: escape graph id
without this fix:
`graphviz.digraph('my-id');` would produce `digraph my-id {` which is invalid, instead it should produce `digraph "my-id" {` | glejeune_node-graphviz | train | js |
fa57348835ea7f130248c9952910b13308a65e99 | diff --git a/test/cluster/net.go b/test/cluster/net.go
index <HASH>..<HASH> 100644
--- a/test/cluster/net.go
+++ b/test/cluster/net.go
@@ -39,6 +39,15 @@ func createBridge(name, network, natIface string) (*Bridge, error) {
if err != nil {
return nil, err
}
+
+ // We need to explicitly assign the MAC address to a... | test: Ensure that the bridge MAC does not fluctuate
This is the fix for #<I>, we forgot to apply it here. | flynn_flynn | train | go |
64faa9fd61909d0a3a07b64b223c17f0f7f63c25 | diff --git a/tests/test_coalaip.py b/tests/test_coalaip.py
index <HASH>..<HASH> 100644
--- a/tests/test_coalaip.py
+++ b/tests/test_coalaip.py
@@ -29,7 +29,7 @@ def test_generate_user(mock_plugin, mock_coalaip, alice_user):
**generate_user_kwargs)
-@mark.parametrize... | style(tests): small stylistic changes for parametrized tests | COALAIP_pycoalaip | train | py |
31d22320522c6413861275937620a5529769cbd1 | diff --git a/index.test.js b/index.test.js
index <HASH>..<HASH> 100644
--- a/index.test.js
+++ b/index.test.js
@@ -102,7 +102,7 @@ describe('Webpack rails manifest plugin', () => {
module: {
loaders: [{
test: /\.(txt|png)$/,
- loader: 'file'
+ loader: 'file-loader'
... | test(webpack2): ensure compatibility with webpack <I>-beta<I> | infinum_webpack-asset-pipeline | train | js |
26683389ea2df30f7b3f9c2522f0ea7197c0bc9b | diff --git a/src/browser-polyfill.js b/src/browser-polyfill.js
index <HASH>..<HASH> 100644
--- a/src/browser-polyfill.js
+++ b/src/browser-polyfill.js
@@ -8,12 +8,7 @@
if (typeof browser === "undefined") {
const CHROME_SEND_MESSAGE_CALLBACK_NO_RESPONSE_MESSAGE = "The message port closed before a response was rece... | chore: Replace post-processed warning message with single-line string literal (#<I>) | mozilla_webextension-polyfill | train | js |
dfd2d036756e48d4da4c55491ebc44985f28b643 | diff --git a/lib/config.js b/lib/config.js
index <HASH>..<HASH> 100644
--- a/lib/config.js
+++ b/lib/config.js
@@ -512,6 +512,9 @@ exports.extend = function(newConf) {
config.INADDR_ANY = true;
}
});
+ if (config.networkMode) {
+ config.rulesMode = false;
+ }
}
if (... | feat: networkMode > rulesMode | avwo_whistle | train | js |
2c435fc8bb923bf6311e53660bca741b90be2dfd | diff --git a/src/NPC.js b/src/NPC.js
index <HASH>..<HASH> 100644
--- a/src/NPC.js
+++ b/src/NPC.js
@@ -34,9 +34,17 @@ export default class NPC {
}
}
_convertFieldValue (value) {
+ if (typeof value === 'undefined') {
+ return '';
+ }
if (typeof value === 'string') {
... | fix(npc): Fix for unserialization
to account for undefined | derikb_rpg-table-randomizer | train | js |
4d2951899331620cceb3f747f4fd402309ee2478 | diff --git a/intranet/apps/emerg/views.py b/intranet/apps/emerg/views.py
index <HASH>..<HASH> 100644
--- a/intranet/apps/emerg/views.py
+++ b/intranet/apps/emerg/views.py
@@ -28,7 +28,12 @@ def check_emerg():
timeout = settings.FCPS_EMERGENCY_TIMEOUT
- r = requests.get("{}?{}".format(settings.FCPS_EMERGENCY... | fix(emerg): add exception handling for request timeouts on emergency
page | tjcsl_ion | train | py |
8e014aa80b2cb546a96a59a5c675cf679f87d05e | diff --git a/lib/components/user/monitored-trip/trip-summary.js b/lib/components/user/monitored-trip/trip-summary.js
index <HASH>..<HASH> 100644
--- a/lib/components/user/monitored-trip/trip-summary.js
+++ b/lib/components/user/monitored-trip/trip-summary.js
@@ -12,7 +12,7 @@ const TripSummary = ({ monitoredTrip }) => ... | fix(TripSummary): Remove green bar outside of batch itinerary results. | opentripplanner_otp-react-redux | train | js |
e181fa50186e746d72ea1a622c34079f3c9e4751 | diff --git a/src/platforms/mp/runtime/instance/index.js b/src/platforms/mp/runtime/instance/index.js
index <HASH>..<HASH> 100644
--- a/src/platforms/mp/runtime/instance/index.js
+++ b/src/platforms/mp/runtime/instance/index.js
@@ -9,16 +9,22 @@ export * from './render-helpers/render-list'
export function initRootVM ... | fix: rename mpVM in App to "app" | kaola-fed_megalo | train | js |
6ea3a8cb063c6370cc6e001a77d540cd5b603899 | diff --git a/cli/lib/tasks/install.js b/cli/lib/tasks/install.js
index <HASH>..<HASH> 100644
--- a/cli/lib/tasks/install.js
+++ b/cli/lib/tasks/install.js
@@ -1,4 +1,5 @@
const _ = require('lodash')
+const arch = require('arch')
const os = require('os')
const url = require('url')
const path = require('path')
@@ -10... | chore: fixing m1 installation issues for m1 macs (#<I>) | cypress-io_cypress | train | js |
0a3a1247563e3ae26e08164d2fba7f1f16ae8c5e | diff --git a/tests/test_config.py b/tests/test_config.py
index <HASH>..<HASH> 100644
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -74,3 +74,9 @@ class TestConfigCLI(TestDvc):
ret = main(['config', 'global.non_existing_field', '-u'])
self.assertEqual(ret, 1)
+
+ ret = main(['config... | test: cover "Invalid option value" for config | iterative_dvc | train | py |
2cf61a1e1777a3862bf3d3df1b7dcf696a4f1ba7 | diff --git a/build/tasks/serve.js b/build/tasks/serve.js
index <HASH>..<HASH> 100644
--- a/build/tasks/serve.js
+++ b/build/tasks/serve.js
@@ -10,6 +10,7 @@ gulp.task('serve', ['build'], function(done) {
var bs = browserSync.create('Sample server');
var options = {
+ open: false,
server: {
baseDi... | chore(sample): keep browserSync from opening automatically | aurelia-ui-toolkits_aurelia-materialize-bridge | train | js |
a62445183294a3019ae82b1aa0868d0083031612 | diff --git a/integration/combination/test_function_with_s3_bucket.py b/integration/combination/test_function_with_s3_bucket.py
index <HASH>..<HASH> 100644
--- a/integration/combination/test_function_with_s3_bucket.py
+++ b/integration/combination/test_function_with_s3_bucket.py
@@ -1,6 +1,11 @@
+from unittest.case impo... | chore: Add capability to disable S3 Events integration test cases. (#<I>)
* chore: Add capability to disable S3 Events integration test cases.
* fix black issue | awslabs_serverless-application-model | train | py,py |
b61d55bde280863741df51fd622ed3b690b6375e | diff --git a/src/commands/build.js b/src/commands/build.js
index <HASH>..<HASH> 100644
--- a/src/commands/build.js
+++ b/src/commands/build.js
@@ -42,14 +42,17 @@ export default asyncCommand({
workers: {
description: 'Add a Service Workers to the application.',
alias: 'w',
+ type: 'boolean',
... | fix(cast-boolean): added cast on boolean args | PolymerX_polymerx-cli | train | js,js,js |
6f640517466f05dc6a184d0881e29e35d17cabe2 | diff --git a/tests/integration/GraphQL/GraphQLQueryTest.php b/tests/integration/GraphQL/GraphQLQueryTest.php
index <HASH>..<HASH> 100644
--- a/tests/integration/GraphQL/GraphQLQueryTest.php
+++ b/tests/integration/GraphQL/GraphQLQueryTest.php
@@ -94,6 +94,6 @@ GRAPHQL;
$response = $this->execute($client, $requ... | test(GraphQL): fix assertion | commercetools_commercetools-php-sdk | train | php |
e6f6d6e76f530052264770a3b343048c293673e1 | diff --git a/lib/interceptor.js b/lib/interceptor.js
index <HASH>..<HASH> 100644
--- a/lib/interceptor.js
+++ b/lib/interceptor.js
@@ -14,7 +14,7 @@ class RowProcessorInterceptor extends Interceptor {
super(endpoint, config);
// just validate the config once
- parserFactory(config, true);
+ parserFactory(conf... | fix(interceptor): Fix how the config will be given to the underlying module.
Adapted the test for this fix. | Kronos-Integration_kronos-interceptor-object-data-processor-row | train | js,js |
1d92314f262548b6b24e309943274e0d9d196a41 | diff --git a/staging/src/k8s.io/client-go/tools/watch/retrywatcher_test.go b/staging/src/k8s.io/client-go/tools/watch/retrywatcher_test.go
index <HASH>..<HASH> 100644
--- a/staging/src/k8s.io/client-go/tools/watch/retrywatcher_test.go
+++ b/staging/src/k8s.io/client-go/tools/watch/retrywatcher_test.go
@@ -587,11 +587,1... | test(watch-tool): deflake TestRetryWatcherToFinishWithUnreadEvents | kubernetes_kubernetes | train | go |
be32bcd5e62ea624f2750403b9df0d154a55301f | diff --git a/GEOparse/utils.py b/GEOparse/utils.py
index <HASH>..<HASH> 100644
--- a/GEOparse/utils.py
+++ b/GEOparse/utils.py
@@ -64,7 +64,8 @@ def download_from_url(url, destination_path,
try:
fn = Downloader(
url,
- outdir=os.path.dirname(destination_path))
+ outdir=o... | fix: Pass filename to downloader | guma44_GEOparse | train | py |
539398416c8a8927b3dc2b60600aacb3258b7ba9 | diff --git a/test/plugin/test_out_forward.rb b/test/plugin/test_out_forward.rb
index <HASH>..<HASH> 100644
--- a/test/plugin/test_out_forward.rb
+++ b/test/plugin/test_out_forward.rb
@@ -1294,7 +1294,13 @@ EOL
begin
chunk = Fluent::Plugin::Buffer::MemoryChunk.new(Fluent::Plugin::Buffer::Metadata.n... | test: out_forward: Break a long line | fluent_fluentd | train | rb |
1c27d080dce3e5f79e57344e6b0e07a4d1b04ea5 | diff --git a/test/app/index.js b/test/app/index.js
index <HASH>..<HASH> 100644
--- a/test/app/index.js
+++ b/test/app/index.js
@@ -27,7 +27,7 @@ var server = http.createServer().listen(process.env.PORT || 0, function() {
function handler(signame) {
var signo = process.binding('constants')[signame];
console.log('... | test: align app exit status with strong-supervisor
test app was converting signals to exit codes, which was fine but when I
run the same tests with sl-run, it was exiting by signal not
with a status code. app now does as sl-run does, and signal comparison
is now done in terms of signal strings, not exit codes. | strongloop_strong-pm | train | js,js |
66d2bd75eac21529c89f3b7110d234fb82a97723 | diff --git a/packages/driver/src/cypress.js b/packages/driver/src/cypress.js
index <HASH>..<HASH> 100644
--- a/packages/driver/src/cypress.js
+++ b/packages/driver/src/cypress.js
@@ -159,6 +159,10 @@ class $Cypress {
initialize ({ $autIframe, onSpecReady }) {
this.$autIframe = $autIframe
this.onSpecReady =... | fix(component-testing): wait for iframe to exist to start testing (#<I>)
* fix: wait for iframe to exist to start testing
* add comment | cypress-io_cypress | train | js |
6f3159179f5cefa4aaa3be82550ebfbe986e9bf1 | diff --git a/publish.js b/publish.js
index <HASH>..<HASH> 100755
--- a/publish.js
+++ b/publish.js
@@ -415,6 +415,7 @@ function buildNav(members) {
if (members.globals.length) {
var globalNav = '';
+ var useGlobalTitleLink = true;
members.globals.forEach(function(g) {
if (... | feat:set global title link if having only typedefs | nhn_tui.jsdoc-template | train | js |
198c5cd59a5e16048eab78e1fcc6182fcdc44ec1 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -7,6 +7,7 @@ const defaults = {
};
function syncEvent(node, eventName, newEventHandler) {
+ const eventNameLc = eventName.toLowerCase();
const eventStore = node.__events || (node.__events = {});
cons... | fix(events): Fix issues causing built-in events to not get fired due to case-sensitivity. | webcomponents_react-integration | train | js |
16a282ecb65f8d9141e5ef7bb7333e284649fbd7 | diff --git a/DrdPlus/Tables/History/InfluenceOfFortuneTable.php b/DrdPlus/Tables/History/InfluenceOfFortuneTable.php
index <HASH>..<HASH> 100644
--- a/DrdPlus/Tables/History/InfluenceOfFortuneTable.php
+++ b/DrdPlus/Tables/History/InfluenceOfFortuneTable.php
@@ -64,7 +64,7 @@ class InfluenceOfFortuneTable extends Abstr... | fix: Both property types accept roll as integer interface by annotation | drdplusinfo_tables | train | php |
96604fb9a55d3a98282a602ca1dee59b4b921a16 | diff --git a/test/index.js b/test/index.js
index <HASH>..<HASH> 100644
--- a/test/index.js
+++ b/test/index.js
@@ -257,7 +257,7 @@ describe('cz-release-me', () => {
// question 1 - TYPE
expect(getQuestion(1).name).to.equal('type');
expect(getQuestion(1).type).to.equal('list');
- expect... | fix(test): fix for chalk colors | design4pro_cz-release-me | train | js |
11d249f82fc782d84d62bb6dba40a8e3047d6df0 | diff --git a/src/module.js b/src/module.js
index <HASH>..<HASH> 100644
--- a/src/module.js
+++ b/src/module.js
@@ -26,7 +26,6 @@ export default function NetlifyCmsModule(moduleOptions) {
const config = configManager.config;
const ADMIN_PATH = config.adminPath;
- const EXTENSIONS_DIR = config.extensionsDir;
... | fix(build): fix various rebuild errors
Remove duplicate file watcher on `extensionsDir`
Only read user cms config when it changes
Greatly improve rebuild time
fixes #7, closes #9, fixes #<I> | medfreeman_nuxt-netlify-cms-module | train | js |
805f92b529bf4cd8bb77e2f4899c8d9348fbaf01 | diff --git a/static/lib/composer/resize.js b/static/lib/composer/resize.js
index <HASH>..<HASH> 100644
--- a/static/lib/composer/resize.js
+++ b/static/lib/composer/resize.js
@@ -27,7 +27,13 @@ define('composer/resize', ['taskbar'], function(taskbar) {
}
function getBounds() {
- var headerRect = header.getBoundi... | fix: handle cases where header is not present, by mocking data | NodeBB_nodebb-plugin-composer-default | train | js |
6148fd090249e923ba4ea009e3ecba954a345450 | diff --git a/v1/tracing/tracing.go b/v1/tracing/tracing.go
index <HASH>..<HASH> 100644
--- a/v1/tracing/tracing.go
+++ b/v1/tracing/tracing.go
@@ -88,7 +88,7 @@ func AnnotateSpanWithSignatureInfo(span opentracing.Span, signature *tasks.Signa
span.SetTag("signature.uuid", signature.UUID)
if signature.GroupUUID != ... | fix: wrong groupUUID in task span (#<I>) | RichardKnop_machinery | train | go |
0fad106ce39fc27484d9f8f751c6a265f71f5a34 | diff --git a/src/components/datepicker/js/datepickerDirective.js b/src/components/datepicker/js/datepickerDirective.js
index <HASH>..<HASH> 100644
--- a/src/components/datepicker/js/datepickerDirective.js
+++ b/src/components/datepicker/js/datepickerDirective.js
@@ -285,6 +285,7 @@
this.calendarPane.id = 'md-date-... | fix(datepicker): apply theming to the calendar pane
The calendar pane wasn't registered with the theming service, causing it to be transparent in certain situations.
Fixes #<I>.
Closes #<I> | angular_material | train | js |
c4d3b3dfb405ea0e1cefae92cc52b18eb8240ccd | diff --git a/lib/workers/branch/index.js b/lib/workers/branch/index.js
index <HASH>..<HASH> 100644
--- a/lib/workers/branch/index.js
+++ b/lib/workers/branch/index.js
@@ -196,6 +196,10 @@ async function processBranch(branchConfig, packageFiles) {
logger.debug('Passing repository-changed error up');
throw ... | refactor: pass bad credentials error from branch to repo | renovatebot_renovate | train | js |
86ddd1987cb7fc2d30c179287c96887df7bbba79 | diff --git a/src/cache.js b/src/cache.js
index <HASH>..<HASH> 100644
--- a/src/cache.js
+++ b/src/cache.js
@@ -55,7 +55,7 @@ export function get(target, key, getter, validate) {
const context = contexts[0];
- if (context && !suspense.has(context)) {
+ if (context && !suspense.has(context.target)) {
contex... | fix(cache): use target of entry in suspend condition | hybridsjs_hybrids | train | js,js |
00de344318e60f2872e53c35240db92ae6f82727 | diff --git a/namesys/namesys.go b/namesys/namesys.go
index <HASH>..<HASH> 100644
--- a/namesys/namesys.go
+++ b/namesys/namesys.go
@@ -86,16 +86,19 @@ func (ns *mpns) Resolve(ctx context.Context, name string, options ...opts.Resolv
}
func (ns *mpns) ResolveAsync(ctx context.Context, name string, options ...opts.Res... | fix: close resolve channel before returning it | ipfs_go-ipfs | train | go |
3e62ab7c6c042149b9153657cae92523a35f2002 | diff --git a/nodes/events-state-changed/events-state-changed.js b/nodes/events-state-changed/events-state-changed.js
index <HASH>..<HASH> 100644
--- a/nodes/events-state-changed/events-state-changed.js
+++ b/nodes/events-state-changed/events-state-changed.js
@@ -34,7 +34,7 @@ module.exports = function (RED) {
... | fix(events-state): Waiit until HA is running before outputting
Fixes #<I> | zachowj_node-red-contrib-home-assistant-websocket | train | js |
46cb3a2fefb87fc79dc731e45316e17a56ca29ab | diff --git a/task/backend/bolt/bolt.go b/task/backend/bolt/bolt.go
index <HASH>..<HASH> 100644
--- a/task/backend/bolt/bolt.go
+++ b/task/backend/bolt/bolt.go
@@ -173,7 +173,6 @@ func (s *Store) CreateTask(ctx context.Context, req backend.CreateTaskRequest) (
func (s *Store) UpdateTask(ctx context.Context, req backe... | chore(task): Clean up comments. | influxdata_influxdb | train | go,go |
c8c5ee854de12517a9612127e12df19f55aedc04 | diff --git a/src/files.js b/src/files.js
index <HASH>..<HASH> 100644
--- a/src/files.js
+++ b/src/files.js
@@ -70,12 +70,7 @@ module.exports = (common) => {
expect(err).to.not.exist
expect(res).to.be.length(1)
const file = res[0]
- expect(file).to.be.eql({
- ... | fix(files): remove duplicated expectations | ipfs_interface-js-ipfs-core | train | js |
be7f67268d1e25462b7920b84ced317772e84b8c | diff --git a/cmd/disk-cache-backend.go b/cmd/disk-cache-backend.go
index <HASH>..<HASH> 100644
--- a/cmd/disk-cache-backend.go
+++ b/cmd/disk-cache-backend.go
@@ -538,12 +538,15 @@ func (c *diskCache) saveMetadata(ctx context.Context, bucket, object string, met
}
m.Ranges[rs.String(actualSize)] = rsFileName
... | fix: Do not cleanup range files in cache SaveMetadata when total hits are false (#<I>) | minio_minio | train | go |
10f5e5fd0ae4a19235934ecf9d7966f331d49eca | diff --git a/test/unit/tone-analyzer.v3.test.js b/test/unit/tone-analyzer.v3.test.js
index <HASH>..<HASH> 100644
--- a/test/unit/tone-analyzer.v3.test.js
+++ b/test/unit/tone-analyzer.v3.test.js
@@ -107,7 +107,7 @@ describe('tone', () => {
test('should enforce required parameters', done => {
// required p... | test: update unit test for tone analyzer | watson-developer-cloud_node-sdk | train | js |
53ae6002bedc3d88cb2ca3d058599742a2c03380 | diff --git a/__tests__/monorepo-deps.test.js b/__tests__/monorepo-deps.test.js
index <HASH>..<HASH> 100644
--- a/__tests__/monorepo-deps.test.js
+++ b/__tests__/monorepo-deps.test.js
@@ -24,7 +24,7 @@ function pkgToHaveDependenciesOn(pkgName, deps) {
deps.forEach(dep => {
if (!listedDeps.some(d => d === dep)) {... | fix: update the monorepo Twig dependency test to exclude the renamed Yeoman generator | bolt-design-system_bolt | train | js |
8fdf1b5c1783e06eec0c8058e1008ea5b86d5bae | diff --git a/src/ViewableService.php b/src/ViewableService.php
index <HASH>..<HASH> 100644
--- a/src/ViewableService.php
+++ b/src/ViewableService.php
@@ -241,12 +241,12 @@ class ViewableService implements ViewableServiceContract
}
/**
- * Remove all views from a viewable model.
+ * Remove all views... | feat: rename removeModelViews method in ViewableService | cyrildewit_eloquent-viewable | train | php |
40a0f36e4afe159dc4aa374188987dea2bedbb24 | diff --git a/src/Common/Controller/Base.php b/src/Common/Controller/Base.php
index <HASH>..<HASH> 100644
--- a/src/Common/Controller/Base.php
+++ b/src/Common/Controller/Base.php
@@ -733,10 +733,7 @@ abstract class Base extends \MX_Controller
*/
protected function setGlobalJs()
{
- $oAsset = Fact... | fix: Not loading Asset library before loading global CSS | nails_common | train | php |
c7bd5f62fa967c36d4e17c2c1a9a20112ff5a239 | diff --git a/Plugin/Backend/OrderAfterInvoice.php b/Plugin/Backend/OrderAfterInvoice.php
index <HASH>..<HASH> 100644
--- a/Plugin/Backend/OrderAfterInvoice.php
+++ b/Plugin/Backend/OrderAfterInvoice.php
@@ -64,7 +64,11 @@ class OrderAfterInvoice
// Check if payment method is checkout.com
if (in_array(... | fix: capture order status comment is set to closed for virtual orders | checkout_checkout-magento2-plugin | train | php |
74db15b57c617d274055b6033b709a68dadf20a8 | diff --git a/system/Database/OCI8/Forge.php b/system/Database/OCI8/Forge.php
index <HASH>..<HASH> 100644
--- a/system/Database/OCI8/Forge.php
+++ b/system/Database/OCI8/Forge.php
@@ -193,7 +193,7 @@ class Forge extends \CodeIgniter\Database\Forge
&& version_compare($this->db->getVersion(), '12.1', '>=')
)
{
-... | fix: Fix to be able to update identity. | codeigniter4_CodeIgniter4 | train | php |
6597abc7d9b38f524fbf7fa87afd4f9a1e9f8e49 | diff --git a/packages/bonde-admin-canary/src/scenes/Auth/scenes/ResetPassword/index.js b/packages/bonde-admin-canary/src/scenes/Auth/scenes/ResetPassword/index.js
index <HASH>..<HASH> 100644
--- a/packages/bonde-admin-canary/src/scenes/Auth/scenes/ResetPassword/index.js
+++ b/packages/bonde-admin-canary/src/scenes/Auth... | fix(reset-password): add redirect with window.location | nossas_bonde-client | train | js |
ee5b29d5af18b6330838a74150063546dee0947e | diff --git a/doc/conf.py b/doc/conf.py
index <HASH>..<HASH> 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -118,8 +118,10 @@ modindex_common_prefix = ['rafcon.']
# A list of warning types to suppress arbitrary warning messages.
suppress_warnings = ['ref.python']
-extlinks = {'issue': ('https://rmc-github.robotic.dlr... | docs(conf): Distinguish between issues from GitHub and GitHub Enterprise | DLR-RM_RAFCON | train | py |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.