diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/lib/resqued/listener_proxy.rb b/lib/resqued/listener_proxy.rb
index <HASH>..<HASH> 100644
--- a/lib/resqued/listener_proxy.rb
+++ b/lib/resqued/listener_proxy.rb
@@ -13,6 +13,14 @@ module Resqued
@options = options
end
+ # Public: wrap up all the things, this object is going home.
+ def... | Clean up some of the listener's details. |
diff --git a/test/web/specs/getDirectoryContents.spec.js b/test/web/specs/getDirectoryContents.spec.js
index <HASH>..<HASH> 100644
--- a/test/web/specs/getDirectoryContents.spec.js
+++ b/test/web/specs/getDirectoryContents.spec.js
@@ -114,7 +114,7 @@ describe("getDirectoryContents", function() {
});
});
... | renamed test based on Perry's recommendation |
diff --git a/pycbc/events/events.py b/pycbc/events/events.py
index <HASH>..<HASH> 100644
--- a/pycbc/events/events.py
+++ b/pycbc/events/events.py
@@ -427,6 +427,7 @@ class EventManager(object):
row.channel = channel
row.ifo = ifo
+ row.chisq = event['chisq']
# FI... | Add chisq back into code. This should have already been fixed on master |
diff --git a/version/src/main/java/org/jboss/as/version/ProductConfig.java b/version/src/main/java/org/jboss/as/version/ProductConfig.java
index <HASH>..<HASH> 100644
--- a/version/src/main/java/org/jboss/as/version/ProductConfig.java
+++ b/version/src/main/java/org/jboss/as/version/ProductConfig.java
@@ -124,14 +124,1... | Use WildFly also for layered configurations |
diff --git a/src/Illuminate/Bus/Queueable.php b/src/Illuminate/Bus/Queueable.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Bus/Queueable.php
+++ b/src/Illuminate/Bus/Queueable.php
@@ -47,7 +47,7 @@ trait Queueable
/**
* The number of seconds before the job should be made available.
*
- * @va... | Fix #<I> let delay() method accept array (#<I>)
* Update Queueable.php
let delay method accept array according to documentation>
<URL> |
diff --git a/src/client/pfs.go b/src/client/pfs.go
index <HASH>..<HASH> 100644
--- a/src/client/pfs.go
+++ b/src/client/pfs.go
@@ -395,6 +395,27 @@ func (c APIClient) PutFileWithDelimiter(repoName string, commitID string, path s
return int(written), err
}
+// PutFileURL
+func (c APIClient) PutFileURL(repoName stri... | Adds PutFileURL to the goclient. |
diff --git a/smack-integration-test/src/main/java/org/igniterealtime/smack/inttest/XmppConnectionManager.java b/smack-integration-test/src/main/java/org/igniterealtime/smack/inttest/XmppConnectionManager.java
index <HASH>..<HASH> 100644
--- a/smack-integration-test/src/main/java/org/igniterealtime/smack/inttest/XmppCon... | Admin should be disconnected after tests.
The Smack Integration tests can use an admin account to provision
accounts that are used by the tests. This admin account uses an XMPP
connection to interact with the server-under-test.
When the tests are over, this account should be disconnected
explicitly, to prevent stream... |
diff --git a/js/crypton.js b/js/crypton.js
index <HASH>..<HASH> 100644
--- a/js/crypton.js
+++ b/js/crypton.js
@@ -404,9 +404,4 @@ module.exports = class crypton extends Exchange {
}
}
}
-
- async request (path, api = 'public', method = 'GET', params = {}, headers = undefined, body = undef... | removed unnecessary request override from crypton fix #<I> |
diff --git a/src/Tapestry.php b/src/Tapestry.php
index <HASH>..<HASH> 100644
--- a/src/Tapestry.php
+++ b/src/Tapestry.php
@@ -27,7 +27,7 @@ class Tapestry implements ContainerAwareInterface, ArrayAccess
* Version Number
* @var string
*/
- const VERSION = '1.0.3';
+ const VERSION = '1.0.4';
... | :bookmark: Merged fixes into development and incremented version |
diff --git a/gcsproxy/mutable_content_test.go b/gcsproxy/mutable_content_test.go
index <HASH>..<HASH> 100644
--- a/gcsproxy/mutable_content_test.go
+++ b/gcsproxy/mutable_content_test.go
@@ -296,7 +296,15 @@ func (t *DirtyTest) SetUp(ti *TestInfo) {
}
func (t *DirtyTest) ReadAt_CallsLease() {
- AssertTrue(false, "T... | DirtyTest.ReadAt_CallsLease |
diff --git a/src/SourceLocator/Exception/InvalidFileInfo.php b/src/SourceLocator/Exception/InvalidFileInfo.php
index <HASH>..<HASH> 100644
--- a/src/SourceLocator/Exception/InvalidFileInfo.php
+++ b/src/SourceLocator/Exception/InvalidFileInfo.php
@@ -6,11 +6,14 @@ class InvalidFileInfo extends \RuntimeException
{
... | #<I> CS (inlining expressions, docblock spacing) |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@ from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
# we only support Python 3 version >= 3.4
-if sys.version_info < (3, 4):
+if len(sys.argv) >= 2 and sys.arg... | Check python version in setup.py only for install
This allow us to use this on build service like travis. |
diff --git a/lib/sbdb/db.rb b/lib/sbdb/db.rb
index <HASH>..<HASH> 100644
--- a/lib/sbdb/db.rb
+++ b/lib/sbdb/db.rb
@@ -88,6 +88,14 @@ module SBDB
def self.new file, name = nil, *p, &e
super file, name, RECNO, *p, &e
end
+
+ def [] k
+ super [k].pack('I')
+ end
+
+ def []= k, v
+ super [k].pack('I'), v
... | DB: Recno/Queue-support |
diff --git a/panc/src/org/quattor/pan/utils/XmlUtils.java b/panc/src/org/quattor/pan/utils/XmlUtils.java
index <HASH>..<HASH> 100644
--- a/panc/src/org/quattor/pan/utils/XmlUtils.java
+++ b/panc/src/org/quattor/pan/utils/XmlUtils.java
@@ -30,6 +30,7 @@ public class XmlUtils {
if (!factory.getFeature(SAXTransformerF... | fix indentation for annotation files (possibly also for xml output files) |
diff --git a/src/Artax/Http/Client.php b/src/Artax/Http/Client.php
index <HASH>..<HASH> 100644
--- a/src/Artax/Http/Client.php
+++ b/src/Artax/Http/Client.php
@@ -71,6 +71,7 @@ class Client {
$this->contextOptions['http']['content'] = $request->getBody();
$this->contextOptions['http']['method'] = $r... | Added protocol_version in the request. |
diff --git a/web/concrete/src/Cache/Cache.php b/web/concrete/src/Cache/Cache.php
index <HASH>..<HASH> 100644
--- a/web/concrete/src/Cache/Cache.php
+++ b/web/concrete/src/Cache/Cache.php
@@ -74,7 +74,9 @@ abstract class Cache
*/
public function enable()
{
- $this->pool->setDriver($this->driver);
... | Only need to set the cache driver if the driver stored is not null
Former-commit-id: afaa<I>ac<I>f6aa<I>a<I>f1e<I>b6c<I> |
diff --git a/src/Propel/Generator/Command/InitCommand.php b/src/Propel/Generator/Command/InitCommand.php
index <HASH>..<HASH> 100644
--- a/src/Propel/Generator/Command/InitCommand.php
+++ b/src/Propel/Generator/Command/InitCommand.php
@@ -166,9 +166,10 @@ class InitCommand extends AbstractCommand
private function ... | Init command now allows you to choose mysql port |
diff --git a/salt/modules/file.py b/salt/modules/file.py
index <HASH>..<HASH> 100644
--- a/salt/modules/file.py
+++ b/salt/modules/file.py
@@ -2380,6 +2380,34 @@ def get_managed(
'''
Return the managed file data for file.managed
+ name
+ location where the file lives on the server
+
+ template
... | expand documentation around sfn
This important variable is not documented anywhere else. It is the
location in the cache where the minion recieves the file from the master
and then templates it or just moves it into place on the minion using
try:
salt.utils.copyfile(sfn,
real_... |
diff --git a/src/Router.js b/src/Router.js
index <HASH>..<HASH> 100644
--- a/src/Router.js
+++ b/src/Router.js
@@ -235,9 +235,7 @@ function Router(declarativeStates) {
assertPathUniqueness(stateArray);
- // Only leaf states can be transitioned to.
- leafStates = {};
- registerLeafStates(stateArray);
+... | Quick refactoring: Less side effect |
diff --git a/test/test_helper.rb b/test/test_helper.rb
index <HASH>..<HASH> 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -16,4 +16,20 @@ end
class ActiveSupport::TestCase
fixtures :all
+
+ def self.aws_setup
+ paperclip_config = AnotherUploader.configuration.has_attached_file_options
+ @@b... | added AWS query function to test_helper |
diff --git a/visidata/cmdlog.py b/visidata/cmdlog.py
index <HASH>..<HASH> 100644
--- a/visidata/cmdlog.py
+++ b/visidata/cmdlog.py
@@ -17,7 +17,7 @@ BaseSheet.init('undone', list) # list of CommandLogRow for redo after undo
nonLogged = '''forget exec-longname undo redo quit
error status errors statuses options threa... | [cmdlog] make visibility commands not loggable |
diff --git a/docs/conf_std.py b/docs/conf_std.py
index <HASH>..<HASH> 100644
--- a/docs/conf_std.py
+++ b/docs/conf_std.py
@@ -90,7 +90,7 @@ exclude_patterns = ['_build']
pygments_style = 'sphinx'
# A list of ignored prefixes for module index sorting.
-#modindex_common_prefix = []
+modindex_common_prefix = ['pycbc.... | fix module index page to not include pycbc. prefix |
diff --git a/normandy/settings.py b/normandy/settings.py
index <HASH>..<HASH> 100644
--- a/normandy/settings.py
+++ b/normandy/settings.py
@@ -399,7 +399,7 @@ class Development(Base):
class Production(Base):
"""Settings for the production environment."""
- USE_X_FORWARDED_HOST = values.BooleanValue(True)
+ ... | Do not use X-Forwarded-Host
We started stripping this header at Nginx due to <URL> |
diff --git a/Controller/PageAdminController.php b/Controller/PageAdminController.php
index <HASH>..<HASH> 100644
--- a/Controller/PageAdminController.php
+++ b/Controller/PageAdminController.php
@@ -580,8 +580,9 @@ class PageAdminController extends CRUDController
* @throws \Symfony\Component\Security\Core\Excepti... | make sure the edit action is compatible with the parent class |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -20,4 +20,14 @@ setup(name='arguments',
license='GPL',
packages=['arguments'],
zip_safe=True,
- install_requires=['docopt', 'schema', 'consoleprinter'])
+ install_requires=['docopt', 'schema', 'c... | pip
Friday <I> March <I> (week:9 day:<I>), <I>:<I>:<I> |
diff --git a/config/local.js b/config/local.js
index <HASH>..<HASH> 100644
--- a/config/local.js
+++ b/config/local.js
@@ -7,8 +7,8 @@ module.exports = {
* Current Node Information
*/
port: 3010,
- routes: require("./endpoints/routes.js"),
- events: require("./endpoints/events.js"),
+ routes: ... | require routes on setup rather than on config |
diff --git a/lib/cistern/attributes.rb b/lib/cistern/attributes.rb
index <HASH>..<HASH> 100644
--- a/lib/cistern/attributes.rb
+++ b/lib/cistern/attributes.rb
@@ -135,9 +135,9 @@ module Cistern::Attributes
transform = Cistern::Attributes.transforms[options[:squash] ? :squash : :none] ||
Cister... | fix(attributes): always use explicit :parser |
diff --git a/plans/models.py b/plans/models.py
index <HASH>..<HASH> 100644
--- a/plans/models.py
+++ b/plans/models.py
@@ -260,8 +260,6 @@ class UserPlan(models.Model):
def get_plan_extended_until(self, plan, pricing):
if plan.is_free():
return None
- if not self.plan.is_free() and sel... | fix get_plan_extended_until() if UserPlan does not set expiry date - use today from get_plan_extended_from() |
diff --git a/lxd/db/cluster/stmt.go b/lxd/db/cluster/stmt.go
index <HASH>..<HASH> 100644
--- a/lxd/db/cluster/stmt.go
+++ b/lxd/db/cluster/stmt.go
@@ -42,11 +42,21 @@ var stmts = map[int]string{} // Statement code to statement SQL text.
var PreparedStmts = map[int]*sql.Stmt{}
// Stmt prepares the in-memory prepared... | lxd/db/cluster/stmt: Add StmtString and remove panics |
diff --git a/src/stylable.js b/src/stylable.js
index <HASH>..<HASH> 100644
--- a/src/stylable.js
+++ b/src/stylable.js
@@ -5,7 +5,18 @@ import hoistStatics from 'hoist-non-react-statics'
import Node from './node'
function getDisplayName (comp) {
- return comp.displayName || comp.name || 'Component'
+ if (typeof c... | fix: make getDisplayName to be almost equal to react getElementName |
diff --git a/src/types.js b/src/types.js
index <HASH>..<HASH> 100644
--- a/src/types.js
+++ b/src/types.js
@@ -19,10 +19,23 @@ export type InnerRef = ElementRef<typeof HTMLElement>;
export type PropsWithInnerRef = {
innerRef: InnerRef,
};
+
export type PropsWithStyles = {
getStyles: (string, any) => {},
};
... | Adding CommonProps type (needs work to be applied everywhere) |
diff --git a/actionpack/lib/action_view/render/layouts.rb b/actionpack/lib/action_view/render/layouts.rb
index <HASH>..<HASH> 100644
--- a/actionpack/lib/action_view/render/layouts.rb
+++ b/actionpack/lib/action_view/render/layouts.rb
@@ -65,7 +65,7 @@ module ActionView
if formats.size == 1
_find_la... | Formats should always be an array. |
diff --git a/src/TooltipFactory.js b/src/TooltipFactory.js
index <HASH>..<HASH> 100644
--- a/src/TooltipFactory.js
+++ b/src/TooltipFactory.js
@@ -341,7 +341,7 @@ var addMutation = function(tooltip) {
};
var addXRefs = function(tooltip, xrefs) {
- if (xrefs) {
+ if (xrefs && (xrefs.length !== 0)) {
v... | Check xrefs length. |
diff --git a/sos/plugins/libreswan.py b/sos/plugins/libreswan.py
index <HASH>..<HASH> 100644
--- a/sos/plugins/libreswan.py
+++ b/sos/plugins/libreswan.py
@@ -49,7 +49,7 @@ class Libreswan(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
self.add_forbidden_path([
'/etc/ipsec.secrets',
- ... | [libreswan] fix directory blacklist style
Plugins must use 'path/to/exclude' rather than 'path/to/exclude/*'
in order to omit a directory and all its content from the report. |
diff --git a/tests/test_arg_parsing.py b/tests/test_arg_parsing.py
index <HASH>..<HASH> 100644
--- a/tests/test_arg_parsing.py
+++ b/tests/test_arg_parsing.py
@@ -18,7 +18,7 @@ from cookiecutter import main
def test_parse_cookiecutter_args():
args = main.parse_cookiecutter_args(['project/'])
assert args.inpu... | Change comparision to 'is' in order to fix flake8 |
diff --git a/lib/sup/mode.rb b/lib/sup/mode.rb
index <HASH>..<HASH> 100644
--- a/lib/sup/mode.rb
+++ b/lib/sup/mode.rb
@@ -83,6 +83,7 @@ EOS
### helper functions
def save_to_file fn, talk=true
+ FileUtils.mkdir_p File.dirname(fn)
if File.exist? fn
unless BufferManager.ask_yes_or_no "File \"#{fn}\" ... | Create directory for saving files if it doesn't exist yet |
diff --git a/lib/toml-rb/dumper.rb b/lib/toml-rb/dumper.rb
index <HASH>..<HASH> 100644
--- a/lib/toml-rb/dumper.rb
+++ b/lib/toml-rb/dumper.rb
@@ -93,12 +93,12 @@ module TomlRB
obj.strftime("%Y-%m-%dT%H:%M:%SZ")
elsif obj.is_a?(Date)
obj.strftime("%Y-%m-%d")
- elsif obj.is_a? Regexp
+ ... | Fix linter and sytle-inconsistency. |
diff --git a/src/Engine/SocketIO.php b/src/Engine/SocketIO.php
index <HASH>..<HASH> 100644
--- a/src/Engine/SocketIO.php
+++ b/src/Engine/SocketIO.php
@@ -81,10 +81,9 @@ abstract class SocketIO implements EngineInterface
*/
protected function getServerInformation()
{
- $server = array_replace($th... | The transport should not be in the url configuration |
diff --git a/Kwc/Form/Component.php b/Kwc/Form/Component.php
index <HASH>..<HASH> 100644
--- a/Kwc/Form/Component.php
+++ b/Kwc/Form/Component.php
@@ -134,7 +134,6 @@ class Kwc_Form_Component extends Kwc_Abstract_Composite_Component
if (!$this->_errors) {
try {
$this->... | fixed order of before-/after- save calls in form component
correct is beforeInsert/beforeUpdate - beforeSave - save - afterInsert/afterUpdate - afterSave |
diff --git a/lib/cli/finder.js b/lib/cli/finder.js
index <HASH>..<HASH> 100644
--- a/lib/cli/finder.js
+++ b/lib/cli/finder.js
@@ -135,7 +135,15 @@ function find(globs, callback) {
}
return globs.some(function (glob) {
- return match(filePath, glob) && stat(filePath).isFile();... | Fix non-magic globs from matching all files
For a while, remark(1) included all files nested in directories
if that directory was given on the CLI. For example, if `content`
was given, `content/foo.jpg` was included by mistake. Now, if a glob
does not contain magic (as in, it is a file-path) and represents a
directo... |
diff --git a/openquake/engine/utils/tasks.py b/openquake/engine/utils/tasks.py
index <HASH>..<HASH> 100644
--- a/openquake/engine/utils/tasks.py
+++ b/openquake/engine/utils/tasks.py
@@ -157,9 +157,9 @@ def oqtask(task_func):
# the revoke functionality can work
EnginePerformanceMonitor.store_task_id(j... | Removed parens breaking a with statement
Former-commit-id: d<I>f5c<I>e6f<I>fafc<I>efb<I>cf4ded3f |
diff --git a/src/nwmatcher.js b/src/nwmatcher.js
index <HASH>..<HASH> 100644
--- a/src/nwmatcher.js
+++ b/src/nwmatcher.js
@@ -69,9 +69,13 @@ NW.Dom = (function(global) {
reIdSelector = /\#([-\w]+)$/,
reWhiteSpace = /[\x20\t\n\r\f]+/g,
+ // match missing R/L context
reLeftContext = /^\s*[>+~]+/,
reRightC... | added regular expression to aid in guessing document type, added missing comment |
diff --git a/dynamic_rest/viewsets.py b/dynamic_rest/viewsets.py
index <HASH>..<HASH> 100644
--- a/dynamic_rest/viewsets.py
+++ b/dynamic_rest/viewsets.py
@@ -519,12 +519,9 @@ class DynamicModelViewSet(WithDynamicViewSetMixin, viewsets.ModelViewSet):
bulk_payload = self._get_bulk_payload(request)
if b... | Only return <I> on AssertionError (unable to retrieve pk) |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ instructions.
setup(
name="django-prometheus",
- version="0.0.8",
+ version="0.0.9",
author="Uriel Corfa",
author_email="uriel@corfa.fr",
description=( | Release <I>
Breaking change: the in-thread exporter is now disabled by default,
and exporting /metrics as a django view is now the "common" way of
doing things. |
diff --git a/client/consul/sync.go b/client/consul/sync.go
index <HASH>..<HASH> 100644
--- a/client/consul/sync.go
+++ b/client/consul/sync.go
@@ -268,8 +268,8 @@ func (c *ConsulService) deregisterCheck(ID string) error {
return c.client.Agent().CheckDeregister(ID)
}
-// SyncWithConsul triggers periodic syncing of... | Renaming the SyncWithConsul method |
diff --git a/javascript/hasoneautocompletefield.js b/javascript/hasoneautocompletefield.js
index <HASH>..<HASH> 100644
--- a/javascript/hasoneautocompletefield.js
+++ b/javascript/hasoneautocompletefield.js
@@ -105,15 +105,15 @@
getCurrentTextElement: function() {
- return this.closest('... | Update JS to account for FieldGroup markup changing between SS versions |
diff --git a/lib/cancan/controller_additions.rb b/lib/cancan/controller_additions.rb
index <HASH>..<HASH> 100644
--- a/lib/cancan/controller_additions.rb
+++ b/lib/cancan/controller_additions.rb
@@ -151,6 +151,9 @@ module CanCan
# [:+except+]
# Does not apply before filter to given actions.
#
+ ... | Just add singleton to description of authorize_resource |
diff --git a/pytodoist/todoist.py b/pytodoist/todoist.py
index <HASH>..<HASH> 100644
--- a/pytodoist/todoist.py
+++ b/pytodoist/todoist.py
@@ -1119,7 +1119,7 @@ class RequestError(Exception):
HTTP_OK = 200
def _fail_if_contains_errors(response):
- """Raise a TodoistError Exception if a given response
+ """Rai... | Fixed a docstring inconsistency. |
diff --git a/src/CRUDlex/CRUDControllerProvider.php b/src/CRUDlex/CRUDControllerProvider.php
index <HASH>..<HASH> 100644
--- a/src/CRUDlex/CRUDControllerProvider.php
+++ b/src/CRUDlex/CRUDControllerProvider.php
@@ -205,7 +205,7 @@ class CRUDControllerProvider implements ControllerProviderInterface {
}
... | don't count soft deleted items in the total amount on the list page |
diff --git a/lib/ecm/videos/version.rb b/lib/ecm/videos/version.rb
index <HASH>..<HASH> 100644
--- a/lib/ecm/videos/version.rb
+++ b/lib/ecm/videos/version.rb
@@ -1,5 +1,5 @@
module Ecm
module Videos
- VERSION = '2.0.0'.freeze
+ VERSION = '2.1.0'.freeze
end
end | Bumped version to <I> |
diff --git a/src/Jasny/Router.php b/src/Jasny/Router.php
index <HASH>..<HASH> 100644
--- a/src/Jasny/Router.php
+++ b/src/Jasny/Router.php
@@ -326,7 +326,7 @@ class Router
*/
public function getUrl()
{
- if (!isset($this->url)) $this->url = preg_replace('/\?.*$/', '', $_SERVER['REQUEST_URI']);
+ ... | Decode the URL got from $_SERVER['REQUEST_URI'] |
diff --git a/spyder/widgets/variableexplorer/dataframeeditor.py b/spyder/widgets/variableexplorer/dataframeeditor.py
index <HASH>..<HASH> 100644
--- a/spyder/widgets/variableexplorer/dataframeeditor.py
+++ b/spyder/widgets/variableexplorer/dataframeeditor.py
@@ -45,7 +45,7 @@ COMPLEX_NUMBER_TYPES = (complex, np.complex... | Default float format change
Edited default float format, according to previous change in array editor. |
diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -17,9 +17,6 @@ export default function serve (options = { contentBase: '' }) {
options.https = options.https || false
mime.default_type = 'text/plain'
- let server
- // Fallback to http protocol if ht... | Cleanup
Refactor single-use `PROTOCOL` variable
Move declaration of `server` |
diff --git a/faq-bundle/contao/dca/tl_faq.php b/faq-bundle/contao/dca/tl_faq.php
index <HASH>..<HASH> 100644
--- a/faq-bundle/contao/dca/tl_faq.php
+++ b/faq-bundle/contao/dca/tl_faq.php
@@ -368,7 +368,7 @@ class tl_faq extends Backend
if (!strlen($varValue))
{
$autoAlias = true;
- $varValue = standardize($... | [Faq] Moved `Controller::restoreBasicEntities()` to the `String` class (see #<I>) |
diff --git a/generators/app/templates/api/auth/auth.router.test.js b/generators/app/templates/api/auth/auth.router.test.js
index <HASH>..<HASH> 100644
--- a/generators/app/templates/api/auth/auth.router.test.js
+++ b/generators/app/templates/api/auth/auth.router.test.js
@@ -66,16 +66,6 @@ test.serial('POST /auth 400 (m... | Remove duplicate test from auth router tests |
diff --git a/framework/js/onsen.js b/framework/js/onsen.js
index <HASH>..<HASH> 100644
--- a/framework/js/onsen.js
+++ b/framework/js/onsen.js
@@ -549,7 +549,9 @@ limitations under the License.
}
};
- return ons._createPopoverOriginal(page, options);
+ return ons._createPopoverOrigin... | fix(ons-popover): Changed ons.createPopover() to resolve component view object instead of ons-popover element on angular bindings. |
diff --git a/shakedown/cli/helpers.py b/shakedown/cli/helpers.py
index <HASH>..<HASH> 100644
--- a/shakedown/cli/helpers.py
+++ b/shakedown/cli/helpers.py
@@ -67,6 +67,7 @@ def fchr(char):
return {
'PP': chr(10003),
'FF': chr(10005),
+ 'SK': chr(10073),
'>>': chr(12299)
}.get... | adding a pause char for skip |
diff --git a/schema.js b/schema.js
index <HASH>..<HASH> 100644
--- a/schema.js
+++ b/schema.js
@@ -25,7 +25,7 @@ class SchemaItem {
// mapping names to either attributes (to add) or null (to remove
// the attribute by that name).
static updateAttrs(attrs) {
- this.prototype.attrs = overlayObj(this.prototype... | Fix the way updateAttrs overwrites the member property |
diff --git a/lib/dm-migrations/adapters/dm-sqlserver-adapter.rb b/lib/dm-migrations/adapters/dm-sqlserver-adapter.rb
index <HASH>..<HASH> 100644
--- a/lib/dm-migrations/adapters/dm-sqlserver-adapter.rb
+++ b/lib/dm-migrations/adapters/dm-sqlserver-adapter.rb
@@ -47,7 +47,7 @@ module DataMapper
# TODO: update... | Changed usage of alias to alias_method |
diff --git a/app.py b/app.py
index <HASH>..<HASH> 100644
--- a/app.py
+++ b/app.py
@@ -181,7 +181,6 @@ def get_random_condcount():
filter(or_(Participant.status == 4,
Participant.status == 5,
Participant.beginhit > starttime)).\
- ... | Delete line that prevents previous conditions>3 to be counted before drawing new condition |
diff --git a/src/Git/CheckedOutRepository.php b/src/Git/CheckedOutRepository.php
index <HASH>..<HASH> 100644
--- a/src/Git/CheckedOutRepository.php
+++ b/src/Git/CheckedOutRepository.php
@@ -17,7 +17,6 @@ final class CheckedOutRepository
public static function fromPath(string $path) : self
{
- Assert... | Verify that non-git directories are rejected in `CheckedOutRepository` |
diff --git a/tests/dummy/app/controllers/application.js b/tests/dummy/app/controllers/application.js
index <HASH>..<HASH> 100644
--- a/tests/dummy/app/controllers/application.js
+++ b/tests/dummy/app/controllers/application.js
@@ -6,7 +6,7 @@ export default Ember.Controller.extend({
dynamicCurrent: 5,
actions: ... | Fix dummy for prod build |
diff --git a/lib/better_errors/error_page.rb b/lib/better_errors/error_page.rb
index <HASH>..<HASH> 100644
--- a/lib/better_errors/error_page.rb
+++ b/lib/better_errors/error_page.rb
@@ -28,6 +28,11 @@ module BetterErrors
def render(template_name = "main")
binding.eval(self.class.template(template_name).s... | Improve backtrace when a BE template raises error
This is purely for BE development. |
diff --git a/djcelery/snapshot.py b/djcelery/snapshot.py
index <HASH>..<HASH> 100644
--- a/djcelery/snapshot.py
+++ b/djcelery/snapshot.py
@@ -33,7 +33,7 @@ debug = logger.debug
def aware_tstamp(secs):
"""Event timestamps uses the local timezone."""
- return maybe_make_aware(datetime.fromtimestamp(secs))
+ ... | Fix snapshot.aware_tstamp by converting from utc timestamp |
diff --git a/src/views/part/_objectParts.php b/src/views/part/_objectParts.php
index <HASH>..<HASH> 100644
--- a/src/views/part/_objectParts.php
+++ b/src/views/part/_objectParts.php
@@ -78,6 +78,7 @@ echo \hipanel\grid\GridView::widget([
[
'label' => Yii::t('hipanel.finance.price', 'Price'),
... | Due to use the `_objectParts` view from other modules, it was necessary to additionally limit visibility |
diff --git a/src/transformers/models/big_bird/modeling_big_bird.py b/src/transformers/models/big_bird/modeling_big_bird.py
index <HASH>..<HASH> 100755
--- a/src/transformers/models/big_bird/modeling_big_bird.py
+++ b/src/transformers/models/big_bird/modeling_big_bird.py
@@ -1378,6 +1378,13 @@ class BigBirdAttention(nn.... | Make BigBird model compatiable to fp<I> dtype. (#<I>)
* Make BigBird model compatiable to fp<I> dtype.
* Use tree_map instead of map
* Reformat the code
* Fix import order
* Convert masks to the correct dtype
* Fix format issue
* Address comments. |
diff --git a/cmd/influx_inspect/help/help.go b/cmd/influx_inspect/help/help.go
index <HASH>..<HASH> 100644
--- a/cmd/influx_inspect/help/help.go
+++ b/cmd/influx_inspect/help/help.go
@@ -31,6 +31,7 @@ Usage: influx_inspect [[command] [arguments]]
The commands are:
+ dumptsi dumps low-level details ... | Add dumptsi command to help command. |
diff --git a/bbb.go b/bbb.go
index <HASH>..<HASH> 100644
--- a/bbb.go
+++ b/bbb.go
@@ -238,17 +238,19 @@ func (p *bbbAnalogPin) Close() error {
return nil
}
-// BBBPWMDefaultPolarity represents the default polarity (Positve or 1) for pwm.
-const BBBPWMDefaultPolarity = Positive
+const (
+ // BBBPWMDefaultPolarity ... | doc: group the bbb constants together |
diff --git a/robotium-solo/src/main/java/com/jayway/android/robotium/solo/ScreenshotTaker.java b/robotium-solo/src/main/java/com/jayway/android/robotium/solo/ScreenshotTaker.java
index <HASH>..<HASH> 100644
--- a/robotium-solo/src/main/java/com/jayway/android/robotium/solo/ScreenshotTaker.java
+++ b/robotium-solo/src/m... | Bugfix for issue-<I> |
diff --git a/scraper.rb b/scraper.rb
index <HASH>..<HASH> 100644
--- a/scraper.rb
+++ b/scraper.rb
@@ -55,10 +55,20 @@ class Scraper
end
end
+ private
+
+ def self.rules
+ @rules ||= {}
+ end
+
+ def self.inherited(subclass)
+ subclass.rules.update self.rules
+ end
+
# Rule declaration i... | declare methods that usually shouldn't be overriden as private |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -22,5 +22,5 @@ setup(
setup_requires=['pytest-runner', 'setuptools_scm'],
# put pytest last to workaround this bug
# https://bitbucket.org/pypa/setuptools/issues/196/tests_require-pytest-pytest-cov-breaks
- t... | Pin moto version
This is to circumvent an upstream issue with a required library (aws-xray-sdk) that is
pinned to a version not available on pypi anymore. |
diff --git a/core/src/main/java/hudson/model/TopLevelItemDescriptor.java b/core/src/main/java/hudson/model/TopLevelItemDescriptor.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/hudson/model/TopLevelItemDescriptor.java
+++ b/core/src/main/java/hudson/model/TopLevelItemDescriptor.java
@@ -40,6 +40,7 @@ import ... | [JENKINS-<I>] LOGGER.log() instead of LOGGER.warning() |
diff --git a/security/Member.php b/security/Member.php
index <HASH>..<HASH> 100644
--- a/security/Member.php
+++ b/security/Member.php
@@ -1073,6 +1073,7 @@ class Member extends DataObject {
*/
public function isInGroup($groupID) {
user_error('Member::isInGroup() is deprecated. Please use inGroup() instead.', E... | Updated Member::isInGroup() to function as well as being deprecated
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@<I> <I>b<I>ca-7a2a-<I>-9d3b-<I>d<I>a<I>a9 |
diff --git a/telethon/events/newmessage.py b/telethon/events/newmessage.py
index <HASH>..<HASH> 100644
--- a/telethon/events/newmessage.py
+++ b/telethon/events/newmessage.py
@@ -137,12 +137,6 @@ class NewMessage(EventBuilder):
else:
return
- # Make messages sent to ourselves outgoing unl... | Move message.out patching in self-chat to Message
May fix #<I>. |
diff --git a/http/query.go b/http/query.go
index <HASH>..<HASH> 100644
--- a/http/query.go
+++ b/http/query.go
@@ -117,7 +117,7 @@ func toSpec(p *ast.Program, now func() time.Time) (*flux.Spec, error) {
return nil, err
}
- if err := itrp.Eval(semProg); err != nil {
+ if err := itrp.Eval(semProg, nil); err != nil... | fix: pass nil importer to Eval |
diff --git a/sos/policies/redhat.py b/sos/policies/redhat.py
index <HASH>..<HASH> 100644
--- a/sos/policies/redhat.py
+++ b/sos/policies/redhat.py
@@ -106,7 +106,8 @@ No changes will be made to system configuration.
def check(self):
"""This method checks to see if we are running on RHEL. It returns True
... | Fix Fedora policy detection
Make sure that the Fedora policy gets a chance to run by checking
for the absence of /etc/fedora-release in the RHEL policy and
fix the inheritance of FedoraPolicy. |
diff --git a/templates/releaf/installer.rb b/templates/releaf/installer.rb
index <HASH>..<HASH> 100644
--- a/templates/releaf/installer.rb
+++ b/templates/releaf/installer.rb
@@ -90,6 +90,9 @@ if dummy
mysql_password = ask_wizard("Password for MySQL user #{mysql_username}?", '')
gsub_file "config/database.y... | Possibility to define dummy database name |
diff --git a/resources/lang/fa-IR/forms.php b/resources/lang/fa-IR/forms.php
index <HASH>..<HASH> 100644
--- a/resources/lang/fa-IR/forms.php
+++ b/resources/lang/fa-IR/forms.php
@@ -168,7 +168,7 @@ return [
'analytics' => [
'analytics_google' => 'Google Analytics code',
'analyt... | New translations forms.php (Persian) |
diff --git a/hyperbahn/service_proxy.js b/hyperbahn/service_proxy.js
index <HASH>..<HASH> 100644
--- a/hyperbahn/service_proxy.js
+++ b/hyperbahn/service_proxy.js
@@ -302,10 +302,12 @@ function removeServicePeer(serviceName, hostPort) {
return;
}
- var peer = svcchan.peers.get(hostPort);
- if (pee... | ServiceDispatchHandler: get peer from root channel in #removeServicePeer |
diff --git a/source/application/components/widgets/oxwarticlebox.php b/source/application/components/widgets/oxwarticlebox.php
index <HASH>..<HASH> 100644
--- a/source/application/components/widgets/oxwarticlebox.php
+++ b/source/application/components/widgets/oxwarticlebox.php
@@ -95,6 +95,10 @@ class oxwArticleBox ex... | Load article description in article box widget for recommendation list. |
diff --git a/bigchaindb/version.py b/bigchaindb/version.py
index <HASH>..<HASH> 100644
--- a/bigchaindb/version.py
+++ b/bigchaindb/version.py
@@ -1,2 +1,2 @@
-__version__ = '1.2.0.dev'
-__short_version__ = '1.2.dev'
+__version__ = '1.3.0.dev'
+__short_version__ = '1.3.dev' | Updated to <I>.dev in version.py |
diff --git a/intranet/apps/eighth/serializers.py b/intranet/apps/eighth/serializers.py
index <HASH>..<HASH> 100644
--- a/intranet/apps/eighth/serializers.py
+++ b/intranet/apps/eighth/serializers.py
@@ -143,7 +143,9 @@ class EighthBlockDetailSerializer(serializers.Serializer):
"administrative": scheduled_a... | fix(eighth): add finance and comments field |
diff --git a/app/models/outgoing_message_prototype.rb b/app/models/outgoing_message_prototype.rb
index <HASH>..<HASH> 100644
--- a/app/models/outgoing_message_prototype.rb
+++ b/app/models/outgoing_message_prototype.rb
@@ -163,11 +163,15 @@ class OutgoingMessagePrototype
if @html_body.blank? && attachments.empty... | don't create empty parts in a multi part email (#<I>) |
diff --git a/test/test_helper.rb b/test/test_helper.rb
index <HASH>..<HASH> 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -9,7 +9,7 @@ class Test::Unit::TestCase
define_method("test_#{name.gsub(/\s+/,'_')}".to_sym, block)
end
- def environment
+ def default_environment
{ "RACK_ENV" => "... | allow overriding settings in test environment |
diff --git a/lib/array.js b/lib/array.js
index <HASH>..<HASH> 100644
--- a/lib/array.js
+++ b/lib/array.js
@@ -12,6 +12,13 @@ module.exports.max = function(array)
return Math.max.apply(Math, array);
};
+//Get the min value in an array
+module.exports.min = function(obj)
+{
+ //Return the min value
+ return Math... | lib/array.js: added array.min method to get the minimum value in an array |
diff --git a/client.go b/client.go
index <HASH>..<HASH> 100644
--- a/client.go
+++ b/client.go
@@ -110,8 +110,9 @@ func NewDockerClientTimeout(daemonUrl string, tlsConfig *tls.Config, timeout tim
u.Scheme = "https"
}
}
+ copiedUrl, _ := url.Parse(u.String())
httpClient := newHttpClient(u, tlsConfig, timeout,... | fix for newHttpClient is not idempotency |
diff --git a/src/resolvers/ClassNameResolver.php b/src/resolvers/ClassNameResolver.php
index <HASH>..<HASH> 100644
--- a/src/resolvers/ClassNameResolver.php
+++ b/src/resolvers/ClassNameResolver.php
@@ -28,7 +28,7 @@ class ClassNameResolver implements DependencyResolverInterface
throw new NotInstantiableEx... | Update src/resolvers/ClassNameResolver.php |
diff --git a/conductor/src/main/java/com/bluelinelabs/conductor/Controller.java b/conductor/src/main/java/com/bluelinelabs/conductor/Controller.java
index <HASH>..<HASH> 100755
--- a/conductor/src/main/java/com/bluelinelabs/conductor/Controller.java
+++ b/conductor/src/main/java/com/bluelinelabs/conductor/Controller.ja... | Added a view state getter, which is needed if view state must be obtained at the time of view creation (ex: for Google Maps) |
diff --git a/src/keymaps/index.js b/src/keymaps/index.js
index <HASH>..<HASH> 100644
--- a/src/keymaps/index.js
+++ b/src/keymaps/index.js
@@ -152,7 +152,7 @@ export default () => {
if (ableTorun || opts.force) {
opts.prevent && canvas.getCanvasView().preventDefault(e);
typeof handler == ... | Execute shortcut commands from the Commands manager. Closes #<I> |
diff --git a/cluster_state_test.go b/cluster_state_test.go
index <HASH>..<HASH> 100644
--- a/cluster_state_test.go
+++ b/cluster_state_test.go
@@ -91,3 +91,15 @@ func TestClusterStateURLs(t *testing.T) {
}
}
}
+
+func TestClusterStateGet(t *testing.T) {
+ client := setupTestClientAndCreateIndex(t) // , SetTraceLo... | Add test for Cluster State API
Trying to find issue mentioned in #<I>. |
diff --git a/lib/economic/entity.rb b/lib/economic/entity.rb
index <HASH>..<HASH> 100644
--- a/lib/economic/entity.rb
+++ b/lib/economic/entity.rb
@@ -207,10 +207,6 @@ module Economic
)
end
- def soap_action_name(action)
- Endpoint.new.soap_action_name(self.class, action)
- end
-
def class... | Remove unused soap_action_name method
This should probably have been removed as part of commit eb<I>e<I>e<I>d8dbcbafeaf<I>e<I>f<I>a1. |
diff --git a/molgenis-data-annotators/src/main/java/org/molgenis/data/annotation/core/resources/impl/tabix/TabixReader.java b/molgenis-data-annotators/src/main/java/org/molgenis/data/annotation/core/resources/impl/tabix/TabixReader.java
index <HASH>..<HASH> 100644
--- a/molgenis-data-annotators/src/main/java/org/molgen... | Fix three "Class variable fields should not have public accessibility" vulnerabilities reported by Sonar |
diff --git a/project/library/CM/Session.php b/project/library/CM/Session.php
index <HASH>..<HASH> 100644
--- a/project/library/CM/Session.php
+++ b/project/library/CM/Session.php
@@ -233,7 +233,7 @@ class CM_Session {
}
}
- public static function gc() {
+ public static function deleteExpired() {
CM_Mysql::exe... | t<I>: Rename Session::gc() to deleteExpired() |
diff --git a/Eloquent/Model.php b/Eloquent/Model.php
index <HASH>..<HASH> 100755
--- a/Eloquent/Model.php
+++ b/Eloquent/Model.php
@@ -1125,9 +1125,11 @@ abstract class Model implements ArrayAccess, ArrayableInterface, JsonableInterfa
*/
protected function updateTimestamps()
{
+ $time = $this->freshTimestamp();... | Fix timestamp bug in Eloquent models. |
diff --git a/src/InfoViz/Native/MutualInformationDiagram/index.js b/src/InfoViz/Native/MutualInformationDiagram/index.js
index <HASH>..<HASH> 100644
--- a/src/InfoViz/Native/MutualInformationDiagram/index.js
+++ b/src/InfoViz/Native/MutualInformationDiagram/index.js
@@ -780,7 +780,7 @@ function informationDiagram(publi... | fix(MutualInfoDiagram): Fix a query that missed using instance id to generate element id |
diff --git a/src/js/pannellum.js b/src/js/pannellum.js
index <HASH>..<HASH> 100644
--- a/src/js/pannellum.js
+++ b/src/js/pannellum.js
@@ -1784,10 +1784,12 @@ function destroyHotSpots() {
if (hs) {
for (var i = 0; i < hs.length; i++) {
var current = hs[i].div;
- while(current.paren... | Check to make sure hot spot div exists before deleting it (#<I>). |
diff --git a/functions_defs_crypto_rand.go b/functions_defs_crypto_rand.go
index <HASH>..<HASH> 100644
--- a/functions_defs_crypto_rand.go
+++ b/functions_defs_crypto_rand.go
@@ -10,6 +10,15 @@ import (
)
func loadStandardFunctionsCryptoRand() funcGroup {
+ // TODO:
+ // urlencode/urldecode
+ // rv[`md5`] =
+ // rv... | funcdoc: stubs |
diff --git a/openquake/engine/tests/calculators/hazard/general_test.py b/openquake/engine/tests/calculators/hazard/general_test.py
index <HASH>..<HASH> 100644
--- a/openquake/engine/tests/calculators/hazard/general_test.py
+++ b/openquake/engine/tests/calculators/hazard/general_test.py
@@ -215,7 +215,7 @@ class Calcula... | Fixed a test broken by the change in the output_weight |
diff --git a/test/test-helper/index.js b/test/test-helper/index.js
index <HASH>..<HASH> 100644
--- a/test/test-helper/index.js
+++ b/test/test-helper/index.js
@@ -8,6 +8,8 @@ let { randomBytes } = require("crypto");
let { exec, spawn } = require("./child_process");
+let { COPY_KARMA } = process.env;
+
function ge... | Add support for the COPY_KARMA option
This is actually outputted in error, saying it can be used, but it
couldn't up until now. |
diff --git a/src/Http/Controllers/Adminarea/AccountPasswordController.php b/src/Http/Controllers/Adminarea/AccountPasswordController.php
index <HASH>..<HASH> 100644
--- a/src/Http/Controllers/Adminarea/AccountPasswordController.php
+++ b/src/Http/Controllers/Adminarea/AccountPasswordController.php
@@ -31,7 +31,7 @@ cla... | Force save password regardless of any other fields validation errors
- This action only deal with password change anyway. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.