diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/lib/server.js b/lib/server.js
index <HASH>..<HASH> 100644
--- a/lib/server.js
+++ b/lib/server.js
@@ -5,6 +5,7 @@ var express = require('express')
exports.reset = function() {
server = express()
+ server.disable('x-powered-by')
server.use(express.urlencoded())
server.use(express.json())
ser... | disable `X-Powered-By` header |
diff --git a/cobra/core/Metabolite.py b/cobra/core/Metabolite.py
index <HASH>..<HASH> 100644
--- a/cobra/core/Metabolite.py
+++ b/cobra/core/Metabolite.py
@@ -132,7 +132,7 @@ class Metabolite(Species):
the_coefficient = the_reaction._metabolites[self]
the_reaction.subtract_metabolites(... | Correct bug in remove_from_model in Metabolite.py
Correct a small bug in remove_from_model in core/Metabolite.py when method == "destructive'. |
diff --git a/size.go b/size.go
index <HASH>..<HASH> 100644
--- a/size.go
+++ b/size.go
@@ -7,26 +7,24 @@ import (
"strings"
)
-type unit int64
-
// See: http://en.wikipedia.org/wiki/Binary_prefix
const (
// Decimal
- KB unit = 1000
- MB = 1000 * KB
- GB = 1000 * MB
- TB = 1000 * GB
- PB = 1... | pkg/units: Unit constants directly int<I>
int<I> seems sufficient
Docker-DCO-<I>- |
diff --git a/paperweight/document.py b/paperweight/document.py
index <HASH>..<HASH> 100755
--- a/paperweight/document.py
+++ b/paperweight/document.py
@@ -119,6 +119,7 @@ class FilesystemTexDocument(TexDocument):
def __init__(self, path, recursive=True):
# read the tex document
self._filepath = p... | fix for issue with recursive processing of files where they are not
in the current working directory |
diff --git a/stanza/tests/test_tokenize_data.py b/stanza/tests/test_tokenize_data.py
index <HASH>..<HASH> 100644
--- a/stanza/tests/test_tokenize_data.py
+++ b/stanza/tests/test_tokenize_data.py
@@ -23,6 +23,7 @@ FAKE_PROPERTIES = {
"lang":"de",
'feat_funcs': ("space_before","capitalized"),
'max_seqlen':... | Update test for new tokenizer args after the dictionary was added |
diff --git a/test/acceptance/app_test.rb b/test/acceptance/app_test.rb
index <HASH>..<HASH> 100644
--- a/test/acceptance/app_test.rb
+++ b/test/acceptance/app_test.rb
@@ -220,6 +220,9 @@ class AppTest < ActiveSupport::TestCase
end
test "app gets reloaded when preloaded files change (listen watcher)" do
+ # l... | Disable test on <I>-rc1 for now |
diff --git a/lib/obfuscate_id.rb b/lib/obfuscate_id.rb
index <HASH>..<HASH> 100644
--- a/lib/obfuscate_id.rb
+++ b/lib/obfuscate_id.rb
@@ -1,2 +1,37 @@
module ObfuscateId
+
+ def obfuscate_id
+ extend ClassMethods
+ include InstanceMethods
+ end
+
+ def self.hide(id)
+ id.to_i + 100
+ end
+
+ def self.s... | added methods to update find and to_param and add them to active record - specs pass |
diff --git a/src/sap.m/test/sap/m/visual/SinglePlanningCalendarCellAndAppNav.spec.js b/src/sap.m/test/sap/m/visual/SinglePlanningCalendarCellAndAppNav.spec.js
index <HASH>..<HASH> 100644
--- a/src/sap.m/test/sap/m/visual/SinglePlanningCalendarCellAndAppNav.spec.js
+++ b/src/sap.m/test/sap/m/visual/SinglePlanningCalenda... | [INTERNAL] sap.m.SinglePlanningCalendar: visual test added to ownership
Change-Id: I7cbcb3f<I>c<I>bf<I>c<I>f<I>d8f<I>ad<I>b |
diff --git a/lib/zyre.js b/lib/zyre.js
index <HASH>..<HASH> 100644
--- a/lib/zyre.js
+++ b/lib/zyre.js
@@ -141,10 +141,11 @@ class Zyre extends EventEmitter {
* @return {Promise}
*/
stop(callback) {
+ this._zyreNode.removeAllListeners();
+ this._zyrePeers.removeAllListeners();
+ this._zyrePeers.disc... | Move sync functions out of async promise body |
diff --git a/lib/modules/apostrophe-ui/public/js/ui.js b/lib/modules/apostrophe-ui/public/js/ui.js
index <HASH>..<HASH> 100644
--- a/lib/modules/apostrophe-ui/public/js/ui.js
+++ b/lib/modules/apostrophe-ui/public/js/ui.js
@@ -534,7 +534,7 @@ apos.define('apostrophe-ui', {
restore($old, $new);
fun... | text elements should be autopreserved on AJAX only if they currently have the focus. Makes it easier to update the value |
diff --git a/cake/libs/model/datasources/dbo/dbo_mysql.php b/cake/libs/model/datasources/dbo/dbo_mysql.php
index <HASH>..<HASH> 100644
--- a/cake/libs/model/datasources/dbo/dbo_mysql.php
+++ b/cake/libs/model/datasources/dbo/dbo_mysql.php
@@ -313,12 +313,7 @@ class DboMysql extends DboSource {
* @return in
*/
fun... | Using PDO method to get lastInsertId |
diff --git a/lib/fb_graph2/comment.rb b/lib/fb_graph2/comment.rb
index <HASH>..<HASH> 100644
--- a/lib/fb_graph2/comment.rb
+++ b/lib/fb_graph2/comment.rb
@@ -6,8 +6,8 @@ module FbGraph2
register_attributes(
raw: [:can_comment, :can_remove, :comment_count, :like_count, :message, :user_likes, :is_hidden, :ca... | Comment#from can be a Page, use "profile" for auto User/Page detection.
close #<I> |
diff --git a/lib/chef/knife/raw_essentials.rb b/lib/chef/knife/raw_essentials.rb
index <HASH>..<HASH> 100644
--- a/lib/chef/knife/raw_essentials.rb
+++ b/lib/chef/knife/raw_essentials.rb
@@ -4,12 +4,12 @@ class Chef
class Knife
remove_const(:Raw) if const_defined?(:Raw) && Raw.name == 'Chef::Knife::Raw' # overr... | Fix knife raw (Chef = ::ChefFS exception) |
diff --git a/src/ar/validation.php b/src/ar/validation.php
index <HASH>..<HASH> 100755
--- a/src/ar/validation.php
+++ b/src/ar/validation.php
@@ -89,7 +89,7 @@ return [
'string' => 'يجب أن يكون طول النص :attribute على الأقل :min حروفٍ/حرفًا.',
'array' => 'يجب أن يحتوي :attribute على الأقل على :min... | [ar] Update validation.not_in
The old translation was not clear this what is says
`:attribute exists`
I changed to the equivalent of the original laravel translation which says
`The selected :attribute is invalid.` |
diff --git a/core/src/main/resources/lib/form/repeatable/repeatable.js b/core/src/main/resources/lib/form/repeatable/repeatable.js
index <HASH>..<HASH> 100644
--- a/core/src/main/resources/lib/form/repeatable/repeatable.js
+++ b/core/src/main/resources/lib/form/repeatable/repeatable.js
@@ -186,7 +186,8 @@ Behaviour.spe... | [JENKINS-<I>] Uniquify names before setting initial visibility |
diff --git a/src/Util.php b/src/Util.php
index <HASH>..<HASH> 100644
--- a/src/Util.php
+++ b/src/Util.php
@@ -160,14 +160,6 @@ final class Util
// ORM = first L octets of T
/** @var string $orm */
$orm = Binary::safeSubstr($t, 0, $length);
-
- // @codeCoverageIgnoreStart
- if (... | This check is actually not needed with constant_time_encoding v2+ |
diff --git a/bettercache/utils.py b/bettercache/utils.py
index <HASH>..<HASH> 100644
--- a/bettercache/utils.py
+++ b/bettercache/utils.py
@@ -8,6 +8,9 @@ from django.utils.cache import cc_delim_re
from django.utils.encoding import smart_str
from django.utils.http import http_date, parse_http_date
+import logging
+... | [CMSPERF-<I>] changes from today's OTIS session |
diff --git a/test/karma.conf.js b/test/karma.conf.js
index <HASH>..<HASH> 100644
--- a/test/karma.conf.js
+++ b/test/karma.conf.js
@@ -22,7 +22,9 @@ module.exports = function (config) {
browsers: ['Chrome'],
captureTimeout: 60000,
singleRun: false,
- preprocessors: { 'src/js/**/!(app|intro|outro).js':... | remove ui settings from coverage. |
diff --git a/Lib/ufo2fdk/fdkBridge.py b/Lib/ufo2fdk/fdkBridge.py
index <HASH>..<HASH> 100644
--- a/Lib/ufo2fdk/fdkBridge.py
+++ b/Lib/ufo2fdk/fdkBridge.py
@@ -143,11 +143,6 @@ def checkOutlines(fontPath, removeOverlap=True, correctContourDirection=True):
stderr, stdout = _execute(c)
allStderr.append(s... | ignore checkoutlines and correct contour direction output from fdk |
diff --git a/django_databrowse/tests/sites.py b/django_databrowse/tests/sites.py
index <HASH>..<HASH> 100644
--- a/django_databrowse/tests/sites.py
+++ b/django_databrowse/tests/sites.py
@@ -51,7 +51,7 @@ class DatabrowseTestsClient(TestCase):
def tearDownClass(self):
django_databrowse.site.unregister(Som... | added a test on a model field detail page |
diff --git a/Response.php b/Response.php
index <HASH>..<HASH> 100644
--- a/Response.php
+++ b/Response.php
@@ -3,6 +3,7 @@
namespace Modulus\Framework;
use Modulus\Http\Rest;
+use Modulus\Utility\View;
use Modulus\Http\Redirect;
use Modulus\Framework\Upstart;
@@ -41,6 +42,11 @@ class Response
if ($response... | chore: handle View instances
render view component if the returned object was a view instance |
diff --git a/modules/social_features/social_search/modules/social_search_autocomplete/webpack.config.js b/modules/social_features/social_search/modules/social_search_autocomplete/webpack.config.js
index <HASH>..<HASH> 100644
--- a/modules/social_features/social_search/modules/social_search_autocomplete/webpack.config.j... | Remove reference to yoastseo
This was accidentally left behind by re-using a webpack configuration
for the RTSEO.js project but is not needed here. |
diff --git a/rpc2/transport.go b/rpc2/transport.go
index <HASH>..<HASH> 100644
--- a/rpc2/transport.go
+++ b/rpc2/transport.go
@@ -86,7 +86,7 @@ func (t *Transport) GetRemoteAddr() (ret net.Addr) {
}
func NewTransport(c net.Conn, l LogFactory, wef WrapErrorFunc) *Transport {
- var mh codec.MsgpackHandle
+ mh := cod... | This should address keybase/go#<I> |
diff --git a/asset/js/setup.js b/asset/js/setup.js
index <HASH>..<HASH> 100644
--- a/asset/js/setup.js
+++ b/asset/js/setup.js
@@ -82,7 +82,7 @@ function setupWithSearch(siteData) {
},
methods: {
searchCallback(match) {
- const page = `${baseUrl}/${match.src.replace('.md', '.html')}`;
+ c... | Support .mbd file extension in search navigation |
diff --git a/lib/remote_syslog/tcp_endpoint.rb b/lib/remote_syslog/tcp_endpoint.rb
index <HASH>..<HASH> 100644
--- a/lib/remote_syslog/tcp_endpoint.rb
+++ b/lib/remote_syslog/tcp_endpoint.rb
@@ -3,6 +3,20 @@ require 'eventmachine'
module RemoteSyslog
# Additional class that uses TCP but no TLS. Has the benefit of ... | TCP endpoint works better with the handler in place |
diff --git a/tests/phpunit/TagTest.php b/tests/phpunit/TagTest.php
index <HASH>..<HASH> 100644
--- a/tests/phpunit/TagTest.php
+++ b/tests/phpunit/TagTest.php
@@ -118,6 +118,26 @@ class TagTest extends \PHPUnit\Framework\TestCase {
}
/**
+ * @covers Tag::appendContent
+ */
+ public function testAppendContentWit... | Document inconsistent Tag methods with PHPUnit tests
All this does is documenting the status quo. Possible fixes are
discussed in the next patch.
Change-Id: I<I>db<I>c7b<I>d5be6d1f<I>f3fac3bcae2ee |
diff --git a/nestable/NodeMoveAction.php b/nestable/NodeMoveAction.php
index <HASH>..<HASH> 100644
--- a/nestable/NodeMoveAction.php
+++ b/nestable/NodeMoveAction.php
@@ -25,6 +25,9 @@ class NodeMoveAction extends Action
{
/** @var string class to use to locate the supplied data ids */
public $modelName;
+ ... | Update NodeMoveAction.php
Add support edit subtrees. |
diff --git a/edison-togglz/src/main/java/de/otto/edison/togglz/s3/S3TogglzRepository.java b/edison-togglz/src/main/java/de/otto/edison/togglz/s3/S3TogglzRepository.java
index <HASH>..<HASH> 100644
--- a/edison-togglz/src/main/java/de/otto/edison/togglz/s3/S3TogglzRepository.java
+++ b/edison-togglz/src/main/java/de/ott... | Enable scheduling on TogglzRepo in newer Spring version
Newer Spring Version does not allow @Scheduled-Annotation for
private functions, so changing to protected for correct proxying. |
diff --git a/src/main/java/fr/xebia/springframework/jdbc/ManagedBasicDataSourceMBean.java b/src/main/java/fr/xebia/springframework/jdbc/ManagedBasicDataSourceMBean.java
index <HASH>..<HASH> 100644
--- a/src/main/java/fr/xebia/springframework/jdbc/ManagedBasicDataSourceMBean.java
+++ b/src/main/java/fr/xebia/springframe... | expose setMinIdle in JMX |
diff --git a/api/src/opentrons/hardware_control/controller.py b/api/src/opentrons/hardware_control/controller.py
index <HASH>..<HASH> 100644
--- a/api/src/opentrons/hardware_control/controller.py
+++ b/api/src/opentrons/hardware_control/controller.py
@@ -41,7 +41,9 @@ class Controller:
'This is intende... | feat(api): add info to debug warning on how IS_ROBOT is determined (#<I>)
If you run a robot without RUNNING_ON_PI in the environment you get this warning message (and substantially reduced functionality), but it is not clear how to resolve it. This provides that information. In my case it was because I was invoking o... |
diff --git a/salt/utils/verify.py b/salt/utils/verify.py
index <HASH>..<HASH> 100644
--- a/salt/utils/verify.py
+++ b/salt/utils/verify.py
@@ -69,8 +69,10 @@ def verify_socket(interface, pub_port, ret_port):
pubsock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
retsock = socket.socket(socket.AF_INET, so... | Set the SO_REUSEADDR option when performing the bind() test.
Make failure of this test fatal again as well. |
diff --git a/lib/devise_token/rails/routes.rb b/lib/devise_token/rails/routes.rb
index <HASH>..<HASH> 100644
--- a/lib/devise_token/rails/routes.rb
+++ b/lib/devise_token/rails/routes.rb
@@ -23,7 +23,7 @@ module ActionDispatch::Routing
:module => :devise,
:path => "#{opts[:at]}",
... | skips omniauth_callback |
diff --git a/lib/sensu/server/process.rb b/lib/sensu/server/process.rb
index <HASH>..<HASH> 100644
--- a/lib/sensu/server/process.rb
+++ b/lib/sensu/server/process.rb
@@ -128,12 +128,10 @@ module Sensu
# Process an event: filter -> mutate -> handle.
#
- # This method runs event bridges, relaying th... | [event-bridge] updated yardoc, event_bridges() moved |
diff --git a/tff/io.py b/tff/io.py
index <HASH>..<HASH> 100644
--- a/tff/io.py
+++ b/tff/io.py
@@ -343,6 +343,9 @@ class DefaultPTY(PTY):
new[6][termios.VSUSP] = vdisable # Ctrl-Z
new[6][termios.VQUIT] = vdisable # Ctrl-\
+ VDSUSP = 11
+ new[6][VDSUSP] = vdisable # Ctrl-Y
+
... | Fix VDSUSP (Ctrl-y) issue |
diff --git a/src/python/dxpy/utils/describe.py b/src/python/dxpy/utils/describe.py
index <HASH>..<HASH> 100644
--- a/src/python/dxpy/utils/describe.py
+++ b/src/python/dxpy/utils/describe.py
@@ -378,7 +378,7 @@ def print_data_obj_desc(desc, verbose=False):
if desc["class"] == "file" or desc["class"] ==... | PTFM-<I>-sidenote: adding delimiter between size string and "sponsored by DNAnexus" string |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ long_description = open('README.rst').read()
setup(
name = 'templated-emails',
- version = "0.4",
+ version = "0.5",
url = 'https://github.com/philippWassibauer/templated-emails',
author = ... | browsing emails in the backend now possible. this renders the blocks, but not the templates itself; therefore showing the whole logic of the template and data is not required for the rendering process. this is especially useful for complex, timebased emails that are almost impossible to recreate manually. |
diff --git a/lib/App.js b/lib/App.js
index <HASH>..<HASH> 100644
--- a/lib/App.js
+++ b/lib/App.js
@@ -92,7 +92,9 @@ inherit(App, EventEmitter, [
this.intialized = true;
this.emit('init', settings);
return this;
- }
+ },
+ _App.screenHeight,
+ _App.screenWidth,
]); | accidentally removed screenWidth and screenHeight |
diff --git a/synapse/tests/test_lib_agenda.py b/synapse/tests/test_lib_agenda.py
index <HASH>..<HASH> 100644
--- a/synapse/tests/test_lib_agenda.py
+++ b/synapse/tests/test_lib_agenda.py
@@ -324,8 +324,8 @@ class AgendaTest(s_t_utils.SynTest):
await agenda.add('visi', '[teststr=baz]', {s_tu.HOUR: (7, 8... | Fix agenda persistence fail (#<I>) |
diff --git a/jdk8/src/main/java/com/google/errorprone/dataflow/DataFlow.java b/jdk8/src/main/java/com/google/errorprone/dataflow/DataFlow.java
index <HASH>..<HASH> 100644
--- a/jdk8/src/main/java/com/google/errorprone/dataflow/DataFlow.java
+++ b/jdk8/src/main/java/com/google/errorprone/dataflow/DataFlow.java
@@ -134,7... | Fix bug where expressionDataflow would throw an exception for expressions in a method that doesn't have a body, e.g. Map.Entry in:
abstract Set<Map.Entry<K, V>> entries();
-------------
Created by MOE: <URL> |
diff --git a/luigi/contrib/bigquery.py b/luigi/contrib/bigquery.py
index <HASH>..<HASH> 100644
--- a/luigi/contrib/bigquery.py
+++ b/luigi/contrib/bigquery.py
@@ -326,7 +326,7 @@ class BigQueryClient(object):
job_id = new_job['jobReference']['jobId']
logger.info('Started import job %s:%s', project_id,... | Add retries for <I> errors in BigQuery
According to <URL> |
diff --git a/spec/integration/util/rdoc/parser_spec.rb b/spec/integration/util/rdoc/parser_spec.rb
index <HASH>..<HASH> 100755
--- a/spec/integration/util/rdoc/parser_spec.rb
+++ b/spec/integration/util/rdoc/parser_spec.rb
@@ -2,7 +2,7 @@
require 'spec_helper'
require 'puppet/util/rdoc'
-describe "RDoc::Parser" do
... | (PUP-<I>) Skip rdoc tests on windows
Appveyor has transient failures running rdoc parser tests on windows
only. Puppet uses rdoc as part of its `puppet doc` command. The
puppet-strings project has mostly, but not yet completely, replaced the
`puppet doc` command. At a future date `puppet doc` will be deprecated
and re... |
diff --git a/lib/ffi-glib/ptr_array.rb b/lib/ffi-glib/ptr_array.rb
index <HASH>..<HASH> 100644
--- a/lib/ffi-glib/ptr_array.rb
+++ b/lib/ffi-glib/ptr_array.rb
@@ -28,12 +28,17 @@ module GLib
Lib.g_ptr_array_add self, ptr
end
+ # Re-implementation of the g_ptr_array_index macro
+ def index idx
+ ... | Make PtrArray#each behave properly with early exit in JRuby. |
diff --git a/pyqg/layered_model.py b/pyqg/layered_model.py
index <HASH>..<HASH> 100644
--- a/pyqg/layered_model.py
+++ b/pyqg/layered_model.py
@@ -99,15 +99,11 @@ class LayeredModel(model.Model):
Parameters
----------
- g : number
- Gravitational acceleration. Units: meters second ... | Removes unused paramaters from docs strings |
diff --git a/lib/haml_lint/tree/root_node.rb b/lib/haml_lint/tree/root_node.rb
index <HASH>..<HASH> 100644
--- a/lib/haml_lint/tree/root_node.rb
+++ b/lib/haml_lint/tree/root_node.rb
@@ -17,7 +17,9 @@ module HamlLint::Tree
# @param line [Integer] the line number of the node
# @return [HamlLint::Node]
def... | Fix RootNode#node_for_line method on Ruby <I>
This method broke on Ruby <I> since `Range#cover?` now returns true for
beginless ranges where it previously returned false. This meant the
`RootNode` would match (as its `line_numbers` have no start nor end).
Fix by excluding the root node if it matches. |
diff --git a/untwisted/network.py b/untwisted/network.py
index <HASH>..<HASH> 100644
--- a/untwisted/network.py
+++ b/untwisted/network.py
@@ -23,9 +23,9 @@ class SuperSocket(Dispatcher):
core.gear.scale(self)
def destroy(self):
- self.base.clear()
- SSL.base.clear()
- del self.pool... | Fixing misbehavior with Supersocket class. |
diff --git a/core/Core.php b/core/Core.php
index <HASH>..<HASH> 100644
--- a/core/Core.php
+++ b/core/Core.php
@@ -304,19 +304,6 @@ Debug::loadErrorHandlers();
///////////////////////////////////////////////////////////////////////////////
// HELPER FUNCTIONS
-function getSysTempDir() {
- Deprecation::notice(3.0, '... | Removing deprecated Core.php functions |
diff --git a/eZ/Publish/Core/Search/Legacy/Content/Gateway/DoctrineDatabase.php b/eZ/Publish/Core/Search/Legacy/Content/Gateway/DoctrineDatabase.php
index <HASH>..<HASH> 100644
--- a/eZ/Publish/Core/Search/Legacy/Content/Gateway/DoctrineDatabase.php
+++ b/eZ/Publish/Core/Search/Legacy/Content/Gateway/DoctrineDatabase.p... | There is no need for sorting when just getting the result count |
diff --git a/app/models/no_cms/blocks/block_slot.rb b/app/models/no_cms/blocks/block_slot.rb
index <HASH>..<HASH> 100644
--- a/app/models/no_cms/blocks/block_slot.rb
+++ b/app/models/no_cms/blocks/block_slot.rb
@@ -7,5 +7,11 @@ module NoCms::Blocks
belongs_to :block, class_name: "NoCms::Blocks::Block"
accep... | Scopes and validations for bones in the blocks |
diff --git a/geomet/tests/wkb_test.py b/geomet/tests/wkb_test.py
index <HASH>..<HASH> 100644
--- a/geomet/tests/wkb_test.py
+++ b/geomet/tests/wkb_test.py
@@ -45,6 +45,10 @@ class PointTestCase(unittest.TestCase):
)
self.assertEqual(expected, wkb.dumps(pt, big_endian=True))
+ # We skip this becau... | tests/wkb_test:
Skip `test_dumps_point_m` and explain why (with a comment). |
diff --git a/ui/app/milestone/milestone-controllers.js b/ui/app/milestone/milestone-controllers.js
index <HASH>..<HASH> 100644
--- a/ui/app/milestone/milestone-controllers.js
+++ b/ui/app/milestone/milestone-controllers.js
@@ -188,6 +188,8 @@
that.data = milestoneDetail;
+ that.data.endDate = dateUtilCo... | NCL-<I> Missing convertor added |
diff --git a/update.go b/update.go
index <HASH>..<HASH> 100644
--- a/update.go
+++ b/update.go
@@ -48,6 +48,10 @@ func init() {
func Update(channel string) {
golock.Lock(updateLockPath)
defer golock.Unlock(updateLockPath)
+ if !IsUpdateNeeded("soft") {
+ // update no longer needed
+ return
+ }
done := make(cha... | skip updating if it is no longer needed |
diff --git a/adafruit_bme280.py b/adafruit_bme280.py
index <HASH>..<HASH> 100644
--- a/adafruit_bme280.py
+++ b/adafruit_bme280.py
@@ -213,7 +213,7 @@ class Adafruit_BME280_I2C(Adafruit_BME280):
with self._i2c as i2c:
i2c.write(bytes([register & 0xFF]))
result = bytearray(length)
- ... | changed read_into to readinto |
diff --git a/src/shims/forms-picker.js b/src/shims/forms-picker.js
index <HASH>..<HASH> 100644
--- a/src/shims/forms-picker.js
+++ b/src/shims/forms-picker.js
@@ -8,7 +8,7 @@ webshims.register('forms-picker', function($, webshims, window, document, undefi
var ret = [date.getFullYear(), moduleOpts.addZero(date.getMon... | getDateArray should add zeros to time as well |
diff --git a/xtuml/load.py b/xtuml/load.py
index <HASH>..<HASH> 100644
--- a/xtuml/load.py
+++ b/xtuml/load.py
@@ -111,8 +111,9 @@ class ModelLoader(object):
'''
Parse input as raw data.
'''
- s = self.parser.parse(lexer=self.lexer, input=data)
- self.statements.extend(s)
+ ... | load: don't report syntax errors on empty input |
diff --git a/test/benchmarks/active_record_ips_test.rb b/test/benchmarks/active_record_ips_test.rb
index <HASH>..<HASH> 100644
--- a/test/benchmarks/active_record_ips_test.rb
+++ b/test/benchmarks/active_record_ips_test.rb
@@ -16,6 +16,6 @@ class Blueprinter::ActiveRecordIPSTest < Minitest::Test
def test_render
... | IPS are slower due to ruby downgrade.
Previously, we were building and running benchmarks on circle ci using
ruby <I>. We now build and run benchmarks on <I>. Ruby <I> is
slower than <I>, so we need to reduce the IPS benchmarks. |
diff --git a/test_everything.py b/test_everything.py
index <HASH>..<HASH> 100644
--- a/test_everything.py
+++ b/test_everything.py
@@ -61,7 +61,6 @@ pub.options.reprcomments = False
import hydpy
doctests = {}
for dirinfo in os.walk(hydpy.__path__[0]):
- print(dirinfo[0])
if dirinfo[0].endswith('unittests') o... | still debugging
going into the details of doctesting hland |
diff --git a/src/transformers/trainer_seq2seq.py b/src/transformers/trainer_seq2seq.py
index <HASH>..<HASH> 100644
--- a/src/transformers/trainer_seq2seq.py
+++ b/src/transformers/trainer_seq2seq.py
@@ -161,6 +161,9 @@ class Seq2SeqTrainer(Trainer):
"synced_gpus": True if is_deepspeed_zero3_enabled() else ... | Fix Seq2SeqTrainer (#<I>) |
diff --git a/tensorflow_datasets/core/utils/read_config.py b/tensorflow_datasets/core/utils/read_config.py
index <HASH>..<HASH> 100644
--- a/tensorflow_datasets/core/utils/read_config.py
+++ b/tensorflow_datasets/core/utils/read_config.py
@@ -77,10 +77,11 @@ class ReadConfig(_ReadConfig):
try_autocache: If True (d... | Modifying docstring of ReadConfig to clarify that `shuffle_seed` and `shuffle_reshuffle_each_iteration` are only used for file shuffling.
PiperOrigin-RevId: <I> |
diff --git a/simuvex/s_irexpr.py b/simuvex/s_irexpr.py
index <HASH>..<HASH> 100644
--- a/simuvex/s_irexpr.py
+++ b/simuvex/s_irexpr.py
@@ -20,7 +20,10 @@ class SimIRExpr(object):
self._post_processed = False
self.expr = None
- self.type = tyenv.typeOf(expr)
+ if expr.tag in ('Iex_BBPTR... | handle BBPTR and VECRET, at least as stubs |
diff --git a/lib/hashie/extensions/coercion.rb b/lib/hashie/extensions/coercion.rb
index <HASH>..<HASH> 100644
--- a/lib/hashie/extensions/coercion.rb
+++ b/lib/hashie/extensions/coercion.rb
@@ -2,7 +2,7 @@ module Hashie
module Extensions
module Coercion
def self.included(base)
- base.send :extend... | Object#extend is a public method |
diff --git a/chickpea/base_models.py b/chickpea/base_models.py
index <HASH>..<HASH> 100644
--- a/chickpea/base_models.py
+++ b/chickpea/base_models.py
@@ -89,7 +89,7 @@ class Category(models.Model):
map = models.ForeignKey(Map)
name = models.CharField(max_length=50)
description = models.TextField(blank=T... | Create a default category during map quick create process |
diff --git a/lib/info.rb b/lib/info.rb
index <HASH>..<HASH> 100644
--- a/lib/info.rb
+++ b/lib/info.rb
@@ -1,5 +1,5 @@
module MultiRepo
NAME = "git-multirepo"
- VERSION = "1.0.0.beta2"
+ VERSION = "1.0.0.beta3"
DESCRIPTION = "Track multiple Git repositories side-by-side."
end
\ No newline at end of file | Updated gem version to <I>.beta3 (yanked gem version forces version bump). |
diff --git a/django_ssh/models.py b/django_ssh/models.py
index <HASH>..<HASH> 100644
--- a/django_ssh/models.py
+++ b/django_ssh/models.py
@@ -23,3 +23,6 @@ class Key(models.Model):
data = models.TextField(db_index=True, unique=True)
comment = models.TextField()
fingerprint = models.CharField(max_length=... | Changed table names and bumped version |
diff --git a/src/trumbowyg.js b/src/trumbowyg.js
index <HASH>..<HASH> 100644
--- a/src/trumbowyg.js
+++ b/src/trumbowyg.js
@@ -1225,8 +1225,9 @@ Object.defineProperty(jQuery.trumbowyg, 'defaultOptions', {
createLink: function () {
var t = this,
documentSelection = t.doc.getSelecti... | fix: makes links works on IE<I> |
diff --git a/java-allocation-instrumenter/src/main/java/com/google/monitoring/runtime/instrumentation/ConstructorInstrumenter.java b/java-allocation-instrumenter/src/main/java/com/google/monitoring/runtime/instrumentation/ConstructorInstrumenter.java
index <HASH>..<HASH> 100644
--- a/java-allocation-instrumenter/src/ma... | Doc fix: javadoc points to incorrect method for instrumentation. |
diff --git a/lib/builder.js b/lib/builder.js
index <HASH>..<HASH> 100644
--- a/lib/builder.js
+++ b/lib/builder.js
@@ -219,9 +219,16 @@ lunr.Builder.prototype.createDocumentVectors = function () {
tf = termFrequencies[term],
termIndex = this.invertedIndex[term]._index,
idf = lunr.idf(th... | Reduce term score precision in vectors
This change reduces the number of decimal places used to represent the
score of a term within a document vector. Through testing this has been
seen to not have any impact to the relevance of the search results but
does lead to a ~<I>% size reduction when serialising indexes, befo... |
diff --git a/examples/pytorch/speech-recognition/run_speech_recognition_ctc.py b/examples/pytorch/speech-recognition/run_speech_recognition_ctc.py
index <HASH>..<HASH> 100755
--- a/examples/pytorch/speech-recognition/run_speech_recognition_ctc.py
+++ b/examples/pytorch/speech-recognition/run_speech_recognition_ctc.py
@... | Fix 'eval_split_name' described as defaulting to 'train' (#<I>)
The default is correct (`test`) but the description is not. |
diff --git a/pycbc/results/legacy_grb.py b/pycbc/results/legacy_grb.py
index <HASH>..<HASH> 100755
--- a/pycbc/results/legacy_grb.py
+++ b/pycbc/results/legacy_grb.py
@@ -36,7 +36,6 @@ if 'matplotlib.backends' not in sys.modules:
matplotlib.use('agg')
import matplotlib.pyplot as plt
from pycbc_glue import markup... | don't explicitly require lal gpstime python module (#<I>) |
diff --git a/security/src/test/java/com/networknt/security/JwtHelperTest.java b/security/src/test/java/com/networknt/security/JwtHelperTest.java
index <HASH>..<HASH> 100644
--- a/security/src/test/java/com/networknt/security/JwtHelperTest.java
+++ b/security/src/test/java/com/networknt/security/JwtHelperTest.java
@@ -5... | add a test case to generate long lived token for calling API A |
diff --git a/email_extras/admin.py b/email_extras/admin.py
index <HASH>..<HASH> 100644
--- a/email_extras/admin.py
+++ b/email_extras/admin.py
@@ -10,5 +10,9 @@ if USE_GNUPG:
class KeyAdmin(admin.ModelAdmin):
form = KeyForm
+ class AddressAdmin(admin.ModelAdmin):
+ def has_add_permission(s... | Addresses can't be added without keys |
diff --git a/bottom.py b/bottom.py
index <HASH>..<HASH> 100644
--- a/bottom.py
+++ b/bottom.py
@@ -35,9 +35,11 @@ class Client(object):
bot.run()
'''
+ command = rfc.unique_command(command)
+
def wrap(func):
''' Add the function to this client's handlers and return it ''... | Replace command.upper() with rfc.unique_command() for consistency |
diff --git a/structr/structr-core/src/main/java/org/structr/core/resource/constraint/RelationshipConstraint.java b/structr/structr-core/src/main/java/org/structr/core/resource/constraint/RelationshipConstraint.java
index <HASH>..<HASH> 100644
--- a/structr/structr-core/src/main/java/org/structr/core/resource/constraint... | Allowed nesting of RelationshipConstraint to fix paging for relationships. |
diff --git a/foolbox/adversarial.py b/foolbox/adversarial.py
index <HASH>..<HASH> 100644
--- a/foolbox/adversarial.py
+++ b/foolbox/adversarial.py
@@ -5,16 +5,16 @@ Provides a class that represents an adversarial example.
import numpy as np
-from .adversarial import Adversarial
-from .adversarial import StopAttack... | renamed YieldingAdversarial to Adversarial and based it on v1 |
diff --git a/code/controller/context/context.php b/code/controller/context/context.php
index <HASH>..<HASH> 100644
--- a/code/controller/context/context.php
+++ b/code/controller/context/context.php
@@ -16,6 +16,16 @@
class KControllerContext extends KCommand implements KControllerContextInterface
{
/**
+ * ... | re #<I> - Override ControllerContext constructor to only accept an array of attributes |
diff --git a/application/modules/g/controllers/AuthController.php b/application/modules/g/controllers/AuthController.php
index <HASH>..<HASH> 100755
--- a/application/modules/g/controllers/AuthController.php
+++ b/application/modules/g/controllers/AuthController.php
@@ -291,7 +291,7 @@ class G_AuthController extends Ga... | added functionanility to add/remove sprint alert to event |
diff --git a/lib/matestack/ui/vue_js/components/async.rb b/lib/matestack/ui/vue_js/components/async.rb
index <HASH>..<HASH> 100644
--- a/lib/matestack/ui/vue_js/components/async.rb
+++ b/lib/matestack/ui/vue_js/components/async.rb
@@ -29,7 +29,13 @@ module Matestack
div class: 'matestack-async-componen... | fixed async component resolve within deferred async components |
diff --git a/src/AutoRotatingCarousel.js b/src/AutoRotatingCarousel.js
index <HASH>..<HASH> 100644
--- a/src/AutoRotatingCarousel.js
+++ b/src/AutoRotatingCarousel.js
@@ -10,6 +10,7 @@ import ArrowBackIcon from '@material-ui/icons/ArrowBack'
import ArrowForwardIcon from '@material-ui/icons/ArrowForward'
import Modal ... | Add BackdropComponent prop to resolve issue with transitionDuration prop on MUI v4 (#<I>) |
diff --git a/tasks/cucumber.js b/tasks/cucumber.js
index <HASH>..<HASH> 100644
--- a/tasks/cucumber.js
+++ b/tasks/cucumber.js
@@ -41,6 +41,10 @@ module.exports = function(grunt) {
var commands = [];
+ if (grunt.option('rerun')) {
+ commands.push(grunt.option('rerun'));
+ }
+
... | rerun the cucumber failed scenario. Pass the path of @rerun.txt file |
diff --git a/src/exporter/file.js b/src/exporter/file.js
index <HASH>..<HASH> 100644
--- a/src/exporter/file.js
+++ b/src/exporter/file.js
@@ -40,6 +40,7 @@ module.exports = (node, name, pathRest, ipldResolver) => {
return pull.values([{
content: content,
path: name,
+ hash: node.multihash,
size: f... | feat: Include hash field for exported files (#<I>) |
diff --git a/lib/dexter/indexer.rb b/lib/dexter/indexer.rb
index <HASH>..<HASH> 100644
--- a/lib/dexter/indexer.rb
+++ b/lib/dexter/indexer.rb
@@ -99,6 +99,8 @@ module Dexter
log "Index created: #{((Time.now - started_at) * 1000).to_i} ms"
end
end
+ else
+ log "No indexes fo... | Added no indexes found message |
diff --git a/src/harvesters/core.py b/src/harvesters/core.py
index <HASH>..<HASH> 100644
--- a/src/harvesters/core.py
+++ b/src/harvesters/core.py
@@ -1592,6 +1592,10 @@ class ImageAcquirer:
self._num_images_to_acquire = num_images_to_acquire
+ # We're ready to start image acquisition. Lock the devi... | Resolve issue #<I> |
diff --git a/src/Helpers/view/TinyMCE.php b/src/Helpers/view/TinyMCE.php
index <HASH>..<HASH> 100644
--- a/src/Helpers/view/TinyMCE.php
+++ b/src/Helpers/view/TinyMCE.php
@@ -17,9 +17,9 @@ class TinyMCE extends AbstractHelper
{
if ($this->_enabled) {
$this->getView()->Scripts()->setPack(false... | Add SetBase to TinyMCE |
diff --git a/openquake/calculators/views.py b/openquake/calculators/views.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/views.py
+++ b/openquake/calculators/views.py
@@ -695,7 +695,7 @@ def view_dupl_sources_time(token, dstore):
calc_time = records['calc_time'].sum()
tot_time += c... | Reduced logging in view_dupl_sources [skip hazardlib]
Former-commit-id: <I>f0a<I>d0bd9f7f<I>e9e1f<I>c<I>ab1ca5a6 |
diff --git a/test.js b/test.js
index <HASH>..<HASH> 100644
--- a/test.js
+++ b/test.js
@@ -135,7 +135,7 @@ test('Works for iterable objects', function(is) {
"value" : 1,
"@@iterator" : function(){
var hasValue = true;
- value = this.value;
+ var value = this.value;
return {
ne... | Added missing `var` statement. |
diff --git a/cmd/jujud/run.go b/cmd/jujud/run.go
index <HASH>..<HASH> 100644
--- a/cmd/jujud/run.go
+++ b/cmd/jujud/run.go
@@ -141,7 +141,10 @@ func (c *RunCommand) executeNoContext() (*exec.ExecResponse, error) {
if err != nil {
return nil, err
}
- lock.Lock("juju-run")
+ err = lock.Lock("juju-run")
+ if err !=... | Check the err response from the fslock Lock method. |
diff --git a/src/main/java/org/paumard/spliterators/GatingSpliterator.java b/src/main/java/org/paumard/spliterators/GatingSpliterator.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/paumard/spliterators/GatingSpliterator.java
+++ b/src/main/java/org/paumard/spliterators/GatingSpliterator.java
@@ -88,11 +88,7 @... | Fixed the estimate sized of the gating spliterator |
diff --git a/ripe/atlas/sagan/helpers/abuf.py b/ripe/atlas/sagan/helpers/abuf.py
index <HASH>..<HASH> 100644
--- a/ripe/atlas/sagan/helpers/abuf.py
+++ b/ripe/atlas/sagan/helpers/abuf.py
@@ -290,12 +290,14 @@ class AbufParser(object):
edns0 = {
'UDPsize': res[1],
... | Fixed some bugs in EDNS0 parsing and extract DO flag. |
diff --git a/actionpack/lib/action_controller/metal/rendering.rb b/actionpack/lib/action_controller/metal/rendering.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_controller/metal/rendering.rb
+++ b/actionpack/lib/action_controller/metal/rendering.rb
@@ -6,7 +6,7 @@ module ActionController
# Before p... | Reverts rendering behavior when format is unknown
If a request has unknown format (eg. /foo.bar), the renderer
fallbacks to default format.
This patch reverts Rails <I> behavior after c<I>db commit.
Fixes issue #<I>. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,6 @@ setup(
description="Python API and CLI for KeePassX",
long_description=open(os.path.join(os.path.dirname(__file__),
'README.rst')).read(),
- license='BSD',
... | Remove license field
This is specified in the trove classifier as GPLv2. |
diff --git a/django_extensions/management/shells.py b/django_extensions/management/shells.py
index <HASH>..<HASH> 100644
--- a/django_extensions/management/shells.py
+++ b/django_extensions/management/shells.py
@@ -153,7 +153,11 @@ def import_objects(options, style):
if not quiet_load:
print(style.SQL_TAB... | Fix model loading for sentry
Sentry has a weird model naming scheme where all model files are inside
a single directory called models and each 'app' models is in a file of
its own (I guess the authors thought this was a better idea when they
didn't have any views etc. but models only).
With the models directory begin... |
diff --git a/public/javascripts/promotion.js b/public/javascripts/promotion.js
index <HASH>..<HASH> 100644
--- a/public/javascripts/promotion.js
+++ b/public/javascripts/promotion.js
@@ -184,7 +184,7 @@ var promotion_page = {
if (promotion_page.current_changeset) {
if (promotion_page.current_produ... | Adds extra check to ensure product in reset_page exists when doing an all check. |
diff --git a/rollbar/contrib/fastapi/utils.py b/rollbar/contrib/fastapi/utils.py
index <HASH>..<HASH> 100644
--- a/rollbar/contrib/fastapi/utils.py
+++ b/rollbar/contrib/fastapi/utils.py
@@ -1,5 +1,8 @@
+import functools
import logging
+import fastapi
+
log = logging.getLogger(__name__)
@@ -11,3 +14,20 @@ class... | Add decorator to check minimum required FastAPI version |
diff --git a/src/main/java/io/airlift/slice/XxHash64.java b/src/main/java/io/airlift/slice/XxHash64.java
index <HASH>..<HASH> 100644
--- a/src/main/java/io/airlift/slice/XxHash64.java
+++ b/src/main/java/io/airlift/slice/XxHash64.java
@@ -85,16 +85,9 @@ public class XxHash64
hash = rotateLeft(v1, 1) + ro... | More simplification of xxh<I> |
diff --git a/Tests/TestServiceSoundCloud.php b/Tests/TestServiceSoundCloud.php
index <HASH>..<HASH> 100755
--- a/Tests/TestServiceSoundCloud.php
+++ b/Tests/TestServiceSoundCloud.php
@@ -34,7 +34,6 @@ class TestServiceSoundCloud extends TestProviders
'https://soundcloud.com/explore',
'https://... | Remove emtpy url from SoundCloud Test |
diff --git a/lib/ponder/irc.rb b/lib/ponder/irc.rb
index <HASH>..<HASH> 100644
--- a/lib/ponder/irc.rb
+++ b/lib/ponder/irc.rb
@@ -12,9 +12,10 @@ module Ponder
raw "PRIVMSG #{recipient} :#{message}"
end
+ # register when connected
def register
raw "NICK #{@config.nick}"
- raw "USER... | added the functionality of chosing an username |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -137,6 +137,7 @@ setup(
'boto',
'jellyfish',
'nilsimsa >= 0.3',
+ 'regex != 2014.08.28',
'chromium_compact_language_detector',
'sortedcollection',
'python-docx', | we should be using the new regex wherever we use `re` |
diff --git a/djpaypal/models/billing.py b/djpaypal/models/billing.py
index <HASH>..<HASH> 100644
--- a/djpaypal/models/billing.py
+++ b/djpaypal/models/billing.py
@@ -143,7 +143,8 @@ class BillingAgreement(PaypalObject):
if ba.error:
raise PaypalApiError(str(ba.error)) # , ba.error)
- return cls.get_or_updat... | Return only the object from BillingAgreement.execute |
diff --git a/tests/tests/lib/ezutils/ezmail_test.php b/tests/tests/lib/ezutils/ezmail_test.php
index <HASH>..<HASH> 100644
--- a/tests/tests/lib/ezutils/ezmail_test.php
+++ b/tests/tests/lib/ezutils/ezmail_test.php
@@ -800,7 +800,7 @@ class eZMailTest extends ezpTestCase
}
// Open mailbox an... | Fix failing imap tests, silence errors causing failures |
diff --git a/website/resources/js/main.js b/website/resources/js/main.js
index <HASH>..<HASH> 100644
--- a/website/resources/js/main.js
+++ b/website/resources/js/main.js
@@ -37,7 +37,7 @@
if (self.data("clc")) return;
var href = self.attr("href");
self.data("clc", true);
- if (!href || href.substr(0, 4) === ... | [website] fixed history/ajax-load system to deal with anchor links |
diff --git a/src/main/java/com/hmsonline/cassandra/triggers/Trigger.java b/src/main/java/com/hmsonline/cassandra/triggers/Trigger.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/hmsonline/cassandra/triggers/Trigger.java
+++ b/src/main/java/com/hmsonline/cassandra/triggers/Trigger.java
@@ -1,8 +1,14 @@
package... | Fixed "loEntry" typo, removed redundant public modifier, and added JavaDoc. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.