diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/commerce-service/src/main/java/com/liferay/commerce/model/impl/CommerceOrderImpl.java b/commerce-service/src/main/java/com/liferay/commerce/model/impl/CommerceOrderImpl.java
index <HASH>..<HASH> 100644
--- a/commerce-service/src/main/java/com/liferay/commerce/model/impl/CommerceOrderImpl.java
+++ b/commerc... | COMMERCE-<I> Added new method to commerce order implementation |
diff --git a/src/frontend/org/voltdb/planner/StatementPartitioning.java b/src/frontend/org/voltdb/planner/StatementPartitioning.java
index <HASH>..<HASH> 100644
--- a/src/frontend/org/voltdb/planner/StatementPartitioning.java
+++ b/src/frontend/org/voltdb/planner/StatementPartitioning.java
@@ -535,7 +535,7 @@ public cl... | Fix trailing whitespace left from earlier changes |
diff --git a/src/mako/file/FileSystem.php b/src/mako/file/FileSystem.php
index <HASH>..<HASH> 100644
--- a/src/mako/file/FileSystem.php
+++ b/src/mako/file/FileSystem.php
@@ -131,25 +131,30 @@ class FileSystem
}
/**
- * Returns TRUE if a directory is empty and FALSE if not.
+ * Returns TRUE if a file or directo... | Renamed isDirectoryEmpty to isEmpty
Will now work on both files and directories |
diff --git a/modules/relative-urls.php b/modules/relative-urls.php
index <HASH>..<HASH> 100755
--- a/modules/relative-urls.php
+++ b/modules/relative-urls.php
@@ -92,7 +92,7 @@ if ( ! class_exists(__NAMESPACE__ . '\\RelativeUrls') ) {
public static function content_return_absolute_url_filter( $content ) {
... | Use strlen() instead of count() when manipulating strings (Closes: #<I>)
The function count() should only be used with arrays, objects and alike. |
diff --git a/falafel/mappers/chkconfig.py b/falafel/mappers/chkconfig.py
index <HASH>..<HASH> 100644
--- a/falafel/mappers/chkconfig.py
+++ b/falafel/mappers/chkconfig.py
@@ -4,6 +4,7 @@ chkconfig - command
"""
from collections import namedtuple
from .. import Mapper, mapper
+import re
@mapper('chkconfig')
@@ -... | Add support for xinetd-based services |
diff --git a/tinytag/tinytag.py b/tinytag/tinytag.py
index <HASH>..<HASH> 100644
--- a/tinytag/tinytag.py
+++ b/tinytag/tinytag.py
@@ -449,6 +449,7 @@ class ID3(TinyTag):
'TPE2': 'albumartist', 'TCOM': 'composer',
'WXXX': 'extra.url',
'TXXX': 'extra.text',
+ 'TKEY': 'extra.initial_key'... | added support for TKEY id3 meta data (Initial Key) as part of the `extra` field #<I> |
diff --git a/pub/index.php b/pub/index.php
index <HASH>..<HASH> 100644
--- a/pub/index.php
+++ b/pub/index.php
@@ -9,5 +9,4 @@ require_once '../vendor/autoload.php';
$request = HttpRequest::fromGlobalState(file_get_contents('php://input'));
$website = new SampleWebFront($request);
-$website->registerFactory(new Sam... | Issue #<I>: Register SampleFactory in SampleWebFront |
diff --git a/mtglib/__init__.py b/mtglib/__init__.py
index <HASH>..<HASH> 100644
--- a/mtglib/__init__.py
+++ b/mtglib/__init__.py
@@ -1,2 +1,2 @@
-__version__ = '1.3.3'
+__version__ = '1.4.0'
__author__ = 'Cameron Higby-Naquin' | Increment minor version for release. |
diff --git a/NavigationReactNative/src/android/app/src/main/java/com/navigation/reactnative/NavigationStackView.java b/NavigationReactNative/src/android/app/src/main/java/com/navigation/reactnative/NavigationStackView.java
index <HASH>..<HASH> 100644
--- a/NavigationReactNative/src/android/app/src/main/java/com/navigat... | Finished and started if crumbs equal
It only comes in here when replacing the current view and changing State |
diff --git a/lib/server.js b/lib/server.js
index <HASH>..<HASH> 100644
--- a/lib/server.js
+++ b/lib/server.js
@@ -74,9 +74,9 @@ Server.prototype.server = function () {
if (logging) app.use(morgan(logging));
app.use(compression());
app.use(errorhandler());
- app.get('/', this.handleRender.bind(this));
app.... | allowing any path to serve the root (for spa-like apps) |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -35,7 +35,7 @@ module.exports = function(opts) {
width: res.info.width,
height: res.info.height,
data: [
- 'url(data:image/svg+xml;utf8,',
+ 'url(data:image/svg+xml;charset=utf8,',
encodeURIC... | Data charset format fix for IE
Adding charset= before utf8 makes the SVG data URIs work in Internet Explorer |
diff --git a/demos/chat/chat.js b/demos/chat/chat.js
index <HASH>..<HASH> 100644
--- a/demos/chat/chat.js
+++ b/demos/chat/chat.js
@@ -118,8 +118,9 @@ irc.onerror = function(command) {
// 433 ERR_NICKNAMEINUSE
nickname += '_'
irc.nick(nickname)
- self.onUsernameTaken();
+ irc.jo... | fixed parsing error in chat demo; actually join channel when nickname was taken |
diff --git a/go/teams/delete_test.go b/go/teams/delete_test.go
index <HASH>..<HASH> 100644
--- a/go/teams/delete_test.go
+++ b/go/teams/delete_test.go
@@ -23,7 +23,7 @@ func TestDeleteRoot(t *testing.T) {
_, err := GetTeamByNameForTest(context.Background(), tc.G, teamname, false, false)
require.Error(t, err, "no ... | Fix teams test (#<I>) |
diff --git a/salt/output/highstate.py b/salt/output/highstate.py
index <HASH>..<HASH> 100644
--- a/salt/output/highstate.py
+++ b/salt/output/highstate.py
@@ -146,8 +146,8 @@ def output(data):
# Append result counts to end of output
colorfmt = '{0}{1}{2[ENDC]}'
rlabel = {True: 'Su... | Don't fail if there's nothing to feed to `max()`. |
diff --git a/containers.go b/containers.go
index <HASH>..<HASH> 100644
--- a/containers.go
+++ b/containers.go
@@ -15,7 +15,14 @@ func getContainers(config string) Containers {
if len(config) > 0 {
return unmarshal([]byte(config))
}
- return readCranefile("Cranefile")
+ if _, err := os.Stat("crane.json"); err ==... | Use crane.json going forward and deprecate Cranefile usage
Closes #4. |
diff --git a/lib/bibformat_migration_kit.py b/lib/bibformat_migration_kit.py
index <HASH>..<HASH> 100644
--- a/lib/bibformat_migration_kit.py
+++ b/lib/bibformat_migration_kit.py
@@ -130,9 +130,9 @@ def migrate_behaviours():
# The conditions on which we will iterate will maybe need to be split
# in ma... | Fixed add_default_case variable initialization location, thanks to
Ferran Jorba. |
diff --git a/src/main/java/com/googlecode/rocoto/simpleconfig/DefaultPropertiesReader.java b/src/main/java/com/googlecode/rocoto/simpleconfig/DefaultPropertiesReader.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/googlecode/rocoto/simpleconfig/DefaultPropertiesReader.java
+++ b/src/main/java/com/googlecode/ro... | added missing @since javadoc tag |
diff --git a/apis/connection.js b/apis/connection.js
index <HASH>..<HASH> 100644
--- a/apis/connection.js
+++ b/apis/connection.js
@@ -15,6 +15,9 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+var MIN_MODBUSRTU_FRAMESZ = 5;
+var MIN_MODBUSASCII_FRAMESZ = 11;
+
/**
* Adds connection sh... | added vmin support for ascii and RTU |
diff --git a/lib/listen/change.rb b/lib/listen/change.rb
index <HASH>..<HASH> 100644
--- a/lib/listen/change.rb
+++ b/lib/listen/change.rb
@@ -17,14 +17,23 @@ module Listen
unless cookie
# TODO: remove silencing here (it's done later)
- return if _silencer.silenced?(path, options[:type])
+ ... | add extra debugging (Change) |
diff --git a/lib/camel_patrol/middleware.rb b/lib/camel_patrol/middleware.rb
index <HASH>..<HASH> 100644
--- a/lib/camel_patrol/middleware.rb
+++ b/lib/camel_patrol/middleware.rb
@@ -17,14 +17,17 @@ module CamelPatrol
def underscore_params(env)
if ::Rails::VERSION::MAJOR < 5
env["action_dispatch.re... | Abort translation on parse errors
For requests, we should abort translating key format if a parsing error
occurs due to invalid json. Let the request continue untouched, similar
to the scenario when content-type header is missing
It shouldn't be this middleware's responcibility to deal with invalid
json. The app serv... |
diff --git a/Factory/MailMotorFactory.php b/Factory/MailMotorFactory.php
index <HASH>..<HASH> 100644
--- a/Factory/MailMotorFactory.php
+++ b/Factory/MailMotorFactory.php
@@ -15,12 +15,12 @@ class MailMotorFactory
/** @var Container */
protected $container;
- /** @var string */
+ /** @var string|null ... | Fix error when the mail engine is not set |
diff --git a/lib/Doctrine/DBAL/Statement.php b/lib/Doctrine/DBAL/Statement.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/DBAL/Statement.php
+++ b/lib/Doctrine/DBAL/Statement.php
@@ -129,7 +129,7 @@ class Statement implements \IteratorAggregate, DriverStatement
*/
public function execute($params = null)
... | fixed missing space between if and open parenthesis |
diff --git a/src/extract_slides.js b/src/extract_slides.js
index <HASH>..<HASH> 100644
--- a/src/extract_slides.js
+++ b/src/extract_slides.js
@@ -266,13 +266,13 @@ inlineTokenRules['paragraph_close'] = function(token, env) {
inlineTokenRules['fence'] = function(token, env) {
- startStyle({fontFamily: 'Courier ... | Fix font family for code blocks, trim language to avoid invalid language errors when trailing whitespace present |
diff --git a/salt/modules/boto_cloudtrail.py b/salt/modules/boto_cloudtrail.py
index <HASH>..<HASH> 100644
--- a/salt/modules/boto_cloudtrail.py
+++ b/salt/modules/boto_cloudtrail.py
@@ -488,7 +488,8 @@ def list_tags(Name,
try:
conn = _get_conn(region=region, key=key, keyid=keyid, profile=profile)
... | Fix cut-and-paste error or whatever it was |
diff --git a/pkg/maps/ctmap/ctmap.go b/pkg/maps/ctmap/ctmap.go
index <HASH>..<HASH> 100644
--- a/pkg/maps/ctmap/ctmap.go
+++ b/pkg/maps/ctmap/ctmap.go
@@ -393,7 +393,7 @@ func DeleteIfUpgradeNeeded(e CtEndpoint) {
continue
}
if oldMap.CheckAndUpgrade(&newMap.Map.MapInfo) {
- scopedLog.Info("CT Map upgraded,... | ctmap: Warn if CT map was upgraded as it results in disruption
Related: #<I> |
diff --git a/test/db/mysql/simple_test.rb b/test/db/mysql/simple_test.rb
index <HASH>..<HASH> 100644
--- a/test/db/mysql/simple_test.rb
+++ b/test/db/mysql/simple_test.rb
@@ -136,15 +136,15 @@ class MySQLSimpleTest < Test::Unit::TestCase
t.integer :value
end
connection.create_table :bs do |t|
- t.... | adjust foreign key test introduced in #<I> (was failing with MRI under AR <I>) |
diff --git a/src/littleparsers.js b/src/littleparsers.js
index <HASH>..<HASH> 100644
--- a/src/littleparsers.js
+++ b/src/littleparsers.js
@@ -173,8 +173,9 @@
LittleParsers.prototype.variable = function () {
var _this = this;
return this.cacheDo("variable", function () {
- var v = _this.regex(... | "@foo" compiles into "this.foo" |
diff --git a/lib/MwbExporter/Formatter/Doctrine2/Annotation/Model/Table.php b/lib/MwbExporter/Formatter/Doctrine2/Annotation/Model/Table.php
index <HASH>..<HASH> 100644
--- a/lib/MwbExporter/Formatter/Doctrine2/Annotation/Model/Table.php
+++ b/lib/MwbExporter/Formatter/Doctrine2/Annotation/Model/Table.php
@@ -205,7 +20... | Doctrine Annotation: always generate M2M table entity. |
diff --git a/etrago/appl.py b/etrago/appl.py
index <HASH>..<HASH> 100644
--- a/etrago/appl.py
+++ b/etrago/appl.py
@@ -154,6 +154,7 @@ def etrago(args):
minimize_loading : bool
False,
+ ...
k_mean_clustering : bool
False, | changed RTD see #<I> |
diff --git a/network.js b/network.js
index <HASH>..<HASH> 100644
--- a/network.js
+++ b/network.js
@@ -2702,14 +2702,16 @@ function startAcceptingConnections(){
}
var bStatsCheckUnderWay = true;
db.query(
- "SELECT \n\
+ /* "SELECT \n\
SUM(CASE WHEN event='invalid' THEN 1 ELSE 0 END) AS count_invalid, ... | faster check of stats of incoming peer |
diff --git a/c7n/mu.py b/c7n/mu.py
index <HASH>..<HASH> 100644
--- a/c7n/mu.py
+++ b/c7n/mu.py
@@ -1237,7 +1237,14 @@ class ConfigRule(object):
if isinstance(func, PolicyLambda):
manager = func.policy.get_resource_manager()
- config_type = manager.get_model().config_type
+ ... | mu - runtime validate aws config support for resource type before provisioning (#<I>) |
diff --git a/lib/hb-helpers.js b/lib/hb-helpers.js
index <HASH>..<HASH> 100644
--- a/lib/hb-helpers.js
+++ b/lib/hb-helpers.js
@@ -132,7 +132,9 @@ module.exports.registerHelpers = function registerHelpers() {
if (Array.isArray(run))
return run[0][whichView].images.waterfall;
else
- return ... | don't break if we don't have any runs |
diff --git a/org.jenetics/src/main/java/org/jenetics/internal/util/Args.java b/org.jenetics/src/main/java/org/jenetics/internal/util/Args.java
index <HASH>..<HASH> 100644
--- a/org.jenetics/src/main/java/org/jenetics/internal/util/Args.java
+++ b/org.jenetics/src/main/java/org/jenetics/internal/util/Args.java
@@ -86,7 ... | #<I>: Constructor 'Double(String)' has been deprecated in Java 9.
Using 'Double.valueOf' instead. |
diff --git a/src/javascript/image/Image.js b/src/javascript/image/Image.js
index <HASH>..<HASH> 100644
--- a/src/javascript/image/Image.js
+++ b/src/javascript/image/Image.js
@@ -481,7 +481,7 @@ define("moxie/image/Image", [
}
if (Env.can('use_data_uri_of', dataUrl.length)) {
- el.innerHTML = '<img s... | Image: fulfill basic xhtml requirement for img tag |
diff --git a/js/bitstamp.js b/js/bitstamp.js
index <HASH>..<HASH> 100644
--- a/js/bitstamp.js
+++ b/js/bitstamp.js
@@ -840,14 +840,15 @@ module.exports = class bitstamp extends Exchange {
feeCurrency = market['quote'];
symbol = market['symbol'];
}
- let timestamp = this.safeStr... | btistamp parseTrade timestamp minor edits |
diff --git a/scripts/sass-render/index.js b/scripts/sass-render/index.js
index <HASH>..<HASH> 100644
--- a/scripts/sass-render/index.js
+++ b/scripts/sass-render/index.js
@@ -37,7 +37,13 @@ async function sassToCss(sassFile) {
},
outputStyle: 'compressed',
});
- return result.css.toString();
+
+ // S... | fix(select): Strip byte order mark in CSS compilation |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -126,7 +126,7 @@ build.sub_commands.insert(0, ('build_proto', None))
INSTALL_REQUIRES = [
'contextlib2>=0.5.1,<1.0',
- 'enum34>=1.1.2,<2.0',
+ 'enum34>=1.1.2,<2.0;python_version<"3.4"',
'future>=0.16.0',
... | install enum<I> for certain python version (#<I>) |
diff --git a/lib/AssetGraph.js b/lib/AssetGraph.js
index <HASH>..<HASH> 100644
--- a/lib/AssetGraph.js
+++ b/lib/AssetGraph.js
@@ -406,10 +406,10 @@ AssetGraph.prototype = {
var nextTransform = transforms[nextStepNo],
startTime = new Date();
nextStepNo += 1;
- ... | AssetGraph.transform: Report and die if an error occurs during a transformation. |
diff --git a/ovirtlago/virt.py b/ovirtlago/virt.py
index <HASH>..<HASH> 100644
--- a/ovirtlago/virt.py
+++ b/ovirtlago/virt.py
@@ -22,6 +22,7 @@ import warnings
import ovirtsdk.api
import lago
+import lago.config
import lago.vm
from ovirtsdk.infrastructure.errors import (RequestError, ConnectionError)
@@ -45,6 ... | ovirtlago: use the vm-provider if it's there
Change-Id: Ic<I>b<I>d<I>ab<I>f<I>fb<I>a<I>f<I>cd |
diff --git a/src/js/utils.js b/src/js/utils.js
index <HASH>..<HASH> 100644
--- a/src/js/utils.js
+++ b/src/js/utils.js
@@ -79,8 +79,18 @@ fbUtils.attrString = function(attrs) {
*/
fbUtils.safeAttr = function(name, value) {
name = fbUtils.safeAttrName(name);
+ let valString;
- let valString = fbUtils.escapeAtt... | Hotfix: typeUserEvents, attribute array converted to comma separated list (#<I>) |
diff --git a/padaos.py b/padaos.py
index <HASH>..<HASH> 100644
--- a/padaos.py
+++ b/padaos.py
@@ -61,7 +61,7 @@ class IntentContainer:
(r'(\\[^\w ])', r'\1?'),
# === Force 1+ Space Between Words ===
- (r'(?<=\w)(\\\s|\s)+(?=\w)', r'\\W+'),
+ (r'(?<=\w)(... | Fix words not requiring any space in between |
diff --git a/spillway/renderers.py b/spillway/renderers.py
index <HASH>..<HASH> 100644
--- a/spillway/renderers.py
+++ b/spillway/renderers.py
@@ -227,10 +227,12 @@ class MapnikRenderer(BaseRenderer):
object.draw(self.map)
except AttributeError:
pass
- bbox = renderer_context.g... | Zoom to all layers without a bbox present |
diff --git a/gbdxtools/s3.py b/gbdxtools/s3.py
index <HASH>..<HASH> 100644
--- a/gbdxtools/s3.py
+++ b/gbdxtools/s3.py
@@ -87,7 +87,10 @@ class S3(object):
location = location.strip('/')
self.logger.debug('Downloading contents')
- for s3key in s3conn.list_objects(Bucket=bucket, Prefix=(prefix... | Check to make sure the download target exists |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ setup(
version='0.3.7',
description='Blanc Basic Pages for Django',
long_description=readme,
- url='https://github.com/blancltd/blanc-basic-pages',
+ url='https://github.com/developersociety... | Update GitHub repos from blancltd to developersociety |
diff --git a/sc2gameLobby/ipAddresses.py b/sc2gameLobby/ipAddresses.py
index <HASH>..<HASH> 100644
--- a/sc2gameLobby/ipAddresses.py
+++ b/sc2gameLobby/ipAddresses.py
@@ -53,7 +53,7 @@ def getPublicIPaddress(timeout=c.DEFAULT_TIMEOUT):
"""visible on public internet"""
start = time.time()
my_public_ip = N... | - added robustness in case a connection to the internet is lost. |
diff --git a/bungiesearch/managers.py b/bungiesearch/managers.py
index <HASH>..<HASH> 100644
--- a/bungiesearch/managers.py
+++ b/bungiesearch/managers.py
@@ -25,8 +25,12 @@ class BungiesearchManager(Manager):
from bungiesearch import Bungiesearch
return Bungiesearch(raw_results=True).index(index).doc... | Add contribute_to_class in place of __init__ in manage.py |
diff --git a/ruby/server/lib/roma/command/mh_command_receiver.rb b/ruby/server/lib/roma/command/mh_command_receiver.rb
index <HASH>..<HASH> 100644
--- a/ruby/server/lib/roma/command/mh_command_receiver.rb
+++ b/ruby/server/lib/roma/command/mh_command_receiver.rb
@@ -48,7 +48,7 @@ module Roma
return "SERVER_E... | bugfix:multihash concerning the file path was corrected. |
diff --git a/teams/admin.py b/teams/admin.py
index <HASH>..<HASH> 100644
--- a/teams/admin.py
+++ b/teams/admin.py
@@ -5,14 +5,30 @@ import reversion
from .models import Team, Membership
+def members_count(obj):
+ return obj.memberships.count()
+members_count.short_description = "Members Count"
+
+
admin.site.... | Fix up admin to be a bit more useful |
diff --git a/translation_server/admin.py b/translation_server/admin.py
index <HASH>..<HASH> 100644
--- a/translation_server/admin.py
+++ b/translation_server/admin.py
@@ -37,7 +37,11 @@ class CustomModelAdminMixin(object):
@admin.register(TranslationType)
class TranslationTypeAdmin(CustomModelAdminMixin, TabbedTran... | Removed "DTS" translations and translation tags from admin |
diff --git a/src/sap.ui.integration/src/sap/ui/integration/util/ManifestResolver.js b/src/sap.ui.integration/src/sap/ui/integration/util/ManifestResolver.js
index <HASH>..<HASH> 100644
--- a/src/sap.ui.integration/src/sap/ui/integration/util/ManifestResolver.js
+++ b/src/sap.ui.integration/src/sap/ui/integration/util/M... | [INTERNAL] Integration Cards: Do not destroy card during manifest resolving
- card shouldn't be destroyed during manifest resolving
since it must be destroyed by the one who created it
Change-Id: I3a3f<I>f2db<I>ac<I>f<I>bf<I>d<I>f0 |
diff --git a/Kwf/Model/Proxy/Rowset.php b/Kwf/Model/Proxy/Rowset.php
index <HASH>..<HASH> 100644
--- a/Kwf/Model/Proxy/Rowset.php
+++ b/Kwf/Model/Proxy/Rowset.php
@@ -48,6 +48,7 @@ class Kwf_Model_Proxy_Rowset implements Kwf_Model_Rowset_Interface
{
return $this->_rowset->count();
}
+
public fun... | Fix problem with index-access to specific row in rowset
If accessing a row via index it didn't returned the proxied row
resulting in missing expected functionality. |
diff --git a/server_test.go b/server_test.go
index <HASH>..<HASH> 100644
--- a/server_test.go
+++ b/server_test.go
@@ -107,6 +107,7 @@ func generateConfig(forwardAddr string) Config {
TraceAddress: fmt.Sprintf("127.0.0.1:%d", tracePort),
TraceAPIAddress: forwardAddr,
TraceMaxLengthBytes: 4096,
+ Ss... | Set SsfBufferSize to <I> in tests |
diff --git a/sdl/render.go b/sdl/render.go
index <HASH>..<HASH> 100644
--- a/sdl/render.go
+++ b/sdl/render.go
@@ -191,6 +191,9 @@ static int SDLCALL SDL_GetTextureScaleMode(SDL_Texture * texture, SDL_ScaleMode
}
static int SDL_LockTextureToSurface(SDL_Texture *texture, const SDL_Rect *rect, SDL_Surface **surface)... | sdl/render: fix broken build on older SDL2 |
diff --git a/datajoint/schema.py b/datajoint/schema.py
index <HASH>..<HASH> 100644
--- a/datajoint/schema.py
+++ b/datajoint/schema.py
@@ -193,7 +193,7 @@ class Schema:
# add table definition to the doc string
if isinstance(table_class.definition, str):
- table_class.__doc__ = ((table_cla... | minor improvement in display of table doc strings |
diff --git a/FlowCal/mef.py b/FlowCal/mef.py
index <HASH>..<HASH> 100644
--- a/FlowCal/mef.py
+++ b/FlowCal/mef.py
@@ -333,9 +333,9 @@ def fit_beads_autofluorescence(fl_rfi, fl_mef):
-----
The following model is used to describe bead fluorescence::
- m*log(fl_mef[i]) + b = log(fl_mef_auto + fl_mef[i]... | Corrected typo in mef.fit_beads_autofluorescence's docstring. |
diff --git a/src/gl/texture.js b/src/gl/texture.js
index <HASH>..<HASH> 100644
--- a/src/gl/texture.js
+++ b/src/gl/texture.js
@@ -137,7 +137,19 @@ export default class Texture {
let image = new Image();
image.onload = () => {
try {
- this.setElement(image, ... | workaround for obscure bug seen with small (<<I>px) SVG images encoded as data URLs in Chrome and Safari |
diff --git a/can/io/sqlite.py b/can/io/sqlite.py
index <HASH>..<HASH> 100644
--- a/can/io/sqlite.py
+++ b/can/io/sqlite.py
@@ -25,7 +25,7 @@ if sys.version_info > (3,):
buffer = memoryview
-@deprecated(version='2.1', reason="Use the name SqliteReader instead")
+@deprecated(reason="Use the name SqliteReader ins... | removed the version attribute from the deprecated decorator |
diff --git a/lib/mangopay/client.rb b/lib/mangopay/client.rb
index <HASH>..<HASH> 100644
--- a/lib/mangopay/client.rb
+++ b/lib/mangopay/client.rb
@@ -1,5 +1,17 @@
module MangoPay
class Client < Resource
- include MangoPay::HTTPCalls::Create
+ def self.create(params)
+ uri = URI(MangoPay.configuration.ro... | Now use an outside method to create the client account |
diff --git a/demo/app.js b/demo/app.js
index <HASH>..<HASH> 100644
--- a/demo/app.js
+++ b/demo/app.js
@@ -46,7 +46,7 @@ Abba.InputsView.prototype = {
return {
label: $row.find('.label-input').val(),
numSuccesses: parseInt($row.find('.num-successes-input').val()),
- numSamp... | Fix some trailing commas for IE |
diff --git a/salt/config.py b/salt/config.py
index <HASH>..<HASH> 100644
--- a/salt/config.py
+++ b/salt/config.py
@@ -61,6 +61,7 @@ VALID_OPTS = {
'master_sign_key_name': str,
'master_sign_pubkey': bool,
'verify_master_pubkey_sign': bool,
+ 'always_verify_signature': bool,
'master_pubkey_signatu... | add switch to always verify the masters pubkey
for the paranoid among us, this makes it possible to always verify
the masters auth-replies, even if the public key has not changed |
diff --git a/drivers/overlay/overlay.go b/drivers/overlay/overlay.go
index <HASH>..<HASH> 100644
--- a/drivers/overlay/overlay.go
+++ b/drivers/overlay/overlay.go
@@ -620,7 +620,7 @@ func supportsOverlay(home string, homeMagic graphdriver.FsMagic, rootUID, rootGI
if len(flags) < unix.Getpagesize() {
err := unix.... | Log expected rootless overlay mount failures as debug level
Most linux kernels do not support overlay mounts in rootless mode,
we should not be reporting this as an error, but drop it to debug
level.
Fixes: <URL> |
diff --git a/presto-hive-metastore/src/main/java/com/facebook/presto/hive/metastore/CachingHiveMetastore.java b/presto-hive-metastore/src/main/java/com/facebook/presto/hive/metastore/CachingHiveMetastore.java
index <HASH>..<HASH> 100644
--- a/presto-hive-metastore/src/main/java/com/facebook/presto/hive/metastore/Cachin... | Invalidate cache if partition is not present
Invalidating the partition cache if partition object is not present. |
diff --git a/test/test_client.py b/test/test_client.py
index <HASH>..<HASH> 100644
--- a/test/test_client.py
+++ b/test/test_client.py
@@ -157,12 +157,6 @@ class TestClient(IntegrationTest, TestRequestMixin):
# No error.
connected(MongoClient())
- def assertIsInstance(self, obj, cls, msg=None):
-... | Remove "assertIsInstance" backport.
No longer required since we use unittest2 on Python <I>, and the method is
in the standard library for Python <I>+. |
diff --git a/test/glimpse/views/git_test.rb b/test/glimpse/views/git_test.rb
index <HASH>..<HASH> 100644
--- a/test/glimpse/views/git_test.rb
+++ b/test/glimpse/views/git_test.rb
@@ -1,13 +1,33 @@
require 'test_helper'
describe Glimpse::Views::Git do
- before do
- @git = Glimpse::Views::Git.new(:nwo => 'github/... | Add some Glimpse::Views::Git tests |
diff --git a/client/webpack.config.js b/client/webpack.config.js
index <HASH>..<HASH> 100644
--- a/client/webpack.config.js
+++ b/client/webpack.config.js
@@ -386,6 +386,10 @@ const webpackConfig = {
release: `calypso_${ process.env.COMMIT_SHA }`,
include: filePaths.path,
urlPrefix: `~${ filePaths.public... | Never fail webpack build from sentry (#<I>) |
diff --git a/testing/test_detail_page.py b/testing/test_detail_page.py
index <HASH>..<HASH> 100644
--- a/testing/test_detail_page.py
+++ b/testing/test_detail_page.py
@@ -14,7 +14,7 @@ from k2catalogue import detail_object
])
def test_detail_url(input, expected):
epic_object = mock.Mock(epic_id=input)
- url_r... | Update format placeholder to be <I> compatible |
diff --git a/tests/Redisearch/IndexTest.php b/tests/Redisearch/IndexTest.php
index <HASH>..<HASH> 100644
--- a/tests/Redisearch/IndexTest.php
+++ b/tests/Redisearch/IndexTest.php
@@ -301,7 +301,7 @@ class ClientTest extends TestCase
$this->assertEquals($expectedDocumentCount, count($result->getDocuments()));
... | Decrease number of docs for batch indexing tests |
diff --git a/rollup.config.js b/rollup.config.js
index <HASH>..<HASH> 100644
--- a/rollup.config.js
+++ b/rollup.config.js
@@ -1,6 +1,7 @@
import vue from 'rollup-plugin-vue';
import babel from 'rollup-plugin-babel';
import resolve from 'rollup-plugin-node-resolve';
+import uglify from 'rollup-plugin-uglify';
exp... | minify main dist js |
diff --git a/src/org/zaproxy/zap/extension/alert/AlertTreeModel.java b/src/org/zaproxy/zap/extension/alert/AlertTreeModel.java
index <HASH>..<HASH> 100644
--- a/src/org/zaproxy/zap/extension/alert/AlertTreeModel.java
+++ b/src/org/zaproxy/zap/extension/alert/AlertTreeModel.java
@@ -219,7 +219,9 @@ class AlertTreeModel ... | Issue <I> - NullPointerException while selecting a node in the "Alerts" tab after deleting a message
Changed AlertTreeModel to set another alert to parent's leaf if it contains the alert of the deleted leaf. |
diff --git a/commands/command.go b/commands/command.go
index <HASH>..<HASH> 100644
--- a/commands/command.go
+++ b/commands/command.go
@@ -103,11 +103,12 @@ func (c *Command) Call(req Request) Response {
if err != nil {
// if returned error is a commands.Error, use its error code
// otherwise, just default the ... | fix(commands/err)
I didn't know there were dragons here.
When casting errors we've gotta be careful. Apparently both values and
pointers satisfy the error interface. Type checking for one doesn't
catch the other.
cc @whyrusleeping @mappum @jbenet
License: MIT |
diff --git a/pandoc_tablenos.py b/pandoc_tablenos.py
index <HASH>..<HASH> 100755
--- a/pandoc_tablenos.py
+++ b/pandoc_tablenos.py
@@ -112,8 +112,11 @@ def attach_attrs_table(key, value, fmt, meta):
else:
assert len(value) == 6
assert value[1]['t'] == 'Caption'
- assert val... | Fixed processing of uncaptioned tables with pandoc <I>. (pandoc-fignos Issue #<I>) |
diff --git a/debug/init.js b/debug/init.js
index <HASH>..<HASH> 100644
--- a/debug/init.js
+++ b/debug/init.js
@@ -197,6 +197,7 @@ $(function(){
});
});
+/*
$container2.cy({
elements: {
nodes: [ { data: { id: 'n0' } }, { data: { id: 'n1' } } ],
@@ -207,7 +208,7 @@ $(function(){
window.cy2 = th... | disable the container 2
yue can reenable this on his local copy for debugging |
diff --git a/stellar_base/operation.py b/stellar_base/operation.py
index <HASH>..<HASH> 100644
--- a/stellar_base/operation.py
+++ b/stellar_base/operation.py
@@ -544,6 +544,7 @@ class AllowTrust(Operation):
raise NotImplementedError(
"Operation of asset_type={} is not implemented"
... | fix(Operation.AllowTrust): AllowTrust.from_xdr_object should return asset_code properly. |
diff --git a/wallace/custom.py b/wallace/custom.py
index <HASH>..<HASH> 100644
--- a/wallace/custom.py
+++ b/wallace/custom.py
@@ -114,11 +114,11 @@ def api_agent_create():
# Generate the right kind of newcomer.
try:
assert(issubclass(exp.agent_type_generator, models.Node))
- ... | Update custom.py to work with Rogers |
diff --git a/tests/unit/states/cron_test.py b/tests/unit/states/cron_test.py
index <HASH>..<HASH> 100644
--- a/tests/unit/states/cron_test.py
+++ b/tests/unit/states/cron_test.py
@@ -214,7 +214,7 @@ class CronTestCase(TestCase):
cron.present(
name='foo',
hour='1',
- comment... | cron: fix a typo in the tests |
diff --git a/ImageCacheProvider.js b/ImageCacheProvider.js
index <HASH>..<HASH> 100644
--- a/ImageCacheProvider.js
+++ b/ImageCacheProvider.js
@@ -36,11 +36,18 @@ function getQueryForCacheKey(url, useQueryParamsInCacheKey) {
function generateCacheKey(url, options) {
const parsedUrl = new URL(url, null, true);
-... | better resolve type of files from url without typename and with dots in them |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -61,7 +61,7 @@ ElasticsearchStream.prototype._write = function (entry, encoding, callback) {
};
var self = this;
- client.create(options, function (err, resp) {
+ client.index(options, function (err, resp) {
if ... | Use index instead of create, for ES 5 |
diff --git a/pygsp/filters/filter.py b/pygsp/filters/filter.py
index <HASH>..<HASH> 100644
--- a/pygsp/filters/filter.py
+++ b/pygsp/filters/filter.py
@@ -1,5 +1,7 @@
# -*- coding: utf-8 -*-
+from __future__ import division
+
from math import log
from copy import deepcopy | filters: float division for python 2 |
diff --git a/lib/perpetuity/mapper.rb b/lib/perpetuity/mapper.rb
index <HASH>..<HASH> 100644
--- a/lib/perpetuity/mapper.rb
+++ b/lib/perpetuity/mapper.rb
@@ -60,7 +60,6 @@ module Perpetuity
end
def insert
- raise "#{object} is invalid and cannot be persisted." if object.respond_to?(:valid?) and !objec... | Remove check for an object's `valid?` method
Having an object tell the ORM whether or not it is valid places
persistence concerns within the business objects, which is not what we
want to do. |
diff --git a/src/main/java/org/fit/layout/tools/ParamsPanel.java b/src/main/java/org/fit/layout/tools/ParamsPanel.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/fit/layout/tools/ParamsPanel.java
+++ b/src/main/java/org/fit/layout/tools/ParamsPanel.java
@@ -197,11 +197,14 @@ public class ParamsPanel extends JP... | Fix param panel reloading when no operation is bound |
diff --git a/bcbio/srna/group.py b/bcbio/srna/group.py
index <HASH>..<HASH> 100644
--- a/bcbio/srna/group.py
+++ b/bcbio/srna/group.py
@@ -5,10 +5,13 @@ import shutil
from collections import namedtuple
import pysam
-from seqcluster import prepare_data as prepare
-from seqcluster import make_clusters as main_cluster... | Make seqcluster requirement soft (cc @lpantano)
- Do not require seqcluster if not running the small RNA pipeline.
- Preparation for adding seqcluster as a soft dependency of bcbio
and checking issues with circular requirements. |
diff --git a/python_modules/libraries/dagster-pyspark/dagster_pyspark/__init__.py b/python_modules/libraries/dagster-pyspark/dagster_pyspark/__init__.py
index <HASH>..<HASH> 100644
--- a/python_modules/libraries/dagster-pyspark/dagster_pyspark/__init__.py
+++ b/python_modules/libraries/dagster-pyspark/dagster_pyspark/_... | set __all__ for dagster-pyspark
Test Plan: bk
Reviewers: nate
Reviewed By: nate
Differential Revision: <URL> |
diff --git a/mod/data/lib.php b/mod/data/lib.php
index <HASH>..<HASH> 100755
--- a/mod/data/lib.php
+++ b/mod/data/lib.php
@@ -1453,7 +1453,7 @@ function data_print_comments($data, $record, $page=0, $mform=false) {
if (!$mform and !$editor) {
echo '<div class="newcomment" style="text-align:center">';
- ... | "DATA/MDL-<I>, use rid instead page to comment a record, merged from <I>" |
diff --git a/tests/test_gnupg.py b/tests/test_gnupg.py
index <HASH>..<HASH> 100644
--- a/tests/test_gnupg.py
+++ b/tests/test_gnupg.py
@@ -201,7 +201,6 @@ class GPGTestCase(unittest.TestCase):
else:
log.warn("Can't delete homedir: '%s' not a directory"
% self.homedir)
- ... | Remove the log.warn line that printed dividers between unittest runs. |
diff --git a/test/spec/modules/aduptechBidAdapter_spec.js b/test/spec/modules/aduptechBidAdapter_spec.js
index <HASH>..<HASH> 100644
--- a/test/spec/modules/aduptechBidAdapter_spec.js
+++ b/test/spec/modules/aduptechBidAdapter_spec.js
@@ -532,8 +532,8 @@ describe('AduptechBidAdapter', () => {
const bidderReque... | Aduptech bid adapter: fix failing test (#<I>) |
diff --git a/actionview/test/template/sanitize_helper_test.rb b/actionview/test/template/sanitize_helper_test.rb
index <HASH>..<HASH> 100644
--- a/actionview/test/template/sanitize_helper_test.rb
+++ b/actionview/test/template/sanitize_helper_test.rb
@@ -1,7 +1,7 @@
require 'abstract_unit'
-# The exhaustive tests ar... | Fixed: spelling mistake in SanitizeHelperTest. |
diff --git a/js/cbrowser.js b/js/cbrowser.js
index <HASH>..<HASH> 100644
--- a/js/cbrowser.js
+++ b/js/cbrowser.js
@@ -1733,7 +1733,7 @@ Browser.prototype.addViewListener = function(handler, opts) {
Browser.prototype.notifyLocation = function() {
var nvs = Math.max(1, this.viewStart|0);
var nve = this.viewEn... | Fix reported coordinaes when currentSeqMax isn't set. |
diff --git a/releaf-i18n/app/controllers/releaf/translations_controller.rb b/releaf-i18n/app/controllers/releaf/translations_controller.rb
index <HASH>..<HASH> 100644
--- a/releaf-i18n/app/controllers/releaf/translations_controller.rb
+++ b/releaf-i18n/app/controllers/releaf/translations_controller.rb
@@ -84,7 +84,7 @@... | TranslationsController: order translations by key |
diff --git a/config/test/ConfigPanel.php b/config/test/ConfigPanel.php
index <HASH>..<HASH> 100644
--- a/config/test/ConfigPanel.php
+++ b/config/test/ConfigPanel.php
@@ -1,7 +1,7 @@
<?php
-$config['db']['dbname'] = 'framework_test';
-$config['db']['user'] = 'thulium_1';
-$config['db']['pass'] = 'a';
+$config['db']['d... | Updated ConfigPanel.php to be compatibile with travis settings. |
diff --git a/src/router-configuration.js b/src/router-configuration.js
index <HASH>..<HASH> 100644
--- a/src/router-configuration.js
+++ b/src/router-configuration.js
@@ -30,6 +30,9 @@ export class RouterConfiguration {
* @chainable
*/
addPipelineStep(name: string, step: Function|PipelineStep): RouterConfigura... | fix(router-configuration): throw early on invalid pipeline steps |
diff --git a/lib/rollbar/exception_reporter.rb b/lib/rollbar/exception_reporter.rb
index <HASH>..<HASH> 100644
--- a/lib/rollbar/exception_reporter.rb
+++ b/lib/rollbar/exception_reporter.rb
@@ -1,7 +1,8 @@
module Rollbar
module ExceptionReporter
def report_exception_to_rollbar(env, exception)
- Rollbar.l... | replace usage of #try with #respond_to? |
diff --git a/src/rasterstats/io.py b/src/rasterstats/io.py
index <HASH>..<HASH> 100644
--- a/src/rasterstats/io.py
+++ b/src/rasterstats/io.py
@@ -183,7 +183,8 @@ def boundless_array(arr, window, nodata, masked=False):
window_shape = (wr_stop - wr_start, wc_stop - wc_start)
# create an array of nodata v... | Do not create array with ones, and then multiply value by nodata. Instead, create un-initialized array and set array values to nodata. This cuts the amount of memory-copy operations in half and thus, halves the operation time |
diff --git a/lib/bel/completion_rule.rb b/lib/bel/completion_rule.rb
index <HASH>..<HASH> 100644
--- a/lib/bel/completion_rule.rb
+++ b/lib/bel/completion_rule.rb
@@ -69,6 +69,7 @@ module BEL
})
end
+ # add the active_token length if we do not need to delete it
if active_token and ... | comment why we add length to start when no delete |
diff --git a/lib/webrtc/call.js b/lib/webrtc/call.js
index <HASH>..<HASH> 100644
--- a/lib/webrtc/call.js
+++ b/lib/webrtc/call.js
@@ -128,7 +128,7 @@ MatrixCall.prototype._initWithInvite = function(event) {
this.state = 'ringing';
this.direction = 'inbound';
- // firefox and Safari's RTCPeerConnection d... | s/Safari/OpenWebRTC/ |
diff --git a/core/src/main/java/org/mapfish/print/processor/jasper/MergeDataSourceProcessor.java b/core/src/main/java/org/mapfish/print/processor/jasper/MergeDataSourceProcessor.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/mapfish/print/processor/jasper/MergeDataSourceProcessor.java
+++ b/core/src/main... | Mark MergeDataSourceProcessor as @Beta because I am not sure it is needed, it might be a work around for my ignorance of Jasper Reports |
diff --git a/packages/grpc-native-core/test/channel_test.js b/packages/grpc-native-core/test/channel_test.js
index <HASH>..<HASH> 100644
--- a/packages/grpc-native-core/test/channel_test.js
+++ b/packages/grpc-native-core/test/channel_test.js
@@ -132,7 +132,8 @@ describe('channel', function() {
... | Skip a test suite that appears to be triggering a core assertion failure |
diff --git a/lib/clone-wars/version.rb b/lib/clone-wars/version.rb
index <HASH>..<HASH> 100644
--- a/lib/clone-wars/version.rb
+++ b/lib/clone-wars/version.rb
@@ -1,5 +1,5 @@
# encoding: utf-8
module CloneWars # :nodoc:
- VERSION = "0.0.3"
+ VERSION = "0.1.0"
end | Version bumping minor to a <I> |
diff --git a/pyramid_webassets/tests/test_webassets.py b/pyramid_webassets/tests/test_webassets.py
index <HASH>..<HASH> 100644
--- a/pyramid_webassets/tests/test_webassets.py
+++ b/pyramid_webassets/tests/test_webassets.py
@@ -183,7 +183,7 @@ class TestWebAssets(unittest.TestCase):
with self.assertRaises(Excep... | Fixed two asserts in test when raising an exception
They were inside the with, so they were never executed. (Thanks to the cov plugin for this one) |
diff --git a/buildprocess/configureWebpack.js b/buildprocess/configureWebpack.js
index <HASH>..<HASH> 100644
--- a/buildprocess/configureWebpack.js
+++ b/buildprocess/configureWebpack.js
@@ -104,7 +104,7 @@ function configureWebpack(terriaJSBasePath, config, devMode, hot, MiniCssExtract
loader: 'babel-... | babel-loader to always generate source-maps |
diff --git a/bit/wallet.py b/bit/wallet.py
index <HASH>..<HASH> 100644
--- a/bit/wallet.py
+++ b/bit/wallet.py
@@ -958,7 +958,7 @@ class MultiSig:
else:
return unspent.script == script
- def sign(self, data):
+ def sign(self, data): # pragma: no cover
"""Signs some data which can... | Removes code coverage for function `~MultiSig.sign()` |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.