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 |
|---|---|---|---|---|---|
8f5cf3edaa08dab14f174502143610eba9dd9b96 | diff --git a/webpack.config.js b/webpack.config.js
index <HASH>..<HASH> 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -12,7 +12,8 @@ module.exports = {
path: __dirname,
filename: '[name].js',
library: 'Workfront',
- libraryTarget: 'umd'
+ libraryTarget: 'umd',
+ ... | fix: windows is undefined error if workfront-api is required in NodeJS | Workfront_workfront-api | train | js |
baed037e97baef65a13c3189cda6cc26dc04c8cf | diff --git a/__tests__/messages.spec.js b/__tests__/messages.spec.js
index <HASH>..<HASH> 100644
--- a/__tests__/messages.spec.js
+++ b/__tests__/messages.spec.js
@@ -63,6 +63,31 @@ describe('messages', () => {
);
});
+ it('messages can be without parameters', done => {
+ const messages = {
+ require... | test: do not change custom error texts | yiminghe_async-validator | train | js |
3841a058f9e013b5a896f6e478dd9f444139ebcb | diff --git a/examples/https.js b/examples/https.js
index <HASH>..<HASH> 100644
--- a/examples/https.js
+++ b/examples/https.js
@@ -18,7 +18,6 @@ proxy
.options({ secure: false })
.host('httpbin.org')
.forward('https://httpbin.org')
- .poison(toxy.poisons.bandwidth({ bps: 1024 }))
// Forward to plain HTTP s... | fix(examples): https | h2non_rocky | train | js |
ff27edadeabc3b8ffc0c933ff78c87289ebfe3a4 | diff --git a/src/components/error/error.js b/src/components/error/error.js
index <HASH>..<HASH> 100644
--- a/src/components/error/error.js
+++ b/src/components/error/error.js
@@ -1,5 +1,6 @@
import Events from '../../base/events'
import BaseObject from '../../base/base_object'
+import Log from '../../plugins/log'
... | fix(error): do not trigger error if core is undefined | clappr_clappr | train | js |
c9f4a4076c9eb17247b06a211b8861dbacbac35b | diff --git a/tests/test_state.py b/tests/test_state.py
index <HASH>..<HASH> 100644
--- a/tests/test_state.py
+++ b/tests/test_state.py
@@ -1,5 +1,6 @@
import os
import stat
+import time
from dvc.system import System
from dvc.state import State, StateEntry
@@ -24,6 +25,13 @@ class TestState(TestDvc):
self... | test: state: sleep 1 sec to simulate realistic behavior | iterative_dvc | train | py |
1bf35462b52d86787b8d8b56e1899e330698f9f5 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -4,8 +4,18 @@
* MIT Licensed
*/
+/**
+ * Module dependencies.
+ * @private
+ */
+
var codes = require('./codes.json');
+/**
+ * Module exports.
+ * @public
+ */
+
module.exports = status;
// [Integer...]
@@ -42,6 ... | docs: add jsdoc comments | jshttp_statuses | train | js |
0d5a2d8a57ae2325f9f5705efd54c654f48f2ae8 | diff --git a/data/build.js b/data/build.js
index <HASH>..<HASH> 100644
--- a/data/build.js
+++ b/data/build.js
@@ -81,6 +81,12 @@ internals.parse = new Transform({
}
cb();
+ },
+ flush(cb) {
+ if (this._last) {
+ this.push(this._last);
+ }
+ cb();
}
}); | fix(build): Adds flush method to transform stream... | wrangr_psl | train | js |
c361bc691f510b96f8909c5e6c62a4635d50275c | diff --git a/lib/socket.js b/lib/socket.js
index <HASH>..<HASH> 100644
--- a/lib/socket.js
+++ b/lib/socket.js
@@ -102,6 +102,12 @@ class Socket extends Emitter {
},
false
);
+ if (this.hostname !== "localhost") {
+ this.offlineEventListener = () => {
+ this.onClose("transp... | feat: listen to the "offline" event
The connection will be closed once the "offline" event is emitted by
the browser, in order not to wait for the heartbeat mechanism to detect
the disconnection.
Reference: <URL> | socketio_engine.io-client | train | js |
1defca51bfae082626a2c1ec64395de77a232fc2 | diff --git a/src/weex/viewport.js b/src/weex/viewport.js
index <HASH>..<HASH> 100644
--- a/src/weex/viewport.js
+++ b/src/weex/viewport.js
@@ -110,8 +110,8 @@ export function init (viewportWidth = width) {
}
dpr = info.dpr = window.devicePixelRatio
- screenWidth = doc.documentElement.clientWidth
- scr... | fix: using window.screen for device screen size | weexteam_weex-vue-render | train | js |
35c67bc17fe59bf26f000a765bfbc37711c69c1e | diff --git a/src/router.js b/src/router.js
index <HASH>..<HASH> 100644
--- a/src/router.js
+++ b/src/router.js
@@ -446,15 +446,6 @@ function validateRouteConfig(config: RouteConfig, routes: Array<Object>): void {
throw new Error('Invalid Route Config for "' + name + '": You must specify a "route:" pattern.');
}... | fix(router): remove name unique checking since it breaks most apps | aurelia_router | train | js |
3c2b78dc7c287d0f65d7fc3f9f888077e98681a1 | diff --git a/src/ItemsCarousel/helpers.js b/src/ItemsCarousel/helpers.js
index <HASH>..<HASH> 100644
--- a/src/ItemsCarousel/helpers.js
+++ b/src/ItemsCarousel/helpers.js
@@ -79,7 +79,7 @@ export const calculateLastPossibleTranslateX = ({
const hiddenChildrenLength = (numberOfChildren - numberOfCards);
let transl... | fix: translation to last item when showSlither is true
relates to #3 | bitriddler_react-items-carousel | train | js |
05892d8f377521dbb3836108e9f338a44edf5b92 | diff --git a/activiti-api-process-runtime/src/main/java/org/activiti/api/process/runtime/events/ProcessUpdatedEvent.java b/activiti-api-process-runtime/src/main/java/org/activiti/api/process/runtime/events/ProcessUpdatedEvent.java
index <HASH>..<HASH> 100644
--- a/activiti-api-process-runtime/src/main/java/org/activiti... | fix: type of ProcessUpdatedEvent changed | Activiti_Activiti | train | java |
3e51523ff56b69b08366356a9e5789873ed4f491 | diff --git a/src/jsep.js b/src/jsep.js
index <HASH>..<HASH> 100644
--- a/src/jsep.js
+++ b/src/jsep.js
@@ -932,9 +932,8 @@ Jsep.max_binop_len = Jsep.getMaxKeyLen(Jsep.binary_ops);
const jsep = expr => (new Jsep(expr)).parse();
const staticMethods = Object.getOwnPropertyNames(Jsep);
staticMethods
- .slice(staticMetho... | fix: firefox compatibility
When copying from the static class methods to the jsep function, don't rely on the ordering of keys. Instead, check for properties that are allowed to be set (![prototype, name, length]), by checking if they already exist on jsep. This fixes the "length" is readonly error in firefox (but wor... | soney_jsep | train | js |
03622450390778b218d10493cd166977caf0d106 | diff --git a/src/React/Properties/SliderProperty/index.js b/src/React/Properties/SliderProperty/index.js
index <HASH>..<HASH> 100644
--- a/src/React/Properties/SliderProperty/index.js
+++ b/src/React/Properties/SliderProperty/index.js
@@ -51,9 +51,9 @@ export default class SliderProperty extends React.Component {
va... | fix(SliderProperty): Ensure value to be a number | Kitware_paraviewweb | train | js |
4cd71629c86ecd7217320dd38b6fa6dc359a2cd1 | diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -80,15 +80,20 @@ gulp.task('_bumpVersion', ['_bumpPackage', '_changelog'], function(){
});
gulp.task('_tagVersion', ['_bumpVersion'], function(done) {
- git.tag('v'+ packageJson().version, 'v'+ packageJson().v... | chore(release): release task pushes tag to github
[#<I>] | pivotal-cf_pivotal-ui | train | js |
d37d4b8db167abcbccc853318a53d79e99a59e49 | diff --git a/lib/plugins/index.js b/lib/plugins/index.js
index <HASH>..<HASH> 100644
--- a/lib/plugins/index.js
+++ b/lib/plugins/index.js
@@ -550,7 +550,7 @@ function resolveWhistlePlugins(req) {
});
}
var _plugin = getPluginByPluginRule(rules.plugin);
- if (_plugin != plugin) {
+ if (_plugin && _plugin !... | feat: Supports simultaneous matching of multiple plugins | avwo_whistle | train | js |
cb407b01db040cc003bbb7d8f394b233ba66d825 | diff --git a/packages/puppeteer-extra-plugin-devtools/lib/RemoteDevTools.js b/packages/puppeteer-extra-plugin-devtools/lib/RemoteDevTools.js
index <HASH>..<HASH> 100644
--- a/packages/puppeteer-extra-plugin-devtools/lib/RemoteDevTools.js
+++ b/packages/puppeteer-extra-plugin-devtools/lib/RemoteDevTools.js
@@ -264,6 +26... | fix(plugin-devtools): Add localtunnel error event (#<I>) | berstend_puppeteer-extra | train | js |
f15c56b45c255920433b181c6e21e9cc59f3605e | diff --git a/src/core/vdom/create-element.js b/src/core/vdom/create-element.js
index <HASH>..<HASH> 100644
--- a/src/core/vdom/create-element.js
+++ b/src/core/vdom/create-element.js
@@ -132,7 +132,7 @@ function applyNS (vnode, ns, force) {
if (isDef(vnode.children)) {
for (let i = 0, l = vnode.children.length;... | refactor: use isTrue | kaola-fed_megalo | train | js |
9c693306dcb0bc19198b69bf8de757464b471c4a | diff --git a/src/Hodor/Command/Arguments.php b/src/Hodor/Command/Arguments.php
index <HASH>..<HASH> 100644
--- a/src/Hodor/Command/Arguments.php
+++ b/src/Hodor/Command/Arguments.php
@@ -24,7 +24,7 @@ class Arguments
*/
public function getQueueName()
{
- return $this->getRequiredArgument('config'... | fix(cli): fix Arguments#getQueueName()
It was pulling the wrong argument from the CLI inputs. | lightster_hodor | train | php |
8845e6aaef7238e06071084ca2c97150c19c67a7 | diff --git a/src/style/select.js b/src/style/select.js
index <HASH>..<HASH> 100644
--- a/src/style/select.js
+++ b/src/style/select.js
@@ -6,7 +6,6 @@ var selectStyle = {
borderBottom: '1px solid #CCC',
boxSizing: 'border-box',
cursor: 'pointer',
- height: 34,
padding: '7px 0 5px 0',
positio... | feat(Select): smooth styling for ios devices | nikgraf_belle | train | js |
6f9cee4aac1d7b7d0935235197e3d6f55c6ebf63 | diff --git a/views/js/qtiCreator/helper/gridUnits.js b/views/js/qtiCreator/helper/gridUnits.js
index <HASH>..<HASH> 100755
--- a/views/js/qtiCreator/helper/gridUnits.js
+++ b/views/js/qtiCreator/helper/gridUnits.js
@@ -151,31 +151,6 @@ define(['lodash'], function(_){
positive = _.sortBy(positive, 'refactoredUn... | fix: removed manual refactoring to max width which breaks grid | oat-sa_extension-tao-itemqti | train | js |
d15e2a38e421ade8eeb23174ea889d82a4954b4b | diff --git a/spec/features/search_feature_spec.rb b/spec/features/search_feature_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/features/search_feature_spec.rb
+++ b/spec/features/search_feature_spec.rb
@@ -1,6 +1,7 @@
require 'spec_helper'
describe 'search features' do
+ before(:all) { CrmSetup.define_support_cas... | fix: search feature spec depends on the `support-case` activity type | infopark_webcrm_sdk | train | rb |
002de288c700922e2d9186dd1117d94c8ea89886 | diff --git a/lib/workers/pr/index.js b/lib/workers/pr/index.js
index <HASH>..<HASH> 100644
--- a/lib/workers/pr/index.js
+++ b/lib/workers/pr/index.js
@@ -243,6 +243,7 @@ async function checkAutoMerge(pr, config) {
// Return if PR not ready for automerge
if (pr.mergeable !== true) {
logger.info('PR is ... | refactor: log pr if not | renovatebot_renovate | train | js |
7a59868ec9f72fbd561dd6b246d3887687890c76 | diff --git a/benchbuild/utils/log.py b/benchbuild/utils/log.py
index <HASH>..<HASH> 100644
--- a/benchbuild/utils/log.py
+++ b/benchbuild/utils/log.py
@@ -1,5 +1,6 @@
import logging
+from rich.console import Console
from rich.logging import RichHandler
from benchbuild import settings
@@ -14,7 +15,10 @@ def confi... | fix(logging): make rich log to stderr by default (#<I>)
Fixes #<I>. | PolyJIT_benchbuild | train | py |
33f24677ee6a59f967d86d28162e615d470ea98d | diff --git a/src/Model/Refund.php b/src/Model/Refund.php
index <HASH>..<HASH> 100644
--- a/src/Model/Refund.php
+++ b/src/Model/Refund.php
@@ -292,7 +292,15 @@ class Refund extends Base
{
try {
- $oRefund = $this->getById($iRefundId, ['expand' => ['invoice', 'payment']]);
+ $oRefun... | fix: Expanding customer object in invoice | nails_module-invoice | train | php |
3f9c0f5d340692ef0c6947b1643a0ae06c8ce311 | diff --git a/lib/operations/aggregate_operation.js b/lib/operations/aggregate_operation.js
index <HASH>..<HASH> 100644
--- a/lib/operations/aggregate_operation.js
+++ b/lib/operations/aggregate_operation.js
@@ -12,6 +12,8 @@ const MIN_WIRE_VERSION_$OUT_READ_CONCERN_SUPPORT = 8;
class AggregateOperation extends Comma... | refactor: support transaction concerns in aggregation operation | mongodb_node-mongodb-native | train | js |
9b636d21e6c93e559f21c40e51252c990da634e8 | diff --git a/src/layouts/utils.js b/src/layouts/utils.js
index <HASH>..<HASH> 100644
--- a/src/layouts/utils.js
+++ b/src/layouts/utils.js
@@ -38,4 +38,4 @@ export function toZeroArray(outline) {
return [0];
}
return outline;
-}
\ No newline at end of file
+} | fix(Layout): fix bug for empty array. | naver_egjs-infinitegrid | train | js |
4c701aa334307f514d4253763b0e2a990adae40f | diff --git a/src/dag-link/index.js b/src/dag-link/index.js
index <HASH>..<HASH> 100644
--- a/src/dag-link/index.js
+++ b/src/dag-link/index.js
@@ -1,6 +1,6 @@
'use strict'
-const mh = require('multihashes')
+const CID = require('cids')
const assert = require('assert')
const withIs = require('class-is')
@@ -16,22... | fix: support cids in DagLink
License: MIT | ipld_js-ipld-dag-pb | train | js |
ffd6c474e8061905b0af8364dddc1407fb85f55f | diff --git a/fuseops/ops.go b/fuseops/ops.go
index <HASH>..<HASH> 100644
--- a/fuseops/ops.go
+++ b/fuseops/ops.go
@@ -443,7 +443,7 @@ type UnlinkOp struct {
// Open a directory inode.
//
-// On Linux the sends this when setting up a struct file for a particular inode
+// On Linux the kernel sends this when setting... | docs: add missing “kernel” (#<I>) | jacobsa_fuse | train | go |
df17527c6819d3f707fa9ebf3bbfd4df1f0e1998 | diff --git a/packages/cli/src/core/findPlugins.js b/packages/cli/src/core/findPlugins.js
index <HASH>..<HASH> 100644
--- a/packages/cli/src/core/findPlugins.js
+++ b/packages/cli/src/core/findPlugins.js
@@ -9,4 +9,4 @@
import findPlugins from '../tools/findPlugins';
-export default findPlugins;
+module.exports = f... | fix: correct export of findPlugins | react-native-community_cli | train | js |
42b523dfc6c79ba48c559c98c9123dab875796ec | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@ with open('./requirements.txt') as f:
setup(
name='dbapi',
- version='0.0.10',
+ version='0.0.11',
description='基于爬虫的豆瓣API SDK',
url='https://github.com/acrazing/dbapi',
author='acra... | fix(misc): the version | acrazing_dbapi | train | py |
c825b1a015bd8f59da1fd39e3f23d45e17153d03 | diff --git a/mapillary_tools/uploader.py b/mapillary_tools/uploader.py
index <HASH>..<HASH> 100644
--- a/mapillary_tools/uploader.py
+++ b/mapillary_tools/uploader.py
@@ -862,7 +862,7 @@ def send_videos_for_processing(video_import_path, user_name, user_email=None, us
# Blackvue actually reports endtime in ... | fix: save epoch as int instead of float | mapillary_mapillary_tools | train | py |
ce614ea815db492cd88f53918daea6dcdd7ddedc | diff --git a/superset/connectors/sqla/models.py b/superset/connectors/sqla/models.py
index <HASH>..<HASH> 100644
--- a/superset/connectors/sqla/models.py
+++ b/superset/connectors/sqla/models.py
@@ -1438,7 +1438,7 @@ class SqlaTable(Model, BaseDatasource): # pylint: disable=too-many-public-metho
... | fix: Adhere to series limit ordering for prequery (#<I>) | apache_incubator-superset | train | py |
4d7dc6da392a28fb6690938368b7dce8a7c64ba6 | diff --git a/ui/src/components/btn/use-btn.js b/ui/src/components/btn/use-btn.js
index <HASH>..<HASH> 100644
--- a/ui/src/components/btn/use-btn.js
+++ b/ui/src/components/btn/use-btn.js
@@ -21,7 +21,7 @@ const defaultSizes = {
xl: 24
}
-const formTypes = [ 'submit', 'reset' ]
+const formTypes = [ 'button', 'subm... | fix(QBtn): render the type attribute even if it's "button" - to allow for a specific native browser behavior with forms #<I> | quasarframework_quasar | train | js |
edc2f703c3dde9112b6f9f082214e35f870ed390 | diff --git a/bolt/macro.go b/bolt/macro.go
index <HASH>..<HASH> 100644
--- a/bolt/macro.go
+++ b/bolt/macro.go
@@ -20,7 +20,8 @@ func (c *Client) initializeMacros(ctx context.Context, tx *bolt.Tx) error {
}
// FindMacros returns all macros in the store
-func (c *Client) FindMacros(ctx context.Context) ([]*platform.... | chore(bolt): bolt macro impl. is a macro service again | influxdata_influxdb | train | go |
a084e9775cb157140598e92084cb5dcb84f071aa | diff --git a/test/integration/compare_comply.test.js b/test/integration/compare_comply.test.js
index <HASH>..<HASH> 100644
--- a/test/integration/compare_comply.test.js
+++ b/test/integration/compare_comply.test.js
@@ -212,7 +212,7 @@ describe('feedback', () => {
};
compare_comply.deleteFeedback(params, (err,... | test: use number for deleteFeedback status code test | watson-developer-cloud_node-sdk | train | js |
dbcf35092c3e84d7a463b1daa2d6444ade24477c | diff --git a/src/Exscriptd/util.py b/src/Exscriptd/util.py
index <HASH>..<HASH> 100644
--- a/src/Exscriptd/util.py
+++ b/src/Exscriptd/util.py
@@ -41,7 +41,7 @@ def find_module_recursive(name, path = None):
if not '.' in name:
return imp.find_module(name, path)
parent, children = name.split('.', 1)
-... | fix: find_module_recursive failed if module depth was largen than 3. | knipknap_exscript | train | py |
e049c828e834be4f41f429e7214c6d54e792d1ac | diff --git a/anyconfig/backend/base.py b/anyconfig/backend/base.py
index <HASH>..<HASH> 100644
--- a/anyconfig/backend/base.py
+++ b/anyconfig/backend/base.py
@@ -416,7 +416,8 @@ class FromStringLoaderMixin(LoaderMixin):
:return: Dict-like object holding config parameters
"""
- return self.lo... | fix: ensure opened files will be closed w/ with statement block | ssato_python-anyconfig | train | py |
981d5693ff79b1091d4bcd7bbda89511c4ac1506 | diff --git a/views/build/Gruntfile.js b/views/build/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/views/build/Gruntfile.js
+++ b/views/build/Gruntfile.js
@@ -73,7 +73,7 @@ module.exports = function(grunt) {
}
}
- extensions.forEach(function(extension){
+ extensions.forEach(extension => {
... | refactor: use arrow function in Gruntfile | oat-sa_tao-core | train | js |
2b43781a697964d133a26bc367a9afe79b00c7cf | diff --git a/src/components/mixins.js b/src/components/mixins.js
index <HASH>..<HASH> 100644
--- a/src/components/mixins.js
+++ b/src/components/mixins.js
@@ -17,12 +17,13 @@ function getDragNode (guid) {
}
function hasInGenerations (root, node) {
+ let ret = false
if (root.hasOwnProperty('children') && root.ch... | fix: mixins-hasInGenerations logic bug | halower_vue-tree | train | js |
c4390b44d4949aaa6d12f2e0ced59d5399c2e52f | diff --git a/packages/testing/testing-jest/jest-global-teardown.js b/packages/testing/testing-jest/jest-global-teardown.js
index <HASH>..<HASH> 100644
--- a/packages/testing/testing-jest/jest-global-teardown.js
+++ b/packages/testing/testing-jest/jest-global-teardown.js
@@ -18,7 +18,7 @@ module.exports = async function... | fix: Removing unwanted yeti icon and changes in icons after test finish | bolt-design-system_bolt | train | js |
4605d69cfdbd096626a6e36d7c21f5b15289bdbf | diff --git a/lib/isodoc/convert.rb b/lib/isodoc/convert.rb
index <HASH>..<HASH> 100644
--- a/lib/isodoc/convert.rb
+++ b/lib/isodoc/convert.rb
@@ -125,6 +125,8 @@ module IsoDoc
stylesheet = File.read(filename, encoding: "UTF-8")
stylesheet = populate_template(stylesheet, :word)
stylesheet.gsub!(/(\... | refactor: Allow flavor SCSS to import from isodoc
#<I> | metanorma_isodoc | train | rb |
b5ce507df0e6650e5a589d8ea694496c2a15decb | diff --git a/src/events/touch.js b/src/events/touch.js
index <HASH>..<HASH> 100644
--- a/src/events/touch.js
+++ b/src/events/touch.js
@@ -41,7 +41,7 @@ let __touchHandler = function({ easingDuration }) {
};
this.$on('touchstart', container, (evt) => {
- cancelAnimationFrame(this.scrollAnimation);
+ ... | fix(touch): fix animation not canceled on touchstart | idiotWu_smooth-scrollbar | train | js |
48aeaff645baf3f42f5a8940ebd97563791ad9f8 | diff --git a/src/urlRouter.js b/src/urlRouter.js
index <HASH>..<HASH> 100644
--- a/src/urlRouter.js
+++ b/src/urlRouter.js
@@ -279,7 +279,8 @@ function $UrlRouterProvider( $locationProvider, $urlMatcherFactory) {
if (evt && evt.defaultPrevented) return;
var ignoreUpdate = lastPushedUrl && $location.ur... | fix(urlRouter): allow .when() to redirect, even after a successful $state.go()
- This partially reverts a change from <I> intended to stop infinite redirects.
- <URL> | ui-router_angular | train | js |
f1763c759c2a3378f21a2dee6063b5ae6efed193 | diff --git a/lib/chef/resource/macos_userdefaults.rb b/lib/chef/resource/macos_userdefaults.rb
index <HASH>..<HASH> 100644
--- a/lib/chef/resource/macos_userdefaults.rb
+++ b/lib/chef/resource/macos_userdefaults.rb
@@ -129,7 +129,7 @@ class Chef
Chef::Log.debug("Removing defaults key: #{new_resource.key}")
... | fix(macos_userdefaults): silent fail on set call | chef_chef | train | rb |
3e16af6dbca2d4b15d3069b9a383590385f94d54 | diff --git a/src/notebook/components/cell/cell-creator-buttons.js b/src/notebook/components/cell/cell-creator-buttons.js
index <HASH>..<HASH> 100644
--- a/src/notebook/components/cell/cell-creator-buttons.js
+++ b/src/notebook/components/cell/cell-creator-buttons.js
@@ -1,5 +1,5 @@
/* eslint class-methods-use-this: 0 ... | chore(CellCreatorButtons): Add Flow types to CellCreatorButtons | nteract_nteract | train | js |
70ae7b42304409807470780a6398a5491800cfb1 | diff --git a/tests/rkt_exit_test.go b/tests/rkt_exit_test.go
index <HASH>..<HASH> 100644
--- a/tests/rkt_exit_test.go
+++ b/tests/rkt_exit_test.go
@@ -70,19 +70,6 @@ func TestExitCodeWithSeveralApps(t *testing.T) {
}
}
- t.Logf("Check intermediary status\n")
-
- // TODO: how to make sure hello0 and hello1 termin... | test: fix race in TestExitCodeWithSeveralApps
Only check the return status after the pod terminates. The test was
racy.
Users don't have a good way yet to control when the pod terminate after
an app exits. This test could be revisited if this gets implemented. See
discussion about --nuclear-exit (<URL> | rkt_rkt | train | go |
429b5199c9d351c9df2203fc2be104ba2033e02c | diff --git a/core/src/elements/ons-tabbar/index.js b/core/src/elements/ons-tabbar/index.js
index <HASH>..<HASH> 100644
--- a/core/src/elements/ons-tabbar/index.js
+++ b/core/src/elements/ons-tabbar/index.js
@@ -232,6 +232,7 @@ export default class TabbarElement extends BaseElement {
contentReady(this, () => {
... | fix(ons-tabbar): Recalculate tabbar border asynchronously for iframes. | OnsenUI_OnsenUI | train | js |
d9303d25c4e2ede5af4158ac7e8daeb9ad3f6cec | diff --git a/pipes/iam/__main__.py b/pipes/iam/__main__.py
index <HASH>..<HASH> 100644
--- a/pipes/iam/__main__.py
+++ b/pipes/iam/__main__.py
@@ -37,7 +37,7 @@ def main():
logging.getLogger(__package__).setLevel(args.debug)
vars(args).pop('debug')
- create_iam_resources(env=args.env, group=args.group, a... | fix: Assert that command completed
See also: PSOBAT-<I> | foremast_foremast | train | py |
7175d1e548e3f85780bf2efebc0ef7e025c75f01 | diff --git a/tests/pbxextensions/TestProjectFlags.py b/tests/pbxextensions/TestProjectFlags.py
index <HASH>..<HASH> 100644
--- a/tests/pbxextensions/TestProjectFlags.py
+++ b/tests/pbxextensions/TestProjectFlags.py
@@ -233,8 +233,8 @@ class ProjectFlagsTest(unittest.TestCase):
def testAddRunScriptWithInstallBuild(... | chore: adjust test after running setup.py | kronenthaler_mod-pbxproj | train | py |
1d5eaa1190acf645b611735bcd3eba023193778e | diff --git a/src/Factory/AdapterFactory.php b/src/Factory/AdapterFactory.php
index <HASH>..<HASH> 100644
--- a/src/Factory/AdapterFactory.php
+++ b/src/Factory/AdapterFactory.php
@@ -16,6 +16,11 @@ use Gush\Adapter\Configurator;
use Gush\Config;
use Symfony\Component\Console\Helper\HelperSet;
+/**
+ * AdapterFactor... | fix(Factory): AdapterFactory wrong condition check | gushphp_gush | train | php |
bc667f34bd59ac720c0d0d99780e123471a9dc63 | diff --git a/src/Common/Misc/AnnotationBuilder/index.js b/src/Common/Misc/AnnotationBuilder/index.js
index <HASH>..<HASH> 100644
--- a/src/Common/Misc/AnnotationBuilder/index.js
+++ b/src/Common/Misc/AnnotationBuilder/index.js
@@ -79,7 +79,7 @@ function markModified(annotationObject) {
// Exposed object
// ----------... | fix(AnnotationBuilder): Provide empty list rather than 0 for empty annotation score | Kitware_paraviewweb | train | js |
04e589c0d47d4202c48eeaf397655db4c1d63ff9 | diff --git a/packages/yargs/mixins/log/mixin.core.js b/packages/yargs/mixins/log/mixin.core.js
index <HASH>..<HASH> 100644
--- a/packages/yargs/mixins/log/mixin.core.js
+++ b/packages/yargs/mixins/log/mixin.core.js
@@ -31,8 +31,8 @@ module.exports = class CLIMixin extends Mixin {
webpackConfig.plugins.push({
... | feat(yargs): write log upon graceful server shutdown | untool_untool | train | js |
7ae84706f73bcbd0950bba310659e22d3c921bf0 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -96,7 +96,7 @@ var BrowserStackBrowser = function(id, emitter, args, logger,
browser_version: args.browser_version || args.version || 'latest',
url: url + '?id=' + id + '&return_url=about:blank',
'browsers... | fix: set default timeout
Otherwise BS complains it is not a number. | karma-runner_karma-browserstack-launcher | train | js |
76a6a34423a249b3e6a11c2d116ce6f5379f2f42 | diff --git a/codec.go b/codec.go
index <HASH>..<HASH> 100644
--- a/codec.go
+++ b/codec.go
@@ -19,6 +19,10 @@ func NewCodec(rwc io.ReadWriteCloser) *Codec {
return &Codec{relay: NewSocketRelay(rwc)}
}
+func NewCodecWithRelay(relay Relay) *Codec {
+ return &Codec{relay: relay}
+}
+
// ReadRequestHeader receives
f... | feat: allow user to customize codec relay
solves #<I> | spiral_goridge | train | go |
e9ecb969f8c69f3a53aac466d05d1cb90a0c572b | diff --git a/lib/core/EventBus.js b/lib/core/EventBus.js
index <HASH>..<HASH> 100644
--- a/lib/core/EventBus.js
+++ b/lib/core/EventBus.js
@@ -380,12 +380,11 @@ EventBus.prototype._invokeListener = function(event, args, listener) {
if (returnValue === false) {
event.preventDefault();
}
- } catch (e) {... | chore: log EventBus error and message on the same line | bpmn-io_diagram-js | train | js |
0a01574ff7860eedfc8dce9354da1780ce0ba91e | diff --git a/core/commands/swarm.go b/core/commands/swarm.go
index <HASH>..<HASH> 100644
--- a/core/commands/swarm.go
+++ b/core/commands/swarm.go
@@ -79,7 +79,7 @@ var swarmPeeringCmd = &cmds.Command{
Tagline: "Modify the peering subsystem.",
ShortDescription: `
'ipfs swarm peering' manages the peering subsyste... | docs: fix typo in the `swarm/peering` help text | ipfs_go-ipfs | train | go |
8e6e4747c377bf54a2abca9f7090e286288a267e | diff --git a/lib/util/index.js b/lib/util/index.js
index <HASH>..<HASH> 100644
--- a/lib/util/index.js
+++ b/lib/util/index.js
@@ -2231,6 +2231,7 @@ function onSocketEnd(socket, callback) {
}
socket.on('error', execCallback);
socket.once('close', execCallback);
+ socket.once('timeout', execCallback);
}
ex... | refactor: add timeout event | avwo_whistle | train | js |
c5ed0ea89df4552893a99638a4af72f8c5699015 | diff --git a/website/publish.js b/website/publish.js
index <HASH>..<HASH> 100644
--- a/website/publish.js
+++ b/website/publish.js
@@ -1,14 +1,12 @@
#!/usr/bin/env node
-const fs = require('fs-extra');
-const path = require('path');
const shell = require('shelljs');
const currentCommit = shell.exec('git rev-pars... | chore: correct git worktree command | KnisterPeter_tsdi | train | js |
f687bc4c4f2aeea92e196a989726e79771e643d9 | diff --git a/lib/client.js b/lib/client.js
index <HASH>..<HASH> 100644
--- a/lib/client.js
+++ b/lib/client.js
@@ -903,7 +903,12 @@ function resume (client) {
function write (client, request) {
const { body, header } = request
- let contentLength = util.bodyLength(body, true)
+ if (body && typeof body.read === ... | refactor: inline read(0) with comment | mcollina_undici | train | js,js |
eacb75af0e345d34bf2fbf2a6b39caf813106456 | diff --git a/package.json b/package.json
index <HASH>..<HASH> 100644
--- a/package.json
+++ b/package.json
@@ -36,6 +36,6 @@
"eslint-plugin-bpmn-io": "^0.5.2",
"mocha": "^5.0.1",
"npm-run-all": "^4.1.2",
- "run-camunda": "^1.0.3"
+ "run-camunda": "^1.1.1"
}
}
diff --git a/test/backoff-spec.js b... | chore(project): bump run-camunda version | nikku_camunda-worker-node | train | json,js,js |
7b9783490fc4cc11578cefc0f3dc6b0d1fb26148 | diff --git a/src/babel/package.js b/src/babel/package.js
index <HASH>..<HASH> 100644
--- a/src/babel/package.js
+++ b/src/babel/package.js
@@ -11,6 +11,9 @@ module.exports = packageConf => {
// Adapting script to work with Babel
packageConf.scripts = packageConf.scripts || {};
packageConf.scripts.cli = 'env NO... | fix(JSDocs): Fix the docs generation when used with ES7 | nfroidure_metapak-nfroidure | train | js |
ab9ffdfa09c64a10b4f955db21ed4de0a0bf7a9d | diff --git a/src/scripts/03-params.js b/src/scripts/03-params.js
index <HASH>..<HASH> 100644
--- a/src/scripts/03-params.js
+++ b/src/scripts/03-params.js
@@ -481,6 +481,8 @@ app.factory('NgTableParams', ['$q', '$log', 'ngTableDefaults', function($q, $log
// If getData resolved the $defer, and didn't p... | feat(ngTableParams): allow getData to return an array of data
This simplifies using ng-table with in memory lists of data | esvit_ng-table | train | js |
b11261aca5ad3ee40efe2c04f316f8f8917e7be6 | diff --git a/packages/node_modules/@webex/test-users/src/index.js b/packages/node_modules/@webex/test-users/src/index.js
index <HASH>..<HASH> 100644
--- a/packages/node_modules/@webex/test-users/src/index.js
+++ b/packages/node_modules/@webex/test-users/src/index.js
@@ -197,7 +197,7 @@ export function createTestUser(op... | fix(test-users): remove reference to response request
The response request object does not appear to be
available in browser tests. To prevent an error,
utilize the parent-scoped body for the password
value. | webex_spark-js-sdk | train | js |
e823e5047df6094dc24e7394dd738d4e1d80473c | diff --git a/framework/views/carousel.js b/framework/views/carousel.js
index <HASH>..<HASH> 100644
--- a/framework/views/carousel.js
+++ b/framework/views/carousel.js
@@ -511,7 +511,7 @@ limitations under the License.
if (!waitForAction) {
this._scrollToKillOverScroll();
}
- } ... | fix(ons-carousel): drag event cannot be undefined | OnsenUI_OnsenUI | train | js |
450314727d47c2c6e27203c1ab2f14ffa08cfbdd | diff --git a/intranet/static/js/bus.js b/intranet/static/js/bus.js
index <HASH>..<HASH> 100644
--- a/intranet/static/js/bus.js
+++ b/intranet/static/js/bus.js
@@ -337,7 +337,7 @@ $(function() {
text.style('pointer-events', 'none');
if(window.isSignage) {
- ... | fix(bus): fix bus alignment on signage cutting off text | tjcsl_ion | train | js |
e4599e7e8cb0b25272a9550bdba008449ad05505 | diff --git a/react/Columns/Columns.js b/react/Columns/Columns.js
index <HASH>..<HASH> 100644
--- a/react/Columns/Columns.js
+++ b/react/Columns/Columns.js
@@ -5,17 +5,26 @@ import PropTypes from 'prop-types';
import classnames from 'classnames';
const renderColumn = (el, index) => (
- <div key={index} className={s... | fix(Columns): Allow Columns to accept a className prop (#<I>) | seek-oss_seek-style-guide | train | js |
0b8035df734bc43495e26b98395370e466964fe6 | diff --git a/core/src/elements/ons-tabbar/index.js b/core/src/elements/ons-tabbar/index.js
index <HASH>..<HASH> 100644
--- a/core/src/elements/ons-tabbar/index.js
+++ b/core/src/elements/ons-tabbar/index.js
@@ -311,9 +311,9 @@ export default class TabbarElement extends BaseElement {
}
_getAutoScrollRatio(matche... | refactor(ons-tabbar): Swipe formula based on screen size. | OnsenUI_OnsenUI | train | js |
6c7e2fae9ef09e1d7841f87d386ecd7eda74abd6 | diff --git a/src/server/routes/post-sql-request.js b/src/server/routes/post-sql-request.js
index <HASH>..<HASH> 100644
--- a/src/server/routes/post-sql-request.js
+++ b/src/server/routes/post-sql-request.js
@@ -1,3 +1,5 @@
+import path from 'path'
+import url from 'url'
import {
cmsData
,abeExtend
@@ -9,7 +11,9 ... | fix: the prefill refresh didn't had the referer path so the select was always done from data root | abecms_abecms | train | js |
32d1012bc3f3dff7631d6430dd0290893b92ed26 | diff --git a/test/integration/require-test.js b/test/integration/require-test.js
index <HASH>..<HASH> 100644
--- a/test/integration/require-test.js
+++ b/test/integration/require-test.js
@@ -79,7 +79,7 @@ describe('Requiring user-provided modules (e.g. language compilers)', () => {
assert.equal(dreddRuntimeInfo.... | test: asserts inclusion of require error message instead of equality | apiaryio_dredd | train | js |
47a23d0a61a989cc00b6795f83dc5df78ab6d969 | diff --git a/lib/datasource/go.js b/lib/datasource/go.js
index <HASH>..<HASH> 100644
--- a/lib/datasource/go.js
+++ b/lib/datasource/go.js
@@ -34,10 +34,10 @@ async function getSourcePurl(name) {
new RegExp(`<meta name="go-source" content="${name}\\s+([^\\s]+)`)
);
if (sourceMatch) {
- const [, so... | chore: rename for less confusion | renovatebot_renovate | train | js |
5525ffc9eb1536b1abfbc1bda925185a71688dd9 | diff --git a/algoliasearch/__init__.py b/algoliasearch/__init__.py
index <HASH>..<HASH> 100644
--- a/algoliasearch/__init__.py
+++ b/algoliasearch/__init__.py
@@ -35,3 +35,4 @@ class algoliasearch(object):
Client = client.Client
Index = index.Index
AlgoliaException = helpers.AlgoliaException
+ Request... | feat(request_options): put RequestOptions at the top level | algolia_algoliasearch-client-python | train | py |
8da7bd7953cd8e6d7c205a6a5724302419b9933f | diff --git a/lib/cmds/run.js b/lib/cmds/run.js
index <HASH>..<HASH> 100644
--- a/lib/cmds/run.js
+++ b/lib/cmds/run.js
@@ -43,6 +43,7 @@ class RunCommand extends Command {
// This is used in the worker to resolve
// the path to the processor module
scriptPath: args.script,
+ absoluteSc... | fix: pass absoluteScrpitPath in for consistency
workers pass in absolute path which may be used by some plugins | artilleryio_artillery | train | js |
400c7dd7a2bc55c0222e52837a58e94f32870153 | diff --git a/pyneuroml/pynml.py b/pyneuroml/pynml.py
index <HASH>..<HASH> 100644
--- a/pyneuroml/pynml.py
+++ b/pyneuroml/pynml.py
@@ -2186,6 +2186,7 @@ def run_jneuroml(
jar_path = get_path_to_jnml_jar()
output = ""
+ retcode = -1
try:
command = 'java -Xmx%s %s -jar "%s" %s "%s" %s' % (... | feat: correct command output based return status | NeuroML_pyNeuroML | train | py |
a473e766121b4bf870f920176c2390157aa89144 | diff --git a/src/core/Observable.js b/src/core/Observable.js
index <HASH>..<HASH> 100644
--- a/src/core/Observable.js
+++ b/src/core/Observable.js
@@ -12,12 +12,10 @@ const ObservableMixin = base => {
if (!this._eventMap)
this._eventMap = new Map
- let callbacks = undefined
+ ... | fix: use length instead of size, it's not a Set | trusktr_infamous | train | js |
12e5b71972e8bde7e85c67812ddaac37c97cbc03 | diff --git a/src/cookie.js b/src/cookie.js
index <HASH>..<HASH> 100644
--- a/src/cookie.js
+++ b/src/cookie.js
@@ -12,7 +12,7 @@ import { debug } from './config'
*/
const setItem = (key, value, expires = 1) => {
if (window.navigator && !window.navigator.cookieEnabled) {
- session.set(key, value)
+ session.s... | fix(session): fix the undefined function get in the session object
wrong method was called when saving item in the memory | MatteoGabriele_storage-helper | train | js |
2dd789a65527721a24885c90cd84eea95e48aac9 | diff --git a/packages/wpcom.js/test/index.js b/packages/wpcom.js/test/index.js
index <HASH>..<HASH> 100644
--- a/packages/wpcom.js/test/index.js
+++ b/packages/wpcom.js/test/index.js
@@ -3,6 +3,7 @@
*/
var WPCOM = require('../');
+var assert = require('assert');
/**
* Testing data
@@ -21,15 +22,14 @@ describe... | test: replace `should` by `assert` index test | Automattic_wp-calypso | train | js |
2b0214f1bda2c36a5eb4e8d0c22148c146d55ee3 | diff --git a/packages/app-backend/src/hook.js b/packages/app-backend/src/hook.js
index <HASH>..<HASH> 100644
--- a/packages/app-backend/src/hook.js
+++ b/packages/app-backend/src/hook.js
@@ -519,7 +519,7 @@ export function installHook (target) {
// if the object cannot / should not be cloned, don't
if (
... | fix(clone): then error | vuejs_vue-devtools | train | js |
f0f5e0f25b052c6b7e7c452f1ecd81442684ae2f | diff --git a/app/inputs/nested_select_input.rb b/app/inputs/nested_select_input.rb
index <HASH>..<HASH> 100644
--- a/app/inputs/nested_select_input.rb
+++ b/app/inputs/nested_select_input.rb
@@ -117,7 +117,7 @@ class NestedSelectInput < Formtastic::Inputs::StringInput
return unless attribute
attribute_value =... | fix(NestedSelect2): constantize and camelize failing with some attribute names | platanus_activeadmin_addons | train | rb |
c6cec9f3bef6c0b359d1605374a23670a3fec4c2 | diff --git a/packages/cwp-template-aws/template/webiny.project.js b/packages/cwp-template-aws/template/webiny.project.js
index <HASH>..<HASH> 100644
--- a/packages/cwp-template-aws/template/webiny.project.js
+++ b/packages/cwp-template-aws/template/webiny.project.js
@@ -1,6 +1,6 @@
module.exports = {
template: "[... | fix: change "projectName" to "name" | Webiny_webiny-js | train | js |
6a5ce6708d8fb468274c22423463189beff6d3a8 | diff --git a/lib/elastomer.js b/lib/elastomer.js
index <HASH>..<HASH> 100644
--- a/lib/elastomer.js
+++ b/lib/elastomer.js
@@ -342,13 +342,16 @@ Elastomer.prototype.mapAttribute = function (attribute, formatter, callback) {
}, true)
attrWatcher = self.watchAttribute(attribute, function (value, previous) {
- ... | fix: Fix null and undefined handling in map* | nodys_elastomer | train | js |
8b69efcdb91d3ffd3628d42c0a95a88272f1e57f | diff --git a/util/argo/audit_logger.go b/util/argo/audit_logger.go
index <HASH>..<HASH> 100644
--- a/util/argo/audit_logger.go
+++ b/util/argo/audit_logger.go
@@ -72,7 +72,7 @@ func (l *AuditLogger) logEvent(objMeta ObjectRef, gvk schema.GroupVersionKind, i
Name: objMeta.Name,
Namespace: objMet... | fix: Include resource group for events InvolvedObject.APIVersion #<I> (#<I>) | argoproj_argo-cd | train | go |
ce2884baf727d059645a1bbeccc69e9a4afea579 | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -137,8 +137,8 @@ html_theme_options = {
'github_banner': True,
'show_powered_by': False,
'extra_nav_links': {
- 'invenio-webhooks@GitHub': 'http://github.com/inveniosoftware/invenio-webhoo... | docs: autodoc configuration and HTTPS fix
* Replaces HTTP links with HTTPS where possible. | inveniosoftware_invenio-webhooks | train | py |
f1a55c69cd19d443e03238694ed9e98e4069f205 | diff --git a/synth.py b/synth.py
index <HASH>..<HASH> 100644
--- a/synth.py
+++ b/synth.py
@@ -25,6 +25,8 @@ java.common_templates(excludes=[
'.github/snippet-bot.yml',
'.github/release-please.yml',
'.github/workflows/*',
+ '.kokoro/linkage-monitor.sh',
+ '.kokoro/presubmit/linkage-monitor.cfg',
'.kokoro/... | chore: exclude linkage monitor from synth regeneration (#<I>) | googleapis_cloud-bigtable-client | train | py |
b71a5a5955520fac7c54141f975a6c226cd1cb1e | diff --git a/lib/browser/api/menu-item-roles.js b/lib/browser/api/menu-item-roles.js
index <HASH>..<HASH> 100644
--- a/lib/browser/api/menu-item-roles.js
+++ b/lib/browser/api/menu-item-roles.js
@@ -254,7 +254,8 @@ exports.getDefaultAccelerator = (role) => {
}
exports.shouldRegisterAccelerator = (role) => {
- retu... | fix: register accelerator if role has no registerAccelerator (#<I>)
* fix: register accelerator if role has no registerAccelerator
* ensure roles[role].registerAccelerator is defined | electron_electron | train | js |
cac47d9341eeca1f93294f3becf2621d636d70c2 | diff --git a/packages/core/index.js b/packages/core/index.js
index <HASH>..<HASH> 100644
--- a/packages/core/index.js
+++ b/packages/core/index.js
@@ -14,7 +14,7 @@ exports.Mixin = class Mixin {
}
};
-exports.bootstrap = function bootstrap(overrides = {}, ...args) {
+exports.initialize = function initialize(overr... | refactor(core): rename bootstrap to initialize | untool_untool | train | js |
f51a53360408196f4ab077458aedd3bcf7337a1e | diff --git a/modules/waterfall/Batcher.js b/modules/waterfall/Batcher.js
index <HASH>..<HASH> 100644
--- a/modules/waterfall/Batcher.js
+++ b/modules/waterfall/Batcher.js
@@ -1,4 +1,4 @@
-// Inspired by https://caolan.github.io/async/docs.html#cargo
+// Inspired by https://caolan.github.io/async/v3/docs.html#cargo
// ... | docs: Fixing url address in modules/watrerfall/Batcher.js (#<I>) | mui-org_material-ui | train | js |
41b990c243318ce596e0f4ef978e166d8f60e8c7 | diff --git a/lib/override-console.js b/lib/override-console.js
index <HASH>..<HASH> 100644
--- a/lib/override-console.js
+++ b/lib/override-console.js
@@ -17,6 +17,7 @@ module.exports = function() {
const originalMethods = {};
for (const methodName of methodNames) {
+ if (!console[methodName]) contin... | fix(override-console): check if console method exists | papb_jsonify-error | train | js |
91579b83bb9229c26a90ac0bbc7ca2146f89bde3 | diff --git a/go/vt/vttablet/tabletmanager/rpc_replication.go b/go/vt/vttablet/tabletmanager/rpc_replication.go
index <HASH>..<HASH> 100644
--- a/go/vt/vttablet/tabletmanager/rpc_replication.go
+++ b/go/vt/vttablet/tabletmanager/rpc_replication.go
@@ -814,7 +814,8 @@ func (tm *TabletManager) PromoteReplica(ctx context.C... | feat: use reset function in promote replica so that we do not start the ticks | vitessio_vitess | train | go |
f61810575a2e79e93b01de2450d996ecfefd06bd | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -141,6 +141,14 @@ function writeJsonFile(fileContent) {
module.exports = function(packageConfig) {
var cartridgeApi = {};
+ cartridgeApi.exitIfDevEnvironment = function() {
+ if(process.env.NODE_ENV === 'development') {
... | feat: Add function to exit if NODE_ENV is 'development' | cartridge_cartridge-module-util | train | js |
88710e6b78d9f82393fdc5e967f950ea9333877c | diff --git a/libs/linker/billsToOperation/operationsFilters.js b/libs/linker/billsToOperation/operationsFilters.js
index <HASH>..<HASH> 100644
--- a/libs/linker/billsToOperation/operationsFilters.js
+++ b/libs/linker/billsToOperation/operationsFilters.js
@@ -7,7 +7,7 @@ const { getIdentifiers, getDateRangeFromBill, get... | fix: add MGEN as a health connector | konnectors_libs | train | js |
ebe41f7ef20edfbce50d62e82c31424a2bd05d0b | diff --git a/actor-sdk/sdk-core/core/core-shared/src/main/java/im/actor/core/modules/internal/CallsModule.java b/actor-sdk/sdk-core/core/core-shared/src/main/java/im/actor/core/modules/internal/CallsModule.java
index <HASH>..<HASH> 100644
--- a/actor-sdk/sdk-core/core/core-shared/src/main/java/im/actor/core/modules/int... | fix(core): remove call ended by timeout | actorapp_actor-platform | train | java |
85a7e560d71b7e1cb04f41b150e8bc935deb3ee1 | diff --git a/cloudvolume/cloudvolume.py b/cloudvolume/cloudvolume.py
index <HASH>..<HASH> 100644
--- a/cloudvolume/cloudvolume.py
+++ b/cloudvolume/cloudvolume.py
@@ -177,6 +177,7 @@ class CloudVolume(object):
if use_https:
cloudpath = cloudpath.replace("gs://", "https://storage.googleapis.com/", 1)
... | feat: support use_https for matrix:// | seung-lab_cloud-volume | train | py |
8355df2798e7bfa96d8513b182156af1778a98bc | diff --git a/src/test/java/com/twilio/http/RequestTest.java b/src/test/java/com/twilio/http/RequestTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/com/twilio/http/RequestTest.java
+++ b/src/test/java/com/twilio/http/RequestTest.java
@@ -25,10 +25,10 @@ public class RequestTest {
@Test
public void ... | test: change RequestTest to use flexapi instead of ip-messaging (#<I>) | twilio_twilio-java | train | java |
f64c39c9ad5b90ac884c11dfb0eaf16620a6d999 | diff --git a/lib/template.js b/lib/template.js
index <HASH>..<HASH> 100644
--- a/lib/template.js
+++ b/lib/template.js
@@ -67,5 +67,5 @@ template.escape = function (str) {
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/"/g, '"')
- .replace(/'/g, ''');
+ .replace(/'/g, ''');
};
... | fix(quote): escape quote with the right html value | avetisk_ak-template | train | js,js |
06edbffa79a2a30d41fd62f62466dcc55267a03c | diff --git a/ebitenutil/loadimage.go b/ebitenutil/loadimage.go
index <HASH>..<HASH> 100644
--- a/ebitenutil/loadimage.go
+++ b/ebitenutil/loadimage.go
@@ -32,7 +32,7 @@ import (
// How to solve path depends on your environment. This varies on your desktop or web browser.
// Note that this doesn't work on mobiles.
//... | docs: Change docs about go-bindata into rakyll/statik (#<I>)
go-bindata is not appropriate because no longer maintained. | hajimehoshi_ebiten | train | go |
da2a0261bca0d02f400af0466aaf8b6e85c2219d | diff --git a/test/k8sT/assertionHelpers.go b/test/k8sT/assertionHelpers.go
index <HASH>..<HASH> 100644
--- a/test/k8sT/assertionHelpers.go
+++ b/test/k8sT/assertionHelpers.go
@@ -146,6 +146,14 @@ func SkipIfFlannel() {
}
}
+// skipIfDoesNotRunOnNetNext will skip the test if it's not running on
+// the {net,bpf}-ne... | test: Add helper to skip test if running on non net-next | cilium_cilium | train | go |
d629ed7d5b6d664f72f66f2921723b2e10d25eea | diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -137,6 +137,7 @@ var BENCHPRESS_BUNDLE_CONFIG = {
],
excludes: [
'traceur',
+ 'traceur/bin/traceur-runtime',
'reflect-metadata',
'selenium-webdriver',
'rtts_assert', | fix(bundle): don’t bundle traceur/reflect into benchpress - amended change
Don’t need to bundle them as they are already
present in G3. I.e. the benchpress bundle
only includes benchpress and Angular2 bits.
Also removes adding license headers for now,
as we only have one license. | angular_angular | train | js |
76d3d3cc4a77b790cec9c468d1bbc65e512bf326 | diff --git a/deb/deb.go b/deb/deb.go
index <HASH>..<HASH> 100644
--- a/deb/deb.go
+++ b/deb/deb.go
@@ -31,7 +31,8 @@ func init() {
var archToDebian = map[string]string{
"386": "i386",
"arm": "armhf",
- "arm6": "armel",
+ "arm5": "armel",
+ "arm6": "armhf",
"arm7": "armhf",
"mipsle": "mipse... | fix: updated architectures for arm5 and arm6 | goreleaser_nfpm | train | go |
279adfb2b6980c016ffae339bbe97dfb19fd87b1 | diff --git a/packages/vaex-core/vaex/serialize.py b/packages/vaex-core/vaex/serialize.py
index <HASH>..<HASH> 100644
--- a/packages/vaex-core/vaex/serialize.py
+++ b/packages/vaex-core/vaex/serialize.py
@@ -1,5 +1,4 @@
import vaex.utils
-from traitlets import *
registry = {} | fix: was importing traitlets for nothing | vaexio_vaex | train | py |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.