hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
c65f7a1d937a6caf768122761c28b994855b975b | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -52,7 +52,7 @@ print('Packages being installed: {}'.format(packages))
install_requires = [
'wsgiref==0.1.2',
'six==1.9.0',
- 'setuptools==14.3.1',
+ 'setuptools>=14.3',
'pyzmq==14.5.0',
'Unidecode==0... | setuptools==<I> installed by conda and can't be uninstalled (nonexistent file) | hobson_pug-invest | train |
248daf21a40e1eb6cceeea640542f5e0b822f76e | diff --git a/public/summernote/summernote.js b/public/summernote/summernote.js
index <HASH>..<HASH> 100644
--- a/public/summernote/summernote.js
+++ b/public/summernote/summernote.js
@@ -1447,7 +1447,8 @@
$image.css({
display: '',
//width: Math.min($editable.width(), $image.width())
- ... | Few updates to the image resizing code. | CoandaCMS_coanda-core | train |
d5b8cfff59ece4e639b72e0ad04d7cc5fedc1e62 | diff --git a/ui/mirage/config.js b/ui/mirage/config.js
index <HASH>..<HASH> 100644
--- a/ui/mirage/config.js
+++ b/ui/mirage/config.js
@@ -16,12 +16,29 @@ export default function() {
this.get('/jobs', function({ jobs }, { queryParams }) {
const json = this.serialize(jobs.all());
+ const namespace = queryPa... | Update job factories and mock endpoints to handle namespaces correctly | hashicorp_nomad | train |
48553f969a39f75a4ae0617febb9e1bbb9503a84 | diff --git a/mutant/forms.py b/mutant/forms.py
index <HASH>..<HASH> 100644
--- a/mutant/forms.py
+++ b/mutant/forms.py
@@ -2,7 +2,7 @@ from __future__ import unicode_literals
from django import forms
from django.contrib.contenttypes.models import ContentType
-from django.utils.encoding import force_text
+from djang... | Make sure `FieldDefinitionTypeField` always uses description as choice label. | charettes_django-mutant | train |
eb5907078a989caeb4a42c605e2b8703735496ac | diff --git a/chalkboard/chalkboard.js b/chalkboard/chalkboard.js
index <HASH>..<HASH> 100644
--- a/chalkboard/chalkboard.js
+++ b/chalkboard/chalkboard.js
@@ -105,7 +105,6 @@ var RevealChalkboard = window.RevealChalkboard || (function(){
penCursors[0] = config.pen[0];
boardCursors[0] = config.pen[1];
}
- if ( c... | Remove reference to config.draw. | rajgoel_reveal.js-plugins | train |
695e1763003a7d2a6e027e8818d292a4c23faa9c | diff --git a/test/jumpstart/test_base.rb b/test/jumpstart/test_base.rb
index <HASH>..<HASH> 100755
--- a/test/jumpstart/test_base.rb
+++ b/test/jumpstart/test_base.rb
@@ -110,6 +110,14 @@ class TestJumpstartBase < Test::Unit::TestCase
end
end
+
+ context "Tests for the JumpStart::Base#create_... | added more tests to be written in base | i0n_jumpstart | train |
b7ce11e16495a4592eeb36b233755a426c458a17 | diff --git a/skyfield/iokit.py b/skyfield/iokit.py
index <HASH>..<HASH> 100644
--- a/skyfield/iokit.py
+++ b/skyfield/iokit.py
@@ -1,6 +1,7 @@
from __future__ import print_function
import itertools
import os
+import errno
import numpy as np
import sys
from datetime import date, datetime, timedelta
@@ -79,8 +80,11... | Parse TLE files that lack satellite names (#<I>)
Updated `parse_celestrak_tle()` to accept two-line element sets that do
not specify a satellite name, and to grab the satellite ID from the
first line to use as the name when initializing EarthSatellite objects. | skyfielders_python-skyfield | train |
147d8af438d60c267da4eb89e57f8b9a7afad9a6 | diff --git a/executor.go b/executor.go
index <HASH>..<HASH> 100644
--- a/executor.go
+++ b/executor.go
@@ -6,14 +6,14 @@ import (
// Execute executes a tree of *Actions sequentually in depth first order.
func Execute(a *Action) error {
- seen := make(map[*Action]bool)
+ seen := make(map[*Action]error)
return exec... | Fix bugs with exector
- fix concurrent executor not waiting for all actions to exit
- pass error back to caller in sync executor | constabulary_gb | train |
bf8fa5571138712d804dd667888061549a4f6e47 | diff --git a/lib/compare.js b/lib/compare.js
index <HASH>..<HASH> 100644
--- a/lib/compare.js
+++ b/lib/compare.js
@@ -21,12 +21,7 @@ function shortcircuitPrimitive (value) {
return false
}
-function compare (actual, expected) {
- if (actual === expected) return true
- // Primitive values should be the same, so... | Change compare() to return an object
Returns the described actual and expected values, so a diff can be
generated.
Export both compare() and compareDescriptors(), the latter should be
called with descriptors rather than raw values. | concordancejs_concordance | train |
96547fcc5285dc0d650b6138216a9dbc505759f2 | diff --git a/src/view/items/element/Decorator.js b/src/view/items/element/Decorator.js
index <HASH>..<HASH> 100644
--- a/src/view/items/element/Decorator.js
+++ b/src/view/items/element/Decorator.js
@@ -72,10 +72,11 @@ export default class Decorator {
resolver = this.parentFragment.resolve( ref, model => {
... | register decorators with their models so that they updated correctly - fixes #<I> | ractivejs_ractive | train |
7cde8cbbca360efbf1a19775a7fc7ba97719c34d | diff --git a/dvc/project.py b/dvc/project.py
index <HASH>..<HASH> 100644
--- a/dvc/project.py
+++ b/dvc/project.py
@@ -362,7 +362,7 @@ class Project(object):
stages = self.active_stages()
for stage in stages:
- if not stage.locked:
+ if stage.locked:
msg = ... | status: print locked warning only when stage is locked
Fixes #<I> | iterative_dvc | train |
aeb27bdb5bc836e1871f9db526e6ab8d505d4442 | diff --git a/plugin/file/reload.go b/plugin/file/reload.go
index <HASH>..<HASH> 100644
--- a/plugin/file/reload.go
+++ b/plugin/file/reload.go
@@ -25,6 +25,7 @@ func (z *Zone) Reload() error {
serial := z.SOASerialIfDefined()
zone, err := Parse(reader, z.origin, zFile, serial)
+ reader.Close()
if er... | plugin/file: close reader for reload (#<I>)
This reloader didn't close the openened file handle. Add a close. Can't
use `defer` because this is in a endless loop. | coredns_coredns | train |
b23bba970063de6762c457c4db7f3a4436a93bd3 | diff --git a/pandas/core/indexes/base.py b/pandas/core/indexes/base.py
index <HASH>..<HASH> 100644
--- a/pandas/core/indexes/base.py
+++ b/pandas/core/indexes/base.py
@@ -2826,7 +2826,9 @@ class Index(IndexOpsMixin, PandasObject):
self._assert_can_do_setop(other)
other, _ = self._convert_can_do_setop(... | BUG: Clean intersection and fix resulting names when MultiIndex are equal (#<I>) | pandas-dev_pandas | train |
c945b3e9c30329e83a4b75151f46fa94857d9e94 | diff --git a/lib/fog/cloudstack/core.rb b/lib/fog/cloudstack/core.rb
index <HASH>..<HASH> 100644
--- a/lib/fog/cloudstack/core.rb
+++ b/lib/fog/cloudstack/core.rb
@@ -13,6 +13,8 @@ module Fog
def self.escape(string)
string = CGI::escape(string)
string = string.gsub("+","%20")
+ # Escaped asteris... | Prevent malformed request with asterisk (*) character | fog_fog | train |
f7f64550200a20103dfcbee95ffadf6b7adfdddc | diff --git a/openquake/baselib/parallel.py b/openquake/baselib/parallel.py
index <HASH>..<HASH> 100644
--- a/openquake/baselib/parallel.py
+++ b/openquake/baselib/parallel.py
@@ -553,7 +553,7 @@ class Starmap(object):
cls.dask_client = Client()
@classmethod
- def shutdown(cls, poolsize=None):
+ ... | Avoided restarting the pool in the tests [demos] | gem_oq-engine | train |
d953a964cd32d3f3056c7f1ec45000ecbfc5ee8d | diff --git a/spec/homesick_spec.rb b/spec/homesick_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/homesick_spec.rb
+++ b/spec/homesick_spec.rb
@@ -94,7 +94,7 @@ describe 'homesick' do
end
it 'should clone a github repo' do
- homesick.should_receive(:git_clone).with('https://github.com/wfarr/dotfiles.gi... | Changed the spec, bundle exec rake works | technicalpickles_homesick | train |
e00670b9018d273c67ec4fc93244c98597e4aa83 | diff --git a/service/dap/server.go b/service/dap/server.go
index <HASH>..<HASH> 100644
--- a/service/dap/server.go
+++ b/service/dap/server.go
@@ -1024,6 +1024,8 @@ func (s *Server) stopDebugSession(killProcess bool) error {
s.log.Debug("halt returned state: ", exited)
}
if exited != nil {
+ // TODO(suzmue): lo... | service/debugger: return correct exit status on manual halt (#<I>)
* service/dap: add test for nonzero exit status | go-delve_delve | train |
bfb70b41f9fc9540afc6550a34f8fe4f2a137bd2 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -33,7 +33,7 @@ install_requires = ['penaltymodel>=0.15.0,<0.16.0',
'penaltymodel-maxgap>=0.4.0,<0.5.0; platform_machine == "x86" or python_version == "3.4"',
'penaltymodel-mip>=0.1.2,<... | Fix install_requires syntax in setup.py | dwavesystems_dwavebinarycsp | train |
4fb52a38b73c7e08d35df8e23dc9c88ea67f64b7 | diff --git a/src/Support/Period.php b/src/Support/Period.php
index <HASH>..<HASH> 100644
--- a/src/Support/Period.php
+++ b/src/Support/Period.php
@@ -100,6 +100,28 @@ class Period
}
/**
+ * Create a new Period instance with only a start date time.
+ *
+ * @param \Datetime $startDateTime
+ ... | feat: add static since and upto methods to Period class | cyrildewit_eloquent-viewable | train |
0e8b8649400fc2072309a76814f27e0b1dee5a8e | diff --git a/src/Symfony/Bundle/WebProfilerBundle/EventListener/WebDebugToolbarListener.php b/src/Symfony/Bundle/WebProfilerBundle/EventListener/WebDebugToolbarListener.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Bundle/WebProfilerBundle/EventListener/WebDebugToolbarListener.php
+++ b/src/Symfony/Bundle/WebProfil... | Fixing missing full_stack variable that's needed by toolbar.html.twig | symfony_symfony | train |
07617b65305544e2337c5d304e4a94ecccbf22c7 | diff --git a/src/passes/Pass.js b/src/passes/Pass.js
index <HASH>..<HASH> 100644
--- a/src/passes/Pass.js
+++ b/src/passes/Pass.js
@@ -226,25 +226,18 @@ export class Pass {
}
/**
- * Returns the current fullscreen material.
+ * The fullscreen material.
*
- * @return {Material} The current fullscreen materia... | Add fullscreenMaterial accessor
deprecated getFullscreenMaterial and setFullscreenMaterial. | vanruesc_postprocessing | train |
3eaa89efa830df2681a4c88f807195d0fde847a0 | diff --git a/enricher/fabric8/src/main/java/io/fabric8/maven/enricher/fabric8/IconEnricher.java b/enricher/fabric8/src/main/java/io/fabric8/maven/enricher/fabric8/IconEnricher.java
index <HASH>..<HASH> 100644
--- a/enricher/fabric8/src/main/java/io/fabric8/maven/enricher/fabric8/IconEnricher.java
+++ b/enricher/fabric8... | Make icon enrichment a bit less verbose | fabric8io_fabric8-maven-plugin | train |
616a22a15a3f4eef09a05a4b14263fb75a9a4e82 | diff --git a/packages/ReflectionDocBlock/src/NodeAnalyzer/DocBlockAnalyzer.php b/packages/ReflectionDocBlock/src/NodeAnalyzer/DocBlockAnalyzer.php
index <HASH>..<HASH> 100644
--- a/packages/ReflectionDocBlock/src/NodeAnalyzer/DocBlockAnalyzer.php
+++ b/packages/ReflectionDocBlock/src/NodeAnalyzer/DocBlockAnalyzer.php
@... | make use of TolerantVar from Symplify <I> | rectorphp_rector | train |
741af33b99b6ab90ec2ed2b91f81b3e984dbfdf8 | diff --git a/_example/memcached.go b/_example/memcached.go
index <HASH>..<HASH> 100644
--- a/_example/memcached.go
+++ b/_example/memcached.go
@@ -100,7 +100,7 @@ func readStat() (map[string]float64, error) {
if res[0] == "STAT" {
stat[res[1]], err = strconv.ParseFloat(res[2], 64)
if err != nil {
- fmt.Pr... | Output errors to stderr, at el. | mackerelio_go-mackerel-plugin-helper | train |
ac45621df2aeda94ddd15cea990040be8ff09957 | diff --git a/dev/provider_packages/prepare_provider_packages.py b/dev/provider_packages/prepare_provider_packages.py
index <HASH>..<HASH> 100644
--- a/dev/provider_packages/prepare_provider_packages.py
+++ b/dev/provider_packages/prepare_provider_packages.py
@@ -1192,10 +1192,16 @@ def update_generated_files_for_packag... | Workaround missing git commit in providers's check in CI (#<I>)
Temporary fix to unblock master PRs.
There is a problem with comparing/fetching commits during tests
and it should be investigated properly - this is temporary fix
to workaround it. | apache_airflow | train |
21a1ebe4ccd337e49328a11a43ea9cec7423350d | diff --git a/js/browser-ui.js b/js/browser-ui.js
index <HASH>..<HASH> 100644
--- a/js/browser-ui.js
+++ b/js/browser-ui.js
@@ -488,7 +488,7 @@ Browser.prototype.toggleOptsPopup = function(ev) {
b.positionRuler();
b.storeStatus();
}, false);
-
+ singleBaseHighlightButton.setAttr... | If a user presses the single base shortcut key (presently u), toggle the show single base checkbox if the options panel is displayed. | dasmoth_dalliance | train |
5fc1a090104a53c39f25d24a13c4bd7f5a87065a | diff --git a/test/unit/specs/popup.spec.js b/test/unit/specs/popup.spec.js
index <HASH>..<HASH> 100644
--- a/test/unit/specs/popup.spec.js
+++ b/test/unit/specs/popup.spec.js
@@ -26,22 +26,29 @@ describe('Popup', () => {
})
expect(vm.$el.className)
.to.equal('cube-popup cube-popup_mask')
+ e... | test(Popup): position and mask-closable | didi_cube-ui | train |
cd9e42ff1d1e6b7844f78a030bb76cbb68c01e0e | diff --git a/lib/websession.py b/lib/websession.py
index <HASH>..<HASH> 100644
--- a/lib/websession.py
+++ b/lib/websession.py
@@ -30,7 +30,7 @@ import cPickle
import time
from UserDict import UserDict
-from invenio.dbquery import run_sql, blob_to_string
+from invenio.dbquery import run_sql, blob_to_string, Operati... | Handle OperationalError database exception (in case the database
connection is down) in which case set user ID to -1 as for the
permission denied case. | inveniosoftware_invenio-accounts | train |
74aa0df8f7f132b62754e5159262e4a5b9b641ab | diff --git a/examples/src/main/java/org/apache/spark/examples/sql/streaming/JavaStructuredSessionization.java b/examples/src/main/java/org/apache/spark/examples/sql/streaming/JavaStructuredSessionization.java
index <HASH>..<HASH> 100644
--- a/examples/src/main/java/org/apache/spark/examples/sql/streaming/JavaStructured... | [SPARK-<I>][SS] Fix JavaStructuredSessionization example
## What changes were proposed in this pull request?
Extra accessors in java bean class causes incorrect encoder generation, which corrupted the state when using timeouts.
## How was this patch tested?
manually ran the example | apache_spark | train |
e28cc2fce05f2670eae76e96dc4c04af5c6ae42b | diff --git a/commands/story/start/command.go b/commands/story/start/command.go
index <HASH>..<HASH> 100644
--- a/commands/story/start/command.go
+++ b/commands/story/start/command.go
@@ -28,17 +28,17 @@ var Command = &gocli.Command{
UsageLine: "start [-base=BASE] [-no_branch] [-no_push]",
Short: "start a new st... | story start: Fix command help formatting
The description was not indented properly.
Story-Id: SF-<I>
Change-Id: e<I>c3c<I>b | salsaflow_salsaflow | train |
f561ca2c13748211905bc2af8ec5805d13929df8 | diff --git a/packages/vuetify/src/mixins/menuable.js b/packages/vuetify/src/mixins/menuable.js
index <HASH>..<HASH> 100644
--- a/packages/vuetify/src/mixins/menuable.js
+++ b/packages/vuetify/src/mixins/menuable.js
@@ -107,11 +107,11 @@ export default Vue.extend({
computedLeft () {
const a = this.dimensions... | fix(menuable): set correct position with left+attach+offset-x
see a<I>, #<I> | vuetifyjs_vuetify | train |
076b3a95190213374024c69d72407a99d6c408e4 | diff --git a/dist/dhtmlx-e6.js b/dist/dhtmlx-e6.js
index <HASH>..<HASH> 100644
--- a/dist/dhtmlx-e6.js
+++ b/dist/dhtmlx-e6.js
@@ -46,8 +46,8 @@ const OBJECT_TYPE = {
TREE : 'tree',
WINDOW : 'window',
WINDOW_MANAGER : 'windowManager',
- TABBAR : 'tabbar',
- TAB : 'tab'
+ TABBAR : 'tabbar',
+ ... | Added WINDOW container type to BaseLayout constructor | igalarza_dhtmlx-e6 | train |
5f03399f18991a40cf167be4ba5498a2399d7569 | diff --git a/src/js/core.js b/src/js/core.js
index <HASH>..<HASH> 100644
--- a/src/js/core.js
+++ b/src/js/core.js
@@ -622,12 +622,30 @@ s.maxTranslate = function () {
Slider/slides sizes
===========================*/
s.updateAutoHeight = function () {
- // Update Height
- var slide = s.slides.eq(s.activeI... | Fixing autoheight if slidesPerView is more than 1 | nolimits4web_swiper | train |
bcde900fd84fa7d4a251aefde70c1b30ed293bc8 | diff --git a/src/main/java/com/jayway/maven/plugins/android/AbstractEmulatorMojo.java b/src/main/java/com/jayway/maven/plugins/android/AbstractEmulatorMojo.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/jayway/maven/plugins/android/AbstractEmulatorMojo.java
+++ b/src/main/java/com/jayway/maven/plugins/android... | hopefully implemented working operatings for starting and stopping emulator in windows | simpligility_android-maven-plugin | train |
edeaf15594eac3bdc246d959a585f427d810528a | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -100,17 +100,18 @@ function gulpVartree(options) {
obj[options.pathProp],
obj[options.nameProp] + obj[options.extProp]
);
- // Add a reference to the parent scope
- ... | Fixing the parent of indexes | nfroidure_gulp-vartree | train |
e858fd32163098d10572f5dcf4e52e73ee012991 | diff --git a/supply/lib/supply/options.rb b/supply/lib/supply/options.rb
index <HASH>..<HASH> 100755
--- a/supply/lib/supply/options.rb
+++ b/supply/lib/supply/options.rb
@@ -49,7 +49,7 @@ module Supply
end),
FastlaneCore::ConfigItem.new(key: :rollout,
... | [supply] skip sending user fraction if it's <I> when promoting track (#<I>)
* Skip sending user fraction if it's <I>.
* Updated rollout description to match new logic | fastlane_fastlane | train |
3647361a5277967f2a8a62ed394b5c952c82b7c5 | diff --git a/lems/model/model.py b/lems/model/model.py
index <HASH>..<HASH> 100644
--- a/lems/model/model.py
+++ b/lems/model/model.py
@@ -7,7 +7,11 @@ Model storage.
import os
from os.path import dirname
-from typing import List, Dict
+# For python versions where typing isn't available at all
+try:
+ from typin... | fix: silently continue if typing module is not available | LEMS_pylems | train |
5b6c8baf4ad9a7260c28c3e46b99acd5de37efc4 | diff --git a/state/watcher.go b/state/watcher.go
index <HASH>..<HASH> 100644
--- a/state/watcher.go
+++ b/state/watcher.go
@@ -954,8 +954,6 @@ func (w *modelFieldChangeWatcher) merge(watchSet set.Strings, change watcher.Cha
logger.Tracef("stopped field change watching for %q", docId)
}
delete(w.known, docId)
... | set.Remove() isn't needed because the set is created each time | juju_juju | train |
8727721fa5b7de8216ca245c17a39887bafbf06e | diff --git a/about_time/about_time.py b/about_time/about_time.py
index <HASH>..<HASH> 100644
--- a/about_time/about_time.py
+++ b/about_time/about_time.py
@@ -80,8 +80,8 @@ def about_time(fn=None, it=None):
return HandleResult(timings, result)
# use as counter/throughput iterator.
- if not fn:
- ... | feat(*) protects against inversion of parameters in counter/throughput mode | rsalmei_about-time | train |
0e032f7cc750cae8c64e8c07a1a25d7a9cc87ef2 | diff --git a/validator/sawtooth_validator/networking/dispatch.py b/validator/sawtooth_validator/networking/dispatch.py
index <HASH>..<HASH> 100644
--- a/validator/sawtooth_validator/networking/dispatch.py
+++ b/validator/sawtooth_validator/networking/dispatch.py
@@ -60,6 +60,7 @@ class Dispatcher(InstrumentedThread):
... | Add Dispatcher.set_preprocessor
This commit sets up the plumbing needed for running message
preprocessors but does not actually add any preprocessors. | hyperledger_sawtooth-core | train |
2effe741ae974fda5c2bb995d43b9610dd020047 | diff --git a/test/config.js b/test/config.js
index <HASH>..<HASH> 100644
--- a/test/config.js
+++ b/test/config.js
@@ -41,6 +41,7 @@
,'issues/alias-shortcuts'
,'issues/anonymous'
,'issues/anywhere'
+ ,'issues/auto-transport'
,'issues/charset'
,'issues/circular-detect'
,'issues/combo-use... | Return empty object instead of null when a file is failed to feteched. | seajs_seajs | train |
978cbce220bc171520dba58ad765b983b1b4a97a | diff --git a/components/Templates/includes/functions-view_template.php b/components/Templates/includes/functions-view_template.php
index <HASH>..<HASH> 100644
--- a/components/Templates/includes/functions-view_template.php
+++ b/components/Templates/includes/functions-view_template.php
@@ -395,8 +395,7 @@ function fron... | Support repeatable fields in [each] | pods-framework_pods | train |
3dd5ec63d2e8ab16b43b1778e6254931d3b2ba0c | diff --git a/src/plugins/https.test.js b/src/plugins/https.test.js
index <HASH>..<HASH> 100644
--- a/src/plugins/https.test.js
+++ b/src/plugins/https.test.js
@@ -25,6 +25,9 @@ function iopipeComExpect(
Object.keys(reqHeaders).forEach(header => {
expect(obj[`request.${header}`]).toBe(reqHeaders[header]);
});... | Wrapping the wrapping (inception!) of initPromise in a conditional for the beta. There's value in wrapping callbacks, but in this version, the wrap of initPromise generates effectively content-free traces. There's more actionable information from wrapping Redis.prototype.sendCommand.
Also includes explicit tests of ... | iopipe_iopipe-js-trace | train |
7d4d2e74691b8b92fa858bc15e54215515501dbd | diff --git a/superset-frontend/src/explore/controlUtils.js b/superset-frontend/src/explore/controlUtils.js
index <HASH>..<HASH> 100644
--- a/superset-frontend/src/explore/controlUtils.js
+++ b/superset-frontend/src/explore/controlUtils.js
@@ -20,6 +20,7 @@ import memoizeOne from 'memoize-one';
import { getChartControl... | fix(explore): 'Edit Datasource' is missing from btn-dropdown (#<I>)
Not sure how it got broken but he's a fix. I'm thinking this is related
to the controls refactor.
closes <URL> | apache_incubator-superset | train |
e29858ac78c2eb5b353225a4260c12220063676b | diff --git a/src/Field/Composite/PositionField.php b/src/Field/Composite/PositionField.php
index <HASH>..<HASH> 100644
--- a/src/Field/Composite/PositionField.php
+++ b/src/Field/Composite/PositionField.php
@@ -100,7 +100,7 @@ class PositionField extends Field
*/
public function getFields()
{
- r... | Position field adds methods to the base class | activecollab_databasestructure | train |
2c14a8d51f6e8d0e85ade58c8b234a20e93cdabb | diff --git a/cloudcontrol/library/components/CmsComponent.php b/cloudcontrol/library/components/CmsComponent.php
index <HASH>..<HASH> 100644
--- a/cloudcontrol/library/components/CmsComponent.php
+++ b/cloudcontrol/library/components/CmsComponent.php
@@ -375,7 +375,11 @@ namespace library\components
$this->parame... | Added exception when creating document while no document types exist | jenskooij_cloudcontrol | train |
71a55167aa259f3c25cab24d1f7766ba395c062d | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -36,12 +36,16 @@ module.exports = class MochaWrapper extends Mocha {
stdio: ['ipc']
})
+ cp.on('exit', () => {
+ console.log('exited')
+ })
+
return new Pro... | add a \n before logging 'still running' | fabiosantoscode_mochallel | train |
0bdc881f532edff4da3256040236f37f9a25dba2 | diff --git a/ui/src/data_explorer/components/GroupByTimeDropdown.js b/ui/src/data_explorer/components/GroupByTimeDropdown.js
index <HASH>..<HASH> 100644
--- a/ui/src/data_explorer/components/GroupByTimeDropdown.js
+++ b/ui/src/data_explorer/components/GroupByTimeDropdown.js
@@ -25,7 +25,7 @@ const GroupByTimeDropdown =... | Prevent 'auto' GROUP BY option in Kapacitor rule builder | influxdata_influxdb | train |
b5f7e697565cf2fe8a4e5dc42c8495f9f8a9444f | diff --git a/org/xbill/DNS/BitString.java b/org/xbill/DNS/BitString.java
index <HASH>..<HASH> 100644
--- a/org/xbill/DNS/BitString.java
+++ b/org/xbill/DNS/BitString.java
@@ -181,9 +181,6 @@ equals(Object o) {
/** Compare two bitstrings. */
public int
compareTo(Object o) {
- if (!(o instanceof BitString))
- throw n... | According the the Comparator documentation (even though Name and BitString
don't implement Comparable, since it's not in JDK <I>), compareTo() should
throw a ClassCastException when the argument is not a compatible type.
Allow this to happen as a result of the explicit cast, rather than incorrectly
throwing an IllegalA... | dnsjava_dnsjava | train |
f5aaded3343e8bdbbd20cb87db77e389e48ddaaf | diff --git a/src/predictionio/BaseClient.php b/src/predictionio/BaseClient.php
index <HASH>..<HASH> 100644
--- a/src/predictionio/BaseClient.php
+++ b/src/predictionio/BaseClient.php
@@ -4,6 +4,7 @@ namespace predictionio;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\ClientException;
+use GuzzleHttp\Promise\Prom... | Async option for logging user actions on item events | apache_predictionio-sdk-php | train |
7b3bb8c00f6dcf8ac9613cd2f3cdc71d57b0c275 | diff --git a/pytorch_pretrained_bert/modeling.py b/pytorch_pretrained_bert/modeling.py
index <HASH>..<HASH> 100644
--- a/pytorch_pretrained_bert/modeling.py
+++ b/pytorch_pretrained_bert/modeling.py
@@ -678,7 +678,7 @@ class BertForPreTraining(PreTrainedBertModel):
if masked_lm_labels is not None and next_se... | fix typo in input for masked lm loss function | huggingface_pytorch-pretrained-BERT | train |
9cff61a2be0c9ff6b7d3056bc3b5a14107c227b9 | diff --git a/lib/ReactViews/Map/Panels/SharePanel/BuildShareLink.js b/lib/ReactViews/Map/Panels/SharePanel/BuildShareLink.js
index <HASH>..<HASH> 100644
--- a/lib/ReactViews/Map/Panels/SharePanel/BuildShareLink.js
+++ b/lib/ReactViews/Map/Panels/SharePanel/BuildShareLink.js
@@ -135,7 +135,11 @@ function addSharedMember... | Make BuildShareLink addSharedMembers more verbose | TerriaJS_terriajs | train |
250c9beff9b5d9f43f94e379d318c579238d942f | diff --git a/cypress/integration/rendering/flowchart-v2.spec.js b/cypress/integration/rendering/flowchart-v2.spec.js
index <HASH>..<HASH> 100644
--- a/cypress/integration/rendering/flowchart-v2.spec.js
+++ b/cypress/integration/rendering/flowchart-v2.spec.js
@@ -611,6 +611,16 @@ flowchart RL
);
});
+ it('76:... | #<I> Added new test case | knsv_mermaid | train |
c075722b70501129f2a55b6730fb8d14712260d6 | diff --git a/salt/modules/win_system.py b/salt/modules/win_system.py
index <HASH>..<HASH> 100644
--- a/salt/modules/win_system.py
+++ b/salt/modules/win_system.py
@@ -419,12 +419,11 @@ def set_computer_desc(desc=None):
system_info = win32net.NetServerGetInfo(None, 101)
# If desc is passed, decode it for uni... | win_system: Consider an empty computer description valid
Calling {get,set}_computer_desc should allow for setting and
getting an empty string as the computer description without
returning the error value of False. | saltstack_salt | train |
1bc1401448026e1ab8aeb54f4e01d928b0af4462 | diff --git a/salt/utils/parsers.py b/salt/utils/parsers.py
index <HASH>..<HASH> 100644
--- a/salt/utils/parsers.py
+++ b/salt/utils/parsers.py
@@ -9,6 +9,7 @@
import os
import sys
+import logging
import optparse
from functools import partial
from salt import config, log, version
@@ -119,6 +120,10 @@ class Option... | Complete fix saltstack/salt#<I>
Turn the exit error into a warning. Added a logging message telling us what configuration file, if any, was loaded. | saltstack_salt | train |
694dbc76359a95f6e11e747e7150b7808b83296d | diff --git a/addons/devops/src/main/java/io/fabric8/forge/devops/springboot/SpringBootNewProjectCommand.java b/addons/devops/src/main/java/io/fabric8/forge/devops/springboot/SpringBootNewProjectCommand.java
index <HASH>..<HASH> 100644
--- a/addons/devops/src/main/java/io/fabric8/forge/devops/springboot/SpringBootNewPro... | Fixes #<I> to use caregory for Spring Boot command. Also lets use SB <I> as default | fabric8io_fabric8-forge | train |
832dc7bc1e3a2cdd89508c5aa2dd4839b76bd848 | diff --git a/lib/syclink/formatter.rb b/lib/syclink/formatter.rb
index <HASH>..<HASH> 100644
--- a/lib/syclink/formatter.rb
+++ b/lib/syclink/formatter.rb
@@ -55,18 +55,17 @@ module SycLink
# Prints the table's header
def print_header(header, formatter)
- puts cut(sprintf(formatter, *header), 80)
+ ... | remove cut to cut the rows to size. This is now replaced by the scale_widths method | sugaryourcoffee_syclink | train |
9076e854af86540b9bca1eb18d916a0f4d3d573a | diff --git a/packages/blueprint-mongodb/tests/unit-tests/lib/resource-controller-test.js b/packages/blueprint-mongodb/tests/unit-tests/lib/resource-controller-test.js
index <HASH>..<HASH> 100644
--- a/packages/blueprint-mongodb/tests/unit-tests/lib/resource-controller-test.js
+++ b/packages/blueprint-mongodb/tests/unit... | fix: Remove the only keyword from test cases | onehilltech_blueprint | train |
05ad9c18c3e3d0067992417023232966bfe15704 | diff --git a/examples/tagtool.py b/examples/tagtool.py
index <HASH>..<HASH> 100755
--- a/examples/tagtool.py
+++ b/examples/tagtool.py
@@ -42,14 +42,6 @@ tt1_card_map = {
"\x11\x48": "Topaz-96 (IRT-5011)",
"\x12\x4C": "Topaz-512 (TPZ-505-016)"
}
-tt3_card_map = {
- "\x00\xF0": "FeliCa Lite RC-S965",
-... | Use tag.dump() method for printing a memory dump | nfcpy_nfcpy | train |
95df4a4222d645db8bdc3e3446b1419cffc3cd61 | diff --git a/src/calmjs/runtime.py b/src/calmjs/runtime.py
index <HASH>..<HASH> 100644
--- a/src/calmjs/runtime.py
+++ b/src/calmjs/runtime.py
@@ -903,12 +903,22 @@ class BaseArtifactRegistryRuntime(BaseRuntime):
def init_argparser(self, argparser):
super(BaseArtifactRegistryRuntime, self).init_argparse... | Minor init_argparser change
- In the base artifact runtime, split out the package name setup to a
separate method to follow the same convention in other runtime classes
that allow subclasses alternative behaviors. | calmjs_calmjs | train |
402920454303936830d7a498e64b06ff739c4068 | diff --git a/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/engine/ScriptEngines.java b/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/engine/ScriptEngines.java
index <HASH>..<HASH> 100644
--- a/gremlin-groovy/src/main/java/org/apache/tinkerpop/gremlin/groovy/engine/ScriptEngines.jav... | Re-use the ScriptEngineManager in the ScriptEngines class. | apache_tinkerpop | train |
cbdc7a736d48fe71746c810f74c059dc4ed68c29 | diff --git a/lib/engineyard-api-client.rb b/lib/engineyard-api-client.rb
index <HASH>..<HASH> 100644
--- a/lib/engineyard-api-client.rb
+++ b/lib/engineyard-api-client.rb
@@ -11,7 +11,6 @@ require 'engineyard-api-client/resolver'
require 'engineyard-api-client/version'
require 'engineyard-api-client/errors'
require ... | Remove api requirement on EYRC | engineyard_engineyard | train |
cb54b66430983daa3ce7419fde97c600406343ce | diff --git a/tasks/lab.js b/tasks/lab.js
index <HASH>..<HASH> 100644
--- a/tasks/lab.js
+++ b/tasks/lab.js
@@ -17,7 +17,8 @@ module.exports = function (grunt) {
var done = this.async();
var defaultConfig = {
- files : [ "test/**/*.js" ]
+ files : [ "test/**/*.js" ],
+ cmd: []
};
var labOptions = [... | Added support for command line calls. | wtcross_grunt-lab | train |
9cc428bd728712605dab5014c922a10969f430b3 | diff --git a/packages/node_modules/@webex/plugin-webhooks/test/integration/spec/webhooks.js b/packages/node_modules/@webex/plugin-webhooks/test/integration/spec/webhooks.js
index <HASH>..<HASH> 100644
--- a/packages/node_modules/@webex/plugin-webhooks/test/integration/spec/webhooks.js
+++ b/packages/node_modules/@webex... | test(plugin-webhooks): webex teams -> webex rebranding | webex_spark-js-sdk | train |
eb710ff0464bf7ec7e996f98a355cbaeeec9efb8 | diff --git a/tornado/util.py b/tornado/util.py
index <HASH>..<HASH> 100644
--- a/tornado/util.py
+++ b/tornado/util.py
@@ -17,8 +17,6 @@ import sys
import zlib
-import sys
-
class ObjectDict(dict):
"""Makes a dictionary behave like an object, with attribute-style access.
"""
@@ -75,10 +73,6 @@ def impor... | Fix the import_object ImportError on Python 3.
Python 3 also changed exception messages slightly so remove one case
from the doctest. | tornadoweb_tornado | train |
b017863388b3e6bc5f498320293f33b500fd7e32 | diff --git a/maven-plugin/src/main/java/hudson/maven/Maven3Builder.java b/maven-plugin/src/main/java/hudson/maven/Maven3Builder.java
index <HASH>..<HASH> 100644
--- a/maven-plugin/src/main/java/hudson/maven/Maven3Builder.java
+++ b/maven-plugin/src/main/java/hudson/maven/Maven3Builder.java
@@ -32,6 +32,7 @@ import huds... | |FIXED JENKINS-<I>] Maven3 with multiple threads does not work in Jenkins | jenkinsci_jenkins | train |
a5b6dbc89608491ca6e9e457e34fc8bf959104c4 | diff --git a/.ruby-version b/.ruby-version
index <HASH>..<HASH> 100644
--- a/.ruby-version
+++ b/.ruby-version
@@ -1 +1 @@
-2.1.2
+2.2.2
diff --git a/hab.gemspec b/hab.gemspec
index <HASH>..<HASH> 100644
--- a/hab.gemspec
+++ b/hab.gemspec
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
spec.add_development_depen... | Updated to use latest version of habitica_client gem | wwqrd_hab | train |
fbf3d7dd3a19d218664aba556bf5d8a4f0038ca1 | diff --git a/src/main/java/org/mapdb/DataOutput2.java b/src/main/java/org/mapdb/DataOutput2.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/mapdb/DataOutput2.java
+++ b/src/main/java/org/mapdb/DataOutput2.java
@@ -31,17 +31,16 @@ import java.util.Arrays;
public final class DataOutput2 extends OutputStream imp... | DataOutput2: small performance improvement | jankotek_mapdb | train |
681d4437d908218b26b79da7b84008d8b72d9431 | diff --git a/plugins/CoreHome/templates/datatable.js b/plugins/CoreHome/templates/datatable.js
index <HASH>..<HASH> 100644
--- a/plugins/CoreHome/templates/datatable.js
+++ b/plugins/CoreHome/templates/datatable.js
@@ -234,12 +234,17 @@ dataTable.prototype =
handleLimit: function(domElem)
{
var self = this;
+ i... | Refs #<I>
* Fixing bug for Pages > tables, where a click to load a sub directory would trigger handleLimit and add the controller multiple times below each other
* Adding possibility to select <I> rows
* Disabling controller for the plugins report
git-svn-id: <URL> | matomo-org_matomo | train |
e1aae97696a019e7f61d87ec7779538714a2a3fb | diff --git a/src/main/java/zmq/ZMQ.java b/src/main/java/zmq/ZMQ.java
index <HASH>..<HASH> 100644
--- a/src/main/java/zmq/ZMQ.java
+++ b/src/main/java/zmq/ZMQ.java
@@ -633,7 +633,7 @@ public class ZMQ {
throw new IllegalArgumentException();
}
if (count == 0) {
- if (timeout_ == ... | fix bug where poll does not accept -1 as argument | zeromq_jeromq | train |
84d901aa1897f9983589b29d6aa81eca3774dced | diff --git a/discovery.go b/discovery.go
index <HASH>..<HASH> 100644
--- a/discovery.go
+++ b/discovery.go
@@ -1,7 +1,7 @@
/*
- * This file is part of arduino-create-agent.
+ * This file is part of board-discovery.
*
- * arduino-create-agent is free software; you can redistribute it and/or modify
+ * board-discovery... | fixing header arduino-create-agent -> board-discovery | arduino_board-discovery | train |
0b4485a06b9583dfe4a443b39854a874f9281180 | diff --git a/openshift/openshift/src/main/java/org/arquillian/cube/openshift/impl/client/OpenShiftSuiteLifecycleController.java b/openshift/openshift/src/main/java/org/arquillian/cube/openshift/impl/client/OpenShiftSuiteLifecycleController.java
index <HASH>..<HASH> 100644
--- a/openshift/openshift/src/main/java/org/arq... | Openshift: Fix @Observer parameter (#<I>)
It's the Configuration class that gets injected, not
CubeOpenShiftConfiguration, so, this second parameter will
never be resolved and thus the method will never be invoked.
This suppresses the following warning:
WARNING: Argument 1 for OpenShiftSuiteLifecycleController... | arquillian_arquillian-cube | train |
19486b4907b497d1a8c6ffea027d6f343192cd79 | diff --git a/doc/issue-service/sample.js b/doc/issue-service/sample.js
index <HASH>..<HASH> 100644
--- a/doc/issue-service/sample.js
+++ b/doc/issue-service/sample.js
@@ -15,7 +15,6 @@ var _ = require("lodash");
var ask = require("../ask");
// Configuration layer API, should be useful to automatically save your cre... | Add 'conf' option in sample service | naholyr_github-todos | train |
d921ca3a17c7c677968bc68839e7405419a0f33f | diff --git a/src/JsonCompiler.php b/src/JsonCompiler.php
index <HASH>..<HASH> 100644
--- a/src/JsonCompiler.php
+++ b/src/JsonCompiler.php
@@ -73,7 +73,7 @@ class JsonCompiler
return json_decode(file_get_contents($path), true);
}
- $real = realpath($path);
+ $real = $this->normaliz... | Avoiding stat of file with realpath | aws_aws-sdk-php | train |
3a320724100ab05531d8d18ca8cb279a8e4f5c7f | diff --git a/doc/whats-new.rst b/doc/whats-new.rst
index <HASH>..<HASH> 100644
--- a/doc/whats-new.rst
+++ b/doc/whats-new.rst
@@ -34,6 +34,9 @@ Bug fixes
allowing the ``encoding`` and ``unlimited_dims`` options with ``save_mfdataset``.
(:issue:`6684`)
By `Travis A. O'Brien <https://github.com/taobrienlbl>`_.
... | Fix Dataset.where with drop=True and mixed dims (#<I>)
* support for where with drop=True and mixed dims
* add PR and issue nbr to test
* add changes to whats-new | pydata_xarray | train |
038a1e4e3b912170c7a21ea5605c60a95a3ad82f | diff --git a/lib/array.js b/lib/array.js
index <HASH>..<HASH> 100644
--- a/lib/array.js
+++ b/lib/array.js
@@ -12,6 +12,13 @@ module.exports.max = function(array)
return Math.max.apply(Math, array);
};
+//Get the min value in an array
+module.exports.min = function(obj)
+{
+ //Return the min value
+ return Math... | lib/array.js: added array.min method to get the minimum value in an array | jmjuanes_utily | train |
4eaddfe0f17cee9d7da6ec70a9684ca8c97e6b41 | diff --git a/core/client/src/main/java/alluxio/client/block/LocalBlockInStream.java b/core/client/src/main/java/alluxio/client/block/LocalBlockInStream.java
index <HASH>..<HASH> 100644
--- a/core/client/src/main/java/alluxio/client/block/LocalBlockInStream.java
+++ b/core/client/src/main/java/alluxio/client/block/Local... | [SMALLFIX] More cleanup on using Closer | Alluxio_alluxio | train |
b22908a423d8f0806f94153aa15aa3d23fa47f9e | diff --git a/lib/crash_log/configuration.rb b/lib/crash_log/configuration.rb
index <HASH>..<HASH> 100644
--- a/lib/crash_log/configuration.rb
+++ b/lib/crash_log/configuration.rb
@@ -239,7 +239,9 @@ module CrashLog
def development_mode=(flag)
self[:development_mode] = flag
self.level = Logger::DEBUG
... | Ensure we have a logger if setting logger level | crashlog_crashlog | train |
4b57ee9deb80889871f3399d5a6c98e8ccd95224 | diff --git a/src/main/java/nl/topicus/jdbc/statement/CloudSpannerPreparedStatement.java b/src/main/java/nl/topicus/jdbc/statement/CloudSpannerPreparedStatement.java
index <HASH>..<HASH> 100644
--- a/src/main/java/nl/topicus/jdbc/statement/CloudSpannerPreparedStatement.java
+++ b/src/main/java/nl/topicus/jdbc/statement/... | added support for delete all ("DELETE FROM <TABLE>") | olavloite_spanner-jdbc | train |
6856a9baca709c9f5f10e66199ca3a67e76c1fd1 | diff --git a/timeprovider/faketimeprovider/fake_time_provider.go b/timeprovider/faketimeprovider/fake_time_provider.go
index <HASH>..<HASH> 100644
--- a/timeprovider/faketimeprovider/fake_time_provider.go
+++ b/timeprovider/faketimeprovider/fake_time_provider.go
@@ -71,6 +71,13 @@ func (provider *FakeTimeProvider) NewT... | Add WatcherCount to help with synchronization
[#<I>] | cloudfoundry-attic_gunk | train |
11fdfd1670e4bb3fd0e6a3ba64784ce3bf935367 | diff --git a/src/Label/ReadModels/JSON/Repository/Doctrine/DBALReadRepository.php b/src/Label/ReadModels/JSON/Repository/Doctrine/DBALReadRepository.php
index <HASH>..<HASH> 100644
--- a/src/Label/ReadModels/JSON/Repository/Doctrine/DBALReadRepository.php
+++ b/src/Label/ReadModels/JSON/Repository/Doctrine/DBALReadRepo... | III-<I> Rename from searchTotaltems to searchTotalLabels for label query count. | cultuurnet_udb3-php | train |
eaa96376db1296db998281cb8e2ae3efdd20c1f6 | diff --git a/lib/sfrp/mono/type.rb b/lib/sfrp/mono/type.rb
index <HASH>..<HASH> 100644
--- a/lib/sfrp/mono/type.rb
+++ b/lib/sfrp/mono/type.rb
@@ -113,6 +113,7 @@ module SFRP
# Generate statement to clean up objects of this types.
def gen_mark_cleanup_stmt(src_set, stmts)
+ return unless need_mar... | fix bug of mark-reset statement | sfrp_sfrp | train |
c6344a4f1091a9f02ee18646a05bd2128459afd7 | diff --git a/django_zappa/management/commands/deploy.py b/django_zappa/management/commands/deploy.py
index <HASH>..<HASH> 100644
--- a/django_zappa/management/commands/deploy.py
+++ b/django_zappa/management/commands/deploy.py
@@ -84,19 +84,17 @@ class Command(BaseCommand):
# Add this environment's Django sett... | <I> - tempfile was acting funny | Miserlou_django-zappa | train |
21d511c1971b2c83afbf29127447d29725eee95a | diff --git a/beakerx/beakerx/install.py b/beakerx/beakerx/install.py
index <HASH>..<HASH> 100644
--- a/beakerx/beakerx/install.py
+++ b/beakerx/beakerx/install.py
@@ -26,6 +26,7 @@ import tempfile
from string import Template
from jupyter_client.kernelspecapp import KernelSpecManager
+from jupyter_core import paths
... | #<I> beaker config is moved to .bak by beakerx-install (#<I>)
* #<I> beaker config is moved to .bak by beakerx-install
* #<I> changing beaker.json privileges on beakerx-install | twosigma_beakerx | train |
534bedc848c3eb1ed35035455c7adad56ff17d9f | diff --git a/springfox-swagger-ui/src/web/js/springfox.js b/springfox-swagger-ui/src/web/js/springfox.js
index <HASH>..<HASH> 100644
--- a/springfox-swagger-ui/src/web/js/springfox.js
+++ b/springfox-swagger-ui/src/web/js/springfox.js
@@ -16,6 +16,7 @@ $(function() {
}
};
window.springfox = springfox... | Added the oAuthRedirectUrl location relative to the baseUrl
fixes #<I> | springfox_springfox | train |
b3ae959c76666fbe81fecd859db9b81df8960fa4 | diff --git a/src/buildfile.js b/src/buildfile.js
index <HASH>..<HASH> 100644
--- a/src/buildfile.js
+++ b/src/buildfile.js
@@ -3,11 +3,7 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*-------------------------------------------------------------------------------... | Avoid duplicating modules in worker bundles | Microsoft_vscode | train |
a7763704db2db8528f3d3052dbc9a0c4ff0a1b27 | diff --git a/test/freeze-html.js b/test/freeze-html.js
index <HASH>..<HASH> 100644
--- a/test/freeze-html.js
+++ b/test/freeze-html.js
@@ -98,6 +98,28 @@ describe('freeze-html', function() {
}
})
.fail(cb);
+ });
+
+ it('process as string should proce... | Borschik should support to process strings as input or ouput #<I>
add more tests | borschik_borschik | train |
4733bbecbba7042aff6af60972111b6f87d858fc | diff --git a/config.js b/config.js
index <HASH>..<HASH> 100644
--- a/config.js
+++ b/config.js
@@ -16,8 +16,8 @@ config.history = {
config.tradingAdvisor = {
enabled: true,
- method: 'Exponential Moving Average Crossovers',
- methodSlug: 'EMA',
+ method: 'moving average convergence divergence',
+ methodSlug: ... | history is propogated to trading methods again | askmike_gekko | train |
1a7266cd6fb3e5ff92cab4918fbe8d7af805968c | diff --git a/asyncio_xmpp/node.py b/asyncio_xmpp/node.py
index <HASH>..<HASH> 100644
--- a/asyncio_xmpp/node.py
+++ b/asyncio_xmpp/node.py
@@ -358,7 +358,7 @@ class Client:
# not available.
# both stops us from continuing, let’s put a policy violation on the
# stream and let it bu... | Consistently use Client._xmlstream in tests
Also, fixes AttributeError in the real world. | horazont_aioxmpp | train |
470ffd45354a67d583bca9262184ee5f97c50a85 | diff --git a/grpc/src/main/java/com/linecorp/armeria/server/grpc/GrpcDecoratingService.java b/grpc/src/main/java/com/linecorp/armeria/server/grpc/GrpcDecoratingService.java
index <HASH>..<HASH> 100644
--- a/grpc/src/main/java/com/linecorp/armeria/server/grpc/GrpcDecoratingService.java
+++ b/grpc/src/main/java/com/linec... | Override methodsByRoute in GrpcDecoratingService
Motivation
`methodsByRoute` method is added to `GrpcService` interface in #<I>.
`GrpcDecoratingService` which is added in #<I> should also override the method but it doesn't
Modification:
- Override `methodsByRoute` in `GrpcDecoratingService`
Result:
- Build passes. | line_armeria | train |
5805324a177a8805b93d12acd766570142dad6ca | diff --git a/src/builder/server.js b/src/builder/server.js
index <HASH>..<HASH> 100644
--- a/src/builder/server.js
+++ b/src/builder/server.js
@@ -204,7 +204,7 @@ export default (options = {}) => {
throw err
}
- if (port !== devHost) {
+ if (port !== devPort) {
log(`Port ${ devPort } is not a... | fix: Wrong log message when port is avaiable (#<I>) | phenomic_phenomic | train |
781340ce449961bfdf3a8d67754d00fe0999c87e | diff --git a/src/main/java/nl/hsac/fitnesse/fixture/slim/web/SeleniumDriverSetup.java b/src/main/java/nl/hsac/fitnesse/fixture/slim/web/SeleniumDriverSetup.java
index <HASH>..<HASH> 100644
--- a/src/main/java/nl/hsac/fitnesse/fixture/slim/web/SeleniumDriverSetup.java
+++ b/src/main/java/nl/hsac/fitnesse/fixture/slim/we... | Remove usage of deprecated constructor | fhoeben_hsac-fitnesse-fixtures | train |
2c64d0dc7baff5b3ff9c2e83eb32545f7da34856 | diff --git a/src/components/networked-video-source.js b/src/components/networked-video-source.js
index <HASH>..<HASH> 100644
--- a/src/components/networked-video-source.js
+++ b/src/components/networked-video-source.js
@@ -42,13 +42,19 @@ AFRAME.registerComponent('networked-video-source', {
if (newStream) {
... | improve networked-video-source component videoTexture cleanup and reuse video | networked-aframe_networked-aframe | train |
d81cdc989a212f4430228dba6a66687a13c9364d | diff --git a/hawkular-wildfly-agent/src/main/java/org/hawkular/agent/monitor/service/MonitorService.java b/hawkular-wildfly-agent/src/main/java/org/hawkular/agent/monitor/service/MonitorService.java
index <HASH>..<HASH> 100644
--- a/hawkular-wildfly-agent/src/main/java/org/hawkular/agent/monitor/service/MonitorService.... | If metrics returns <I> OK, we still need to check if it is still starting. (#<I>)
HWKAGENT-<I> | hawkular_hawkular-agent | train |
b4ba6a84b9e31612b8630e04f37aceb6debcbb1b | diff --git a/ui/fields/plupload.php b/ui/fields/plupload.php
index <HASH>..<HASH> 100644
--- a/ui/fields/plupload.php
+++ b/ui/fields/plupload.php
@@ -149,9 +149,9 @@
var html = tmpl(binding);
var list = $('#<?php echo esc_js( $css_id ); ?>-pods-files');
- ... | Fixed limiting code on plupload field so that new list items append correctly | pods-framework_pods | train |
3302812e98faa0076d1db9e3dd9bffc485ef9a75 | diff --git a/grandalf/utils.py b/grandalf/utils.py
index <HASH>..<HASH> 100644
--- a/grandalf/utils.py
+++ b/grandalf/utils.py
@@ -5,7 +5,7 @@
# published under GPLv2 license
from numpy import array,matrix,linalg
-from math import atan2,cos,sin
+from math import atan2,cos,sin,sqrt
#-------------------------... | change setcurve NURBS interpolation method | bdcht_grandalf | train |
3665801ba60bb04a28737fd7e79e8fa595ba99bc | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -31,17 +31,19 @@ function resolveFilenameOptimized(request, parent) {
}
function loadModuleList() {
- try {
- if (fs.existsSync(options.cacheFile)) {
- var readFileNameLookup = JSON.parse(fs.readFileSync(options.c... | small refactoring of load module list | wix_fast-boot | train |
de4e1e60b8886a4498046df5a7304813a811976e | diff --git a/pysos/sos_script.py b/pysos/sos_script.py
index <HASH>..<HASH> 100755
--- a/pysos/sos_script.py
+++ b/pysos/sos_script.py
@@ -394,8 +394,8 @@ class SoS_Workflow:
if item.isdigit():
# pipeline:100
all_steps[int(item)] = True
- elif '-... | Use x:y instread of x-y syntax for subworkflow | vatlab_SoS | train |
fba406e02f5731b201e28fb57fcb85f1838a65f9 | diff --git a/new_english/bin/restintercept.py b/new_english/bin/restintercept.py
index <HASH>..<HASH> 100755
--- a/new_english/bin/restintercept.py
+++ b/new_english/bin/restintercept.py
@@ -665,6 +665,14 @@ class JsonProxyRestHandler(splunk.rest.BaseRestHandler):
if atom_root:
timings.append(('ap... | Add support for search/fields/* in new_english
Part of SPL-<I> | splunk_splunk-sdk-javascript | train |
dddba8f08ca71d8a8885338d859c78251b78e347 | diff --git a/smack-im/src/main/java/org/jivesoftware/smack/roster/Roster.java b/smack-im/src/main/java/org/jivesoftware/smack/roster/Roster.java
index <HASH>..<HASH> 100644
--- a/smack-im/src/main/java/org/jivesoftware/smack/roster/Roster.java
+++ b/smack-im/src/main/java/org/jivesoftware/smack/roster/Roster.java
@@ -1... | Allow Roster for anonymous connections
Fixes SMACK-<I>. | igniterealtime_Smack | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.