hash
stringlengths
40
40
diff
stringlengths
131
26.7k
message
stringlengths
7
694
project
stringlengths
5
67
split
stringclasses
1 value
diff_languages
stringlengths
2
24
2cdbb84215066e70c9d537d59c8ea6f216923538
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -23,6 +23,8 @@ def read_file(filename): setup( + setup_requires=['setuptools>=17.1'], + name='pwnypack', packages=['pwny', 'pwnypack'], version=__version__,
Require at least setuptools <I>. This specific version is the minimum requirement because it supports the “<“ operator in environment markers.
edibledinos_pwnypack
train
py
a75658d7b08334f783fb37394d1277b2c786c98b
diff --git a/src/java/com/threerings/jme/JmeApp.java b/src/java/com/threerings/jme/JmeApp.java index <HASH>..<HASH> 100644 --- a/src/java/com/threerings/jme/JmeApp.java +++ b/src/java/com/threerings/jme/JmeApp.java @@ -193,7 +193,7 @@ public class JmeApp } // enter the main rendering and event proce...
Small change to make it possible to intercept window closing actions (in case we want to do something other than close the application at that time). git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@<I> ed5b<I>cb-e<I>-<I>-a<I>-f6a<I>f<I>b<I>
threerings_nenya
train
java
34f33538d8e9d7d4b285a167e023cbe959b17eca
diff --git a/projects.go b/projects.go index <HASH>..<HASH> 100644 --- a/projects.go +++ b/projects.go @@ -35,11 +35,11 @@ type ProjectInput struct { SubmitType string `json:"submit_type,omitempty"` Branches []string `json:"bran...
fix: omit optional empty fields in ProjectInput (#<I>) This will stop a mostly-default ProjectInput from generating a number of empty fields in the JSON payload that confuse gerrit, e.g. { "use_signed_off_by": "" } The issue shows up when calling CreateProject. This is a fix for issue #<I>.
andygrunwald_go-gerrit
train
go
6253cab3f1ecba05151cf12e5974127c5137c540
diff --git a/src/Sulu/Bundle/AdminBundle/DependencyInjection/Compiler/SuluVersionPass.php b/src/Sulu/Bundle/AdminBundle/DependencyInjection/Compiler/SuluVersionPass.php index <HASH>..<HASH> 100644 --- a/src/Sulu/Bundle/AdminBundle/DependencyInjection/Compiler/SuluVersionPass.php +++ b/src/Sulu/Bundle/AdminBundle/Depend...
updated SuluVersionPass composer dir
sulu_sulu
train
php
199686f0c2d88ea235845cb27c198b7c19e55d29
diff --git a/structr-ui/src/main/resources/structr/js/widgets.js b/structr-ui/src/main/resources/structr/js/widgets.js index <HASH>..<HASH> 100644 --- a/structr-ui/src/main/resources/structr/js/widgets.js +++ b/structr-ui/src/main/resources/structr/js/widgets.js @@ -77,7 +77,7 @@ var _Widgets = { }); }); - _w...
Cosmetic: Changed the ui for the local widget filter to look like most other filters
structr_structr
train
js
dc4514303e76680746b9512ec6eb381e6e8f461b
diff --git a/modules/orionode/test/endpoints/test-workspace.js b/modules/orionode/test/endpoints/test-workspace.js index <HASH>..<HASH> 100644 --- a/modules/orionode/test/endpoints/test-workspace.js +++ b/modules/orionode/test/endpoints/test-workspace.js @@ -338,12 +338,13 @@ describe("Workspace endpoint", function() {...
[Mocha] Skip one imported mocha test, not supported in node server
eclipse_orion.client
train
js
2193a607e0d1e65b4d97b7fba901ce76477f0067
diff --git a/tests/VersionParserTest.php b/tests/VersionParserTest.php index <HASH>..<HASH> 100644 --- a/tests/VersionParserTest.php +++ b/tests/VersionParserTest.php @@ -707,6 +707,11 @@ class VersionParserTest extends TestCase 'operator abuse' => array('>2.0,,<=3.0'), 'operator abuse/2' => a...
Clarify that ,/&& prefix and suffix are invalid
composer_semver
train
php
ea3fa8629ac730308e3f1472012ea04c63728751
diff --git a/tests/ChiefTest.php b/tests/ChiefTest.php index <HASH>..<HASH> 100644 --- a/tests/ChiefTest.php +++ b/tests/ChiefTest.php @@ -31,7 +31,11 @@ class ChiefTest extends ChiefTestCase public function testExecuteFiresHandlerAttachedByString() { - // @todo + $chief = new Chief(); + ...
Added failing test for executing a handler by its class name
adamnicholson_Chief
train
php
8a87279e42a807cf51eb6258a900942e46f29388
diff --git a/instabot/bot/bot_get.py b/instabot/bot/bot_get.py index <HASH>..<HASH> 100644 --- a/instabot/bot/bot_get.py +++ b/instabot/bot/bot_get.py @@ -205,7 +205,7 @@ def search_users(self, query): def get_comment(self): if self.comments: return random.choice(self.comments).strip() - return "wow" ...
Change default comment from 'wow' to 'Wow!'
instagrambot_instabot
train
py
2203b2703167cd5febde0523b96559108a9f6eba
diff --git a/spec/unit/perform_allocation_spec.rb b/spec/unit/perform_allocation_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/perform_allocation_spec.rb +++ b/spec/unit/perform_allocation_spec.rb @@ -4,14 +4,14 @@ RSpec.describe "#perform_allocation" do context "expect { ... }.to perform_allocation(...)" do ...
Change to ensure tests work on old rubies
piotrmurach_rspec-benchmark
train
rb
b6aa95d2ab765a72ecceeb9a0b344a463ec3259e
diff --git a/tests/unit/modules/ps_test.py b/tests/unit/modules/ps_test.py index <HASH>..<HASH> 100644 --- a/tests/unit/modules/ps_test.py +++ b/tests/unit/modules/ps_test.py @@ -61,10 +61,10 @@ class PsTestCase(TestCase): def test_get_pid_list(self): self.assertListEqual(STUB_PID_LIST, ps.get_pid_list())...
Fix psutil on Arch.
saltstack_salt
train
py
21ceeba57617a3f9d3886f6c68f26d6b82ed4450
diff --git a/src/lib/detection.js b/src/lib/detection.js index <HASH>..<HASH> 100644 --- a/src/lib/detection.js +++ b/src/lib/detection.js @@ -9,18 +9,15 @@ const _shouldActivityUpdate = ({ log, thresholds }) => stores => ({ type, pageX, if(!FILTER_TYPES.includes(type)) return true const { getState } = store...
fixed issue with ie<I>
noderaider_redux-idle-monitor
train
js
28bc253beb0fc574e81af3425042b678b291a474
diff --git a/aws/resource_aws_lb.go b/aws/resource_aws_lb.go index <HASH>..<HASH> 100644 --- a/aws/resource_aws_lb.go +++ b/aws/resource_aws_lb.go @@ -96,6 +96,7 @@ func resourceAwsLb() *schema.Resource { "subnet_mapping": { Type: schema.TypeSet, Optional: true, + Computed: true, ForceNew: tru...
resource/aws_lb: Mark subnet_mapping attribute Computed: true
terraform-providers_terraform-provider-aws
train
go
4277d0b7c4d69721142b17fe0eb932688b126dea
diff --git a/src/Passport.php b/src/Passport.php index <HASH>..<HASH> 100644 --- a/src/Passport.php +++ b/src/Passport.php @@ -389,6 +389,10 @@ class Passport $user->withAccessToken($token); + if (isset($user->wasRecentlyCreated) && $user->wasRecentlyCreated) { + $user->wasRecentlyCreated...
Change wasRecentlyCreated to false The core framework fixed this same bug with the core actingAs method but it seems it was missed for Passport! Check this PR for more details: <URL>
laravel_passport
train
php
7e580d7992b2b6c5e54ce7405515dfaab76f746f
diff --git a/azurerm/internal/services/desktopvirtualization/tests/virtual_desktop_host_pool_resource_test.go b/azurerm/internal/services/desktopvirtualization/tests/virtual_desktop_host_pool_resource_test.go index <HASH>..<HASH> 100644 --- a/azurerm/internal/services/desktopvirtualization/tests/virtual_desktop_host_po...
Update azurerm/internal/services/desktopvirtualization/tests/virtual_desktop_host_pool_resource_test.go
terraform-providers_terraform-provider-azurerm
train
go
15b7bb1cdbbccc361402e31d559ff6acaab2f570
diff --git a/build.py b/build.py index <HASH>..<HASH> 100755 --- a/build.py +++ b/build.py @@ -410,8 +410,10 @@ virtual('plovr', PLOVR_JAR) @target(PLOVR_JAR, clean=False) def plovr_jar(t): + t.info('downloading %r', t.name) t.download('https://plovr.googlecode.com/files/' + os.path.basename...
Add logging messages to indicate when a download is in progress
openlayers_openlayers
train
py
f34f3392c34baabd0b4d8418d09c03716f1e842d
diff --git a/billing/tests/paylane_tests.py b/billing/tests/paylane_tests.py index <HASH>..<HASH> 100644 --- a/billing/tests/paylane_tests.py +++ b/billing/tests/paylane_tests.py @@ -106,11 +106,6 @@ class PaylaneTestCase(TestCase): self.assertTrue('transaction' in bill1['response']) self.assertTrue('...
fix duplicate test case fixes: <PaylaneTransaction: Transaction for ....>, 'error': Error Code: <I> (Multiple same transactions lock triggered. Wait 7 s and try again.). Acquirer Error:
agiliq_merchant
train
py
845dc7cc343603acb31623c990639890bfbc0e3d
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,6 @@ setup( name = 'surfdist', packages = ['surfdist'], install_requires = ['numpy', - 'mayavi', 'gdist', 'nibabel', 's...
Update setup.py removing mayavi from requirements
NeuroanatomyAndConnectivity_surfdist
train
py
c790343e6bb74a753b23c2e342ff4bdb4aed6c30
diff --git a/server.go b/server.go index <HASH>..<HASH> 100644 --- a/server.go +++ b/server.go @@ -221,6 +221,14 @@ func NewFromConfig(conf Config) (*Server, error) { ret.EventWorker = NewEventWorker(ret.Statsd) + // Set up a span sink that extracts metrics from SSF spans and + // reports them via the metric work...
Set up the metric extraction sink in server creation This ties all the changes together: Now metrics from SSF spans flow directly (via go channels) into the metric worker, without having to traverse any network at all!
stripe_veneur
train
go
cf79e2ae509e24a3c06b3c9b0fd137b3a7197989
diff --git a/lib/fog/rackspace/models/block_storage/snapshot.rb b/lib/fog/rackspace/models/block_storage/snapshot.rb index <HASH>..<HASH> 100644 --- a/lib/fog/rackspace/models/block_storage/snapshot.rb +++ b/lib/fog/rackspace/models/block_storage/snapshot.rb @@ -42,6 +42,10 @@ module Fog # @return [String] reg...
Send :force flag in Snapshot payload
fog_fog
train
rb
357262e718bc045591c5894713ee95577ec50609
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index <HASH>..<HASH> 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -29,6 +29,9 @@ RSpec::Matchers.define :include_output do |expected| end RSpec.configure do |config| + # Set to false to allow Kernel#puts + suppress_stdout = true + config.i...
Add message about STDOUT being suppressed during testing
oleander_git-fame-rb
train
rb
15a641a99ca4a7d583d592ab883f637c0a445623
diff --git a/dev/SapphireTest.php b/dev/SapphireTest.php index <HASH>..<HASH> 100644 --- a/dev/SapphireTest.php +++ b/dev/SapphireTest.php @@ -224,6 +224,9 @@ class SapphireTest extends PHPUnit_Framework_TestCase { // Preserve memory settings $this->originalMemoryLimit = ini_get('memory_limit'); + + // Clear...
BUGFIX Clear requirements after running a unit test
silverstripe_silverstripe-framework
train
php
d9949b50ee27977c5434b34575dcf4f3667edb1b
diff --git a/napalm/junos/junos.py b/napalm/junos/junos.py index <HASH>..<HASH> 100644 --- a/napalm/junos/junos.py +++ b/napalm/junos/junos.py @@ -306,10 +306,10 @@ class JunOSDriver(NetworkDriver): if message: commit_args["comment"] = message self.device.cu.commit(ignore_warning=self.ign...
Removing a couple of comments
napalm-automation_napalm
train
py
218605e92652c26828eacaeff84c35e302db58e2
diff --git a/test/Offer/Events/AbstractLabelEventTest.php b/test/Offer/Events/AbstractLabelEventTest.php index <HASH>..<HASH> 100644 --- a/test/Offer/Events/AbstractLabelEventTest.php +++ b/test/Offer/Events/AbstractLabelEventTest.php @@ -1,14 +1,7 @@ <?php -/** - * Created by PhpStorm. - * User: nicolas - * Date: 19/...
III-<I>: Fix coding standards
cultuurnet_udb3-php
train
php
9268cf1e83a16d8f7da243000efe74a968e5ccb8
diff --git a/runway/commands/env.py b/runway/commands/env.py index <HASH>..<HASH> 100644 --- a/runway/commands/env.py +++ b/runway/commands/env.py @@ -481,7 +481,7 @@ class Env(Base): '(or "all"): ') if selected_index == 'all': deployments_to_run.append(...
don't print a stack trace on invalid input
onicagroup_runway
train
py
cc2a15b4778f35a7723cb4d6d1cb22300026a3cf
diff --git a/src/effector/sample.js b/src/effector/sample.js index <HASH>..<HASH> 100644 --- a/src/effector/sample.js +++ b/src/effector/sample.js @@ -13,7 +13,8 @@ function sampleStore(source: Store<any>, sampler: Event<any> | Store<any>) { const unit = storeFabric({ currentState: source.defaultState, - n...
Use storeFabric config in sample
zerobias_effector
train
js
f7c13fe710c30ab3578a1abd9e0c00e3a6342dbc
diff --git a/example/drone_delivery/drone_delivery.py b/example/drone_delivery/drone_delivery.py index <HASH>..<HASH> 100644 --- a/example/drone_delivery/drone_delivery.py +++ b/example/drone_delivery/drone_delivery.py @@ -9,7 +9,7 @@ import cherrypy from cherrypy.process import wspbus, plugins from jinja2 import Env...
fix root path and changed name of main class
dronekit_dronekit-python
train
py
da8b1b7c1e4ea3ce64bec3eaaa489dbf3d16dd1c
diff --git a/src/Codeception/Module/Symfony2.php b/src/Codeception/Module/Symfony2.php index <HASH>..<HASH> 100644 --- a/src/Codeception/Module/Symfony2.php +++ b/src/Codeception/Module/Symfony2.php @@ -171,6 +171,13 @@ class Symfony2 extends Framework implements DoctrineProvider /** * Opens web page using r...
Added some examples on issue #<I>
Codeception_base
train
php
92babb3488f863e035ccc446a827ef35bd7f0668
diff --git a/buffalo/cmd/task.go b/buffalo/cmd/task.go index <HASH>..<HASH> 100644 --- a/buffalo/cmd/task.go +++ b/buffalo/cmd/task.go @@ -30,11 +30,7 @@ var taskCommand = &cobra.Command{ RunE: func(c *cobra.Command, args []string) error { _, err := exec.LookPath("grift") if err != nil { - return errors.New(`...
[cleaning] fixing one last issue with codeclimate
gobuffalo_buffalo
train
go
b47454f6b75f024a48f3533ae401b28c2b8f6001
diff --git a/user/editadvanced_form.php b/user/editadvanced_form.php index <HASH>..<HASH> 100644 --- a/user/editadvanced_form.php +++ b/user/editadvanced_form.php @@ -259,7 +259,7 @@ class user_editadvanced_form extends moodleform { } } - if (!$user or $user->email !== $usernew->email) { ...
MDL-<I> user: Check if user email is set on validation Add a check if the user's email is set before performing validation on the user's email address. This is to prevent the warning messages to be shown in the case of a pending email change which causes the user's email field to be not included in the Edit profile fo...
moodle_moodle
train
php
622e04601ce1f8ae074b45b39214480deb6b1d19
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -323,7 +323,7 @@ class Cache { // set new caching entry let storeRequest = {} storeRequest[requestKeyHeaders] = JSON.stringify(_response_headers) - storeRequest[requestKeyBody] = _response_bod...
Fix Redis nested objects issue
mkozjak_koa-cache-lite
train
js
e252ed75cafa78eee234ee1b2be65be1e6544714
diff --git a/plugins/Installer/src/Controller/StartupController.php b/plugins/Installer/src/Controller/StartupController.php index <HASH>..<HASH> 100644 --- a/plugins/Installer/src/Controller/StartupController.php +++ b/plugins/Installer/src/Controller/StartupController.php @@ -252,7 +252,7 @@ class StartupController e...
allow other db drivers during installation
quickapps_cms
train
php
555d7bc1c8639cc743a04743f0b8896095963b77
diff --git a/build/builder.js b/build/builder.js index <HASH>..<HASH> 100644 --- a/build/builder.js +++ b/build/builder.js @@ -8,7 +8,7 @@ exports.build = function(components, selectedGroups, options) { var version = RemoteStorage.version; delete global.RemoteStorage; - output += "/** remotestorage.js " + vers...
builder: don't put duplicate 'remotestorage.js' string in version header
remotestorage_remotestorage.js
train
js
f23b015af0f607d254eec80c1a8ecd6ecd78a0c1
diff --git a/lib/active_scaffold/bridges/date_picker/bridge.rb b/lib/active_scaffold/bridges/date_picker/bridge.rb index <HASH>..<HASH> 100644 --- a/lib/active_scaffold/bridges/date_picker/bridge.rb +++ b/lib/active_scaffold/bridges/date_picker/bridge.rb @@ -5,8 +5,6 @@ ActiveScaffold::Bridges.bridge "DatePicker" do ...
revert change of last commit (wrong file committed)
activescaffold_active_scaffold
train
rb
a8ec173d4fb5a435cd82169af9952e05c855da2b
diff --git a/err.go b/err.go index <HASH>..<HASH> 100644 --- a/err.go +++ b/err.go @@ -14,6 +14,10 @@ func (e ConnError) Error() string { return e.Op + ": " + e.Err.Error() } +func (e ConnError) Unwrap() error { + return e.Err +} + // Error messages returned by the server. var ( ErrBadFormat = errors.New("bad...
implement Unwrap methods on error types (#<I>)
beanstalkd_go-beanstalk
train
go,go
3bdf05ca7969a989b5ade32048655d883cb39b29
diff --git a/Lib/fontbakery/profiles/universal.py b/Lib/fontbakery/profiles/universal.py index <HASH>..<HASH> 100644 --- a/Lib/fontbakery/profiles/universal.py +++ b/Lib/fontbakery/profiles/universal.py @@ -143,7 +143,7 @@ def com_google_fonts_check_family_win_ascent_and_descent(ttFont, vmetrics): yield FAIL,\...
Fix bug in a FAIL message from "com.google.fonts/check/family/win_ascent_and_descent"
googlefonts_fontbakery
train
py
ccc8d003c7939cf98a826888ab502de41eace6c6
diff --git a/lib/thermite/util.rb b/lib/thermite/util.rb index <HASH>..<HASH> 100644 --- a/lib/thermite/util.rb +++ b/lib/thermite/util.rb @@ -23,6 +23,9 @@ module Thermite # Utility methods # module Util + # + # Logs a debug message to the specified `config.debug_filename`, if set. + # def debug...
Add missing docs for debug
malept_thermite
train
rb
9392986ee167ca84af2f3047d1ff7ab47c1732e6
diff --git a/lib/stream/batch.rb b/lib/stream/batch.rb index <HASH>..<HASH> 100644 --- a/lib/stream/batch.rb +++ b/lib/stream/batch.rb @@ -16,8 +16,12 @@ module Stream # ] # @client.follow_many(follows) # - def follow_many(follows) - make_signed_request(:post, "/follow_many/", {}, follows) + d...
add support for activity_copy_limit on follow_many
GetStream_stream-ruby
train
rb
8e06ca4136db99aa2d8f0c4108106ac6b8d0e26e
diff --git a/lib/celluloid/actor.rb b/lib/celluloid/actor.rb index <HASH>..<HASH> 100644 --- a/lib/celluloid/actor.rb +++ b/lib/celluloid/actor.rb @@ -80,7 +80,7 @@ module Celluloid actors = [] Celluloid.internal_pool.each do |t| next unless t.role == :actor - actors << t.actor.pro...
Return the behavior proxy from Actor.all
celluloid_celluloid
train
rb
e14b54bb8c98a79d70234d2714d39a7294da97fb
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -150,7 +150,7 @@ function Customize (config, parentConfig, engines) { return { config: preprocessor(engineConf), - watched: watched(engineConf) + watched: watched(engineConf).filter(_.is...
Only allow strings in list of watched files
bootprint_customize
train
js
d5490d13d5eae78edb1bf7153cfb04ab76a24d5e
diff --git a/client-runtime/src/main/java/com/microsoft/rest/serializer/FlatteningSerializer.java b/client-runtime/src/main/java/com/microsoft/rest/serializer/FlatteningSerializer.java index <HASH>..<HASH> 100644 --- a/client-runtime/src/main/java/com/microsoft/rest/serializer/FlatteningSerializer.java +++ b/client-run...
Fix WRITE_ONLY properties in flattening serializer (#<I>)
Azure_autorest-clientruntime-for-java
train
java
2cf7f1ea9e204d8747c22d130d9db9b787bf1e15
diff --git a/lib/tgios/extended_ui_view_controller.rb b/lib/tgios/extended_ui_view_controller.rb index <HASH>..<HASH> 100644 --- a/lib/tgios/extended_ui_view_controller.rb +++ b/lib/tgios/extended_ui_view_controller.rb @@ -34,6 +34,13 @@ module Tgios super end + def dismissViewControllerAnimated(flag, ...
no need to call prepareForRelease before dismissViewControllerAnimated
apriltg_tgios
train
rb
6a90eb6c382231570fc41ee74932faa321cf55b6
diff --git a/src/components/StructuredList/StructuredList-story.js b/src/components/StructuredList/StructuredList-story.js index <HASH>..<HASH> 100644 --- a/src/components/StructuredList/StructuredList-story.js +++ b/src/components/StructuredList/StructuredList-story.js @@ -97,8 +97,8 @@ storiesOf('StructuredList', mod...
fix(structured-list): remove stray commas in story (#<I>)
carbon-design-system_carbon-components-react
train
js
9bbea94af62a50f19bad9f935fe4535a5965b77f
diff --git a/trump/indexing.py b/trump/indexing.py index <HASH>..<HASH> 100644 --- a/trump/indexing.py +++ b/trump/indexing.py @@ -127,6 +127,8 @@ class DatetimeIndexImp(IndexImplementer): sqlatyp = DateTime def __init__(self, dfors, case, kwargs): + + self.data = dfors ...
Handle string based datetimes more explicitly
Equitable_trump
train
py
30713232e540a06737b4570c44bf4069b34c1486
diff --git a/Bundle/WidgetBundle/Renderer/WidgetRenderer.php b/Bundle/WidgetBundle/Renderer/WidgetRenderer.php index <HASH>..<HASH> 100644 --- a/Bundle/WidgetBundle/Renderer/WidgetRenderer.php +++ b/Bundle/WidgetBundle/Renderer/WidgetRenderer.php @@ -86,6 +86,12 @@ class WidgetRenderer //the content of the w...
:bug: refresh widget to avoid to flush modified widget
Victoire_victoire
train
php
c5f2c2d1d1e2d1fad2763e0baf3db387e438d804
diff --git a/src/aurelia-form.js b/src/aurelia-form.js index <HASH>..<HASH> 100644 --- a/src/aurelia-form.js +++ b/src/aurelia-form.js @@ -41,7 +41,7 @@ export function configure(aurelia, config) { config.elements = config.elements || {}; defaultElements.forEach(element => { - config.elements[element] = `for...
fix(project): no override if already registered
SpoonX_aurelia-form
train
js
74a28b905d10a73fb792b9118a94b642631dcd2c
diff --git a/main.go b/main.go index <HASH>..<HASH> 100644 --- a/main.go +++ b/main.go @@ -32,7 +32,7 @@ func hookHandler(w http.ResponseWriter, r *http.Request) { log.Println("Couldn't parse post request:", err) } if command.Text == "" || command.Token != os.Getenv(fmt.Sprintf("%s_OUT_TOKEN", strings.ToUpper(co...
Also output TeamDomain for better debugging.
trinchan_slackbot
train
go
b677bfd1acc6907a43d6bb95f1fa196a95c59772
diff --git a/main.js b/main.js index <HASH>..<HASH> 100755 --- a/main.js +++ b/main.js @@ -172,12 +172,18 @@ Object.defineProperties(Target.prototype,{ return !(this[resolver][event] && this[resolver][event].yielded.accepted); }}, - failed: {value: function(event){ + hasFailed: {value: function(event){ ...
Replaced 'failed' with 'hasFailed'
manvalls_y-emitter
train
js
0183cd1c9dcd866014a6e188872385f6df410434
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -51,7 +51,7 @@ Request.prototype.promise = function() { }); }) .cancellable() - ['catch'](Promise.CancellationError, function(err) { + .caught(Promise.CancellationError, function(err) { req.abort(...
Bluebird provides .caught() for this
KyleAMathews_superagent-bluebird-promise
train
js
c5450f860891154b5f98cf7d46db19d1568eef8e
diff --git a/src/Copyrightcompliance.php b/src/Copyrightcompliance.php index <HASH>..<HASH> 100644 --- a/src/Copyrightcompliance.php +++ b/src/Copyrightcompliance.php @@ -35,13 +35,13 @@ class Copyrightcompliance extends Parser foreach ($this->parsedMail->getAttachments() as $attachment) { // Only...
cannot access protected property and fuction name fixes - fix to cannot access protected property Attachment::$contentType - typo in function name $this->saveIncidents() should be $this->saveIncident()
AbuseIO_parser-copyrightcompliance
train
php
c387173b9a88e568b17dc385ba99e412a0943908
diff --git a/src/sentry_plugins/jira/plugin.py b/src/sentry_plugins/jira/plugin.py index <HASH>..<HASH> 100644 --- a/src/sentry_plugins/jira/plugin.py +++ b/src/sentry_plugins/jira/plugin.py @@ -115,7 +115,7 @@ class JiraPlugin(CorePluginMixin, IssuePlugin2): # be configured to use a custom property instead of...
textareas should not be selects (#<I>)
getsentry_sentry-plugins
train
py
9e8a40beac2511543bbedfba0996a3b986e78890
diff --git a/components/graph/git-node.js b/components/graph/git-node.js index <HASH>..<HASH> 100644 --- a/components/graph/git-node.js +++ b/components/graph/git-node.js @@ -136,7 +136,13 @@ GitNodeViewModel.prototype.setData = function(args) { this.authorDateFromNow(this.authorDate().fromNow()); this.authorName...
handling a case where fileLineDiff is missing
FredrikNoren_ungit
train
js
7eec73261d0e61214d6437afb32010592ee060bc
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -3,11 +3,11 @@ from setuptools import setup setup(name='python-ipmi', - version='0.1.10', + version='0.1.11', description='Python IPMI implementation', author='Jarrod Johnson', author_email='...
fix setup to include the private parts of the project
openstack_pyghmi
train
py
b2e3bc9e3086a6aab702408712a6811c22ae8f8c
diff --git a/lib/ApiClient.php b/lib/ApiClient.php index <HASH>..<HASH> 100644 --- a/lib/ApiClient.php +++ b/lib/ApiClient.php @@ -446,7 +446,7 @@ final class ApiClient { if ($response->getStatusCode() >= 200 && $response->getStatusCode() <= 299) { // return raw body if response is a file if ($responseType =...
Fix ApiClient for requests returning a single string.
wallee-payment_php-sdk
train
php
9ed09690f3fd84afc4a0eed771810439a678aa76
diff --git a/bigquery/client.py b/bigquery/client.py index <HASH>..<HASH> 100644 --- a/bigquery/client.py +++ b/bigquery/client.py @@ -875,6 +875,11 @@ class BigQueryClient(object): query: required BigQuery query string. dataset: optional string id of the dataset table: optional s...
docstring for external_udf_uris in client.write_to_table
tylertreat_BigQuery-Python
train
py
0bc1dfe18ed48cd505530da0909f1c73e15a3ade
diff --git a/classes/Gems/Mail/MailElements.php b/classes/Gems/Mail/MailElements.php index <HASH>..<HASH> 100644 --- a/classes/Gems/Mail/MailElements.php +++ b/classes/Gems/Mail/MailElements.php @@ -254,7 +254,7 @@ class Gems_Mail_MailElements extends \Gems_Registry_TargetAbstract { if ($target) { ...
Fixed #<I>: e-mail now!: Template selection not ordered by name
GemsTracker_gemstracker-library
train
php
96f97c2426de9cbc91eb97881653077fc0514869
diff --git a/vendor/Sensei/Sensei/Doc/Renderer/Pdf.php b/vendor/Sensei/Sensei/Doc/Renderer/Pdf.php index <HASH>..<HASH> 100644 --- a/vendor/Sensei/Sensei/Doc/Renderer/Pdf.php +++ b/vendor/Sensei/Sensei/Doc/Renderer/Pdf.php @@ -52,7 +52,7 @@ class Sensei_Doc_Renderer_Pdf extends Sensei_Doc_Renderer { exec(...
fixed the method that checks for pdflatex
doctrine_annotations
train
php
22aef6295554b17d3cf84dad2a97677ab32d95fd
diff --git a/src/Middleware/Authenticate.php b/src/Middleware/Authenticate.php index <HASH>..<HASH> 100644 --- a/src/Middleware/Authenticate.php +++ b/src/Middleware/Authenticate.php @@ -34,7 +34,7 @@ class Authenticate extends BaseMiddleware try { $this->auth->parseToken()->authenticate(); ...
Pass previous exception to UnauthorizedHttpException
tymondesigns_jwt-auth
train
php
45569a1fdf121fb74cec654795cb7bb1cf491fe4
diff --git a/app/addons/databases/actions.js b/app/addons/databases/actions.js index <HASH>..<HASH> 100644 --- a/app/addons/databases/actions.js +++ b/app/addons/databases/actions.js @@ -176,16 +176,9 @@ export default { databaseName = databaseName.trim(); - if (Stores.databasesStore.doesDatabaseExist(datab...
Don't check for existing db for jump to db
apache_couchdb-fauxton
train
js
092dd1c7e2c7bfc6517ca5d451ff833e99b9a6be
diff --git a/archivant/test/class_template.py b/archivant/test/class_template.py index <HASH>..<HASH> 100644 --- a/archivant/test/class_template.py +++ b/archivant/test/class_template.py @@ -27,8 +27,8 @@ class TestArchivant(): self.arc = Archivant(conf) def tearDown(self): - self.arc._db.es.dele...
remove deprecated delete_by_query() delete_by_query has been deprecated in elasticsearch <I> and it's not available at all in <I>
insomnia-lab_libreant
train
py,py
8747eb3133984978bd1a269ceeba8cad2240462e
diff --git a/bin/bootstrap.php b/bin/bootstrap.php index <HASH>..<HASH> 100644 --- a/bin/bootstrap.php +++ b/bin/bootstrap.php @@ -17,7 +17,7 @@ define('DB_DELIMITER', 'SΜ'); define('SMPROXY_VERSION', IN_PHAR ? '@phar-version@' : absorb_version_from_git()); // Set global error handler -set_error_handler('_error_han...
Comment set_error_handler, rewrite error handling lately
louislivi_SMProxy
train
php
739d1225fbcea149bb2db0a6f1d3ff9888189710
diff --git a/templates/app/mixins/save-model-mixin.js b/templates/app/mixins/save-model-mixin.js index <HASH>..<HASH> 100644 --- a/templates/app/mixins/save-model-mixin.js +++ b/templates/app/mixins/save-model-mixin.js @@ -11,7 +11,7 @@ export default Ember.Mixin.create({ actions: { save() { this.current...
Joined route names by '.' to make them valid
terminalvelocity_sails-generate-seeds-frontend
train
js
f2625250112df2cba47d777d08ea8aed6a3a29f4
diff --git a/tests/unit/test_process.py b/tests/unit/test_process.py index <HASH>..<HASH> 100644 --- a/tests/unit/test_process.py +++ b/tests/unit/test_process.py @@ -15,10 +15,10 @@ class TestProcess(object): def test_stderr(self): h = vanilla.Hub() child = h.process.execv(['/usr/bin/env', 'grep...
don't assume output from grep
cablehead_vanilla
train
py
35fca9dfa8b7c3a6d35825b6c8fdcc925a398dcb
diff --git a/src/smoothscroll.js b/src/smoothscroll.js index <HASH>..<HASH> 100644 --- a/src/smoothscroll.js +++ b/src/smoothscroll.js @@ -157,7 +157,7 @@ function polyfill() { */ function findScrollableParent(el) { while (el !== d.body && isScrollable(el) === false) { - el = el.parentNode; + el =...
fix smoothscroll not working with shadow DOM (#<I>) * fix smoothscroll not working with shadow DOM Adding the el.host will allow this plugin to work with shadow DOM. Before that, el.parentNode on a shadow-root returned null and failed. * Update smoothscroll.js * Update smoothscroll.js
iamdustan_smoothscroll
train
js
d6d9eab58e75ca0b1edeeb53079a4fd90edf4ada
diff --git a/lib/genealogy/query_methods.rb b/lib/genealogy/query_methods.rb index <HASH>..<HASH> 100644 --- a/lib/genealogy/query_methods.rb +++ b/lib/genealogy/query_methods.rb @@ -221,6 +221,21 @@ module Genealogy def aunts(options={}) uncles_and_aunts(sex: 'female', lineage: options[:lineage], half: opt...
added methods with set lineage options for uncles and aunts
masciugo_genealogy
train
rb
63715dacb444f18b6b371c44f0dfacd63a372b9f
diff --git a/src/Metable.php b/src/Metable.php index <HASH>..<HASH> 100644 --- a/src/Metable.php +++ b/src/Metable.php @@ -78,6 +78,17 @@ trait Metable } /** + * Add meta, or update if it already exists. + * @param string $key + * @param mixed $value + * @return object|bool + */ + p...
Added addOrUpdateMeta method
appstract_laravel-meta
train
php
fd265d1d286dfdd90141509e32cdc58a603935ee
diff --git a/blocks/diff/diff.js b/blocks/diff/diff.js index <HASH>..<HASH> 100644 --- a/blocks/diff/diff.js +++ b/blocks/diff/diff.js @@ -212,7 +212,7 @@ define([ DiffTool.prototype.setContent = function(original, modified, diff, opt_refresh) { var overriddenMode = D...
Improve setContent method by not reloading editor if mode was not changed. Former-commit-id: <I>da<I>b<I>acc2e<I>fe<I>e1e4ba<I>be
JetBrains_ring-ui
train
js
9ae31d09bd7878371f946f7e82232dc56b8d0b04
diff --git a/lib/xcode-download/xcode-versions.rb b/lib/xcode-download/xcode-versions.rb index <HASH>..<HASH> 100644 --- a/lib/xcode-download/xcode-versions.rb +++ b/lib/xcode-download/xcode-versions.rb @@ -1,7 +1,18 @@ module XcodeDownload GUI = { + '4.6' => 'https://developer.apple.com/downloads/download.a...
Add old version of GUI and latest CLI package for ML (different packages for Lion)
phatblat_xcode-installer
train
rb
21f607b29775e86d758e766d54b48ec3916fd7d8
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +1.12.2 +====== + +2018-02-26 + +* fixed lap times being recorded incorrectly while paused + + 1.12.1 ====== diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/s...
release <I> :shipit:
trehn_termdown
train
md,py,py
4f0cfbd7522f1f0cf06e9fdd2d80edab9c57f6d9
diff --git a/command/node_eligibility.go b/command/node_eligibility.go index <HASH>..<HASH> 100644 --- a/command/node_eligibility.go +++ b/command/node_eligibility.go @@ -69,7 +69,7 @@ func (c *NodeEligibilityCommand) AutocompleteArgs() complete.Predictor { }) } -func (c *NodeEligibilityCommand) Name() string { re...
Fix cmd.Name() for NodeEligibilityCommand
hashicorp_nomad
train
go
362cf23e510eb2bbe0804f812295c7a168dcb3c7
diff --git a/orator/migrations/migrator.py b/orator/migrations/migrator.py index <HASH>..<HASH> 100644 --- a/orator/migrations/migrator.py +++ b/orator/migrations/migrator.py @@ -198,6 +198,7 @@ class Migrator(object): :type method: str """ self._note('') + names = [] for quer...
Improves migrate command output when pretending
sdispater_orator
train
py
b9dc5baa0ef22bf201f235de877e643dd72d3dc7
diff --git a/lottie/src/main/java/com/airbnb/lottie/LottieAnimationView.java b/lottie/src/main/java/com/airbnb/lottie/LottieAnimationView.java index <HASH>..<HASH> 100644 --- a/lottie/src/main/java/com/airbnb/lottie/LottieAnimationView.java +++ b/lottie/src/main/java/com/airbnb/lottie/LottieAnimationView.java @@ -119,1...
Check for lottieDrawable in some ImageView methods Fixes #<I>
airbnb_lottie-android
train
java
afc3d798841f0acfb7c48ce4179f1aa062c606d8
diff --git a/src/test/java/org/mapdb/BTreeMapParTest.java b/src/test/java/org/mapdb/BTreeMapParTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/mapdb/BTreeMapParTest.java +++ b/src/test/java/org/mapdb/BTreeMapParTest.java @@ -40,7 +40,7 @@ public class BTreeMapParTest { } s.shutdown(); ...
BTreeMap: increase timeout on one test
jankotek_mapdb
train
java
7ee4f158f8ad444437f0afde9071ed01515eac84
diff --git a/src/Pair.php b/src/Pair.php index <HASH>..<HASH> 100644 --- a/src/Pair.php +++ b/src/Pair.php @@ -40,7 +40,7 @@ final class Pair implements \JsonSerializable * * @return mixed|null */ - public function __get($name) + public function __unset($name) { if ($name === 'key'...
Fix the magic method name for unset()
php-ds_polyfill
train
php
5e1d270e92389902b209658d112eac0d585b7d6c
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -96,6 +96,8 @@ Reference documentation """ return before + middle + after +dependencies = ["numpy>=1.13.1", "awkward>=0.8.0", "uproot-methods>=0.4.0", "cachetools"] + setup(name = "uproot", version = get_versio...
explicitly put install_requires into tests_require
scikit-hep_uproot
train
py
a588b241310b8ef1cac427ee243d26c6a25199ee
diff --git a/test/Num.js b/test/Num.js index <HASH>..<HASH> 100644 --- a/test/Num.js +++ b/test/Num.js @@ -11,6 +11,7 @@ const ln10 = Math.LN10; const pow = Math.pow; const sqrt = Math.sqrt; const abs = Math.abs; +const exp = Math.exp; const ceil = Math.ceil; const floor = Math.floor; const round = Math.round; @@...
Num: improve #exp tests.
dwaynejs_dwayne
train
js
f413a703ba5bcf4b369932ae805615c4a34d34cb
diff --git a/ci/ci_build.rb b/ci/ci_build.rb index <HASH>..<HASH> 100755 --- a/ci/ci_build.rb +++ b/ci/ci_build.rb @@ -28,14 +28,14 @@ cd "#{root_dir}/activerecord" do puts puts "[CruiseControl] Building ActiveRecord with MySQL" puts - build_results[:activerecord_mysql] = system 'rake test_mysql' + build_res...
make mysql and postgresql rebuild databases on every CI build, to prevent breakages such as collation and character set changing
rails_rails
train
rb
c89dc93d4f6aac5398f2ea704b44cb4c6ae2bc9e
diff --git a/classes/PodsAdmin.php b/classes/PodsAdmin.php index <HASH>..<HASH> 100644 --- a/classes/PodsAdmin.php +++ b/classes/PodsAdmin.php @@ -1632,7 +1632,7 @@ class PodsAdmin { } if ( 'settings' === $config['currentPod']['type'] ) { - $config['currentPod']['storageType']['name'] = 'options'; + $config...
Update to ‘option’ for the storage type
pods-framework_pods
train
php
17574c0e35749b431aff4f7bb26677bafd5e3598
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def check_setuptools(): check_setuptools() setup(name='instana', - version='1.2.2', + version='1.3.0', download_url='https://github.com/instana/python-sensor', url='https://www.instan...
Bump packages version to <I>
instana_python-sensor
train
py
5602b94dcbb5b73478b2f09900b4659598dea34c
diff --git a/src/models/room.js b/src/models/room.js index <HASH>..<HASH> 100644 --- a/src/models/room.js +++ b/src/models/room.js @@ -1356,7 +1356,10 @@ Room.prototype._revertRedactionLocalEcho = function(redactionEvent) { // re-render after undoing redaction this.emit("Room.redactionCancelled", reda...
make sure where not re-adding cancelled events when undoing local red.
matrix-org_matrix-js-sdk
train
js
cfa8f8c21542b6d83068169e8f27696017ba19c1
diff --git a/builder/googlecompute/step_create_instance.go b/builder/googlecompute/step_create_instance.go index <HASH>..<HASH> 100644 --- a/builder/googlecompute/step_create_instance.go +++ b/builder/googlecompute/step_create_instance.go @@ -67,7 +67,7 @@ func getImage(c *Config, d Driver) (*Image, error) { if c.Sou...
fix bug of creating image from custom image_family
hashicorp_packer
train
go
2d127a8ef0e335725796679d7d35b19d66d2b6f0
diff --git a/prow/pod-utils/clone/clone.go b/prow/pod-utils/clone/clone.go index <HASH>..<HASH> 100644 --- a/prow/pod-utils/clone/clone.go +++ b/prow/pod-utils/clone/clone.go @@ -55,6 +55,13 @@ func Run(refs kube.Refs, dir, gitUserName, gitUserEmail string) Record { } else { target = "FETCH_HEAD" } + // we need ...
clonerefs: handle the case where we're on the target ref When we already have a cloned repository before we do a sync and we are already on the target base ref before the sync, `git branch --force` will fail. We therefore can check out the target SHA and reset the branch while we're not on it, then checkout the branch...
kubernetes_test-infra
train
go
916b8587a6d7f5fe71504f9f0d3568f3fad33f15
diff --git a/class.krumo.php b/class.krumo.php index <HASH>..<HASH> 100644 --- a/class.krumo.php +++ b/class.krumo.php @@ -1087,7 +1087,7 @@ class Krumo // keys $keys = array_keys($data); - $limit = (int) static::_config('display', 'truncate_count', 0); + $limit = (int)...
Differentiate truncating strings and arrays
mmucklo_krumo
train
php
4f0114e6e8e9d7fe2f7008ba207f40ae79a18dbe
diff --git a/ants/viz/plot.py b/ants/viz/plot.py index <HASH>..<HASH> 100644 --- a/ants/viz/plot.py +++ b/ants/viz/plot.py @@ -2058,7 +2058,7 @@ def plot( blend=False, alpha=1, cmap="Greys_r", - overlay_cmap="jet", + overlay_cmap="turbo", overlay_alpha=0.9, cbar=False, cbar_length=0....
Prefer turbo to jet Turbo is a perceptually uniform version of jet, <URL>
ANTsX_ANTsPy
train
py
5aa6fefa776f3e6075c5e72eeffbf94116705805
diff --git a/Generator/ConfigSchema.php b/Generator/ConfigSchema.php index <HASH>..<HASH> 100644 --- a/Generator/ConfigSchema.php +++ b/Generator/ConfigSchema.php @@ -13,6 +13,8 @@ class ConfigSchema extends YMLFile { public static function componentDataDefinition() { $definition = parent::componentDataDefiniti...
Added default value for filename property to config schema and routing Yaml file generators.
drupal-code-builder_drupal-code-builder
train
php,php
678aee340bb2ac74695fdb6118757bc61b4a6f7c
diff --git a/openstack_dashboard/dashboards/project/stacks/tabs.py b/openstack_dashboard/dashboards/project/stacks/tabs.py index <HASH>..<HASH> 100644 --- a/openstack_dashboard/dashboards/project/stacks/tabs.py +++ b/openstack_dashboard/dashboards/project/stacks/tabs.py @@ -40,7 +40,7 @@ class StackTopologyTab(tabs.Tab...
Correct error in policy action name It is "resource" not "resources". Change-Id: I<I>cd5be<I>ebe<I>ebc6a<I>f<I>f1ce Closes-Bug: <I>
openstack_horizon
train
py
bac74d0f83f02037cfcc689fa9a2568fe19d97d5
diff --git a/cherrypy/test/webtest.py b/cherrypy/test/webtest.py index <HASH>..<HASH> 100644 --- a/cherrypy/test/webtest.py +++ b/cherrypy/test/webtest.py @@ -283,7 +283,8 @@ class WebCase(TestCase): elif i == "X": self.exit() cherrypy.py3print(p, end=' ') - + #...
trunk - adding a flush that is needed in python3. Might be superfluous here.
cherrypy_cheroot
train
py
02cd22bc2cba2d1a590141df05b5f33f2860caf6
diff --git a/lab_members/models.py b/lab_members/models.py index <HASH>..<HASH> 100644 --- a/lab_members/models.py +++ b/lab_members/models.py @@ -250,7 +250,6 @@ class Records(models.Model): advisors = models.ManyToManyField(Advisor, blank=True, - null=True, help_text=u"Please select ad...
Remove null keyword from ManyToManyField
mfcovington_django-lab-members
train
py
7a76c65b452460b4cb959a7f95186745afdcd6f3
diff --git a/packages/Grid/src/index.js b/packages/Grid/src/index.js index <HASH>..<HASH> 100644 --- a/packages/Grid/src/index.js +++ b/packages/Grid/src/index.js @@ -32,7 +32,7 @@ export const Col = styled.div` margin-left: ${props => props.offset || 0}; margin-right: ${props => props.pull || 0}; - @media onl...
:lipstick: Changed "small" breakpoint
slupjs_slup
train
js
866896100301ce2738d333df2020b47304a31cb2
diff --git a/cookiecutter/cli.py b/cookiecutter/cli.py index <HASH>..<HASH> 100644 --- a/cookiecutter/cli.py +++ b/cookiecutter/cli.py @@ -17,6 +17,7 @@ from cookiecutter.exceptions import ( FailedHookException, UndefinedVariableInTemplate, UnknownExtension, + InvalidZipRepository, RepositoryNotF...
Catch invalid zip files at the CLI level.
audreyr_cookiecutter
train
py
bd8fce7fc8e59b0e92e109584c80c8d3557cce1d
diff --git a/lib/fluent/supervisor.rb b/lib/fluent/supervisor.rb index <HASH>..<HASH> 100644 --- a/lib/fluent/supervisor.rb +++ b/lib/fluent/supervisor.rb @@ -444,7 +444,6 @@ module Fluent def initialize(opt) @daemonize = opt[:daemonize] - @supervise = opt[:supervise] @standalone_worker= opt[:...
no need to assign to ivar supervise is used in lib/command/fluentd.rb
fluent_fluentd
train
rb
e1b4dc84b4c4c515691f56aea65b6cd78a79439c
diff --git a/lib/merge-reports/report-builder.js b/lib/merge-reports/report-builder.js index <HASH>..<HASH> 100644 --- a/lib/merge-reports/report-builder.js +++ b/lib/merge-reports/report-builder.js @@ -45,15 +45,6 @@ module.exports = class ReportBuilder { .value(); } - async _copyToReportDir(fil...
chore(merge-reports): remove unused code
gemini-testing_html-reporter
train
js
82aa7b52cc215b40f30d8eaf13ea06f8d566042e
diff --git a/lxd/cluster/gateway.go b/lxd/cluster/gateway.go index <HASH>..<HASH> 100644 --- a/lxd/cluster/gateway.go +++ b/lxd/cluster/gateway.go @@ -681,7 +681,7 @@ func (g *Gateway) currentRaftNodes() ([]db.RaftNode, error) { if !isLeader { return nil, errNotLeader } - servers, err := g.server.Cluster() + ser...
Pass a context to server.Cluster()
lxc_lxd
train
go
6760dea8f935729e09be786db80854c38dadffcb
diff --git a/resources/lang/es-ES/forms.php b/resources/lang/es-ES/forms.php index <HASH>..<HASH> 100644 --- a/resources/lang/es-ES/forms.php +++ b/resources/lang/es-ES/forms.php @@ -155,7 +155,7 @@ return [ 'days-of-incidents' => '¿Cuántos días de incidentes mostrar?', 'ti...
New translations forms.php (Spanish)
CachetHQ_Cachet
train
php
ef4efdf3956529e04e48a00e96f026299e98e4cf
diff --git a/languagetool-language-modules/ru/src/main/java/org/languagetool/rules/ru/RussianDashRule.java b/languagetool-language-modules/ru/src/main/java/org/languagetool/rules/ru/RussianDashRule.java index <HASH>..<HASH> 100644 --- a/languagetool-language-modules/ru/src/main/java/org/languagetool/rules/ru/RussianDas...
[ru] activate rule (#<I>)
languagetool-org_languagetool
train
java
7b6042884b93bd615dc3b0a18ea116ab1be9ebad
diff --git a/lib/terraform_dsl/stack_module.rb b/lib/terraform_dsl/stack_module.rb index <HASH>..<HASH> 100644 --- a/lib/terraform_dsl/stack_module.rb +++ b/lib/terraform_dsl/stack_module.rb @@ -18,14 +18,15 @@ module Terraform end def flatten_variable_arrays(variables) - variables.map do |k, v| ...
Fix some Hash issues, probably related to Ruby version differences.
dalehamel_cloudshaper
train
rb
8b34999b92031bfcbcd54ea6aa7519129014cb47
diff --git a/umi_tools/extract.py b/umi_tools/extract.py index <HASH>..<HASH> 100644 --- a/umi_tools/extract.py +++ b/umi_tools/extract.py @@ -82,9 +82,8 @@ Command line options -------------------- ''' - import sys - +from itertools import izip import umi_tools.Utilities as U @@ -318,7 +317,7 @@ def main(arg...
Use iterator to reduce memory usage in paired end processessing
CGATOxford_UMI-tools
train
py
515b92449a99a0bdab44b17c5140df6bf1156d44
diff --git a/lib/slather/project.rb b/lib/slather/project.rb index <HASH>..<HASH> 100755 --- a/lib/slather/project.rb +++ b/lib/slather/project.rb @@ -130,8 +130,19 @@ module Slather end) end - files = profdata_llvm_cov_output(binary_path, pathnames_per_binary).split("\n\n") - + ...
Update project.rb Chunked the call to llvm-cov show into multiple pieces to prevent a E2BIG error
SlatherOrg_slather
train
rb
23468506027c3b78da135d0a7ee25c40f8178d19
diff --git a/etrago/tools/io.py b/etrago/tools/io.py index <HASH>..<HASH> 100644 --- a/etrago/tools/io.py +++ b/etrago/tools/io.py @@ -299,6 +299,11 @@ class NetworkScenario(ScenarioBase): df = self.fetch_by_relname(comp) + # Drop columns with only NaN values + df = df.drop(df.isn...
Insert only timeseries columns with data
openego_eTraGo
train
py
02ab51d67c2c2f648ac203790f7b2610bf1da1ad
diff --git a/config/image-optimizer.php b/config/image-optimizer.php index <HASH>..<HASH> 100644 --- a/config/image-optimizer.php +++ b/config/image-optimizer.php @@ -45,7 +45,7 @@ return [ /* * If set to `true` all output of the optimizer binaries will be appended to the default log. - * You can also ...
Update image-optimizer.php
spatie_laravel-image-optimizer
train
php