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
75c964b4a54beb58281fe2190d2601f05254980f
diff --git a/src/Jobs/Contracts/Character/Contracts.php b/src/Jobs/Contracts/Character/Contracts.php index <HASH>..<HASH> 100644 --- a/src/Jobs/Contracts/Character/Contracts.php +++ b/src/Jobs/Contracts/Character/Contracts.php @@ -79,7 +79,7 @@ class Contracts extends AbstractAuthCharacterJob ]); ...
fix(contracts): fix a typo in contract model call
eveseat_eveapi
train
php
d3e960134f97198f244873aa1ce66078947c3a89
diff --git a/cassandra/io/asyncorereactor.py b/cassandra/io/asyncorereactor.py index <HASH>..<HASH> 100644 --- a/cassandra/io/asyncorereactor.py +++ b/cassandra/io/asyncorereactor.py @@ -279,9 +279,6 @@ class AsyncoreLoop(object): if not self._thread: return - # The loop shouldn't be woke...
Close dispatcher last when cleaning asyncore connections
datastax_python-driver
train
py
aef1acf84e0c74ac1ba01d822b8b444c4ac254cc
diff --git a/driver/src/test/java/org/neo4j/driver/v1/util/cc/ClusterRule.java b/driver/src/test/java/org/neo4j/driver/v1/util/cc/ClusterRule.java index <HASH>..<HASH> 100644 --- a/driver/src/test/java/org/neo4j/driver/v1/util/cc/ClusterRule.java +++ b/driver/src/test/java/org/neo4j/driver/v1/util/cc/ClusterRule.java @...
Change the read-replica size to default to 2 again after the fix released in boltkit <I>
neo4j_neo4j-java-driver
train
java
91cd819554590865ae3bbf4a883b55c1475a5d32
diff --git a/lib/jsdom/level2/html.js b/lib/jsdom/level2/html.js index <HASH>..<HASH> 100644 --- a/lib/jsdom/level2/html.js +++ b/lib/jsdom/level2/html.js @@ -1295,11 +1295,8 @@ define('HTMLScriptElement', { return ret.join(""); }, set text(text) { - if (this.childNodes.length > 0) { - var ...
Fix for setting script element's text property.
jsdom_jsdom
train
js
a2ee780c7f02d9abe5dd80abf8404d3244aebd77
diff --git a/lib/rocket_pants/exceptions.rb b/lib/rocket_pants/exceptions.rb index <HASH>..<HASH> 100644 --- a/lib/rocket_pants/exceptions.rb +++ b/lib/rocket_pants/exceptions.rb @@ -106,6 +106,7 @@ module RocketPants register! :invalid_version, :http_status => :not_found register! :not_implemented, :http_sta...
Added :bad_request error. This is required for example when an API call is made and is missing required parameters...
Sutto_rocket_pants
train
rb
8f9e23b78d3f92742f45c03f6c2f6c33ce9868de
diff --git a/tchannel-core/src/main/java/com/uber/tchannel/handlers/RequestRouter.java b/tchannel-core/src/main/java/com/uber/tchannel/handlers/RequestRouter.java index <HASH>..<HASH> 100644 --- a/tchannel-core/src/main/java/com/uber/tchannel/handlers/RequestRouter.java +++ b/tchannel-core/src/main/java/com/uber/tchann...
Fix trace context stack in async flow
uber_tchannel-java
train
java
0790a82825913cb077e3eb4f446023f46c3e931d
diff --git a/doc.go b/doc.go index <HASH>..<HASH> 100644 --- a/doc.go +++ b/doc.go @@ -135,6 +135,10 @@ providing a JSON API: w.Write(b) } +If you're writing a client that's supposed to mimic browser behavior, make sure to +send back the CSRF cookie (the default name is _gorilla_csrf, but this can be ch...
Update doc.go (#<I>)
gorilla_csrf
train
go
998db8ccbe83fd79774e0c9ce02b5926925a4a92
diff --git a/latlon_to_bng.py b/latlon_to_bng.py index <HASH>..<HASH> 100644 --- a/latlon_to_bng.py +++ b/latlon_to_bng.py @@ -4,7 +4,7 @@ Author: Hannah Fry http://www.hannahfry.co.uk/blog/2012/02/01/converting-latitude-and-longitude-to-british-national-grid """ from math import sqrt, pi, sin, cos, tan, atan2 -from...
Import numba jit with fallback
fmalina_bng_latlon
train
py
4e6b09edd1d47b85085665fbf660bfc3cbe29f1f
diff --git a/salt/cloud/clouds/cloudstack.py b/salt/cloud/clouds/cloudstack.py index <HASH>..<HASH> 100644 --- a/salt/cloud/clouds/cloudstack.py +++ b/salt/cloud/clouds/cloudstack.py @@ -250,7 +250,7 @@ def create(vm_): { 'name': vm_['name'], 'profile': vm_['profile'], - 'p...
Fix CloudStack cloud for new 'driver' syntax
saltstack_salt
train
py
9cde54a08872489d12cbd8450457575e43fbe7c6
diff --git a/ipyrad/core/assembly.py b/ipyrad/core/assembly.py index <HASH>..<HASH> 100644 --- a/ipyrad/core/assembly.py +++ b/ipyrad/core/assembly.py @@ -1475,8 +1475,9 @@ def paramschecker(self, param, newvalue): elif param == 'barcodes_path': ## if a value was entered check that it exists if n...
allow for fuzzy match characters in barcode path
dereneaton_ipyrad
train
py
bedf37845ccd50c47ebbf8d7047a4fec401346d3
diff --git a/satpy/composites/config_loader.py b/satpy/composites/config_loader.py index <HASH>..<HASH> 100644 --- a/satpy/composites/config_loader.py +++ b/satpy/composites/config_loader.py @@ -21,7 +21,11 @@ import logging import warnings import yaml -from yaml import UnsafeLoader + +try: + from yaml import Un...
Catch ImportError on UnsafeLoader
pytroll_satpy
train
py
a34e3c915fc4be39a7682c492f081b8b8b9633ba
diff --git a/andes/core/model.py b/andes/core/model.py index <HASH>..<HASH> 100644 --- a/andes/core/model.py +++ b/andes/core/model.py @@ -9,7 +9,6 @@ Base class for building ANDES models. # (at your option) any later version. # # File name: model.py -# Last modified: 8/16/20, 7:27 PM import logging import sc...
Edits: removed file last-edit time as git tracks it.
cuihantao_andes
train
py
9c5a25b06069d721e452d8a023223757ce278e10
diff --git a/core/server/services/mega/template.js b/core/server/services/mega/template.js index <HASH>..<HASH> 100644 --- a/core/server/services/mega/template.js +++ b/core/server/services/mega/template.js @@ -954,7 +954,7 @@ ${ templateSettings.showBadge ? ` </tr> ...
🐛 Fixed `alt="null"` for feature image in emails no issue - when no alt text was set for feature images we were incorrectly rendering `alt="null"` in emails
TryGhost_Ghost
train
js
5ef13fcb89f08b2763aed97fd92e59cbbb69f5b8
diff --git a/src/main/php/FunctionProxy.php b/src/main/php/FunctionProxy.php index <HASH>..<HASH> 100644 --- a/src/main/php/FunctionProxy.php +++ b/src/main/php/FunctionProxy.php @@ -95,9 +95,9 @@ abstract class FunctionProxy implements Proxy } /** - * handles actual method calls + * handles actual ...
it's about functions, not methods
bovigo_callmap
train
php
b4f3e9029c34215f88a79d973a6ca24e7e0143bf
diff --git a/lib/less/parser.js b/lib/less/parser.js index <HASH>..<HASH> 100644 --- a/lib/less/parser.js +++ b/lib/less/parser.js @@ -370,7 +370,7 @@ less.parser = { if (key = $(/[a-z]+/g) || $(this.entities.string)) { if ((op = $(/[|~*$^]?=/g)) && (val = $(this.entit...
output strings in attribute selectors properly
less_less.js
train
js
cdebf5d266d9d3569abe165ee6b4b64628ce813c
diff --git a/compile.js b/compile.js index <HASH>..<HASH> 100644 --- a/compile.js +++ b/compile.js @@ -27,7 +27,7 @@ exports = module.exports = function compileFile(file, contents, traceurOverrides return { source: result, - errors: null, + error: null, sourcemap: sourceMap ? JSON.parse(sou...
Use `error` in both cases, instead of `errors` sometimes
thlorenz_es6ify
train
js
cb1a0baf661ab9a8a3b4a3d6db5465c4447f37fc
diff --git a/lib/ronin/ui/command_line/command.rb b/lib/ronin/ui/command_line/command.rb index <HASH>..<HASH> 100644 --- a/lib/ronin/ui/command_line/command.rb +++ b/lib/ronin/ui/command_line/command.rb @@ -57,13 +57,19 @@ module Ronin exit end - desc "help", "displays the help for the comm...
Allow the help task to receive a method-name and specify the namespace to use.
ronin-ruby_ronin
train
rb
0c4e9ce59feeb243c5497311b3e85b755d293269
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ setup( description='Let the user secure his session for usage in public computers', author='James Pic', author_email='jamespic@gmail.com', - url='https://github.com/yourlabs/django-session-expi...
Fixed wrong url in setup.py
yourlabs_django-session-security
train
py
2b269cf611ec1428a42ee1d80e9b05f7cbbcc5f7
diff --git a/app/examples/custom/resize-table/index.js b/app/examples/custom/resize-table/index.js index <HASH>..<HASH> 100644 --- a/app/examples/custom/resize-table/index.js +++ b/app/examples/custom/resize-table/index.js @@ -21,7 +21,12 @@ vis.on('resize', () => { console.log(`resize event: ${vis.width}, ${vis.hei...
Adding some logic to guard against leaving the resize-table example
Kitware_candela
train
js
33362a76a135589d8896d34b57d9f19e200f3c5e
diff --git a/redis/pool.go b/redis/pool.go index <HASH>..<HASH> 100644 --- a/redis/pool.go +++ b/redis/pool.go @@ -40,7 +40,7 @@ var errPoolClosed = errors.New("redigo: connection pool closed") // pool = &redis.Pool{ // MaxIdle: 3, // IdleTimeout: 240 * time.Second, -// Di...
Fixed a small error in the pool creation example
gomodule_redigo
train
go
b16ce478b7233e636eb7666841c42b8d22887b07
diff --git a/test/lib/writable-stream.js b/test/lib/writable-stream.js index <HASH>..<HASH> 100644 --- a/test/lib/writable-stream.js +++ b/test/lib/writable-stream.js @@ -24,23 +24,33 @@ module.exports = function () { function MockWritableStream () { this.$store = ""; } + var pro...
Add semicolons and blocks to mock Writable Stream.
reid_onyx
train
js
dacf3f4ae8134230a9b9bf5ef8d297b87d21559e
diff --git a/DataHandling/DataHandling/DataHandling.py b/DataHandling/DataHandling/DataHandling.py index <HASH>..<HASH> 100644 --- a/DataHandling/DataHandling/DataHandling.py +++ b/DataHandling/DataHandling/DataHandling.py @@ -9,6 +9,22 @@ from mpl_toolkits.mplot3d.axes3d import Axes3D from matplotlib import rcParams ...
added function called LoadData to load the data and create an instance of the dataobject class
AshleySetter_optoanalysis
train
py
9a974fa4796f12c82498ee707f2b328e96bcb560
diff --git a/lib/dynflow/action/flow_phase.rb b/lib/dynflow/action/flow_phase.rb index <HASH>..<HASH> 100644 --- a/lib/dynflow/action/flow_phase.rb +++ b/lib/dynflow/action/flow_phase.rb @@ -9,7 +9,7 @@ module Dynflow def initialize(attributes, world) super attributes, world - self.input = attribute...
tmp - Deserialize references: TODO: still missing tests
Dynflow_dynflow
train
rb
a09fc73810dc233e6a784d19000f32571a7eeaca
diff --git a/cmd/kube-controller-manager/app/core.go b/cmd/kube-controller-manager/app/core.go index <HASH>..<HASH> 100644 --- a/cmd/kube-controller-manager/app/core.go +++ b/cmd/kube-controller-manager/app/core.go @@ -115,7 +115,7 @@ func startNamespaceController(ctx ControllerContext) (bool, error) { return true, ...
make discovery static when extensions/thirdpartyresources is not enabled
kubernetes_kubernetes
train
go
1e73851b47ac2ab0301fbd3a02d741bf3d214bf4
diff --git a/pyecharts/charts/chart.py b/pyecharts/charts/chart.py index <HASH>..<HASH> 100644 --- a/pyecharts/charts/chart.py +++ b/pyecharts/charts/chart.py @@ -201,7 +201,7 @@ class Chart3D(Chart): def add( self, - name: str, + series_name: str, data: Sequence, o...
Rename: name -> series_name
pyecharts_pyecharts
train
py
29e13014db6f489f00d44992bf6375e2342da410
diff --git a/lib/plugins/aws/deploy/lib/uploadArtifacts.js b/lib/plugins/aws/deploy/lib/uploadArtifacts.js index <HASH>..<HASH> 100644 --- a/lib/plugins/aws/deploy/lib/uploadArtifacts.js +++ b/lib/plugins/aws/deploy/lib/uploadArtifacts.js @@ -89,10 +89,10 @@ module.exports = { const functionArtifactFileName = ...
artifactFilePath makes more sense
serverless_serverless
train
js
2dfdaf6240be8ce3635437257a02356a9606b473
diff --git a/plugin/src/main/java/io/fabric8/maven/plugin/ResourceMojo.java b/plugin/src/main/java/io/fabric8/maven/plugin/ResourceMojo.java index <HASH>..<HASH> 100644 --- a/plugin/src/main/java/io/fabric8/maven/plugin/ResourceMojo.java +++ b/plugin/src/main/java/io/fabric8/maven/plugin/ResourceMojo.java @@ -487,7 +48...
fixes #<I> so that we always regenerate the timestamp whenever we run `mvn fabric8:deploy` or `mvn fabric8:run`
fabric8io_fabric8-maven-plugin
train
java
74a7c5b732080e8827a22a19e42e0c2cfc778231
diff --git a/example_test.go b/example_test.go index <HASH>..<HASH> 100644 --- a/example_test.go +++ b/example_test.go @@ -10,7 +10,7 @@ import ( "github.com/go-humble/router" ) -func ExampleRoutes() { +func ExampleRouter_HandleFunc() { // Create a new Router object r := router.New() // Use HandleFunc to add...
Update example to be compatible with godoc
go-humble_router
train
go
7c03aef51f6f4ed8cfe848bd0f95c48f229830d5
diff --git a/internal/magic/magic.go b/internal/magic/magic.go index <HASH>..<HASH> 100644 --- a/internal/magic/magic.go +++ b/internal/magic/magic.go @@ -227,6 +227,7 @@ var VideoExtensions = map[string]bool{ "m1v": true, "m2v": true, "m4v": true, + "mkv": true, } // HasExtension returns whether the file ext...
internal/magic: add mkv as a known video extension Change-Id: Ifb<I>a<I>e7f1f6a9a<I>b9ffb<I>a<I>a<I>b1
perkeep_perkeep
train
go
534082e9c03b8c80754eff3d33a84b09a49b2e24
diff --git a/autobatch/autobatch.go b/autobatch/autobatch.go index <HASH>..<HASH> 100644 --- a/autobatch/autobatch.go +++ b/autobatch/autobatch.go @@ -36,6 +36,9 @@ func NewAutoBatching(d ds.Batching, size int) *Datastore { // Delete deletes a key/value func (d *Datastore) Delete(k ds.Key) error { d.buffer[k] = op{...
autobatch: don't forget to flush on delete
ipfs_go-datastore
train
go
1f721f2615f7a138379da2adc2e6b8ade81bc9e6
diff --git a/lib/clickfunnels_auth/version.rb b/lib/clickfunnels_auth/version.rb index <HASH>..<HASH> 100644 --- a/lib/clickfunnels_auth/version.rb +++ b/lib/clickfunnels_auth/version.rb @@ -1,3 +1,3 @@ module ClickfunnelsAuth - VERSION = "0.1.1" + VERSION = "0.1.2" end diff --git a/lib/omniauth/strategies/clickfun...
Added support for the users accounts that he/she has access to.
Etison_clickfunnels_auth
train
rb,rb
0be2f85ff694c088648184ed28dad90e48505d86
diff --git a/sniffy-core/src/main/java/io/sniffy/configuration/SniffyConfiguration.java b/sniffy-core/src/main/java/io/sniffy/configuration/SniffyConfiguration.java index <HASH>..<HASH> 100644 --- a/sniffy-core/src/main/java/io/sniffy/configuration/SniffyConfiguration.java +++ b/sniffy-core/src/main/java/io/sniffy/conf...
Monitoring sockets requires all triggers to be enabled
sniffy_sniffy
train
java
3d777bb386fef50a077c1814bcb1a5f26ed1a964
diff --git a/pre_commit/color.py b/pre_commit/color.py index <HASH>..<HASH> 100644 --- a/pre_commit/color.py +++ b/pre_commit/color.py @@ -3,13 +3,13 @@ from __future__ import unicode_literals import os import sys -terminal_supports_colors = True +terminal_supports_color = True if os.name == 'nt': # pragma: no co...
Move logic to handle terminal not supporting colors to use_color
pre-commit_pre-commit
train
py
83d9ada5ea4c820ef7592862fd98d969d8e76b54
diff --git a/lib/flex/utils.rb b/lib/flex/utils.rb index <HASH>..<HASH> 100644 --- a/lib/flex/utils.rb +++ b/lib/flex/utils.rb @@ -22,7 +22,8 @@ module Flex end def erb_process(source) - ERB.new(File.read(source)).result + varname = "_flex_#{source.hash.to_s.tr('-', '_')}" + ERB.new(File.read...
fix for jruby but triggered on Flex.reload! and ERB in template source
elastics_elastics
train
rb
3cf0ce251092727da8e680945c6aa99654b49156
diff --git a/src/dna-base-component.next.js b/src/dna-base-component.next.js index <HASH>..<HASH> 100644 --- a/src/dna-base-component.next.js +++ b/src/dna-base-component.next.js @@ -13,16 +13,6 @@ import { DNAAttributesComponent } from './dna-attributes-component.next.js'; */ export class DNABaseComponent extends D...
refactor: add css scoped class in `DNAStyleComponent` instaed of `DNABaseComponent`
chialab_dna
train
js,js
88130a5d7eec9e28c7e21a03e35170590e4bd0b6
diff --git a/airflow/www/app.py b/airflow/www/app.py index <HASH>..<HASH> 100644 --- a/airflow/www/app.py +++ b/airflow/www/app.py @@ -17,7 +17,7 @@ import six from flask import Flask from flask_admin import Admin, base -from flask_cache import Cache +from flask_caching import Cache from flask_wtf.csrf import CSRF...
[AIRFLOW-<I>] Use flask-caching instead of flask-cache Flask-cache has been unmaintained for over three years, flask-caching is the community supported version. Closes #<I> from bolkedebruin/AIRFLOW-<I>
apache_airflow
train
py,py
db9e03c3dacbc154a4ae80d6525fe958518f2417
diff --git a/lib/airbrake/cli/project_factory.rb b/lib/airbrake/cli/project_factory.rb index <HASH>..<HASH> 100644 --- a/lib/airbrake/cli/project_factory.rb +++ b/lib/airbrake/cli/project_factory.rb @@ -2,15 +2,13 @@ require File.expand_path( "../project", __FILE__) # Responsible for creating projects when needed. # ...
Use getters instead of handwriten methods
airbrake_airbrake
train
rb
a275016c81f2ac7796b829ac3197b29629e7a056
diff --git a/tests/modifiers/OrderModifierTest.php b/tests/modifiers/OrderModifierTest.php index <HASH>..<HASH> 100644 --- a/tests/modifiers/OrderModifierTest.php +++ b/tests/modifiers/OrderModifierTest.php @@ -57,7 +57,12 @@ class OrderModifierTest extends FunctionalTest // 408 from items + 10 from modifier +...
Attempt to fix the test that fails sometimes.
silvershop_silvershop-core
train
php
28a0e2621bbaeaee2c06d7acd9968846a04efc84
diff --git a/cmd/kube-apiserver/app/server.go b/cmd/kube-apiserver/app/server.go index <HASH>..<HASH> 100644 --- a/cmd/kube-apiserver/app/server.go +++ b/cmd/kube-apiserver/app/server.go @@ -536,7 +536,7 @@ func defaultOptions(s *options.ServerRunOptions) error { // This is the heuristics that from memory capacity i...
Fix comment typo in kube-apiserver and cachesize
kubernetes_kubernetes
train
go,go
f5fad101931f8794959bd4361fe2730388d60866
diff --git a/vendor/src/github.com/golang/protobuf/proto/all_test.go b/vendor/src/github.com/golang/protobuf/proto/all_test.go index <HASH>..<HASH> 100644 --- a/vendor/src/github.com/golang/protobuf/proto/all_test.go +++ b/vendor/src/github.com/golang/protobuf/proto/all_test.go @@ -1281,7 +1281,9 @@ func TestEnum(t *te...
protobuf: workaround a go vet error vendor/src/github.com/golang/protobuf/proto/all_test.go:<I>: result of fmt.Sprintf call not used Do we really need to execute go vet for vendor? I don't find how to exclude them.
opencontainers_runc
train
go
daa2dfd2531294f827ba2e779ef8a76c5c6bf064
diff --git a/src/Reports/Report.php b/src/Reports/Report.php index <HASH>..<HASH> 100644 --- a/src/Reports/Report.php +++ b/src/Reports/Report.php @@ -296,7 +296,7 @@ class Report * @param $excepts * @return $this */ - private function except($excepts) + public function except($excepts) { ...
Changed visibility to public in Report Class except function.
Edujugon_laravel-google-ads
train
php
41cd37084134bc577346df129d49582546f2ebba
diff --git a/master/buildbot/test/unit/test_db_users.py b/master/buildbot/test/unit/test_db_users.py index <HASH>..<HASH> 100644 --- a/master/buildbot/test/unit/test_db_users.py +++ b/master/buildbot/test/unit/test_db_users.py @@ -429,6 +429,16 @@ class TestUsersConnectorComponent(connector_component.ConnectorComponent...
skip multiple connections to same DB when using file-based SQLite
buildbot_buildbot
train
py
5f7ddefdc80f23431a917e47e1953195ae9537e5
diff --git a/spec/support/factory_girl.rb b/spec/support/factory_girl.rb index <HASH>..<HASH> 100644 --- a/spec/support/factory_girl.rb +++ b/spec/support/factory_girl.rb @@ -1,6 +1,8 @@ require "factory_girl" RSpec.configure do |config| - config.include FactoryGirl::Syntax::Methods + FactoryGirl.factories.clear ...
Clear factories in spec_helper
cloudfoundry-attic_cfoundry
train
rb
97986a6842d1b154743c24f7c8e4fb84dd6f8595
diff --git a/autocomplete_utils.py b/autocomplete_utils.py index <HASH>..<HASH> 100644 --- a/autocomplete_utils.py +++ b/autocomplete_utils.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- ## ## This file is part of Invenio. -## Copyright (C) 2013 CERN. +## Copyright (C) 2013, 2014 CERN. ## ## Invenio is free software; ...
deposit: addition of dynamic KB autocomplete func
inveniosoftware_invenio-deposit
train
py
09a84a9070660f10d9a13c08d17535373cfd10c5
diff --git a/osconf/__init__.py b/osconf/__init__.py index <HASH>..<HASH> 100644 --- a/osconf/__init__.py +++ b/osconf/__init__.py @@ -19,7 +19,7 @@ def config_from_environment(env_prefix, env_required=None, **kwargs): config[key] = env_eval(value) if env_required: for required in env_require...
FIX raise required for empty environment variables
gisce_osconf
train
py
6885f29a922d9b0dbb1fb991998eed231a309ee7
diff --git a/lib/webidl2.js b/lib/webidl2.js index <HASH>..<HASH> 100644 --- a/lib/webidl2.js +++ b/lib/webidl2.js @@ -570,6 +570,8 @@ // noop, just parsing } else { + ret.idlType = return_type(); + all_ws(); ret.operation = opera...
fix bug in serializer parsing
w3c_webidl2.js
train
js
dbd98f12ac2187473b6195439802dcecbdb9276a
diff --git a/lib/memcached.js b/lib/memcached.js index <HASH>..<HASH> 100644 --- a/lib/memcached.js +++ b/lib/memcached.js @@ -145,9 +145,11 @@ Client.config = { } , connectTimeout = function() { memcached.connectionIssue('Stream connect timeout', S); + Manager.remove(this); ...
release connection on connect timeout and error
3rd-Eden_memcached
train
js
c69c5de45795efbf77f94d2ffac1c29c7eb0d089
diff --git a/acceptance/lib/puppet/acceptance/module_utils.rb b/acceptance/lib/puppet/acceptance/module_utils.rb index <HASH>..<HASH> 100644 --- a/acceptance/lib/puppet/acceptance/module_utils.rb +++ b/acceptance/lib/puppet/acceptance/module_utils.rb @@ -163,7 +163,7 @@ module Puppet listings = listings.reje...
(#<I>) Change check for module installation Now that we are only stripping the dangerous bits from the file permissions (sticky, suid, sgid, and write) the test for correct module installation was incorrect.
puppetlabs_puppet
train
rb
88739879e8b8791657845cde286ae9e89eab7994
diff --git a/drivers/storage/efs/storage/efs_storage.go b/drivers/storage/efs/storage/efs_storage.go index <HASH>..<HASH> 100644 --- a/drivers/storage/efs/storage/efs_storage.go +++ b/drivers/storage/efs/storage/efs_storage.go @@ -1,6 +1,8 @@ package storage import ( + "crypto/md5" + "fmt" "strings" "time" @@...
EFS creation can fail if same volume name is used with different tag
thecodeteam_libstorage
train
go
ca74a27191b5290d1b8304b12b181db7a9ccf4aa
diff --git a/src/Coordinate.php b/src/Coordinate.php index <HASH>..<HASH> 100644 --- a/src/Coordinate.php +++ b/src/Coordinate.php @@ -124,6 +124,8 @@ class Coordinate implements GeometryInterface /** * Checks if this point intersects a given geometry. + * + * @throws InvalidGeometryException ...
add @throws in docblock
mjaschen_phpgeo
train
php
0e2bf27cb6a4daab4c91f705f1ece9335bc00368
diff --git a/Auth/Yadis/HTTPFetcher.php b/Auth/Yadis/HTTPFetcher.php index <HASH>..<HASH> 100644 --- a/Auth/Yadis/HTTPFetcher.php +++ b/Auth/Yadis/HTTPFetcher.php @@ -85,7 +85,7 @@ class Auth_Yadis_HTTPFetcher { function _findRedirect($headers) { foreach ($headers as $line) { - if (strpos(...
[project @ Fixed discovery failure due to case-sensitive comparison of 'Location:' header] If an HTTP redirect was issued during discovery with a 'Location:' header that doesn't exactly match case (such as 'location:' or 'LOCATION:'), discovery would fail. This is incorrect behavior per RFC <I>, Section <I>. This beh...
openid_php-openid
train
php
8a0fb408e79f3059c8138cd3f0c8f0db7eb3eb60
diff --git a/src/Illuminate/Foundation/Console/KeyGenerateCommand.php b/src/Illuminate/Foundation/Console/KeyGenerateCommand.php index <HASH>..<HASH> 100644 --- a/src/Illuminate/Foundation/Console/KeyGenerateCommand.php +++ b/src/Illuminate/Foundation/Console/KeyGenerateCommand.php @@ -62,7 +62,7 @@ class KeyGenerateCo...
Since this string is only generated once, we can use the conventional method
laravel_framework
train
php
2747c4a473f9e37dc452ecda98fa4d1fcb7e3790
diff --git a/app/App/UploadController.php b/app/App/UploadController.php index <HASH>..<HASH> 100644 --- a/app/App/UploadController.php +++ b/app/App/UploadController.php @@ -75,7 +75,7 @@ class UploadController }); return Respond::presenter($request) - ->call($this->viewer); + ...
example of passing a callable.
TuumPHP_Respond
train
php
0239ce4323518cb1b1c9e26ccd715a09432bf73e
diff --git a/taar/plugin.py b/taar/plugin.py index <HASH>..<HASH> 100644 --- a/taar/plugin.py +++ b/taar/plugin.py @@ -53,14 +53,21 @@ def configure_plugin(app): # noqa: C901 post_data = json.loads(json_data) promoted_guids = post_data.get("options", {}).get("promoted", []) + ...
Extended the HTTP <I> error in the case of a malformed JSON blob on POST so that the result data can still be processed with a valid 'results' key with an empty list of suggestions.
mozilla_taar
train
py
4dba4419d1359d782d4316fa3b8ed1dffdae8c04
diff --git a/Dailymotion.php b/Dailymotion.php index <HASH>..<HASH> 100644 --- a/Dailymotion.php +++ b/Dailymotion.php @@ -13,7 +13,7 @@ class Dailymotion * Current version number of this SDK. * @var string Version number */ - const VERSION = '1.6.4'; + const VERSION = '1.6.5'; /** ...
Bumped the revision version to <I>
dailymotion_dailymotion-sdk-php
train
php
6131d1fcbede2fa4d610d80febfac20de7693440
diff --git a/js/zb.js b/js/zb.js index <HASH>..<HASH> 100644 --- a/js/zb.js +++ b/js/zb.js @@ -365,7 +365,7 @@ module.exports = class zb extends Exchange { }; order = this.extend (order, params); let response = await this.privateGetGetOrder (order); - return this.parseOrder (response, ...
restored zb.py, removed excess argument in fetchOrder in zb.js fix #<I>
ccxt_ccxt
train
js,py
e24970b1c9269d43c5fd5ae1e1876b3996e613e3
diff --git a/src/frontend/org/voltdb/SnapshotSaveAPI.java b/src/frontend/org/voltdb/SnapshotSaveAPI.java index <HASH>..<HASH> 100644 --- a/src/frontend/org/voltdb/SnapshotSaveAPI.java +++ b/src/frontend/org/voltdb/SnapshotSaveAPI.java @@ -651,11 +651,16 @@ public class SnapshotSaveAPI */ ...
Send replicated table in each site for non-table based snapshots.
VoltDB_voltdb
train
java
33d88b623077936c54b5f0d5a66def4443941819
diff --git a/rest_framework_mongoengine/fields.py b/rest_framework_mongoengine/fields.py index <HASH>..<HASH> 100644 --- a/rest_framework_mongoengine/fields.py +++ b/rest_framework_mongoengine/fields.py @@ -445,6 +445,8 @@ class GeoPointField(MongoValidatingField, serializers.Field): self.fail('not_a_list'...
Gracefully handle [null, null] for GeoPointField value In case you need to set coordinates to null this would be useful
umutbozkurt_django-rest-framework-mongoengine
train
py
7d4a9ec688968530dc412af304f049ce4674a46e
diff --git a/src/doc/conf.py b/src/doc/conf.py index <HASH>..<HASH> 100644 --- a/src/doc/conf.py +++ b/src/doc/conf.py @@ -29,7 +29,7 @@ release = "2.0 beta" extensions = ["sphinx.ext.autodoc", "sphinx.ext.intersphinx", "sphinx.ext.napoleon"] # intersphinx_mapping = {"python": ("http://docs.python.org/3", None)} -i...
Corrected intersphinx mapping
sffjunkie_astral
train
py
e57564c9570dde29bdc78d59b45f8fca336bb23d
diff --git a/middleman-core/lib/middleman-core/preview_server.rb b/middleman-core/lib/middleman-core/preview_server.rb index <HASH>..<HASH> 100644 --- a/middleman-core/lib/middleman-core/preview_server.rb +++ b/middleman-core/lib/middleman-core/preview_server.rb @@ -3,7 +3,6 @@ require "webrick" module Middleman mo...
Using 'Socket.gethostname' to get default hostname As suggested by @bhollis in <URL>
middleman_middleman
train
rb
8ee4bbb8ebe5158190950a9c73ccaca337400fc7
diff --git a/tests/integration/minion/test_pillar.py b/tests/integration/minion/test_pillar.py index <HASH>..<HASH> 100644 --- a/tests/integration/minion/test_pillar.py +++ b/tests/integration/minion/test_pillar.py @@ -48,6 +48,7 @@ DEFAULT_OPTS = { 'decrypt_pillar_renderers': ['gpg'], } ADDITIONAL_OPTS = ( + ...
Add "conf_file" to ADDITIONAL_OPTS for pillar integration tests
saltstack_salt
train
py
ce9214ca51a1b569c0a71f6811b6622771f9c60d
diff --git a/src/File/Filesystem.php b/src/File/Filesystem.php index <HASH>..<HASH> 100644 --- a/src/File/Filesystem.php +++ b/src/File/Filesystem.php @@ -55,7 +55,7 @@ class Filesystem extends BaseFilesystem ->notName('.DS_Store'); collect($ignore)->each(function ($pattern) use ($finder) { - ...
Fix getFinder method in Filesystem to prevent unintentional ending wildcard
tightenco_jigsaw
train
php
fdc61b4e876468ebeb65bf94bdac267b068a2a40
diff --git a/spec/status_spec.rb b/spec/status_spec.rb index <HASH>..<HASH> 100644 --- a/spec/status_spec.rb +++ b/spec/status_spec.rb @@ -64,17 +64,6 @@ describe AwesomeBot do # end # end - context "given a header with special encoding" do - link = 'http://okeowoaderemi.com/site/assets/files/1103...
Remove test for broken Strict-Transport-Security header This test no longer works because the URL no longer returns that header: curl -I '<URL>. Since this test was testing a particular website's broken HTTP response, and other websites are unlikely to be broken in the same way, I've just removed it. The header...
dkhamsing_awesome_bot
train
rb
a323c6daf7ef27903d3176d2a34abea50363c7d4
diff --git a/src/ol-ext/interactions/measure.js b/src/ol-ext/interactions/measure.js index <HASH>..<HASH> 100644 --- a/src/ol-ext/interactions/measure.js +++ b/src/ol-ext/interactions/measure.js @@ -122,7 +122,8 @@ ngeo.interaction.Measure = function(opt_options) { * @type {ol.interaction.Draw|ngeo.interaction.Draw...
Sketch style was not correctly taken into account
camptocamp_ngeo
train
js
22766937993b02864b12d2bb2f33ac6f2c8095e9
diff --git a/course/importstudents.php b/course/importstudents.php index <HASH>..<HASH> 100644 --- a/course/importstudents.php +++ b/course/importstudents.php @@ -100,6 +100,9 @@ unset($searchcourses[$tmp->id]); } } + if (array_key_exists($course->id,$searchcourses)) { + ...
Better attempt at fixing <I>
moodle_moodle
train
php
8e968deda9f7a8a6dbb25a12f7ac208cee594ca3
diff --git a/js/poloniex.js b/js/poloniex.js index <HASH>..<HASH> 100644 --- a/js/poloniex.js +++ b/js/poloniex.js @@ -574,7 +574,7 @@ module.exports = class poloniex extends Exchange { result.push (trades[j]); } } else { - ...
fix: Poloniex markets inconsistency Poloniex define markets' IDs this way: QUOTE_BASE
ccxt_ccxt
train
js
5673310634062ca90440b9e81b3fd6380187b044
diff --git a/test/functional/base.rb b/test/functional/base.rb index <HASH>..<HASH> 100644 --- a/test/functional/base.rb +++ b/test/functional/base.rb @@ -110,8 +110,7 @@ module FunctionalBase end def wait - Thread.pass - sleep 0.001 + sleep 0.007 end def assert_engine_clean (wfid=nil, opts={})...
test/ft_1 picking the right expression
jmettraux_ruote
train
rb,rb
3b24c2c4d954c7b71bb6281599669244582b5095
diff --git a/numeric.ly.js b/numeric.ly.js index <HASH>..<HASH> 100644 --- a/numeric.ly.js +++ b/numeric.ly.js @@ -37,7 +37,7 @@ var numeric = { gcd: function(num1, num2){ var result; if(num1 > num2){ - for(i = 0 ; i <= num2 ; i++){ + for(var i = 0 ; i <= num2 ; i++){ if(num2%i === 0){ if(num1%i ...
Fewer Globals Var declarations to prevent internal variables from leaking out of their functions
numbers_numbers.js
train
js
88e2521ae5e9995073fa71090588cfde9249ce75
diff --git a/src/main/java/org/jfrog/hudson/generic/GenericArtifactsDeployer.java b/src/main/java/org/jfrog/hudson/generic/GenericArtifactsDeployer.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/jfrog/hudson/generic/GenericArtifactsDeployer.java +++ b/src/main/java/org/jfrog/hudson/generic/GenericArtifactsDep...
HAP-<I> - Parallel deployment of Artifacts when using FileSpecs
jenkinsci_artifactory-plugin
train
java
57ccd29449c84e07c0c03c790830ceecc0dfdec1
diff --git a/dusty/config.py b/dusty/config.py index <HASH>..<HASH> 100644 --- a/dusty/config.py +++ b/dusty/config.py @@ -4,8 +4,8 @@ as the location of the Dusty specifications on disk.""" from __future__ import absolute_import -import logging import os +import logging import pwd import subprocess import yam...
Allow getting SSH_AUTH_SOCK from environment
gamechanger_dusty
train
py
964575c9006db58560b82fa808e96ef5bfd46951
diff --git a/modules/activiti-explorer/src/main/java/org/activiti/explorer/ui/management/deployment/DeploymentUploadReceiver.java b/modules/activiti-explorer/src/main/java/org/activiti/explorer/ui/management/deployment/DeploymentUploadReceiver.java index <HASH>..<HASH> 100644 --- a/modules/activiti-explorer/src/main/ja...
【Activiti Explorer】Improvement of exception propagation
Activiti_Activiti
train
java
62c8bcbbb600cbe26e3e12ed95207ffe63c40fc8
diff --git a/tests/integration/api_container_test.py b/tests/integration/api_container_test.py index <HASH>..<HASH> 100644 --- a/tests/integration/api_container_test.py +++ b/tests/integration/api_container_test.py @@ -1251,7 +1251,7 @@ class AttachContainerTest(BaseAPIIntegrationTest): output = self.client.at...
Increase timeout on test with long sleeps
docker_docker-py
train
py
a24bedf575911c040521499e280cfcea686c1eb6
diff --git a/src/scripts/cysignals-CSI-helper.py b/src/scripts/cysignals-CSI-helper.py index <HASH>..<HASH> 100644 --- a/src/scripts/cysignals-CSI-helper.py +++ b/src/scripts/cysignals-CSI-helper.py @@ -25,11 +25,10 @@ import gdb from Cython.Debugger import libpython, libcython from Cython.Debugger.libcython import c...
Access libcython.pygments without try/except
sagemath_cysignals
train
py
b8d165b356afabe10efd2f1dfa06e04a784cb192
diff --git a/XBRL-Instance.php b/XBRL-Instance.php index <HASH>..<HASH> 100644 --- a/XBRL-Instance.php +++ b/XBRL-Instance.php @@ -6589,7 +6589,10 @@ class ContextsFilter { $filtered = array_filter( $this->contexts, function( $context ) { // The context may be invalid in which case exclude - return ! isse...
Updated ContextsFilter::NoSegmentContexts() to review all segment and all scenario positions
bseddon_XBRL
train
php
a44efd7a48a34d39bd95c122d6ab8f704b4cafe0
diff --git a/bigtable-dataflow-parent/bigtable-hbase-dataflow/src/main/java/com/google/cloud/bigtable/dataflow/CloudBigtableIO.java b/bigtable-dataflow-parent/bigtable-hbase-dataflow/src/main/java/com/google/cloud/bigtable/dataflow/CloudBigtableIO.java index <HASH>..<HASH> 100644 --- a/bigtable-dataflow-parent/bigtable...
Fixing a potential mismatch between hbase and BT lexicographical ordering. (#<I>) This might fix #<I>.
googleapis_cloud-bigtable-client
train
java
939c89571a03001bfdb57dddd97b0bc37f8dbe2c
diff --git a/src/ngTouch.js b/src/ngTouch.js index <HASH>..<HASH> 100644 --- a/src/ngTouch.js +++ b/src/ngTouch.js @@ -52,4 +52,29 @@ angular.module("ngTouch", []) }] } +}) +.directive("ngTap", function () { + return { + controller: ["$scope", "$element", function ($scope, $element) { + + ...
ngTap directive It works only if you don't move your finger.
nglar_ngTouch
train
js
bfaa917a966fab1e2c92e70617320957a8d8b43b
diff --git a/pkg/opts/envfile.go b/pkg/opts/envfile.go index <HASH>..<HASH> 100644 --- a/pkg/opts/envfile.go +++ b/pkg/opts/envfile.go @@ -15,6 +15,8 @@ func ParseEnvFile(filename string) ([]string, error) { if err != nil { return []string{}, err } + defer fh.Close() + var ( lines []string = []string...
pkg/opts: Close the file handle Docker-DCO-<I>-
moby_moby
train
go
1a8f13062877cb80428e15867de4395f6e7f3ad9
diff --git a/lib/comfortable_mexican_sofa/fixture.rb b/lib/comfortable_mexican_sofa/fixture.rb index <HASH>..<HASH> 100644 --- a/lib/comfortable_mexican_sofa/fixture.rb +++ b/lib/comfortable_mexican_sofa/fixture.rb @@ -49,10 +49,10 @@ module ComfortableMexicanSofa::Fixture def import! ComfortableMexic...
change the priority of the file fixture importer
comfy_comfortable-mexican-sofa
train
rb
3cffcfc77c4d80bda3ab20ea2710c7a36ae9f73d
diff --git a/src/mediaelement.js b/src/mediaelement.js index <HASH>..<HASH> 100644 --- a/src/mediaelement.js +++ b/src/mediaelement.js @@ -527,10 +527,6 @@ height="' + height + '"></embed>'; this.pluginApi.pauseMedia(); this.paused = true; } - , stop: function () { - this.pluginApi.stopMedia(); ...
- remove stop() method since it doesn't exist in HTML5.
mediaelement_mediaelement
train
js
6ae7cba1c0486d046f3f59bb2b591d7a3b03411f
diff --git a/lzmadec.go b/lzmadec.go index <HASH>..<HASH> 100644 --- a/lzmadec.go +++ b/lzmadec.go @@ -202,9 +202,18 @@ func newArchive(path string, password *string) (*Archive, error) { } params := []string{"l", "-slt", "-sccUTF-8"} - if password != nil { - params = append(params, fmt.Sprintf("-p%s", *password)...
Fail instead on block on encrypted archives without password
kjk_lzmadec
train
go
0573c0abf4e1b106db42296680d5942c2c01095a
diff --git a/backtrader/feeds/csvgeneric.py b/backtrader/feeds/csvgeneric.py index <HASH>..<HASH> 100644 --- a/backtrader/feeds/csvgeneric.py +++ b/backtrader/feeds/csvgeneric.py @@ -87,10 +87,10 @@ class GenericCSVData(feed.CSVDataBase): def start(self): super(GenericCSVData, self).start() + sel...
Ensure a callable is taken in genericcsv
backtrader_backtrader
train
py
95c8d98e8bf4a029820bd40a2c84671ef1534ad8
diff --git a/lib/tangle/directed/acyclic/partial_order.rb b/lib/tangle/directed/acyclic/partial_order.rb index <HASH>..<HASH> 100644 --- a/lib/tangle/directed/acyclic/partial_order.rb +++ b/lib/tangle/directed/acyclic/partial_order.rb @@ -26,7 +26,7 @@ module Tangle end def <=>(other) - rai...
Raise proper error in PartialOrder Raise a `GraphError` when comparing `PartialOrder`s for different graphs, instead of a generic `RuntimeError`.
notCalle_ruby-tangle
train
rb
a03ec008e026c6ded28bbf727d2803eedaf2b785
diff --git a/lib/kpeg/compiled_parser.rb b/lib/kpeg/compiled_parser.rb index <HASH>..<HASH> 100644 --- a/lib/kpeg/compiled_parser.rb +++ b/lib/kpeg/compiled_parser.rb @@ -167,8 +167,14 @@ module KPeg end end - def parse - _root ? true : false + def parse(rule=nil) + if !rule + _root...
Add ability to parse from any rule
evanphx_kpeg
train
rb,rb
52ec69cbd20fc14bfc92e1d02f9b935b530c1c95
diff --git a/src/Analyser/Header/Useragent/Device/Mobile.php b/src/Analyser/Header/Useragent/Device/Mobile.php index <HASH>..<HASH> 100644 --- a/src/Analyser/Header/Useragent/Device/Mobile.php +++ b/src/Analyser/Header/Useragent/Device/Mobile.php @@ -633,7 +633,7 @@ trait Mobile array_push($candidates, $ma...
When trying to detect generic model markers, chop off everything after the slash
WhichBrowser_Parser-PHP
train
php
3657e96df273041c9f7f001ba6fb5dde2b2cb1e2
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -162,7 +162,7 @@ TuyaCloud.prototype.request = async function (options) { debug(apiResult.body); if (data.success === false) { - throw new TuyaCloudRequestError({code: data.errorCode, message: data.errorMsg}) ...
Formatting: fix lack of semicolon
TuyaAPI_cloud
train
js
c10054844c98091ca7c3aaf85a8bf19cf85e4998
diff --git a/src/processor/global-intents/market.js b/src/processor/global-intents/market.js index <HASH>..<HASH> 100644 --- a/src/processor/global-intents/market.js +++ b/src/processor/global-intents/market.js @@ -177,7 +177,7 @@ module.exports = function({orders, userIntents, usersById, gameTime, roomObjects ...
🚑 cancel deal on order at the same tick when its price is changed DEV-<I>
screeps_engine
train
js
0e15aeffd1b3f21da49a4ac2c0218168877317da
diff --git a/src/module-elasticsuite-core/Search/Request/Query/MoreLikeThis.php b/src/module-elasticsuite-core/Search/Request/Query/MoreLikeThis.php index <HASH>..<HASH> 100644 --- a/src/module-elasticsuite-core/Search/Request/Query/MoreLikeThis.php +++ b/src/module-elasticsuite-core/Search/Request/Query/MoreLikeThis.p...
Fix typo in the more like this query model.
Smile-SA_elasticsuite
train
php
3de9a41f5ccfa2d1bc687ebe18e4631a41e4829a
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -168,6 +168,12 @@ AnsiColor.prototype.bg = function() { return ansi; } +//AnsiColor.prototype.__defineGetter__('bg', function() { + //var ansi = new AnsiColor(this.v, this.k, this); + //ansi.t = definition.bg.colors; +...
Test bg property getter.
tmpfs_ttycolor
train
js
0174c8fe58805bc99ee940f7f9cdcd9f2dff8036
diff --git a/salt/modules/jboss7.py b/salt/modules/jboss7.py index <HASH>..<HASH> 100644 --- a/salt/modules/jboss7.py +++ b/salt/modules/jboss7.py @@ -2,6 +2,8 @@ ''' Module for managing JBoss AS 7 through the CLI interface. +.. versionadded:: 2015.5.0 + In order to run each function, jboss_config dictionary with ...
Add versionadded for jboss module/state
saltstack_salt
train
py,py
9628774ccdb127ad1d7972848284a3ea3c268a3d
diff --git a/lib/lovely_rufus/hangout_wrapper.rb b/lib/lovely_rufus/hangout_wrapper.rb index <HASH>..<HASH> 100644 --- a/lib/lovely_rufus/hangout_wrapper.rb +++ b/lib/lovely_rufus/hangout_wrapper.rb @@ -16,8 +16,8 @@ module LovelyRufus private def hangout_between?(line_a, line_b) - line_a, line_b = lin...
refactor HangoutWrapper#hangout_between? a bit
chastell_lovely_rufus
train
rb
f43037acfccc8b5c288a703ccd2679111e934c6d
diff --git a/themes/colors/header.php b/themes/colors/header.php index <HASH>..<HASH> 100644 --- a/themes/colors/header.php +++ b/themes/colors/header.php @@ -88,10 +88,10 @@ if ($SEARCH_SPIDER) { unset($menu_items, $menu); echo '</ul><div>'; -} + // Regular headers -if ($view!='simple' && !$SEARCH_SPIDER) { ...
Minor syntax correction to <I>
fisharebest_webtrees
train
php
fee9dfa9b83008d9d4660cce3bd73f325b71b5d2
diff --git a/lib/active_record/connection_adapters/oracle_enhanced/schema_dumper.rb b/lib/active_record/connection_adapters/oracle_enhanced/schema_dumper.rb index <HASH>..<HASH> 100644 --- a/lib/active_record/connection_adapters/oracle_enhanced/schema_dumper.rb +++ b/lib/active_record/connection_adapters/oracle_enhance...
New db/schema.rb files will be created with force: :cascade instead of force: true. Refer <URL>
rsim_oracle-enhanced
train
rb
cc122226f5ee01933c16655863cef861313d7d5f
diff --git a/nni/tools/nnictl/ts_management.py b/nni/tools/nnictl/ts_management.py index <HASH>..<HASH> 100644 --- a/nni/tools/nnictl/ts_management.py +++ b/nni/tools/nnictl/ts_management.py @@ -9,7 +9,7 @@ _builtin_training_services = [ 'remote', 'openpai', 'pai', 'aml', - 'dlc' + 'dlc', 'kub...
fix: Missing comma (#<I>)
Microsoft_nni
train
py
bcdedc4187ba3dfadff0ba8ebcbfac92680e0738
diff --git a/spring-security-oauth2/src/main/java/org/springframework/security/oauth2/config/annotation/web/configurers/OAuth2AuthorizationServerConfigurer.java b/spring-security-oauth2/src/main/java/org/springframework/security/oauth2/config/annotation/web/configurers/OAuth2AuthorizationServerConfigurer.java index <HA...
Add support for authorization code services in @Configuration
spring-projects_spring-security-oauth
train
java
04bdabde4af97a0c707a6004bb53d8b4e6aa9c43
diff --git a/aws/resource_aws_spot_datafeed_subscription_test.go b/aws/resource_aws_spot_datafeed_subscription_test.go index <HASH>..<HASH> 100644 --- a/aws/resource_aws_spot_datafeed_subscription_test.go +++ b/aws/resource_aws_spot_datafeed_subscription_test.go @@ -33,6 +33,7 @@ func testAccAWSSpotDatafeedSubscription...
tests/r/spot_datafeed_subscription: Add ErrorCheck
terraform-providers_terraform-provider-aws
train
go
bc84896509cb2568432b9ee053bf2963cdb60c44
diff --git a/system-test/storage.js b/system-test/storage.js index <HASH>..<HASH> 100644 --- a/system-test/storage.js +++ b/system-test/storage.js @@ -1530,7 +1530,6 @@ describe('storage', function() { var file = bucket.file('hi.jpg'); file.download(function(err) { assert.strictEqual(err.code, 40...
Fix stale test. (#<I>)
googleapis_nodejs-storage
train
js
9bcf6325d5c77c4cd41cba189bcec072ffcad0f0
diff --git a/packages/ember-views/lib/views/view.js b/packages/ember-views/lib/views/view.js index <HASH>..<HASH> 100644 --- a/packages/ember-views/lib/views/view.js +++ b/packages/ember-views/lib/views/view.js @@ -1206,7 +1206,6 @@ Ember.View = Ember.Object.extend(Ember.Evented, @param {Function} fn the function ...
committed too early, this is still used by rerender
emberjs_ember.js
train
js
3813e588aa44bdf8813c3f2f57a49525316613a7
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -114,7 +114,7 @@ extrasReqs['sftp'] = [ 'paramiko', ] extrasReqs['mount'] = [ - 'fusepy>=2.0.4', + 'fusepy>=2.0.4,<3.0', ] init = os.path.join(os.path.dirname(__file__), 'girder', '__init__.py')
Pin fusepy to < <I> to prevent deadlocks in tests
girder_girder
train
py
0e26bd042c1aee1eb237c9787899fb0337988740
diff --git a/src/Charcoal/Admin/Widget/FormWidget.php b/src/Charcoal/Admin/Widget/FormWidget.php index <HASH>..<HASH> 100644 --- a/src/Charcoal/Admin/Widget/FormWidget.php +++ b/src/Charcoal/Admin/Widget/FormWidget.php @@ -15,6 +15,9 @@ use Psr\Http\Message\RequestInterface; // From 'charcoal-factory' use Charcoal\Fa...
Add the possibility to define the submit button label of a form widget
locomotivemtl_charcoal-admin
train
php
98c04616a66dd4fcc7404010af12c44da205e7ff
diff --git a/sh.py b/sh.py index <HASH>..<HASH> 100644 --- a/sh.py +++ b/sh.py @@ -793,7 +793,11 @@ class OProc(object): persist=True, pipe=STDOUT): self.call_args = call_args - if self.call_args["piped"] == "direct": self.call_args["tty_out"] = False + + # I had issues wit...
Added a comment explaining tty_out change (I had issues with getting 'Input/Output error reading stdin' from dd, until I set _tty_out=False)
amoffat_sh
train
py