diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/nodeup/pkg/model/secrets.go b/nodeup/pkg/model/secrets.go
index <HASH>..<HASH> 100644
--- a/nodeup/pkg/model/secrets.go
+++ b/nodeup/pkg/model/secrets.go
@@ -60,19 +60,17 @@ func (b *SecretBuilder) Build(c *fi.ModelBuilderContext) error {
if b.SecretStore != nil {
key := "dockerconfig"
- dockercfg,... | Don't error if the dockerconfig isn't present |
diff --git a/openquake/calculators/tests/ucerf_event_based_test.py b/openquake/calculators/tests/ucerf_event_based_test.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/tests/ucerf_event_based_test.py
+++ b/openquake/calculators/tests/ucerf_event_based_test.py
@@ -16,13 +16,16 @@
# You should have received ... | Added an explicit check on h5py.__version__ |
diff --git a/tika/tika.py b/tika/tika.py
index <HASH>..<HASH> 100755
--- a/tika/tika.py
+++ b/tika/tika.py
@@ -543,7 +543,6 @@ def callServer(verb, serverEndpoint, service, data, headers, verbose=Verbose, ti
effectiveRequestOptions.update(requestOptions)
resp = verbFn(serviceUrl, encodedData, **effectiveReq... | Remove closing on bytes
Actually as the callServer get's the reader from the parent, the parent should be responsible for closing it. If the caller needs to have the file opened less time it should manage the read itself and after that call callServer with bytes directly in my opinion. |
diff --git a/src/build.js b/src/build.js
index <HASH>..<HASH> 100755
--- a/src/build.js
+++ b/src/build.js
@@ -43,7 +43,7 @@ for (let type in db) {
);
}
- // Cache the hightest ranking type for this extension
+ // Cache the highest ranking type for this extension
if (keep === entry) byExtension... | Correct spelling mistake (#<I>) |
diff --git a/tangy-form-reducer.js b/tangy-form-reducer.js
index <HASH>..<HASH> 100644
--- a/tangy-form-reducer.js
+++ b/tangy-form-reducer.js
@@ -98,6 +98,7 @@ const tangyFormReducer = function (state = initialState, action) {
case 'UNLOCK':
return Object.assign({}, state, {
complete: false,
+ ... | Add TangyFormResponse.hasLocked property, set it when first submitting |
diff --git a/src/experi/run.py b/src/experi/run.py
index <HASH>..<HASH> 100644
--- a/src/experi/run.py
+++ b/src/experi/run.py
@@ -315,7 +315,7 @@ def run_pbs_jobs(
if prev_jobids:
# Continue to append all previous jobs to submit_cmd so subsequent jobs die along
# with the... | BUG Dependent jobs are separated by colon |
diff --git a/PHPCI/Plugin/PhpMessDetector.php b/PHPCI/Plugin/PhpMessDetector.php
index <HASH>..<HASH> 100755
--- a/PHPCI/Plugin/PhpMessDetector.php
+++ b/PHPCI/Plugin/PhpMessDetector.php
@@ -86,6 +86,11 @@ class PhpMessDetector implements \PHPCI\Plugin
$suffixes = ' --suffixes ' . implode(',', $this->suffi... | Updating PHPMD to enforce rules being an array. Fixes #<I> |
diff --git a/protempa-framework/src/main/java/org/protempa/QuerySession.java b/protempa-framework/src/main/java/org/protempa/QuerySession.java
index <HASH>..<HASH> 100644
--- a/protempa-framework/src/main/java/org/protempa/QuerySession.java
+++ b/protempa-framework/src/main/java/org/protempa/QuerySession.java
@@ -38,6 ... | Added two new methods, addPropositionToCache() and addPropositionsToCache(), to add Proposition objects to the cache for later retrieval. For example, the cache will be used when the getReferences() method is called to materialize Proposition objects using their UID. |
diff --git a/test/e2e/es_cluster_logging.go b/test/e2e/es_cluster_logging.go
index <HASH>..<HASH> 100644
--- a/test/e2e/es_cluster_logging.go
+++ b/test/e2e/es_cluster_logging.go
@@ -30,8 +30,7 @@ import (
. "github.com/onsi/gomega"
)
-// Flaky issue #17873
-var _ = Describe("Cluster level logging using Elasticsea... | mark Elasticsearch test as Feature |
diff --git a/lib/resque_cleaner/server.rb b/lib/resque_cleaner/server.rb
index <HASH>..<HASH> 100644
--- a/lib/resque_cleaner/server.rb
+++ b/lib/resque_cleaner/server.rb
@@ -1,3 +1,5 @@
+require 'yaml'
+
# Extends Resque Web Based UI.
# Structure has been borrowed from ResqueScheduler.
module ResqueCleaner | resque <I> seems requiring yaml |
diff --git a/intake/source/cache.py b/intake/source/cache.py
index <HASH>..<HASH> 100644
--- a/intake/source/cache.py
+++ b/intake/source/cache.py
@@ -270,7 +270,7 @@ class FileCache(BaseCache):
self._ensure_cache_dir()
subdir = self._hash(urlpath)
- files_in = open_files(urlpath, 'rb')
+ ... | Passing storage options to open_files for download. |
diff --git a/salt/modules/pacman.py b/salt/modules/pacman.py
index <HASH>..<HASH> 100644
--- a/salt/modules/pacman.py
+++ b/salt/modules/pacman.py
@@ -78,6 +78,14 @@ def latest_version(*names, **kwargs):
except (ValueError, IndexError):
pass
+ pkgs = {}
+
+ for name in names:
+ if n... | Return locally installed version if no newer is available |
diff --git a/moto/awslambda/models.py b/moto/awslambda/models.py
index <HASH>..<HASH> 100644
--- a/moto/awslambda/models.py
+++ b/moto/awslambda/models.py
@@ -115,7 +115,7 @@ class LambdaFunction(object):
#print "moto_lambda_debug: ", mycode
sys.stdout = codeOut
sys.stderr = codeE... | attmpt 3 not liking Python 3 very much at the moment |
diff --git a/superset/db_engine_specs/base.py b/superset/db_engine_specs/base.py
index <HASH>..<HASH> 100644
--- a/superset/db_engine_specs/base.py
+++ b/superset/db_engine_specs/base.py
@@ -1255,6 +1255,14 @@ class BaseEngineSpec: # pylint: disable=too-many-public-methods
)
@classmethod
+ def is_se... | feat: Add "is_select_query" method to base engine spec to make it possible to override it (#<I>) |
diff --git a/build.go b/build.go
index <HASH>..<HASH> 100644
--- a/build.go
+++ b/build.go
@@ -528,6 +528,9 @@ func ldflags() string {
b.WriteString(fmt.Sprintf(" -X main.commit=%s", getGitSha()))
b.WriteString(fmt.Sprintf(" -X main.buildstamp=%d", buildStamp()))
b.WriteString(fmt.Sprintf(" -X main.buildBranch=%s... | Build: Allow extending of LDFLAGS in build.go (#<I>)
Allow extending LDFALGS by setting LDFLAGS to be able to pass
-zrelro,-znow for Arch Linux packaging
to get full relro. |
diff --git a/simuvex/plugins/solver.py b/simuvex/plugins/solver.py
index <HASH>..<HASH> 100644
--- a/simuvex/plugins/solver.py
+++ b/simuvex/plugins/solver.py
@@ -259,6 +259,15 @@ class SimSolver(SimStatePlugin):
raise SimValueError("concretized %d values (%d required) in exactly_n" % (len(r), n))
... | Added an exactly_int() function to SimSolver. |
diff --git a/lib/chronic/repeater.rb b/lib/chronic/repeater.rb
index <HASH>..<HASH> 100644
--- a/lib/chronic/repeater.rb
+++ b/lib/chronic/repeater.rb
@@ -110,13 +110,10 @@ module Chronic
# returns the next occurance of this repeatable.
def next(pointer)
!@now.nil? || raise("Start point must be set bef... | these should never raise as a prior check is done against context |
diff --git a/fedora_messaging/tests/unit/test_cli.py b/fedora_messaging/tests/unit/test_cli.py
index <HASH>..<HASH> 100644
--- a/fedora_messaging/tests/unit/test_cli.py
+++ b/fedora_messaging/tests/unit/test_cli.py
@@ -486,7 +486,8 @@ class CallbackFromFilesytem(TestCase):
os.path.join(FIXTURES_DIR, "b... | Adjust to a message change in Python <I> |
diff --git a/core/src/test/java/org/hibernate/ogm/backendtck/queries/JpaQueriesTest.java b/core/src/test/java/org/hibernate/ogm/backendtck/queries/JpaQueriesTest.java
index <HASH>..<HASH> 100644
--- a/core/src/test/java/org/hibernate/ogm/backendtck/queries/JpaQueriesTest.java
+++ b/core/src/test/java/org/hibernate/ogm/... | OGM-<I> Make sure the JpaQueriesTest doesn't hide the real cause when failing to initialize |
diff --git a/tests/query/netinfo/test_base.py b/tests/query/netinfo/test_base.py
index <HASH>..<HASH> 100644
--- a/tests/query/netinfo/test_base.py
+++ b/tests/query/netinfo/test_base.py
@@ -26,7 +26,7 @@ Project link:
https://github.com/funilrys/PyFunceble
Project documentation:
- https://pyfunceble.readthe... | fixup! Introduction of the tests of the base of all netinfo interfaces. |
diff --git a/vagrant_box_defaults.rb b/vagrant_box_defaults.rb
index <HASH>..<HASH> 100644
--- a/vagrant_box_defaults.rb
+++ b/vagrant_box_defaults.rb
@@ -5,7 +5,7 @@ Vagrant.require_version ">= 2.2.0"
$SERVER_BOX = "cilium/ubuntu-dev"
$SERVER_VERSION= "185"
$NETNEXT_SERVER_BOX= "cilium/ubuntu-next"
-$NETNEXT_SERVER... | vagrant: bump bpf-next vagrant box version
Pull in latest BPF kernel tree from bpf-next which contains extended
bpf_{get,set}sockopt() helper support for sock_addr programs [0].
[0] <URL> |
diff --git a/Annis-web/src/main/webapp/javascript/annis/CorpusListWindow.js b/Annis-web/src/main/webapp/javascript/annis/CorpusListWindow.js
index <HASH>..<HASH> 100644
--- a/Annis-web/src/main/webapp/javascript/annis/CorpusListWindow.js
+++ b/Annis-web/src/main/webapp/javascript/annis/CorpusListWindow.js
@@ -105,7 +10... | - resize the CorpusListWindow according to the real size of the browser |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -20,6 +20,8 @@ import gui
version = gui.__version__
if sys.version_info > (3, ):
version += "-py3k"
+else:
+ version += "-py2x"
# append install on windows
if len(sys.argv) == 1 and sys.platform.startswith... | add -py2x to version in setup |
diff --git a/core/query.go b/core/query.go
index <HASH>..<HASH> 100644
--- a/core/query.go
+++ b/core/query.go
@@ -2,6 +2,7 @@ package core
import (
"sync"
+ "time"
"github.com/degdb/degdb/protocol"
"github.com/degdb/degdb/query"
@@ -54,9 +55,19 @@ func (s *server) ExecuteQuery(q *protocol.QueryRequest) ([]*... | Added timeout to unrooted queries |
diff --git a/lib/spork/run_strategy/forking.rb b/lib/spork/run_strategy/forking.rb
index <HASH>..<HASH> 100644
--- a/lib/spork/run_strategy/forking.rb
+++ b/lib/spork/run_strategy/forking.rb
@@ -20,6 +20,7 @@ class Spork::RunStrategy::Forking < Spork::RunStrategy
end
def preload
+ require test_framework.entr... | fixes regression where entry point was not being loaded |
diff --git a/staging/src/k8s.io/client-go/testing/actions.go b/staging/src/k8s.io/client-go/testing/actions.go
index <HASH>..<HASH> 100644
--- a/staging/src/k8s.io/client-go/testing/actions.go
+++ b/staging/src/k8s.io/client-go/testing/actions.go
@@ -439,8 +439,18 @@ func (a ActionImpl) GetSubresource() string {
retu... | Allow Action's Matches function to specify a subresource.
In other parts of the system (notably in RBAC rules), the "resource/subresource" notation is common to specify an explicit subresource. This makes this notation available to tests that use the `Matches` function on client actions as well.
Backwards compatibili... |
diff --git a/admin/lang.php b/admin/lang.php
index <HASH>..<HASH> 100644
--- a/admin/lang.php
+++ b/admin/lang.php
@@ -628,6 +628,9 @@ function lang_fix_value_before_save($value='') {
if ($CFG->lang != "zh_hk" and $CFG->lang != "zh_tw") { // Some MB languages include backslash bytes
$value = str_replace(... | Now sybase quotes are properly handled by the lang editor. Part of MDL-<I>
Merged from MOODLE_<I>_STABLE |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -47,7 +47,7 @@ ext_modules=[
if use_cython:
from Cython.Build import cythonize
try:
- ext_modules = cythonize(join('pybasicbayes','**','*.pyx'))
+ ext_modules = cythonize(os.path.join('pybasicbayes','*... | mark test_gammadirichlet as slow, fix os.path.join in setup.py |
diff --git a/builder/azure/arm/config.go b/builder/azure/arm/config.go
index <HASH>..<HASH> 100644
--- a/builder/azure/arm/config.go
+++ b/builder/azure/arm/config.go
@@ -787,6 +787,10 @@ func assertRequiredParametersSet(c *Config, errs *packer.MultiError) {
for _, rid := range c.UserAssignedManagedIdentities {
... | provide more helpful error message than the one returned by the client, without context |
diff --git a/system/src/Grav/Common/GPM/GPM.php b/system/src/Grav/Common/GPM/GPM.php
index <HASH>..<HASH> 100644
--- a/system/src/Grav/Common/GPM/GPM.php
+++ b/system/src/Grav/Common/GPM/GPM.php
@@ -323,13 +323,20 @@ class GPM extends Iterator
return $found;
}
- foreach ($this->getReposit... | Improve error when trying to install a plugin/theme from the command line and GPM is unreachable
Previously it listed four times `PHP Warning: Invalid argument
supplied for foreach()...`, now it fails with an error message |
diff --git a/core/src/main/java/com/orientechnologies/orient/core/config/OGlobalConfiguration.java b/core/src/main/java/com/orientechnologies/orient/core/config/OGlobalConfiguration.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/orientechnologies/orient/core/config/OGlobalConfiguration.java
+++ b/core/sr... | Setted timeout on lock at <I>secs |
diff --git a/lib/crawl.rb b/lib/crawl.rb
index <HASH>..<HASH> 100644
--- a/lib/crawl.rb
+++ b/lib/crawl.rb
@@ -90,10 +90,10 @@ module CobwebModule
if within_queue_limits?
document_links = ContentLinkParser.new(@options[:url], content.body, @options).all_links(:valid_schemes => [:http, :https])
... | fixed typo on document links and changed select! to select as it should not be descructive |
diff --git a/lib/Doctrine/MongoDB/EagerCursor.php b/lib/Doctrine/MongoDB/EagerCursor.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/MongoDB/EagerCursor.php
+++ b/lib/Doctrine/MongoDB/EagerCursor.php
@@ -154,11 +154,10 @@ class EagerCursor implements Iterator
*/
public function getSingleResult()
{
- ... | Use current() in EagerCursor::getSingleResult()
Older ODM versions depend on this behavior, as getSingleResult() is not extended with hydration logic (like current() is). |
diff --git a/extension/genepattern/static/resources/navigation.js b/extension/genepattern/static/resources/navigation.js
index <HASH>..<HASH> 100644
--- a/extension/genepattern/static/resources/navigation.js
+++ b/extension/genepattern/static/resources/navigation.js
@@ -856,10 +856,15 @@ GenePattern.notebook.buildMenu ... | GP-<I> - Fix for "send to existing cell" when the cell contains an older version of a module |
diff --git a/examples/python-guide/plot_example.py b/examples/python-guide/plot_example.py
index <HASH>..<HASH> 100644
--- a/examples/python-guide/plot_example.py
+++ b/examples/python-guide/plot_example.py
@@ -37,7 +37,7 @@ gbm = lgb.train(params,
lgb_train,
num_boost_round=100,
... | [python-package] f-string format updated in plot_example.py (#<I>)
* f-string format updated.
* space removed
* Update examples/python-guide/plot_example.py according to suggestion. |
diff --git a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesScanTests.java b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesScanTests.java
index <HASH>..<HASH> 100644
--- a/spring-boot-pro... | Polish "Add negative tests to ConfigurationPropertiesScanTests"
Closes gh-<I> |
diff --git a/lib/snapshot/runner.rb b/lib/snapshot/runner.rb
index <HASH>..<HASH> 100644
--- a/lib/snapshot/runner.rb
+++ b/lib/snapshot/runner.rb
@@ -46,7 +46,7 @@ module Snapshot
def config_launch_arguments
launch_arguments = Array(Snapshot.config[:launchArguments])
- if (launch_arguments.count == ... | fix rubocop violation: parens in if statement |
diff --git a/js/product.js b/js/product.js
index <HASH>..<HASH> 100644
--- a/js/product.js
+++ b/js/product.js
@@ -404,11 +404,11 @@ Aimeos.Product.Catalog = {
this.items[idx]['css'] = '';
- if(ids.indexOf(this.items[idx]['catalog.id']) !== -1) {
+ if(ids.indexOf(this.items[idx]['product.lists.site... | Allow assigning same category for different sites |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -9,5 +9,7 @@ extensions = [Extension("cyphi/*", ["cyphi/*.pyx"],
setup(
name="cyphi",
+ version="0.0.0",
+ description="A Cython library for computing integrated information",
ext_modules=cythonize(extension... | Add version and description to setup.py |
diff --git a/webbeans-ri/src/test/java/org/jboss/webbeans/test/EventBusTest.java b/webbeans-ri/src/test/java/org/jboss/webbeans/test/EventBusTest.java
index <HASH>..<HASH> 100644
--- a/webbeans-ri/src/test/java/org/jboss/webbeans/test/EventBusTest.java
+++ b/webbeans-ri/src/test/java/org/jboss/webbeans/test/EventBusTes... | CopyOnWriteArrayList broke remove operation, have to check...
git-svn-id: <URL> |
diff --git a/src/shared/transitions.js b/src/shared/transitions.js
index <HASH>..<HASH> 100644
--- a/src/shared/transitions.js
+++ b/src/shared/transitions.js
@@ -199,7 +199,7 @@ export var transitionManager = {
node.style.animation = node.style.animation
.split(', ')
.filter(function(anim) {
- return !/_... | only delete applicable transition animations - fixes #<I> |
diff --git a/src/AsynchronousJobs/Job.php b/src/AsynchronousJobs/Job.php
index <HASH>..<HASH> 100644
--- a/src/AsynchronousJobs/Job.php
+++ b/src/AsynchronousJobs/Job.php
@@ -54,7 +54,9 @@ abstract class Job
{
$data = array();
foreach (get_object_vars($this) as $key => $value) {
- $dat... | Variables of class with double "_" are now ignored during data transfer between job instance and main instance. |
diff --git a/src/Models/User.php b/src/Models/User.php
index <HASH>..<HASH> 100644
--- a/src/Models/User.php
+++ b/src/Models/User.php
@@ -1013,7 +1013,7 @@ class User extends Entry implements Authenticatable
}
/**
- * Change the password of the current user. This must be performed over SSL.
+ * Cha... | Updated docblock for TLS |
diff --git a/lib/svm_helper/selectors/forman.rb b/lib/svm_helper/selectors/forman.rb
index <HASH>..<HASH> 100644
--- a/lib/svm_helper/selectors/forman.rb
+++ b/lib/svm_helper/selectors/forman.rb
@@ -41,7 +41,8 @@ module Selector
features = all_words.reduce(Hash.new { |h, k| h[k] = [0,0] }) do |accumulator, bag|
... | only count a feature once per bag |
diff --git a/src/plugins/poster/poster.js b/src/plugins/poster/poster.js
index <HASH>..<HASH> 100644
--- a/src/plugins/poster/poster.js
+++ b/src/plugins/poster/poster.js
@@ -91,8 +91,10 @@ class PosterPlugin extends UIContainerPlugin {
}
clicked() {
- this.container.play()
- this.hidePlayButton()
+ if... | poster: avoid clicks on chromeless mode (close #<I>) |
diff --git a/core/commands/repo.go b/core/commands/repo.go
index <HASH>..<HASH> 100644
--- a/core/commands/repo.go
+++ b/core/commands/repo.go
@@ -102,9 +102,9 @@ var repoStatCmd = &cmds.Command{
ShortDescription: `
'ipfs repo stat' is a plumbing command that will scan the local
set of stored objects and print rep... | Small syntax changes to repo stat man
License: MIT |
diff --git a/djoauth2/models.py b/djoauth2/models.py
index <HASH>..<HASH> 100644
--- a/djoauth2/models.py
+++ b/djoauth2/models.py
@@ -18,11 +18,7 @@ class Client(models.Model):
user = models.ForeignKey(User)
name = models.CharField(max_length=256)
description = models.TextField(null=True, blank=True)
- # Fro... | Add a field to hold a URL for a Client's logo or other image. |
diff --git a/brozzler/js-templates/facebook.js b/brozzler/js-templates/facebook.js
index <HASH>..<HASH> 100644
--- a/brozzler/js-templates/facebook.js
+++ b/brozzler/js-templates/facebook.js
@@ -35,7 +35,7 @@ var umbraAboveBelowOrOnScreen = function(e) {
}
// comments - 'a.UFIPagerLink > span, a.UFIPagerLink, span.... | skip a.uiMorePagerPrimary after all |
diff --git a/Kwf/Form/Field/SuperBoxSelect.php b/Kwf/Form/Field/SuperBoxSelect.php
index <HASH>..<HASH> 100644
--- a/Kwf/Form/Field/SuperBoxSelect.php
+++ b/Kwf/Form/Field/SuperBoxSelect.php
@@ -33,6 +33,7 @@ class Kwf_Form_Field_SuperBoxSelect extends Kwf_Form_Field_ComboBox
private function _getIdsFromPostData... | fix saving of SuperBoxSelect without selected entries |
diff --git a/monitor/services/src/main/java/org/datacleaner/monitor/server/media/FileUploadServlet.java b/monitor/services/src/main/java/org/datacleaner/monitor/server/media/FileUploadServlet.java
index <HASH>..<HASH> 100644
--- a/monitor/services/src/main/java/org/datacleaner/monitor/server/media/FileUploadServlet.jav... | #<I> Monitor's directory for temporary uploaded files was not used when it already existed. |
diff --git a/src/frontend/org/voltdb/export/ExportDataSource.java b/src/frontend/org/voltdb/export/ExportDataSource.java
index <HASH>..<HASH> 100644
--- a/src/frontend/org/voltdb/export/ExportDataSource.java
+++ b/src/frontend/org/voltdb/export/ExportDataSource.java
@@ -728,7 +728,9 @@ public class ExportDataSource imp... | ENG-<I>: do not report being ACTIVE if there is no client configured (#<I>) |
diff --git a/lib/bbcloud/config.rb b/lib/bbcloud/config.rb
index <HASH>..<HASH> 100644
--- a/lib/bbcloud/config.rb
+++ b/lib/bbcloud/config.rb
@@ -96,7 +96,7 @@ class BBConfig
end
def to_fog
- raise Ini::Error, "No api client configured" if clients.empty?
+ raise Ini::Error, "No api client configured" unl... | Fix ugly error when no command is called with no config. Closes #<I> |
diff --git a/activerecord/lib/active_record/relation/query_methods.rb b/activerecord/lib/active_record/relation/query_methods.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/relation/query_methods.rb
+++ b/activerecord/lib/active_record/relation/query_methods.rb
@@ -100,6 +100,14 @@ module ActiveRec... | Improve ActiveRecord::QueryMethods#includes docs
It's not immediately clear whether you can pass in multiple relations or
not. After going through the code a bit, I saw that the arguments are
just appended to an array. Also, added nested relations example.
[ci skip] |
diff --git a/lib/show-invisibles.js b/lib/show-invisibles.js
index <HASH>..<HASH> 100644
--- a/lib/show-invisibles.js
+++ b/lib/show-invisibles.js
@@ -45,6 +45,8 @@
peek = stream.peek() === ' ';
}
+
+ ... | feature(show-invisibles) show new lines |
diff --git a/openquake/calculators/base.py b/openquake/calculators/base.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/base.py
+++ b/openquake/calculators/base.py
@@ -472,7 +472,6 @@ class HazardCalculator(BaseCalculator):
self.exposure = readinput.get_exposure(self.oqparam)
arefs ... | Removed a flush [skip CI]
Former-commit-id: cd<I>d<I>b<I>d8fe8ff<I>f<I>f<I>da<I>fe1ced |
diff --git a/lark/load_grammar.py b/lark/load_grammar.py
index <HASH>..<HASH> 100644
--- a/lark/load_grammar.py
+++ b/lark/load_grammar.py
@@ -351,7 +351,10 @@ def _fix_escaping(s):
for n in i:
w += n
if n == '\\':
- n2 = next(i)
+ try:
+ n2 = next(i)
+ ... | Better error for literal with bad escaping (Issue #<I>) |
diff --git a/lib/apiture/request_context.rb b/lib/apiture/request_context.rb
index <HASH>..<HASH> 100644
--- a/lib/apiture/request_context.rb
+++ b/lib/apiture/request_context.rb
@@ -86,7 +86,7 @@ module Apiture
content_types.each do |type|
content_type_mappings.each do |(parser, type_match)|
... | Preserve unparsed response body |
diff --git a/source/js/date/VCO.DateUtil.js b/source/js/date/VCO.DateUtil.js
index <HASH>..<HASH> 100644
--- a/source/js/date/VCO.DateUtil.js
+++ b/source/js/date/VCO.DateUtil.js
@@ -10,8 +10,8 @@ VCO.DateUtil = {
sortByDate: function(array) { // only for use with slide data objects
array.sort(function(a,b){
- ... | refactor sortByDate to use date comparison (will help with #2) |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ satdoc = dedent(sgp4.model.Satellite.__doc__.split('\n', 1)[1])
long_description = long_description.replace('entry.', 'entry.' + satdoc)
setup(name = 'sgp4',
- version = '1.3',
+ version = '1.4',
... | Describe improved parser in changelog; declare <I> |
diff --git a/lib/keepassx/database/dumper.rb b/lib/keepassx/database/dumper.rb
index <HASH>..<HASH> 100644
--- a/lib/keepassx/database/dumper.rb
+++ b/lib/keepassx/database/dumper.rb
@@ -34,7 +34,9 @@ module Keepassx
raise ArgumentError, 'File path is not set' if new_path.nil?
raise ArgumentError, 'Pa... | Be sure to use binary mode when writing DB file |
diff --git a/mimes.php b/mimes.php
index <HASH>..<HASH> 100644
--- a/mimes.php
+++ b/mimes.php
@@ -618,6 +618,7 @@ return [
"pfm" => "application/x-font-type1",
"afm" => "application/x-font-type1",
"woff" => "application/font-woff",
+ "woff2" => "application/font-woff2",
"arc" => "application/x-f... | Add woff2 missing mime type |
diff --git a/lib/google_distance_matrix/client_cache.rb b/lib/google_distance_matrix/client_cache.rb
index <HASH>..<HASH> 100644
--- a/lib/google_distance_matrix/client_cache.rb
+++ b/lib/google_distance_matrix/client_cache.rb
@@ -2,13 +2,17 @@ module GoogleDistanceMatrix
class ClientCache
attr_reader :client, ... | ClientCache.key. Centralise knowledge on how to generate key. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -27,6 +27,7 @@ setup(name='switchboard',
'pylibmc >= 1.2',
'decorator',
],
+ zip_safe=False,
tests_require=[
'nose >= 0.11',
'mock >= 1.0', | [#2] I wonder if this might cause the slowdown? |
diff --git a/server.go b/server.go
index <HASH>..<HASH> 100644
--- a/server.go
+++ b/server.go
@@ -107,10 +107,16 @@ func Run(address string, port int) {
MainRouter = NewRouter(routePath)
MainTemplateLoader = NewTemplateLoader(ViewsPath, RevelTemplatePath)
+ // If DEV mode, create a watcher for templates and rout... | Bug fix: In Prod mode, call Refresh() on router/templateloader to initialize them. |
diff --git a/phypno/scroll_data.py b/phypno/scroll_data.py
index <HASH>..<HASH> 100644
--- a/phypno/scroll_data.py
+++ b/phypno/scroll_data.py
@@ -45,7 +45,7 @@ DATASET_EXAMPLE = None
# DATASET_EXAMPLE = '/home/gio/tools/phypno/test/data/sample.edf'
# DATASET_EXAMPLE = '/home/gio/Copy/presentations_x/video/VideoFileF... | temporary, use edf as example |
diff --git a/ubersmith/calls/client.py b/ubersmith/calls/client.py
index <HASH>..<HASH> 100644
--- a/ubersmith/calls/client.py
+++ b/ubersmith/calls/client.py
@@ -66,7 +66,7 @@ class InvoiceCountCall(BaseCall):
self.cleaned = int(self.cleaned)
-class CreditListCall(BaseCall):
+class CreditListCall(GroupCal... | Changed client.credit_list call to group call |
diff --git a/lib/sprite_factory/runner.rb b/lib/sprite_factory/runner.rb
index <HASH>..<HASH> 100644
--- a/lib/sprite_factory/runner.rb
+++ b/lib/sprite_factory/runner.rb
@@ -183,12 +183,7 @@ module SpriteFactory
end
def file_contains_exclusion_name?(file)
- result = false
- exclusion_array.each d... | Refactor file_contains_exclusion_name? method to make use of ruby enumerable class methods |
diff --git a/Model/Queue.php b/Model/Queue.php
index <HASH>..<HASH> 100644
--- a/Model/Queue.php
+++ b/Model/Queue.php
@@ -194,12 +194,18 @@ class Queue implements QueueInterface
$response = $this->sqs->getClient()->receiveMessage($arguments);
$service = $this;
- return array_map(function ($d... | Fixed empty queue issue in fetching message.
Issue #4 |
diff --git a/routing.go b/routing.go
index <HASH>..<HASH> 100644
--- a/routing.go
+++ b/routing.go
@@ -509,12 +509,13 @@ func (dht *IpfsDHT) FindProviders(ctx context.Context, c cid.Cid) ([]peer.AddrIn
// Peers will be returned on the channel as soon as they are found, even before
// the search query completes.
func... | fix: return a closed channel from FindProvidersAsync when providers are disabled. |
diff --git a/pyatv/mrp/connection.py b/pyatv/mrp/connection.py
index <HASH>..<HASH> 100644
--- a/pyatv/mrp/connection.py
+++ b/pyatv/mrp/connection.py
@@ -49,7 +49,7 @@ class MrpConnection(
"""Device connection was dropped."""
_LOGGER.debug("%s Disconnected from device: %s", self._log_str, exc)
... | mrp: Disable some type checking
Temporary fix due to StateProducer not supporting type hints. |
diff --git a/pubnubsubhandler.py b/pubnubsubhandler.py
index <HASH>..<HASH> 100644
--- a/pubnubsubhandler.py
+++ b/pubnubsubhandler.py
@@ -42,7 +42,7 @@ class PubNubSubscriptionHandler():
"""
self._sub_key = sub_key
self._pnconfig = PNConfiguration()
- self._pnconfig.reconnection_polic... | Corrected pubnub reconnect policy |
diff --git a/resource_aws_eip.go b/resource_aws_eip.go
index <HASH>..<HASH> 100644
--- a/resource_aws_eip.go
+++ b/resource_aws_eip.go
@@ -163,6 +163,11 @@ func resourceAwsEipRead(d *schema.ResourceData, meta interface{}) error {
describeAddresses, err := ec2conn.Addresses(publicIps, assocIds, nil)
if err != nil ... | providers/aws: check for non-exist on refresh |
diff --git a/openquake/hazardlib/calc/filters.py b/openquake/hazardlib/calc/filters.py
index <HASH>..<HASH> 100644
--- a/openquake/hazardlib/calc/filters.py
+++ b/openquake/hazardlib/calc/filters.py
@@ -411,7 +411,7 @@ class SourceFilter(object):
elif len(indices):
src.indices = in... | Improved a comment [skip CI] |
diff --git a/bika/lims/browser/client.py b/bika/lims/browser/client.py
index <HASH>..<HASH> 100644
--- a/bika/lims/browser/client.py
+++ b/bika/lims/browser/client.py
@@ -106,8 +106,8 @@ class ClientWorkflowAction(AnalysisRequestWorkflowAction):
if Sampler and DateSampled:
workflow... | Fixed indentation error which allowed Sampling without DateSampled being set |
diff --git a/lib/searchlogic/named_scopes/conditions.rb b/lib/searchlogic/named_scopes/conditions.rb
index <HASH>..<HASH> 100644
--- a/lib/searchlogic/named_scopes/conditions.rb
+++ b/lib/searchlogic/named_scopes/conditions.rb
@@ -50,7 +50,7 @@ module Searchlogic
end
CONDITIONS[:equals_any] = COND... | fix typo, setting does_not_equal_any conditions to equals_any conditions |
diff --git a/lib/github_cli/command.rb b/lib/github_cli/command.rb
index <HASH>..<HASH> 100644
--- a/lib/github_cli/command.rb
+++ b/lib/github_cli/command.rb
@@ -29,9 +29,15 @@ module GithubCLI
}
end
- map "ls" => :list,
- "all" => :list,
- "del" => :delete
+ ALIASES = {
+ "ls" ... | Add usefull aliases for common commands. |
diff --git a/osmdroid-android/src/main/java/org/osmdroid/tileprovider/modules/MapTileModuleProviderBase.java b/osmdroid-android/src/main/java/org/osmdroid/tileprovider/modules/MapTileModuleProviderBase.java
index <HASH>..<HASH> 100644
--- a/osmdroid-android/src/main/java/org/osmdroid/tileprovider/modules/MapTileModuleP... | Fix for "stuck" tiles never loading due to old tiles being dropped rather than being reported as failed requests. Fixes issue <I>. |
diff --git a/src/TestCase.php b/src/TestCase.php
index <HASH>..<HASH> 100644
--- a/src/TestCase.php
+++ b/src/TestCase.php
@@ -108,19 +108,30 @@ abstract class TestCase extends FoundationTestCase
protected function createBrowsersFor(Closure $callback)
{
if (count(static::$browsers) === 0) {
- ... | Add the possibility to extend the browser class. |
diff --git a/src/com/google/javascript/jscomp/ProcessCommonJSModules.java b/src/com/google/javascript/jscomp/ProcessCommonJSModules.java
index <HASH>..<HASH> 100644
--- a/src/com/google/javascript/jscomp/ProcessCommonJSModules.java
+++ b/src/com/google/javascript/jscomp/ProcessCommonJSModules.java
@@ -527,7 +527,8 @@ p... | Use && for boolean logic instead of &
I was surprised to find Java allows '&' and I think it even does the right thing, but it's unusual.
-------------
Created by MOE: <URL> |
diff --git a/pkg/image/controller/trigger/image_trigger_controller_test.go b/pkg/image/controller/trigger/image_trigger_controller_test.go
index <HASH>..<HASH> 100644
--- a/pkg/image/controller/trigger/image_trigger_controller_test.go
+++ b/pkg/image/controller/trigger/image_trigger_controller_test.go
@@ -958,7 +958,7 ... | Image trigger test was mutating the wrong object |
diff --git a/misc/plugin/amp.rb b/misc/plugin/amp.rb
index <HASH>..<HASH> 100644
--- a/misc/plugin/amp.rb
+++ b/misc/plugin/amp.rb
@@ -15,7 +15,8 @@ end
add_content_proc('amp') do |date|
diary = @diaries[date]
- ERB.new(File.read("views/amp.rhtml")).result(binding)
+ template = File.read(File.join(TDiary::root,... | amp.rb: fix bug, plugin does not work in gem mode |
diff --git a/src/Qcloud/Cos/ResultTransformer.php b/src/Qcloud/Cos/ResultTransformer.php
index <HASH>..<HASH> 100644
--- a/src/Qcloud/Cos/ResultTransformer.php
+++ b/src/Qcloud/Cos/ResultTransformer.php
@@ -33,7 +33,15 @@ class ResultTransformer {
if ($action == "GetObject") {
if (isset($command['... | fix getObject with saveas (#<I>) |
diff --git a/lib/apnotic/version.rb b/lib/apnotic/version.rb
index <HASH>..<HASH> 100644
--- a/lib/apnotic/version.rb
+++ b/lib/apnotic/version.rb
@@ -1,3 +1,3 @@
module Apnotic
- VERSION = '1.6.1'.freeze
+ VERSION = '1.7.0'.freeze
end | Bump to <I>. |
diff --git a/lib/SimpleSAML/Utilities.php b/lib/SimpleSAML/Utilities.php
index <HASH>..<HASH> 100644
--- a/lib/SimpleSAML/Utilities.php
+++ b/lib/SimpleSAML/Utilities.php
@@ -15,7 +15,15 @@ class SimpleSAML_Utilities {
*/
public static function getSelfHost() {
- $currenthost = $_SERVER['HTTP_HOST'];
+ if (arr... | Fix code for determining the current hostname. |
diff --git a/test/bitgo/keyutil.js b/test/bitgo/keyutil.js
index <HASH>..<HASH> 100644
--- a/test/bitgo/keyutil.js
+++ b/test/bitgo/keyutil.js
@@ -29,6 +29,12 @@ describe('privateKeyBufferFromECPair', function () {
assert.strictEqual(privateKeyBufferFromECPair(keyPair).length, 32)
assert.strictEqual(privateKe... | Add test for privateKeyBufferFromECPair
Try to bump up coverage above <I>% again. |
diff --git a/docker/docker_lifecycle_test.go b/docker/docker_lifecycle_test.go
index <HASH>..<HASH> 100644
--- a/docker/docker_lifecycle_test.go
+++ b/docker/docker_lifecycle_test.go
@@ -107,12 +107,12 @@ var _ = Describe(deaUnsupportedTag+"Docker Application Lifecycle", func() {
Eventually(cf.Cf(
"set-env",... | Add DEFAULT_TIMEOUT to Eventually assertions in docker tests |
diff --git a/galpy/actionAngle_src/actionAngle.py b/galpy/actionAngle_src/actionAngle.py
index <HASH>..<HASH> 100644
--- a/galpy/actionAngle_src/actionAngle.py
+++ b/galpy/actionAngle_src/actionAngle.py
@@ -78,9 +78,6 @@ class actionAngle:
2) numpy.ndarray: [N] phase-space values for N objects
- ... | yet another doc fix in actionAngle inputs |
diff --git a/pysat/_meta.py b/pysat/_meta.py
index <HASH>..<HASH> 100644
--- a/pysat/_meta.py
+++ b/pysat/_meta.py
@@ -746,13 +746,6 @@ class Meta(object):
for i in self.ho_data:
yield i
- def keypairs_ho(self):
- """Yields keypairs for higher order metadata, (key1, attribute1) """
- ... | Removed function I not tested and not yet used. Not needed. |
diff --git a/core/src/main/java/com/google/errorprone/refactors/emptyifstatement/EmptyIfStatement.java b/core/src/main/java/com/google/errorprone/refactors/emptyifstatement/EmptyIfStatement.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/google/errorprone/refactors/emptyifstatement/EmptyIfStatement.java
+... | Fixed EmptyIfStatement.Search to correctly pass path in VisitorState to refactor method |
diff --git a/lib/chef/resource/hostname.rb b/lib/chef/resource/hostname.rb
index <HASH>..<HASH> 100644
--- a/lib/chef/resource/hostname.rb
+++ b/lib/chef/resource/hostname.rb
@@ -53,7 +53,7 @@ class Chef
end
```
- **Change the hostname of a Windows, Domain-joined node (new in 17.3)**:
+ ... | Fix incorrect versions this resource was updated in
I was off by one when I added these |
diff --git a/Twig/Extensions/IsLoadedExtension.php b/Twig/Extensions/IsLoadedExtension.php
index <HASH>..<HASH> 100644
--- a/Twig/Extensions/IsLoadedExtension.php
+++ b/Twig/Extensions/IsLoadedExtension.php
@@ -2,6 +2,8 @@
namespace Librinfo\CoreBundle\Twig\Extensions;
+use Twig_Environment;
+
class IsLoadedExten... | fixed miss use of twig->hasExtension replaced by getFunction($name) |
diff --git a/public/app/features/dashboard/dashboardNavCtrl.js b/public/app/features/dashboard/dashboardNavCtrl.js
index <HASH>..<HASH> 100644
--- a/public/app/features/dashboard/dashboardNavCtrl.js
+++ b/public/app/features/dashboard/dashboardNavCtrl.js
@@ -52,6 +52,10 @@ function (angular, _) {
};
$scope.... | Using CTRL+S should not work when dashboardMeta.canSave is false, #<I> |
diff --git a/fireplace/player.py b/fireplace/player.py
index <HASH>..<HASH> 100644
--- a/fireplace/player.py
+++ b/fireplace/player.py
@@ -32,7 +32,7 @@ class Player(Entity):
return self.name
def __repr__(self):
- return "%s(name=%r, deck=%r)" % (self.__class__.__name__, self.name, self.deck)
+ return "%s(name... | Give Player a better repr() |
diff --git a/test/ember/precompiler_test.rb b/test/ember/precompiler_test.rb
index <HASH>..<HASH> 100644
--- a/test/ember/precompiler_test.rb
+++ b/test/ember/precompiler_test.rb
@@ -4,7 +4,7 @@ class EmberPrecompilerTest < MiniTest::Unit::TestCase
def test_calls_the_ember_handlebars_precompiler
result = compil... | Fix for ember-source <I>
The handlebars AST seems to be changed. |
diff --git a/blueprints/ember-frost-bunsen/index.js b/blueprints/ember-frost-bunsen/index.js
index <HASH>..<HASH> 100644
--- a/blueprints/ember-frost-bunsen/index.js
+++ b/blueprints/ember-frost-bunsen/index.js
@@ -1,16 +1,12 @@
-const addBunsenStyleImport = function (project) {
- const isAddon = project.isEmberCLIAdd... | change approach of setting style import back to previous non exported function |
diff --git a/bin/start.js b/bin/start.js
index <HASH>..<HASH> 100755
--- a/bin/start.js
+++ b/bin/start.js
@@ -2,7 +2,7 @@
var cp = require('child_process')
-var BIN = '/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary'
+var BIN = process.platform=='linux' ? '/bin/google-chrome' : '/Applic... | Improve the accessibility of the project for linux users. |
diff --git a/lib/finite_machine/state_parser.rb b/lib/finite_machine/state_parser.rb
index <HASH>..<HASH> 100644
--- a/lib/finite_machine/state_parser.rb
+++ b/lib/finite_machine/state_parser.rb
@@ -21,18 +21,21 @@ module FiniteMachine
# Extract states from attributes
#
+ # @param [Proc] block
+ #
... | Change to iterate transtion when parsing. |
diff --git a/code/libraries/joomlatools/component/koowa/template/helper/actionbar.php b/code/libraries/joomlatools/component/koowa/template/helper/actionbar.php
index <HASH>..<HASH> 100644
--- a/code/libraries/joomlatools/component/koowa/template/helper/actionbar.php
+++ b/code/libraries/joomlatools/component/koowa/tem... | re #<I>: Use k-toolbar-buttons as well |
diff --git a/scripts/build_wikidata.js b/scripts/build_wikidata.js
index <HASH>..<HASH> 100644
--- a/scripts/build_wikidata.js
+++ b/scripts/build_wikidata.js
@@ -308,9 +308,10 @@ function processEntities(result) {
// P18 - Image (use this for flags)
imageFile = getClaimValue(entity, 'P18');
} else {... | Fallback to fetch P<I> Coat of Arms image
(closes #<I>) |
diff --git a/src/location-factory.js b/src/location-factory.js
index <HASH>..<HASH> 100644
--- a/src/location-factory.js
+++ b/src/location-factory.js
@@ -10,8 +10,8 @@ const LocationFactory = function(_window) {
const Location = {};
- Location.Navigate = function(path, pushState) {
- if (history && pushStat... | Remove "pushState" option from Location.Navigate
This was a holdover from when "navigate" was being abused to notify
subscribers for window.onpopstate. Since subscriber notification had
been factored out appropriate, this option is no longer necessary to
support onpopstate, without introducing incorrect entries in the... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.