hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
fc88b29aa8b57fbdc921bf7d092a1aac39de1f6f | diff --git a/README.rst b/README.rst
index <HASH>..<HASH> 100644
--- a/README.rst
+++ b/README.rst
@@ -142,7 +142,7 @@ Changelog
Version 0.3.0
-------------
-* Added __str__ method for convenience of pretty string
+* Added __str__/__unicode__ methods for convenience of pretty string
Version 0.2.0
-------------
... | Added unicode support, version bump | selwin_python-user-agents | train |
7a1b783a10066849bcb14ae60a56d61377a16cc7 | diff --git a/petl/io/avro.py b/petl/io/avro.py
index <HASH>..<HASH> 100644
--- a/petl/io/avro.py
+++ b/petl/io/avro.py
@@ -7,7 +7,7 @@ from collections import OrderedDict
from datetime import datetime, date, time
from decimal import Decimal
-from petl.compat import izip, izip_longest, text_type, string_types, PY3
+... | avro: fix some lints | petl-developers_petl | train |
2d24de5aa8b70da6b0dd84b7f01f7acce2d51174 | diff --git a/lib/ReactViews/ObserveModelMixin.js b/lib/ReactViews/ObserveModelMixin.js
index <HASH>..<HASH> 100644
--- a/lib/ReactViews/ObserveModelMixin.js
+++ b/lib/ReactViews/ObserveModelMixin.js
@@ -6,7 +6,7 @@ import knockout from 'terriajs-cesium/Source/ThirdParty/knockout';
const ObserveModelMixin = {
co... | Cleaner observable array tracking. | TerriaJS_terriajs | train |
8d5aac92cc9ee1df8f598db4cf13bd0f2ffd1d30 | diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index <HASH>..<HASH> 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,11 @@
Changelog
=========
+0.6.1 (unreleased)
+******************
+
+* Fix compatibility with marshmallow-sqlalchemy>=0.4.0 (:issue:`25`). Thanks :user:`svenstaro` for reporting.
+
0.6.0 (2015-... | Fix compatibility with marshmallow-sqlalchemy>=<I>
closes #<I> | marshmallow-code_flask-marshmallow | train |
f92e6312779886c697da135fedf38e1fac7f1227 | diff --git a/keras_text/models/sentence_model.py b/keras_text/models/sentence_model.py
index <HASH>..<HASH> 100644
--- a/keras_text/models/sentence_model.py
+++ b/keras_text/models/sentence_model.py
@@ -77,7 +77,7 @@ class SentenceModelFactory(object):
embedding_layer = Embedding(len(self.token_index),
... | only mask for 0 if possible (for sent model) | jfilter_text-classification-keras | train |
568d46e23f859cadab340677c5614d6cb2360b18 | diff --git a/stanza/utils/run_mwt.py b/stanza/utils/run_mwt.py
index <HASH>..<HASH> 100644
--- a/stanza/utils/run_mwt.py
+++ b/stanza/utils/run_mwt.py
@@ -1,3 +1,20 @@
+"""
+This script allows for training or testing on dev / test of the UD mwt tools.
+
+If run with a single treebank name, it will train or test that tr... | Add some comments to run_mwt | stanfordnlp_stanza | train |
09122ad4275bb3df8cafbb9d4227880d89b36c60 | diff --git a/js/language/lua.js b/js/language/lua.js
index <HASH>..<HASH> 100644
--- a/js/language/lua.js
+++ b/js/language/lua.js
@@ -2,7 +2,7 @@
* Lua patterns
*
* @author Javier Aguirre
- * @version 0.0.1
+ * @version 1.0
*/
Rainbow.extend('lua', [
{
diff --git a/util/builder.py b/util/builder.py
index... | Set lua version to <I> | ccampbell_rainbow | train |
641bc1d6bdf2cf75a06a8393dd7a1746b73e147f | diff --git a/src/PhpPact/Standalone/Installer/Service/InstallerPosixPreinstalled.php b/src/PhpPact/Standalone/Installer/Service/InstallerPosixPreinstalled.php
index <HASH>..<HASH> 100644
--- a/src/PhpPact/Standalone/Installer/Service/InstallerPosixPreinstalled.php
+++ b/src/PhpPact/Standalone/Installer/Service/Installe... | fix: deprecation of null being passed to "trim()" | pact-foundation_pact-php | train |
b9561074b127b4f7a335dcb1c5f87f7a88555218 | diff --git a/lhc/io/fasta_/inorder_access_set.py b/lhc/io/fasta_/inorder_access_set.py
index <HASH>..<HASH> 100644
--- a/lhc/io/fasta_/inorder_access_set.py
+++ b/lhc/io/fasta_/inorder_access_set.py
@@ -5,22 +5,25 @@ from lhc.interval import Interval
class FastaInOrderAccessSet(object):
- def __init__(self, fil... | added __getitem__ function to in fasta order access | childsish_lhc-python | train |
65c99a3b6809187de6a06a5a77e71024e77ec685 | diff --git a/driver-compat/src/test/unit/com/mongodb/DBCollectionTest.java b/driver-compat/src/test/unit/com/mongodb/DBCollectionTest.java
index <HASH>..<HASH> 100644
--- a/driver-compat/src/test/unit/com/mongodb/DBCollectionTest.java
+++ b/driver-compat/src/test/unit/com/mongodb/DBCollectionTest.java
@@ -21,8 +21,14 @... | Added acceptance test that show that valid value types can be round-tripped to MongoDB in driver-compat. Note that CodeWithScope is not yet supported. | mongodb_mongo-java-driver | train |
f21083f71a956ef5271f7cd25f00774b198e73f1 | diff --git a/lib/authority/abilities.rb b/lib/authority/abilities.rb
index <HASH>..<HASH> 100644
--- a/lib/authority/abilities.rb
+++ b/lib/authority/abilities.rb
@@ -23,9 +23,6 @@ module Authority
end
end
- def authorizer=(authorizer_class)
- @authorizer = authorizer_class
- end
def aut... | correctly set authorizer= as class method, update authorizer_name, assert accordingly in specs | nathanl_authority | train |
6ad0d5f99a931c7629f9acb805d4db5c03a01fa3 | diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index <HASH>..<HASH> 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -4,6 +4,7 @@ Changelog
1.1 (xx.xx.20xx) - IN DEVELOPMENT
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Added exclude() method to FakeQuerySet
+* Removed dependency on the 'six' package, in favour of Django's built... | Use Django's builtin version of six
Removes direct dependency on six | wagtail_django-modelcluster | train |
18c1849773eb5ef5c9148941bcf969d93eda9084 | diff --git a/spec/integration/cli_deployment_process_spec.rb b/spec/integration/cli_deployment_process_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/integration/cli_deployment_process_spec.rb
+++ b/spec/integration/cli_deployment_process_spec.rb
@@ -131,7 +131,8 @@ lines"}
expect(output).to_not include('s... | Fixes expectation to include new lines separating top level sections in diff
[#<I>] | cloudfoundry_bosh | train |
5344114ad39b5234e72a6111c07b7a0dacfffd00 | diff --git a/pom.xml b/pom.xml
index <HASH>..<HASH> 100644
--- a/pom.xml
+++ b/pom.xml
@@ -197,8 +197,8 @@
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
- <artifactId>bcpg-jdk12</artifactId>
- <version>130</version>
+ <artifactId>bcpg-jdk1... | Updated the dependency on BouncyCastle (<I>) | tcurdt_jdeb | train |
8d74dee28d9b772b05c3ea509b6b09d93a8b21ee | diff --git a/examples/producer.rb b/examples/producer.rb
index <HASH>..<HASH> 100644
--- a/examples/producer.rb
+++ b/examples/producer.rb
@@ -1,8 +1,9 @@
require 'hutch'
+
Hutch.connect
- loop do
- Hutch.publish('hutch.test', {subject: 'test message'}, true)
- sleep 0.5
- end
+loop do
+ Hutch.publish('hut... | Remove pub confirm and check for connection before publishing | gocardless_hutch | train |
8b1c232ecf9d3ba83b5309795022f7346e2caa7d | diff --git a/src/core.js b/src/core.js
index <HASH>..<HASH> 100755
--- a/src/core.js
+++ b/src/core.js
@@ -1649,7 +1649,7 @@ var me = me || {};
// this should be replace by a list of the 4 adjacent cell around the object requesting collision
for ( var i = gameObjects.length, obj; i--, obj = gameObjects[i];)//fo... | [#<I>] Followup: Remove explicit inViewport check from SpriteObject, and check alwaysUpdate in `me.game.collide` | melonjs_melonJS | train |
7f23758b99f4218d3225e7b1d4ffc8690fe575e3 | diff --git a/server/src/main/java/org/cloudfoundry/identity/uaa/client/ClientAdminEndpointsValidator.java b/server/src/main/java/org/cloudfoundry/identity/uaa/client/ClientAdminEndpointsValidator.java
index <HASH>..<HASH> 100644
--- a/server/src/main/java/org/cloudfoundry/identity/uaa/client/ClientAdminEndpointsValidat... | fix for issue <I> (#<I>)
Another option to solve it, simply reject comma Url in REST validation | cloudfoundry_uaa | train |
2988030b4c7ceed5d59939f09d1ac4437ede2c67 | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -1,5 +1,5 @@
import alabaster
-from sprockets.mixins.media_type import __version__
+from sprockets.mixins.mediatype import __version__
needs_sphinx = '1.0'
extensions = ['sphinx.ext.autodoc', | Correct module name in sphinx conf. | sprockets_sprockets.mixins.mediatype | train |
0d13277c0f2f03b51395366053c861ece494b91a | diff --git a/hererocks.py b/hererocks.py
index <HASH>..<HASH> 100755
--- a/hererocks.py
+++ b/hererocks.py
@@ -531,7 +531,7 @@ class LuaJIT(Lua):
run_command("msvcbuild.bat")
os.chdir("..")
else:
- run_command("make", "PREFIX=" + quote(opts.location))
+ run_comma... | Do not pass PREFIX when building LuaJIT
Since default paths are patched, there is no point. | mpeterv_hererocks | train |
f6f6beab66c9cf48d1c4d2bd54669430de01bc65 | diff --git a/icekit/publishing/models.py b/icekit/publishing/models.py
index <HASH>..<HASH> 100644
--- a/icekit/publishing/models.py
+++ b/icekit/publishing/models.py
@@ -283,7 +283,7 @@ class PublishingModel(models.Model):
publish_obj.publishing_published_at = self.publishing_published_at
#... | Fix mistaken API change of overrideable method, re #5 #<I> | ic-labs_django-icekit | train |
d89351ab97711672df4afeefccd6b45969d08a29 | diff --git a/core/src/main/java/org/togglz/core/user/FeatureUser.java b/core/src/main/java/org/togglz/core/user/FeatureUser.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/togglz/core/user/FeatureUser.java
+++ b/core/src/main/java/org/togglz/core/user/FeatureUser.java
@@ -23,4 +23,12 @@ public interface F... | Added API for storing attributes to the FeatureUser interface | togglz_togglz | train |
62fd1d0f0bd4770c581f7b9c3a7b9c200f781f4b | diff --git a/lib/jsdom/living/parent-node.js b/lib/jsdom/living/parent-node.js
index <HASH>..<HASH> 100644
--- a/lib/jsdom/living/parent-node.js
+++ b/lib/jsdom/living/parent-node.js
@@ -14,7 +14,7 @@ module.exports = function (core) {
if (!this._childrenList) {
const self = this;
- this._child... | NodeParent:children should be a HTMLCollection, not a NodeList | jsdom_jsdom | train |
c5960e25d583fec87739bac0693dacb89358cb4d | diff --git a/wfdb/processing/qrs.py b/wfdb/processing/qrs.py
index <HASH>..<HASH> 100644
--- a/wfdb/processing/qrs.py
+++ b/wfdb/processing/qrs.py
@@ -103,13 +103,13 @@ class XQRS(object):
ref_period : int, float, optional
The QRS refractory period.
t_inspect_period : int, float, optional... | set default of `t_inspect_period` to `0` | MIT-LCP_wfdb-python | train |
9626ae193149c0c43d186dcb63ccee8d5c3bbb17 | diff --git a/lib/guard/resque.rb b/lib/guard/resque.rb
index <HASH>..<HASH> 100644
--- a/lib/guard/resque.rb
+++ b/lib/guard/resque.rb
@@ -11,11 +11,11 @@ module Guard
# :count e.g. 3
# :verbose e.g. true
# :trace e.g. true
- # :stop_signal e.g. KILL
+ # :stop_signal e.g. QUIT
def initialize(w... | Default to QUIT signal instead of KILL, per the Resque docs. | jacquescrocker_guard-resque | train |
73115614fd1545bf90b0b144a22be523ef3e2355 | diff --git a/asv/util.py b/asv/util.py
index <HASH>..<HASH> 100644
--- a/asv/util.py
+++ b/asv/util.py
@@ -341,26 +341,23 @@ def check_output(args, valid_return_codes=(0,), timeout=600, dots=True,
log.debug("Running '{0}'".format(' '.join(args)))
- posix = getattr(os, 'setpgid', None)
- if posix:
- ... | ENH: Terminate process group on timeout under Windows. | airspeed-velocity_asv | train |
19d6588be8e2e7d37a3b9dec9cd415e2f95cb41d | diff --git a/sparse/sfold.go b/sparse/sfold.go
index <HASH>..<HASH> 100644
--- a/sparse/sfold.go
+++ b/sparse/sfold.go
@@ -19,24 +19,23 @@ type FoldFileOperations interface {
// FoldFile folds child snapshot data into its parent
func FoldFile(childFileName, parentFileName string, ops FoldFileOperations) error {
-
... | Convert panics in sfold to returned errors | rancher_sparse-tools | train |
53136e2913582bc1b33fad42b283f961dca56410 | diff --git a/src/functions.php b/src/functions.php
index <HASH>..<HASH> 100644
--- a/src/functions.php
+++ b/src/functions.php
@@ -440,7 +440,8 @@ function readline(StreamInterface $stream, $maxLength = null)
function parse_request($message)
{
$data = _parse_message($message);
- if (!preg_match('/^[a-zA-Z]+\s... | Fixes for issue-<I> (support full URL's in requests, such as proxied requests) | guzzle_psr7 | train |
48b4dea4ed5f2b651c01379b9e1c8d1a2ea01fc5 | diff --git a/extension/protobuf/src/main/java/org/openbase/jul/extension/protobuf/MessageObservable.java b/extension/protobuf/src/main/java/org/openbase/jul/extension/protobuf/MessageObservable.java
index <HASH>..<HASH> 100644
--- a/extension/protobuf/src/main/java/org/openbase/jul/extension/protobuf/MessageObservable.... | cleanup code and remove RESOURCE_ALLOCATION workaround which related issue has already been fixed. | openbase_jul | train |
28fe3159de5739332153a5f6e8aa642e101dab56 | diff --git a/js/MediaStream.js b/js/MediaStream.js
index <HASH>..<HASH> 100644
--- a/js/MediaStream.js
+++ b/js/MediaStream.js
@@ -314,8 +314,13 @@ MediaStream.prototype.removeTrack = function (track) {
MediaStream.prototype.clone = function () {
- debug('clone()');
- return new MediaStream(this);
+
+ var newStrea... | Implement MediaStream and MediaStreamTrack clone SHIM that duplicate track and stream for real | BasqueVoIPMafia_cordova-plugin-iosrtc | train |
a2e109ef8b6b7d9593705257f86650ac663607e9 | diff --git a/src/wcmf/lib/model/ObjectQuery.php b/src/wcmf/lib/model/ObjectQuery.php
index <HASH>..<HASH> 100644
--- a/src/wcmf/lib/model/ObjectQuery.php
+++ b/src/wcmf/lib/model/ObjectQuery.php
@@ -444,13 +444,15 @@ class ObjectQuery extends AbstractQuery {
$thisFkAttr = $nmMapper->getAttribute($thi... | Fix ObjectQuery for multiple conditions on same nm relation | iherwig_wcmf | train |
40bdf63a1c74b71c0eaa22da651d6c6f3dfaf1d6 | diff --git a/includes/object-cache.php b/includes/object-cache.php
index <HASH>..<HASH> 100644
--- a/includes/object-cache.php
+++ b/includes/object-cache.php
@@ -466,7 +466,18 @@ class WP_Object_Cache
if (defined('WP_REDIS_SHARDS')) {
$this->redis = new RedisArray(array_values(WP_... | support cluster timeout, read timeout and password | tillkruss_redis-cache | train |
f1e2eb9a204b89a3c7b32c3350d1e036dec76cbf | diff --git a/lib/rest.rb b/lib/rest.rb
index <HASH>..<HASH> 100644
--- a/lib/rest.rb
+++ b/lib/rest.rb
@@ -3,6 +3,9 @@ require 'uri'
# REST is basically a convenience wrapper around Net::HTTP. It defines a simple and consistant API for doing REST-style
# HTTP calls.
module REST
+ # Raised when the remote server dis... | Raise a REST::DisconnectError when the client is disconnected from the server. | Fingertips_nap | train |
f0b843403126c7ab927c78ae5ff99ae1d464c9df | diff --git a/hbc-core/src/main/java/com/twitter/hbc/SitestreamController.java b/hbc-core/src/main/java/com/twitter/hbc/SitestreamController.java
index <HASH>..<HASH> 100644
--- a/hbc-core/src/main/java/com/twitter/hbc/SitestreamController.java
+++ b/hbc-core/src/main/java/com/twitter/hbc/SitestreamController.java
@@ -3... | Added preconditions test to enforce maximum number of user_id values to <I> on addUser and removeUser as per docs at <URL> | twitter_hbc | train |
b04dd042869f3f15380989af4cea258c5215517c | diff --git a/pythonforandroid/bootstraps/common/build/build.py b/pythonforandroid/bootstraps/common/build/build.py
index <HASH>..<HASH> 100644
--- a/pythonforandroid/bootstraps/common/build/build.py
+++ b/pythonforandroid/bootstraps/common/build/build.py
@@ -309,7 +309,8 @@ main.py that loads it.''')
if ex... | webview: put webview_includes in assets dir | kivy_python-for-android | train |
30853c370050eae11376eb50d9bc3b00629526b5 | diff --git a/library/src/main/java/com/akexorcist/roundcornerprogressbar/IconRoundCornerProgressBar.java b/library/src/main/java/com/akexorcist/roundcornerprogressbar/IconRoundCornerProgressBar.java
index <HASH>..<HASH> 100644
--- a/library/src/main/java/com/akexorcist/roundcornerprogressbar/IconRoundCornerProgressBar.... | Add missing annotation and remove unused imports | akexorcist_Android-RoundCornerProgressBar | train |
9c349a57f221c166c4b50d8fe1f169de06ecb5e4 | diff --git a/addon/hint/show-hint.js b/addon/hint/show-hint.js
index <HASH>..<HASH> 100644
--- a/addon/hint/show-hint.js
+++ b/addon/hint/show-hint.js
@@ -50,6 +50,7 @@ CodeMirror.showHint = function(cm, getHints, options) {
hints.style.left = left + "px";
hints.style.top = top + "px";
document.body.appe... | show-hint addon to emit "hintShowed" and "hintClosed" events | codemirror_CodeMirror | train |
2c54193cdda7b152135a908c9481dca83f32045d | diff --git a/lib/compass-rails/version.rb b/lib/compass-rails/version.rb
index <HASH>..<HASH> 100644
--- a/lib/compass-rails/version.rb
+++ b/lib/compass-rails/version.rb
@@ -1,5 +1,5 @@
module CompassRails
unless defined?(::CompassRails::VERSION)
- VERSION = "2.0.alpha.0"
+ VERSION = "1.1.0.pre"
end
end | Do version <I>.x for Rails 4 support.
Drops support for Rails <I>
Version <I> of compass-rails will be compatible
with compass <I>+ when it comes out. | Compass_compass-rails | train |
edea346f9a020ff6ca321787bc37e5f98b36e30f | diff --git a/playback/nova_compute.py b/playback/nova_compute.py
index <HASH>..<HASH> 100644
--- a/playback/nova_compute.py
+++ b/playback/nova_compute.py
@@ -25,9 +25,9 @@ class NovaCompute(Task):
env.parallel = self.parallel
def _install(self, my_ip, rabbit_hosts, rabbit_user, rabbit_pass, auth_uri,... | Add sysfsutils to resolve failed to attach volume | jiasir_playback | train |
b989b7601b9f53c3ad630072d971a92865cb3831 | diff --git a/telebot/__init__.py b/telebot/__init__.py
index <HASH>..<HASH> 100644
--- a/telebot/__init__.py
+++ b/telebot/__init__.py
@@ -30,6 +30,25 @@ Module : telebot
"""
+class Handler:
+ def __init__(self, callback: {dict, function}, *args, **kwargs):
+ if type(callback) == dict:
+ self.... | Add new class: Handler
Change type of (next step|reply) handlers from dict to Handler [WIP]
update: telebot/__init__.py | eternnoir_pyTelegramBotAPI | train |
bcbe9bd2e598b38296fe23b4827328e15989d939 | diff --git a/lib/rdl/types/structural.rb b/lib/rdl/types/structural.rb
index <HASH>..<HASH> 100644
--- a/lib/rdl/types/structural.rb
+++ b/lib/rdl/types/structural.rb
@@ -2,7 +2,7 @@ require_relative 'type'
module RDL::Type
class StructuralType < Type
- attr_reader :map
+ attr_reader :methods
@@cache... | Rename map in StructuralType to methods to avoid confusion.
Add <= for StructuralType. | plum-umd_rdl | train |
58d4b30ce77fa2448e019782905383585b07d584 | diff --git a/tests/ProjectCodeTest.php b/tests/ProjectCodeTest.php
index <HASH>..<HASH> 100644
--- a/tests/ProjectCodeTest.php
+++ b/tests/ProjectCodeTest.php
@@ -32,15 +32,15 @@ class ProjectCodeTest extends BaseTestCase
$this->addToAssertionCount(1);
return;
}
-
- $this->asse... | Improve the error messages on auto review tests (#<I>)
If a new method was added, then you would get a few phpunit errors
that had far too much text to quickly see what you have to do.
So instead of the phpunit assertions, we use `fail` to only show
the relevant information. | webmozart_assert | train |
660d2187a9593b996ff401f71f2fa550f27d394c | diff --git a/src/test/java/one/util/streamex/LimiterTest.java b/src/test/java/one/util/streamex/LimiterTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/one/util/streamex/LimiterTest.java
+++ b/src/test/java/one/util/streamex/LimiterTest.java
@@ -24,6 +24,7 @@ import java.util.stream.Collectors;
import java.ut... | [#<I>] LimiterTest: extract wars for javac 8<u<I> | amaembo_streamex | train |
9ee6f8d6a3e887b5d8440d1d3fb75b35ed6f3d35 | diff --git a/src/gfx/shaders.js b/src/gfx/shaders.js
index <HASH>..<HASH> 100644
--- a/src/gfx/shaders.js
+++ b/src/gfx/shaders.js
@@ -271,6 +271,7 @@ varying float vertAlpha;\n\
varying float vertSelect;\n\
uniform vec2 relativePixelSize;\n\
uniform float outlineWidth;\n\
+uniform float outlineOffset;\n\
\n\
void... | fix precision issue for GPU's that offer less than <I> depth bits | biasmv_pv | train |
b1e2e6b8b3f7dd6fdbc424373be21967b38260b6 | diff --git a/cohort/lib.php b/cohort/lib.php
index <HASH>..<HASH> 100644
--- a/cohort/lib.php
+++ b/cohort/lib.php
@@ -149,6 +149,7 @@ class cohort_candidate_selector extends user_selector_base {
protected function get_options() {
$options = parent::get_options();
$options['cohortid'] = $this->co... | MDL-<I> fixed incorrect options in user selectors | moodle_moodle | train |
70ddb2ae33c5f601dac6a7acf0fcd5f8eb24e870 | diff --git a/lib/metasploit_data_models/version.rb b/lib/metasploit_data_models/version.rb
index <HASH>..<HASH> 100755
--- a/lib/metasploit_data_models/version.rb
+++ b/lib/metasploit_data_models/version.rb
@@ -4,5 +4,5 @@ module MetasploitDataModels
# metasploit-framework/data/sql/migrate to db/migrate in this proj... | Bump the version to make the PR management easier | rapid7_metasploit_data_models | train |
5642088a23e18d72c3c46ea3a0e2ed793c1fa941 | diff --git a/upoints/gpx.py b/upoints/gpx.py
index <HASH>..<HASH> 100644
--- a/upoints/gpx.py
+++ b/upoints/gpx.py
@@ -646,7 +646,7 @@ class Waypoint(_GpxElem):
_elem_name = "wpt"
-class Waypoints(point.Points):
+class Waypoints(point.TimedPoints):
"""Class for representing a group of `Waypoint` objects
... | Use TimedPoints for GPX waypoints. | JNRowe_upoints | train |
adb66a5722ce17c04622a196cab98ed2a106f206 | diff --git a/holviapi/checkout.py b/holviapi/checkout.py
index <HASH>..<HASH> 100644
--- a/holviapi/checkout.py
+++ b/holviapi/checkout.py
@@ -199,11 +199,30 @@ class CheckoutAPI(object):
self.products_api = ProductsAPI(self.connection)
self.base_url = str(connection.base_url_fmt + self.base_url_fmt)
... | Implement filtering support for orders and invoices | rambo_python-holviapi | train |
c323dda4b6c13df429962910d09d08343d63dd77 | diff --git a/src/qpdf/object.cpp b/src/qpdf/object.cpp
index <HASH>..<HASH> 100644
--- a/src/qpdf/object.cpp
+++ b/src/qpdf/object.cpp
@@ -280,6 +280,20 @@ QPDFObjectHandle object_get_key(QPDFObjectHandle& h, std::string const& key)
return dict.getKey(key);
}
+void object_set_key(QPDFObjectHandle& h, std::strin... | Refactor dictionary['key']=value
Removal the ability to set a key to None; invite the user to use del
instead. The reason for this is that in PDFs and QPDF setting a key to
null is equivalent to deletion. Seems best to remove potential
source of confusion. | pikepdf_pikepdf | train |
85dfa745b6c2895d968409780c650e783328899f | diff --git a/satpy/modifiers/geometry.py b/satpy/modifiers/geometry.py
index <HASH>..<HASH> 100644
--- a/satpy/modifiers/geometry.py
+++ b/satpy/modifiers/geometry.py
@@ -17,6 +17,8 @@
# satpy. If not, see <http://www.gnu.org/licenses/>.
"""Modifier classes for corrections based on sun and other angles."""
+from _... | Refactor SZA and cos(SZA) generation to reduce duplicate computations | pytroll_satpy | train |
90ef4cca06c8ba05ce114ef42652ea6037d443ea | diff --git a/src/main/java/org/minimalj/backend/sql/TableCreator.java b/src/main/java/org/minimalj/backend/sql/TableCreator.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/minimalj/backend/sql/TableCreator.java
+++ b/src/main/java/org/minimalj/backend/sql/TableCreator.java
@@ -10,9 +10,9 @@ public class TableC... | TableCreator: use same system properties as persistence | BrunoEberhard_minimal-j | train |
49cc85120dafe6ab4d5e837000cec14c0803851d | diff --git a/src/store.js b/src/store.js
index <HASH>..<HASH> 100644
--- a/src/store.js
+++ b/src/store.js
@@ -80,6 +80,9 @@ export default class Store {
*/
clearSelected() {
this.getSelectedIds().forEach(id => {
+ if(this.get(id).created === false) {
+ this.get(id).onStopDrawing({});
+ }
... | trash can should stop drawing. fixes #<I> | mapbox_mapbox-gl-draw | train |
0ef7d4c78afa24d7b90f22836541e062e54cc841 | diff --git a/buckets/fields.py b/buckets/fields.py
index <HASH>..<HASH> 100644
--- a/buckets/fields.py
+++ b/buckets/fields.py
@@ -43,7 +43,7 @@ class S3File(object):
if not self.committed:
name = os.path.join(self.field.upload_to,
os.path.basename(self._file.name)... | Ensure byte-like object is passed to Storage.save() | Cadasta_django-buckets | train |
8d3e5218c20501c810e79f512ef69ad0836e065c | diff --git a/spyder/plugins/workingdirectory/container.py b/spyder/plugins/workingdirectory/container.py
index <HASH>..<HASH> 100644
--- a/spyder/plugins/workingdirectory/container.py
+++ b/spyder/plugins/workingdirectory/container.py
@@ -43,6 +43,9 @@ class WorkingDirectoryToolbarSections:
Main = "main_section"
... | Update workingdirectory toolbar item ids | spyder-ide_spyder | train |
a8f6269755c95392f898e5e1f53596eafe81634f | diff --git a/concrete/single_pages/dashboard/blocks/types/view.php b/concrete/single_pages/dashboard/blocks/types/view.php
index <HASH>..<HASH> 100644
--- a/concrete/single_pages/dashboard/blocks/types/view.php
+++ b/concrete/single_pages/dashboard/blocks/types/view.php
@@ -91,7 +91,7 @@ if ($controller->getAction() ==... | Fix ugly hover on awaiting for installation items | concrete5_concrete5 | train |
11960ed1509633c60f4d97ec67c422358969eea3 | diff --git a/app/models/concerns/tree.rb b/app/models/concerns/tree.rb
index <HASH>..<HASH> 100644
--- a/app/models/concerns/tree.rb
+++ b/app/models/concerns/tree.rb
@@ -9,4 +9,21 @@ module Tree
ids
end
+
+ def self.recursively_gather_names(tree_array, ids, names=[])
+ tree_array.each do |hash_val|
+ ... | Build Recursive Name Gathering method for Trees | cortex-cms_cortex | train |
e58dd10469ec073328a9568a2527583d21bba394 | diff --git a/testSetup/init.js b/testSetup/init.js
index <HASH>..<HASH> 100644
--- a/testSetup/init.js
+++ b/testSetup/init.js
@@ -1,4 +1,4 @@
-require('@testing-library/jest-dom');
+require('@testing-library/jest-dom/extend-expect');
const {
DEFAULT_DESKTOP_MIN_WIDTH,
DEFAULT_DESKTOP_LARGE_MIN_WIDTH, | chore(tests): added /extend-expect to @testing-library/jest-dom | mlaursen_react-md | train |
6c109c91f7f1998991dd0dfe55758d26856abd67 | diff --git a/executor/prepared_test.go b/executor/prepared_test.go
index <HASH>..<HASH> 100644
--- a/executor/prepared_test.go
+++ b/executor/prepared_test.go
@@ -548,6 +548,31 @@ func (s *testPrepareSuite) TestPlanCacheXXX(c *C) {
}
}
+func (s *testSerialSuite) TestIssue28782(c *C) {
+ store, dom, err := newStore... | planner: forbid constant fold when plan cache enable (#<I>) | pingcap_tidb | train |
5344b31d2809d6d81526330ea38a430f31f3f9bd | diff --git a/vlcp/service/connection/zookeeperdb.py b/vlcp/service/connection/zookeeperdb.py
index <HASH>..<HASH> 100644
--- a/vlcp/service/connection/zookeeperdb.py
+++ b/vlcp/service/connection/zookeeperdb.py
@@ -259,7 +259,7 @@ class ZooKeeperDB(TcpServerBase):
if losts or retries:
... | bug fix: should use .stat.mtime etc. | hubo1016_vlcp | train |
baf70f6edc54143313411af6a2622c82e5684c4c | diff --git a/pliers/extractors/api/google.py b/pliers/extractors/api/google.py
index <HASH>..<HASH> 100644
--- a/pliers/extractors/api/google.py
+++ b/pliers/extractors/api/google.py
@@ -205,7 +205,11 @@ class GoogleVideoIntelligenceAPIExtractor(GoogleAPITransformer, VideoExtractor):
return request_obj.execute... | Patch operations request for Google Video Intelligence | tyarkoni_pliers | train |
cd0314e16e9edc6fd3f332a5259c1d6c31509799 | diff --git a/metaknowledge/diffusion.py b/metaknowledge/diffusion.py
index <HASH>..<HASH> 100644
--- a/metaknowledge/diffusion.py
+++ b/metaknowledge/diffusion.py
@@ -33,11 +33,15 @@ def diffusionGraph(source, target, sourceType = "raw", targetType = "raw"):
_sourceType_ : `str`
- > default `'raw'`, if `'ra... | Fexed bug with equality checking and made a doc string better
Former-commit-id: 3d3d<I>b0c6d<I>dccadad8ac3d<I>b4ca<I>b6b | networks-lab_metaknowledge | train |
3b1abcc2225426d0b3245bbf8b9777b44716f9f7 | diff --git a/activesupport/test/core_ext/object/deep_dup_test.rb b/activesupport/test/core_ext/object/deep_dup_test.rb
index <HASH>..<HASH> 100644
--- a/activesupport/test/core_ext/object/deep_dup_test.rb
+++ b/activesupport/test/core_ext/object/deep_dup_test.rb
@@ -53,7 +53,7 @@ class DeepDupTest < ActiveSupport::Test... | Put the assertion arguments in the right order | rails_rails | train |
e4c10c96880dccac6009660d142478b6d2560bdb | diff --git a/core/client/app/assets/lib/uploader.js b/core/client/app/assets/lib/uploader.js
index <HASH>..<HASH> 100644
--- a/core/client/app/assets/lib/uploader.js
+++ b/core/client/app/assets/lib/uploader.js
@@ -16,8 +16,8 @@ let UploadUi = function ($dropzone, settings) {
}));
$.extend(this, {
- ... | Properly binds "this" in uploader.js
closes #<I> | TryGhost_Ghost | train |
1a287a67e0f50d87dd7781e681693670589c6068 | diff --git a/src/walker/semantic_walker.js b/src/walker/semantic_walker.js
index <HASH>..<HASH> 100644
--- a/src/walker/semantic_walker.js
+++ b/src/walker/semantic_walker.js
@@ -214,9 +214,7 @@ sre.SemanticWalker.prototype.right = function() {
sre.SemanticWalker.prototype.findFocusOnLevel = function(id) {
var focu... | Uses semantic node information for retrieving focus level. | zorkow_speech-rule-engine | train |
a6241df281ccdee327c57a2c3dd48477efcd18c6 | diff --git a/Serializer/JsonLdNormalizer.php b/Serializer/JsonLdNormalizer.php
index <HASH>..<HASH> 100644
--- a/Serializer/JsonLdNormalizer.php
+++ b/Serializer/JsonLdNormalizer.php
@@ -155,7 +155,7 @@ class JsonLdNormalizer extends AbstractNormalizer
);
foreach ($attributes as $attribute => $detai... | Check if the property is readable in the normalizer | api-platform_core | train |
cad7093a3175868944acf1d2f62bad523e4f8a41 | diff --git a/tests/unit/utils/test_thin.py b/tests/unit/utils/test_thin.py
index <HASH>..<HASH> 100644
--- a/tests/unit/utils/test_thin.py
+++ b/tests/unit/utils/test_thin.py
@@ -15,7 +15,7 @@ from tests.support.mock import (
from salt.ext.six.moves import zip
from salt.ext import six
-import salt.utils.ssdp as ssd... | Add unit test for missing dependencies on get_ext_tops | saltstack_salt | train |
db76b42ef50703d218aeccee15b0ab10f5621724 | diff --git a/lib/vagrant/environment.rb b/lib/vagrant/environment.rb
index <HASH>..<HASH> 100644
--- a/lib/vagrant/environment.rb
+++ b/lib/vagrant/environment.rb
@@ -115,7 +115,7 @@ module Vagrant
# @return [Pathname]
def dotfile_path
return nil if !root_path
- root_path.join(config.global.vagran... | Allow the .vagrant dotfile to be moved into a completely different directory tree
I wanted to define my dotfile as: `config.vagrant.dotfile_name =
"~/.vagrant-projectname"` and noticed that the full path wasn't
expanded as expected.
This patch allows the vagrant file to be placed anywhere on the
filesystem. | hashicorp_vagrant | train |
772f27304585c3052371460d0d1f8b73b76a51d6 | diff --git a/__tests__/yaml-test-suite.js b/__tests__/yaml-test-suite.js
index <HASH>..<HASH> 100644
--- a/__tests__/yaml-test-suite.js
+++ b/__tests__/yaml-test-suite.js
@@ -18,10 +18,6 @@ const matchJson = (stream, json) => {
}
}
-const skipStringify = [
- '6FWR', // Block Scalar Keep
-]
-
testDirs.forEach(di... | Fix test suite stream joiner (Test case 6FWR) | eemeli_yaml | train |
4b124f3f8ee34c800af43c8821b43eaaa8e79420 | diff --git a/Classes/Command/JobCommandController.php b/Classes/Command/JobCommandController.php
index <HASH>..<HASH> 100644
--- a/Classes/Command/JobCommandController.php
+++ b/Classes/Command/JobCommandController.php
@@ -16,7 +16,7 @@ use TYPO3\FLOW3\Annotations as FLOW3;
/**
* Job command controller
*/
-class J... | [TASK] Apply migration TYPO3.FLOW3-<I>
This commit contains the result of applying migration
TYPO3.FLOW3-<I>.
to this package.
Migration: TYPO3.FLOW3-<I> | Flowpack_jobqueue-common | train |
2df48c715098c1e5710aa38f5ca250b0d455c4fa | diff --git a/web/concrete/src/Asset/CssAsset.php b/web/concrete/src/Asset/CssAsset.php
index <HASH>..<HASH> 100644
--- a/web/concrete/src/Asset/CssAsset.php
+++ b/web/concrete/src/Asset/CssAsset.php
@@ -111,7 +111,7 @@ class CssAsset extends Asset
? $m[1]
: substr($m[1], 1, str... | Don't change paths of urls that start with data:
Former-commit-id: <I>b5e<I>c6be<I>b<I>d9d7b<I>fde<I>
Former-commit-id: c<I>a<I>d7e1fc<I>dcc<I>c<I>f9cc<I> | concrete5_concrete5 | train |
8677b86c0120f5a12516beac7837017d13862a4e | diff --git a/pyemma/_ext/sklearn/base.py b/pyemma/_ext/sklearn/base.py
index <HASH>..<HASH> 100644
--- a/pyemma/_ext/sklearn/base.py
+++ b/pyemma/_ext/sklearn/base.py
@@ -26,6 +26,18 @@ import six
from pyemma.util.reflection import getargspec_no_self
#################################################################... | [ext/sklearn] updated code from sklearn repo | markovmodel_PyEMMA | train |
f0840f4ee7e1946dddddd75712dd1a841280acdc | diff --git a/.gitignore b/.gitignore
index <HASH>..<HASH> 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,6 +10,9 @@ npm-debug.log*
*.sublime-project
*.sublime-workspace
+# vscode project
+.vscode
+
# Runtime data
pids
*.pid
diff --git a/src/MUIDataTable.js b/src/MUIDataTable.js
index <HASH>..<HASH> 100644
--- a... | Fix for changing rows per page issue (#<I>)
* fix(MUIDataTable): recalculate page after calling changeRowsPerPage
fixes #<I>
* chore: add folder .vscode to .gitignore | gregnb_mui-datatables | train |
fa14005aa9c6197cc2e2f2273c98ce2c400b6ebe | diff --git a/test/test_any_instance_of.rb b/test/test_any_instance_of.rb
index <HASH>..<HASH> 100644
--- a/test/test_any_instance_of.rb
+++ b/test/test_any_instance_of.rb
@@ -113,6 +113,7 @@ describe Muack::AnyInstanceOf do
obj.f.should.eq 0
end
+ # Brought from rspec-mocks and it's currently failing on rspe... | Add another test case which fails on rspec-mocks | godfat_muack | train |
652763521db03b01503c6a3fd1d2cb5422dd9935 | diff --git a/vxlan/driver.go b/vxlan/driver.go
index <HASH>..<HASH> 100644
--- a/vxlan/driver.go
+++ b/vxlan/driver.go
@@ -448,43 +448,56 @@ func (d *Driver) DeleteEndpoint(r *network.DeleteEndpointRequest) error {
}
log.Debugf("Deleted subinterface: %s", linkName)
- netID := r.NetworkID
- // If no other subint... | remove nics asynchronously, because get containers blocks while the container is being deleted | TrilliumIT_docker-vxlan-plugin | train |
44ffdfe397bd571243bfd66955632d4b0e729679 | diff --git a/raiden/network/transport/matrix/transport.py b/raiden/network/transport/matrix/transport.py
index <HASH>..<HASH> 100644
--- a/raiden/network/transport/matrix/transport.py
+++ b/raiden/network/transport/matrix/transport.py
@@ -590,8 +590,7 @@ class MatrixTransport(Runnable):
def force_check_address_rea... | Avoid health checking side effects in conn-manager
The healthcheck problems in the bf5 scenarios are caused by
`force_check_address_reachability`, which is only used in the connection
manager. When that is called, the address and its presence become known,
which prevents the room from being created in
`immediate_healt... | raiden-network_raiden | train |
e1250cc9a39a9d08068dab7dd85c76eaf4421138 | diff --git a/lib/dpl/provider/s3.rb b/lib/dpl/provider/s3.rb
index <HASH>..<HASH> 100644
--- a/lib/dpl/provider/s3.rb
+++ b/lib/dpl/provider/s3.rb
@@ -17,7 +17,7 @@ module DPL
def max_threads
return @max_threads if @max_threads
- if (@max_threads = threads_wanted = options.fetch(:max_threads, D... | Fixed configurable "max_thread" issue
Attempt to compare string with integer fails. | travis-ci_dpl | train |
9957b43e7e55882403e268e0f03e589279d0aed0 | diff --git a/src/Authenticator/JwtAuthenticator.php b/src/Authenticator/JwtAuthenticator.php
index <HASH>..<HASH> 100644
--- a/src/Authenticator/JwtAuthenticator.php
+++ b/src/Authenticator/JwtAuthenticator.php
@@ -39,6 +39,13 @@ class JwtAuthenticator extends TokenAuthenticator {
];
/**
+ * Payload dat... | Refacotring the JWT authenticator code a little | cakephp_authentication | train |
603038a78b4ab85a8733677e9f69a4d4c7c3b9aa | diff --git a/lib/puppetdb_query/mongodb.rb b/lib/puppetdb_query/mongodb.rb
index <HASH>..<HASH> 100644
--- a/lib/puppetdb_query/mongodb.rb
+++ b/lib/puppetdb_query/mongodb.rb
@@ -153,7 +153,7 @@ module PuppetDBQuery
# @param node [String] node name
# @param facts [Array<String>] get these facts in the result,... | enable dot in key string, 1. try | m-31_puppetdb_query | train |
eccc05d8b1f008ba8fd54c4ecbd6983722bc3b67 | diff --git a/lib/Cake/Utility/Folder.php b/lib/Cake/Utility/Folder.php
index <HASH>..<HASH> 100644
--- a/lib/Cake/Utility/Folder.php
+++ b/lib/Cake/Utility/Folder.php
@@ -413,9 +413,6 @@ class Folder {
if ($skipHidden && $name[0] === '.' || isset($exceptions[$name])) {
continue;
}
- if ($name === '.' || ... | Revert previous commit. Trying to fix jenkins build. | cakephp_cakephp | train |
7b285538858a2eb64644d6e463da322cee9daa31 | diff --git a/submit/models.py b/submit/models.py
index <HASH>..<HASH> 100644
--- a/submit/models.py
+++ b/submit/models.py
@@ -92,6 +92,8 @@ class Submission(models.Model):
def authors_list(self):
return [u.get_full_name() for u in self.authors.all()]
def can_withdraw(self):
+ if self.state == self.WITHDRAWN:
+... | Don't show actions for withdrawn submissions | troeger_opensubmit | train |
e9238e82d652761c03070783fa6f01c13ddfa081 | diff --git a/biplist/__init__.py b/biplist/__init__.py
index <HASH>..<HASH> 100644
--- a/biplist/__init__.py
+++ b/biplist/__init__.py
@@ -391,6 +391,19 @@ class BoolWrapper(object):
def __repr__(self):
return "<BoolWrapper: %s>" % self.value
+class FloatWrapper(object):
+ _instances = {}
+ def __... | issue #2: wrap floats to avoid int-float confusion | wooster_biplist | train |
0a02e93588077c6500306c4b19688a0b5cb91430 | diff --git a/edisgo/grid/network.py b/edisgo/grid/network.py
index <HASH>..<HASH> 100644
--- a/edisgo/grid/network.py
+++ b/edisgo/grid/network.py
@@ -1,5 +1,7 @@
from edisgo.data.import_data import import_from_dingo
from ..utils import interfaces
+from pypsa import Network as PyPSANetwork
+from pypsa.io import impor... | Add PyPSA calls exemplary for MV grids | openego_eDisGo | train |
5d7f9f22d504642e2965ecc0bda93560d803e9d8 | diff --git a/src/Symfony/Component/Yaml/Parser.php b/src/Symfony/Component/Yaml/Parser.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/Yaml/Parser.php
+++ b/src/Symfony/Component/Yaml/Parser.php
@@ -201,7 +201,7 @@ class Parser
array_pop($this->refsBeingParsed);
}
... | [Yaml] Remove legacy parsing rule | symfony_symfony | train |
49a59cc6a5e950c56938493da5b23fce77c1cf3f | diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/actionmailer/CHANGELOG.md
+++ b/actionmailer/CHANGELOG.md
@@ -1,3 +1,8 @@
+* `assert_emails` in block form use the given number as expected value.
+ This makes the error message much easier to understand.
+
+ *Y... | `assert_emails` in block form use the given number as expected value | rails_rails | train |
44aee49b9edf03587bb59d0ee8041eae6e5d2304 | diff --git a/src/AllowedInclude.php b/src/AllowedInclude.php
index <HASH>..<HASH> 100644
--- a/src/AllowedInclude.php
+++ b/src/AllowedInclude.php
@@ -31,13 +31,24 @@ class AllowedInclude
$internalName = Str::camel($internalName ?? $name);
return IncludedRelationship::getIndividualRelationshipPathsF... | Fix alias for allowed includes (#<I>) | spatie_laravel-query-builder | train |
35b596a497b207deffdde77d7624a432699f29bf | diff --git a/helios-testing/src/main/java/com/spotify/helios/testing/TemporaryJob.java b/helios-testing/src/main/java/com/spotify/helios/testing/TemporaryJob.java
index <HASH>..<HASH> 100644
--- a/helios-testing/src/main/java/com/spotify/helios/testing/TemporaryJob.java
+++ b/helios-testing/src/main/java/com/spotify/he... | Log for creating job is now at info
It also uses jobId.toShortString() so it's less verbose
than printing the full hash. | spotify_helios | train |
a3358e185697dc70c3f7b69d2f265dc897629c4f | diff --git a/src/Api/Transaction/GetService.php b/src/Api/Transaction/GetService.php
index <HASH>..<HASH> 100644
--- a/src/Api/Transaction/GetService.php
+++ b/src/Api/Transaction/GetService.php
@@ -68,16 +68,17 @@ class GetService extends Transaction
}
try {
$result = parent::doRequest('... | Added fix for <I> GetService | paynl_sdk | train |
785b429737ca3147d6122374a4e411ffc049a4ab | diff --git a/internal/rest/client.go b/internal/rest/client.go
index <HASH>..<HASH> 100644
--- a/internal/rest/client.go
+++ b/internal/rest/client.go
@@ -242,8 +242,10 @@ func (c *Client) MarkOffline() bool {
}
if c.HealthCheckFn() {
if atomic.CompareAndSwapInt32(&c.connected, offline, online) {
- ... | add reconnect duration allows for verifying disconnect intervals (#<I>) | minio_minio | train |
4629496fb811f352fcd93b1a7fea39acfb2e7767 | diff --git a/dashboard_app/tests.py b/dashboard_app/tests.py
index <HASH>..<HASH> 100644
--- a/dashboard_app/tests.py
+++ b/dashboard_app/tests.py
@@ -1040,7 +1040,7 @@ class BundleStreamDetailViewAnonymousTest(TestCase):
"403.html")
-class BundleStreamDetailViewAuthenticatedTest(TestCase):
+class ... | Fix test class inheritance, thanks Paul! | zyga_json-schema-validator | train |
59d36bc1e3ffe2e177a6cc05aa4f30d5d5fdba3f | diff --git a/nunaliit2-js/src/main/js/nunaliit2/n2.mapAndControls.js b/nunaliit2-js/src/main/js/nunaliit2/n2.mapAndControls.js
index <HASH>..<HASH> 100644
--- a/nunaliit2-js/src/main/js/nunaliit2/n2.mapAndControls.js
+++ b/nunaliit2-js/src/main/js/nunaliit2/n2.mapAndControls.js
@@ -5829,23 +5829,26 @@ var MapAndControl... | nunaliit2-js: Fix issue where maps driven from model sometimes have
duplicate geometries. | GCRC_nunaliit | train |
568207870b03df00b0efb5c28570a94e70b78b70 | diff --git a/lib/fauxhai/mocker.rb b/lib/fauxhai/mocker.rb
index <HASH>..<HASH> 100644
--- a/lib/fauxhai/mocker.rb
+++ b/lib/fauxhai/mocker.rb
@@ -65,7 +65,11 @@ module Fauxhai
path = Pathname.new(filepath)
FileUtils.mkdir_p(path.dirname)
- File.open(filepath, 'w') { |f| f.write(r... | Provide a better error message if we can't write to the local disk | chefspec_fauxhai | train |
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 |
acb8b69108d84edfc7e5dd3a8eda0abaea2b8dce | diff --git a/src/CallbackWrapper.php b/src/CallbackWrapper.php
index <HASH>..<HASH> 100644
--- a/src/CallbackWrapper.php
+++ b/src/CallbackWrapper.php
@@ -20,7 +20,7 @@ namespace Icewind\Streams;
* ]
* ]
*
- * All callbacks are called before the operation is executed on the source stream
+ * All callbacks are... | call callbacks after running the stream operation | icewind1991_Streams | train |
15275eddaceb577a50068e07c43be130a508f66f | diff --git a/cake/libs/route/cake_route.php b/cake/libs/route/cake_route.php
index <HASH>..<HASH> 100644
--- a/cake/libs/route/cake_route.php
+++ b/cake/libs/route/cake_route.php
@@ -274,7 +274,7 @@ class CakeRoute {
if ((!isset($options['named']) || !empty($this->options['named'])) && $separatorIsPresent) {
l... | Moving matchNamed() into CakeRoute. This will allow its removal from Router. | cakephp_cakephp | train |
af2a7ea84098cb3692824b94240329eb534edec8 | diff --git a/src/components/Drawer.js b/src/components/Drawer.js
index <HASH>..<HASH> 100644
--- a/src/components/Drawer.js
+++ b/src/components/Drawer.js
@@ -25,7 +25,7 @@ const Drawer = React.createClass({
},
componentDidMount () {
- this._animateComponent({ right: 0 });
+ this._animateComponent({ left:... | Ditching magic numbers for percentages for width and animations | mxenabled_mx-react-components | train |
9ec8349572015d4af3f4079cc72eef73af98d688 | diff --git a/moco-core/src/main/java/com/github/dreamhead/moco/Moco.java b/moco-core/src/main/java/com/github/dreamhead/moco/Moco.java
index <HASH>..<HASH> 100644
--- a/moco-core/src/main/java/com/github/dreamhead/moco/Moco.java
+++ b/moco-core/src/main/java/com/github/dreamhead/moco/Moco.java
@@ -543,7 +543,7 @@ publi... | replaced generic with diamond operator in Moco | dreamhead_moco | train |
8553c8563c92ac5f94d02d70d00fa9df3e91bf3f | diff --git a/igor_test.go b/igor_test.go
index <HASH>..<HASH> 100644
--- a/igor_test.go
+++ b/igor_test.go
@@ -327,13 +327,13 @@ func TestJoinsTableSelectDeleteWhere(t *testing.T) {
func TestJSON(t *testing.T) {
user := createUser()
- var emptyJson igor.JSON = make(igor.JSON)
+ var emptyJSON = make(igor.JSON)
- ... | igor_test.go: follow go conventions | galeone_igor | train |
ed6736d06d0c9a096dc980f1fbc9909877e01dc4 | diff --git a/lib/puppet/version.rb b/lib/puppet/version.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/version.rb
+++ b/lib/puppet/version.rb
@@ -7,7 +7,7 @@
module Puppet
- PUPPETVERSION = '3.8.3'
+ PUPPETVERSION = '3.8.4'
##
# version is a public API method intended to always provide a fast and | (packaging) Update PUPPETVERSION to <I> | puppetlabs_puppet | train |
8a23e182f26ac05f67dde02db508246dcf326e91 | diff --git a/lib/mongo/mongo_client.rb b/lib/mongo/mongo_client.rb
index <HASH>..<HASH> 100644
--- a/lib/mongo/mongo_client.rb
+++ b/lib/mongo/mongo_client.rb
@@ -39,6 +39,7 @@ module Mongo
POOL_OPTS = [:pool_size, :pool_timeout]
WRITE_CONCERN_OPTS = [:w, :j, :fsync, :wtimeout]
CLIENT_ONLY_OPTS ... | RUBY-<I> move new shared functionality into client | mongodb_mongo-ruby-driver | train |
27a43c3b3b6049936065c7ce4e6944adbb29803d | diff --git a/lib/sauce/capybara/cucumber.rb b/lib/sauce/capybara/cucumber.rb
index <HASH>..<HASH> 100644
--- a/lib/sauce/capybara/cucumber.rb
+++ b/lib/sauce/capybara/cucumber.rb
@@ -21,6 +21,12 @@ module Sauce
module_function :use_sauce_driver
def name_from_scenario(scenario)
+ # Special behavio... | Handle running the Around hook with Scenario Outlines
Fixes #<I> | saucelabs_sauce_ruby | train |
4e2ce7b3fe6ce96edae22520b8b7a6c59cb18452 | diff --git a/flink-state-backends/flink-statebackend-changelog/src/main/java/org/apache/flink/state/changelog/ChangelogStateBackend.java b/flink-state-backends/flink-statebackend-changelog/src/main/java/org/apache/flink/state/changelog/ChangelogStateBackend.java
index <HASH>..<HASH> 100644
--- a/flink-state-backends/fl... | [FLINK-<I>][state/changelog] Allow recovery without non-materialized state
Motivation:
1. ChangelogBackend.savpoint() currently simply delegates to
the underlying backend, so the snapshot doesn't contain
non-materialized state
2. Enable migration to ChangelogBackend from savepoints
3. Some tests create savepoints dire... | apache_flink | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.