hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
28516c792990128efe0a630788ce3568293fe8a1
diff --git a/libkbfs/init.go b/libkbfs/init.go index <HASH>..<HASH> 100644 --- a/libkbfs/init.go +++ b/libkbfs/init.go @@ -236,7 +236,9 @@ func AddFlags(flags *flag.FlagSet, ctx Context) *InitParams { int(defaultParams.BGFlushDirOpBatchSize), "The number of unflushed directory operations in a TLF that will "+ ...
init: clarify -sync-batch-size help output To say it only works if you're already logged in when starting KBFS. Suggested by songgao. Issue: #<I>
keybase_client
train
d2aaaa7aeaa7486dc5e5c3328f09a70325643672
diff --git a/lib/ronin/remote_file.rb b/lib/ronin/remote_file.rb index <HASH>..<HASH> 100644 --- a/lib/ronin/remote_file.rb +++ b/lib/ronin/remote_file.rb @@ -24,6 +24,7 @@ require 'ronin/extensions/file' require 'dm-timestamps' require 'dm-tags' +require 'fileutils' module Ronin class RemoteFile @@ -105,7 +1...
Make sure the destination directory for RemoteFiles exists before downloading.
ronin-ruby_ronin
train
73278db29107dc29f348e5ed1728aef4168ab4ae
diff --git a/resource/provider.go b/resource/provider.go index <HASH>..<HASH> 100644 --- a/resource/provider.go +++ b/resource/provider.go @@ -16,6 +16,6 @@ type TranslatedProvider struct { JoinLocations func(base, rel string) string } -func (me *TranslatedProvider) NewInstance(rel string) (Instance, error) { +fun...
resource.TranslatedProvider doesn't require pointer receiver
anacrolix_missinggo
train
131922b55d65f09f7a97ff74113ba91ba89c6774
diff --git a/cli/lib/cli/job_builder.rb b/cli/lib/cli/job_builder.rb index <HASH>..<HASH> 100644 --- a/cli/lib/cli/job_builder.rb +++ b/cli/lib/cli/job_builder.rb @@ -106,7 +106,11 @@ module Bosh::Cli copied = 0 templates.each do |template| - FileUtils.cp(File.join(@templates_dir, template), File...
CLI <I>: allow subdirectories for job templates. Previously all job templates were copied into job "templates" directory, not respecting original files directory structure. This doesn't work for microcloud though, so now we preserve directory structure. Change-Id: Ib<I>f3aa<I>f7e<I>af5d<I>fe1bcad<I>daf<I>b
cloudfoundry_bosh
train
5b67a683870c76b39b29bad3ee91a1355bc0c3be
diff --git a/lib/client.js b/lib/client.js index <HASH>..<HASH> 100644 --- a/lib/client.js +++ b/lib/client.js @@ -396,7 +396,7 @@ class Parser extends HTTPParser { [HTTPParser.kOnTimeout] () { if (this.statusCode) { // https://github.com/nodejs/node/pull/34578 - this[HTTPParser.kOnExecute](null) + ...
fix: don't call onExecute in timeout workaround
mcollina_undici
train
082876c600e5ad6349108e5a2cf546049efdccc8
diff --git a/misc/gce/create.go b/misc/gce/create.go index <HASH>..<HASH> 100644 --- a/misc/gce/create.go +++ b/misc/gce/create.go @@ -142,8 +142,9 @@ coreos: } tr.Token = token - computeService, _ := compute.New(&http.Client{Transport: tr}) - storageService, _ := storage.New(&http.Client{Transport: tr}) + oauthC...
gce: don't make http client twice. doesn't really matter, but. Change-Id: I<I>be<I>e<I>c<I>ba<I>ef1a
perkeep_perkeep
train
9fc04344619f7982f3e5e91874f69ffb0e37821e
diff --git a/storageAccess.js b/storageAccess.js index <HASH>..<HASH> 100644 --- a/storageAccess.js +++ b/storageAccess.js @@ -28,11 +28,11 @@ export async function requestStorageAccess() { // Firefox or Safari if(typeof document.requestStorageAccess === 'function') { await document.requestStorageAcces...
Only check for cookie existence when storage access API is present.
digitalbazaar_web-request-mediator
train
50024e4603a9acc6d0cd2bd04c9cd35b365b00d2
diff --git a/src/lib/generateRules.js b/src/lib/generateRules.js index <HASH>..<HASH> 100644 --- a/src/lib/generateRules.js +++ b/src/lib/generateRules.js @@ -458,7 +458,7 @@ function* resolveMatches(candidate, context, original = candidate) { if (flagEnabled(context.tailwindConfig, 'variantGrouping')) { if (cl...
Fix grouping using different variant types inside nested groups
tailwindcss_tailwindcss
train
88d5a2e78d6f8e27b6bf963d928325747bc6f28a
diff --git a/src/Event/Events/ContentTypes.php b/src/Event/Events/ContentTypes.php index <HASH>..<HASH> 100644 --- a/src/Event/Events/ContentTypes.php +++ b/src/Event/Events/ContentTypes.php @@ -28,7 +28,6 @@ class ContentTypes return [ BookingInfoUpdated::class => 'application/vnd.cultuurnet.udb3...
III-<I>: Remove Collaboration data handling from history read model & content type mapping
cultuurnet_udb3-php
train
85bd3c970fdd7b6fb3c5ccb19a93e74754c6cba4
diff --git a/src/App.js b/src/App.js index <HASH>..<HASH> 100644 --- a/src/App.js +++ b/src/App.js @@ -62,3 +62,6 @@ class App extends Component { export default App; // <Chessdiagram pieces={pieces} squareSize={34}/> + + // "#2492FF" : "#005EBB"; // blue + // "#ff20ff" : "#7f107f" // pink \ No newline at end of ...
tidied-up code
jniemann66_react-chessdiagram
train
c543554710cd0198af38f2b510d4bf1d713861aa
diff --git a/dipper/models/Dataset.py b/dipper/models/Dataset.py index <HASH>..<HASH> 100644 --- a/dipper/models/Dataset.py +++ b/dipper/models/Dataset.py @@ -401,6 +401,8 @@ class Dataset: LOG.debug(f"label: {label}\npartition id: {partition}") self.graph.addTriple(self.distribution_l...
Removed superfluous test, and added label to class counts to indicate the predicate used in query
monarch-initiative_dipper
train
d1b47f7e371288714e322d51f8836637c1831a2c
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( url='http://github.com/praekelt/django-export', packages=find_packages(), install_requires=[ - 'django-object-tools>=1.9', + 'django-object-tools', 'pyyaml>=3.11' ...
Updated version dependency on django-object-tools
praekelt_django-export
train
b92b544a91e70c91d9db888dfc9216197329df30
diff --git a/signer/local/local.go b/signer/local/local.go index <HASH>..<HASH> 100644 --- a/signer/local/local.go +++ b/signer/local/local.go @@ -388,12 +388,17 @@ func (s *Signer) Sign(req signer.SignRequest) (cert []byte, err error) { return nil, err } + // Get the AKI from signedCert. This is required to su...
Store AKI in CertDB with Go <I> (#<I>) Go <I> modified the x<I>.CreateCertificate function to no longer update the AuthorityKeyId on the template passed in. cfssl signer relied on this behavior in order to get the AKI and save it in certdb. This change now parses the signed cert and uses the AKI from it,
cloudflare_cfssl
train
8538cb9ee202d4c77a9c60d389ccb672f99f5e84
diff --git a/tests/testing/YamlFixtureTest.php b/tests/testing/YamlFixtureTest.php index <HASH>..<HASH> 100644 --- a/tests/testing/YamlFixtureTest.php +++ b/tests/testing/YamlFixtureTest.php @@ -38,23 +38,24 @@ class YamlFixtureTest extends SapphireTest { } public function testSQLInsert() { + $factory = new Fix...
Removed deprecated YamlFixture->saveIntoDatabase() usage
silverstripe_silverstripe-framework
train
e56b08d43f5b2f7a6fa7bb3ef04a69c291e5614e
diff --git a/test/test_collection.py b/test/test_collection.py index <HASH>..<HASH> 100644 --- a/test/test_collection.py +++ b/test/test_collection.py @@ -416,8 +416,9 @@ class TestCollection(unittest.TestCase): "coordinates": [[[40,5], [40,6], [41,6], [41,5], [40,5]]]} query = {"geo": {"$with...
Fix test_index_2dsphere for latest MongoDB <I> shows 'S2Cursor: BtreeCursor geo_2dsphere multi' in the explain output, not just 'S2Cursor'
mongodb_mongo-python-driver
train
6c0eab0cd48651f425c6569ba39eab24c6349de1
diff --git a/src/frontend/org/voltdb/dtxn/DtxnInitiatorMailbox.java b/src/frontend/org/voltdb/dtxn/DtxnInitiatorMailbox.java index <HASH>..<HASH> 100644 --- a/src/frontend/org/voltdb/dtxn/DtxnInitiatorMailbox.java +++ b/src/frontend/org/voltdb/dtxn/DtxnInitiatorMailbox.java @@ -17,6 +17,7 @@ package org.voltdb.dtxn;...
DtxnInitiatorMailbox: - clean up an enqueue site - Fix up a missed int->long conversion
VoltDB_voltdb
train
80f1117a6c9fdb391d59b1447f55912d7b203e80
diff --git a/analysis/token_filters/camelcase_filter/camelcase_filter.go b/analysis/token_filters/camelcase_filter/camelcase_filter.go index <HASH>..<HASH> 100644 --- a/analysis/token_filters/camelcase_filter/camelcase_filter.go +++ b/analysis/token_filters/camelcase_filter/camelcase_filter.go @@ -1,3 +1,12 @@ +// Cop...
add couchbase copyright and license now that CLA has been signed
blevesearch_bleve
train
369c3d721d872d5ac184095573c922ba77f6b67c
diff --git a/flink-core/src/test/java/org/apache/flink/testutils/TestingUtils.java b/flink-core/src/test/java/org/apache/flink/testutils/TestingUtils.java index <HASH>..<HASH> 100644 --- a/flink-core/src/test/java/org/apache/flink/testutils/TestingUtils.java +++ b/flink-core/src/test/java/org/apache/flink/testutils/Tes...
[hotfix] Add TestingUtils.infiniteDuration TestingUtils.infiniteDuration returns a Duration of one year. This should be long enoug to simulate an infinite Duration.
apache_flink
train
655b7c1f7eea6bf4f56aa237b16c901d2e3a80da
diff --git a/lxd/daemon.go b/lxd/daemon.go index <HASH>..<HASH> 100644 --- a/lxd/daemon.go +++ b/lxd/daemon.go @@ -398,7 +398,7 @@ func (d *Daemon) State() *state.State { // If the daemon is shutting down, the context will be cancelled. // This information will be available throughout the code, and can be used to p...
lxd/state: Updates NewState to have a serverCert and updateCertificateCache arg
lxc_lxd
train
e14e0a42a670b1fc4b09d895cabf5cce55d4cd3c
diff --git a/lib/okta_saml/engine.rb b/lib/okta_saml/engine.rb index <HASH>..<HASH> 100644 --- a/lib/okta_saml/engine.rb +++ b/lib/okta_saml/engine.rb @@ -10,13 +10,9 @@ class ActionController::Base def okta_authenticate! session[:redirect_url] = params[:app_referer] || "#{request.protocol}#{request.host_with...
[EC/JEB] [<I>] code cleanup
rentpath_okta_saml
train
eecb891e63f70e3f1b2dae6c1ec7e738d7202453
diff --git a/audiolazy/lazy_midi.py b/audiolazy/lazy_midi.py index <HASH>..<HASH> 100644 --- a/audiolazy/lazy_midi.py +++ b/audiolazy/lazy_midi.py @@ -24,6 +24,7 @@ import itertools as it # Audiolazy internal imports from .lazy_misc import elementwise +from .lazy_math import log2 __all__ = ["MIDI_A4", "FREQ_A4",...
completed midi-freq-str conversors
danilobellini_audiolazy
train
35dce533b3bf8a1a8ec5be1ec65551ce239d7361
diff --git a/wafer/talks/models.py b/wafer/talks/models.py index <HASH>..<HASH> 100644 --- a/wafer/talks/models.py +++ b/wafer/talks/models.py @@ -5,6 +5,7 @@ from django.template.defaultfilters import slugify from django.urls import reverse from django.utils.encoding import python_2_unicode_compatible from django.u...
Talk.video: avoid interpolating help text too soon Interpolating right there forces a lookup at Django startup time, and then you never get a translation at the talk submissino form. Switching to format_lazy fixes it, but requires changing the string itself.
CTPUG_wafer
train
bde1b7a31d66a798d01e888d7ea755a2f663dadf
diff --git a/php/async/Exchange.php b/php/async/Exchange.php index <HASH>..<HASH> 100644 --- a/php/async/Exchange.php +++ b/php/async/Exchange.php @@ -41,10 +41,14 @@ class Exchange extends \ccxt\Exchange { public $reloadingMarkets = null; public $tokenBucket; public $throttle; + + public static f...
Exchange.php get_loop restored
ccxt_ccxt
train
9c2f9af522d925730b66ee90897baf0b0c2ea6b1
diff --git a/indy_common/authorize/auth_constraints.py b/indy_common/authorize/auth_constraints.py index <HASH>..<HASH> 100644 --- a/indy_common/authorize/auth_constraints.py +++ b/indy_common/authorize/auth_constraints.py @@ -206,10 +206,7 @@ class AuthConstraintOr(AbstractAuthConstraint): class ConstraintCreator: ...
INDY-<I>: refactoring
hyperledger_indy-node
train
b1e25681bb91fd6d2ea579add91f6c9de8a8c087
diff --git a/serfclient/connection.py b/serfclient/connection.py index <HASH>..<HASH> 100644 --- a/serfclient/connection.py +++ b/serfclient/connection.py @@ -1,7 +1,7 @@ import socket import sys -import umsgpack - +import msgpack +from io import BytesIO class SerfConnectionError(Exception): pass @@ -18,7 +18...
Added support for decoding a stream of msgpack encoded objects. - Using msgpack instead of umsgpack - Returning a tuple of (header, body) instead of headers-only in connection.py
KushalP_serfclient-py
train
d17551f51f19753f1b4c8896c0139ea82829fdc0
diff --git a/discord/state.py b/discord/state.py index <HASH>..<HASH> 100644 --- a/discord/state.py +++ b/discord/state.py @@ -261,7 +261,7 @@ class ConnectionState: # LRU of max size 128 self._private_channels: OrderedDict[int, PrivateChannel] = OrderedDict() # extra dict to look up private ...
Fix typing for private channel by user lookup
Rapptz_discord.py
train
934ce1ab1557f51613ad38b933026f05cf8a66ee
diff --git a/quasar/src/mixins/fullscreen.js b/quasar/src/mixins/fullscreen.js index <HASH>..<HASH> 100644 --- a/quasar/src/mixins/fullscreen.js +++ b/quasar/src/mixins/fullscreen.js @@ -67,6 +67,10 @@ export default { this.container.replaceChild(this.$el, this.fullscreenFillerNode) document.body.classLis...
feat(QCarousel/QEditor/QTable): exiting fullscreen mode should scroll into view the component #<I>
quasarframework_quasar
train
4acb16a206bb4467663a2e0dcd024cbdc6a5c649
diff --git a/ez_setup.py b/ez_setup.py index <HASH>..<HASH> 100644 --- a/ez_setup.py +++ b/ez_setup.py @@ -36,7 +36,7 @@ try: except ImportError: USER_SITE = None -DEFAULT_VERSION = "5.3" +DEFAULT_VERSION = "5.4" DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/" def _python_cmd(*args): d...
Bumped to <I> in preparation for next release.
pypa_setuptools
train
e8e95dbbcabdf45f217cb3bdd464e6457988ef2e
diff --git a/tasks/jasmine/reporters/JUnitDataReporter.js b/tasks/jasmine/reporters/JUnitDataReporter.js index <HASH>..<HASH> 100644 --- a/tasks/jasmine/reporters/JUnitDataReporter.js +++ b/tasks/jasmine/reporters/JUnitDataReporter.js @@ -28,7 +28,7 @@ var failures = 0, data = { ...
Test duration in JUnit is reported in seconds rather than miliseconds...
gruntjs_grunt-contrib-jasmine
train
d6d08b152e0b48e03928105ea7698f0e82dbbee6
diff --git a/test/e2e_node/image_list.go b/test/e2e_node/image_list.go index <HASH>..<HASH> 100644 --- a/test/e2e_node/image_list.go +++ b/test/e2e_node/image_list.go @@ -95,7 +95,6 @@ func (dp *dockerPuller) Name() string { } func (dp *dockerPuller) Pull(image string) ([]byte, error) { - // TODO(random-liu): Use d...
Delete TODO to use docker client Re conversation in <URL>. Delete the TODO instructing us to change the behavior.
kubernetes_kubernetes
train
faeb679806947a2151423817fb70173234d9e621
diff --git a/lib/beefcake/encode.rb b/lib/beefcake/encode.rb index <HASH>..<HASH> 100644 --- a/lib/beefcake/encode.rb +++ b/lib/beefcake/encode.rb @@ -31,20 +31,47 @@ module Beefcake def encode!(w, val, type, fn) return if val.nil? - wire = get_wire_type(type) + case type + when :int32, :ui...
combine encoding into encode.rb
protobuf-ruby_beefcake
train
b53ac49f4a987d4f0375007c7daf7425a972b25f
diff --git a/services/github/github-package-json.service.js b/services/github/github-package-json.service.js index <HASH>..<HASH> 100644 --- a/services/github/github-package-json.service.js +++ b/services/github/github-package-json.service.js @@ -16,11 +16,16 @@ const versionSchema = Joi.object({ version: semver, }...
[GithubPackageJson] Get version from monorepo subfolder package.json (#<I>) * Add filename query params for subdirectory of monorepo * Rename query param schema
badges_shields
train
2a66e74d56908bd7f216921ab8829f0634928986
diff --git a/ontrack-ui/src/main/java/net/nemerosa/ontrack/boot/support/WebConfig.java b/ontrack-ui/src/main/java/net/nemerosa/ontrack/boot/support/WebConfig.java index <HASH>..<HASH> 100644 --- a/ontrack-ui/src/main/java/net/nemerosa/ontrack/boot/support/WebConfig.java +++ b/ontrack-ui/src/main/java/net/nemerosa/ontra...
#<I> Add CORS mapping on know API controllers (unfortunately, no common selector, might change in the future)
nemerosa_ontrack
train
0560af0a57f238bcc374d5552fd459d4a68ed817
diff --git a/Task/Collect/HooksCollector8.php b/Task/Collect/HooksCollector8.php index <HASH>..<HASH> 100644 --- a/Task/Collect/HooksCollector8.php +++ b/Task/Collect/HooksCollector8.php @@ -106,7 +106,7 @@ class HooksCollector8 extends HooksCollector { // @todo: make this more robust, somehow! if (!isset...
Fixed hooks from custom modules getting lumped together in a single hook group. Fixes #<I>.
drupal-code-builder_drupal-code-builder
train
e97d287acf15dd6b651f93fcdedbd3d1e945a6d3
diff --git a/belpy/rdf_to_pysb.py b/belpy/rdf_to_pysb.py index <HASH>..<HASH> 100644 --- a/belpy/rdf_to_pysb.py +++ b/belpy/rdf_to_pysb.py @@ -288,14 +288,14 @@ states = { 'PhosphorylationThreonine': ['u', 'p'], 'PhosphorylationTyrosine': ['u', 'p'], 'Phosphorylation': ['u', 'p'], - 'Ubiquitination': ...
Make unmod state first in states dict
sorgerlab_indra
train
fbf41bd749a3c4dbd3f1a23a7b8e42fdbba6c0c9
diff --git a/doc/conf.py b/doc/conf.py index <HASH>..<HASH> 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -55,7 +55,7 @@ author = u'Victor Stinner' # built documents. # # The short X.Y version. -version = release = '0.7.8' +version = release = '0.7.9' # The language for content autogenerated by Sphinx. Refer to d...
post release: set version to <I>
vstinner_perf
train
2941f26da30b16c73a1cb8107ed254eec6e18986
diff --git a/visidata/sheets.py b/visidata/sheets.py index <HASH>..<HASH> 100644 --- a/visidata/sheets.py +++ b/visidata/sheets.py @@ -1115,7 +1115,7 @@ BaseSheet.init('pane', lambda: 1) globalCommand('S', 'sheets-stack', 'vd.push(vd.sheetsSheet)', 'open Sheets Stack: join or jump between the active sheets on the curr...
[undo] remove undo for reload
saulpw_visidata
train
a82c9c632d996f543a3842f075a8b67845d50f49
diff --git a/.pylintrc b/.pylintrc index <HASH>..<HASH> 100644 --- a/.pylintrc +++ b/.pylintrc @@ -287,7 +287,7 @@ max-parents=7 max-attributes=7 # Minimum number of public methods for a class (see R0903). -min-public-methods=2 +min-public-methods=1 # Maximum number of public methods for a class (see R0904). ma...
Enh: Pylint - R<I> Low threshold and ignore what's left
Alignak-monitoring_alignak
train
018839d743a93ed1dafd0aa67a660a072dae0e3f
diff --git a/chef/lib/chef/recipe.rb b/chef/lib/chef/recipe.rb index <HASH>..<HASH> 100644 --- a/chef/lib/chef/recipe.rb +++ b/chef/lib/chef/recipe.rb @@ -51,7 +51,7 @@ class Chef @params = Hash.new - @@seen_recipes = Hash.new + @@seen_recipes ||= Hash.new end def requir...
Only set that if you meant it
chef_chef
train
ddbf1bfeb576f1c4eae8dda36e74ab27fbfb0c3d
diff --git a/src/com/google/javascript/jscomp/NodeUtil.java b/src/com/google/javascript/jscomp/NodeUtil.java index <HASH>..<HASH> 100644 --- a/src/com/google/javascript/jscomp/NodeUtil.java +++ b/src/com/google/javascript/jscomp/NodeUtil.java @@ -2786,7 +2786,7 @@ public final class NodeUtil { } /** - * Is a ...
Grammar police ------------- Created by MOE: <URL>
google_closure-compiler
train
1c32539be59ddb424ac5191aba8c7943c09c8148
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ except ImportError: print "Proper 'develop' support unavailable." setup( - name="pyvex", version="3.12", description="A Python interface to libVEX and VEX IR.", + name="pyvex", version='4.5.9.9', d...
ticked version number to <I>
angr_pyvex
train
d800e823833dc5b30fa170b554d0a842b53de377
diff --git a/allennlp/data/token_indexers/wordpiece_indexer.py b/allennlp/data/token_indexers/wordpiece_indexer.py index <HASH>..<HASH> 100644 --- a/allennlp/data/token_indexers/wordpiece_indexer.py +++ b/allennlp/data/token_indexers/wordpiece_indexer.py @@ -206,7 +206,7 @@ class WordpieceIndexer(TokenIndexer[int]): ...
truncate type ids (#<I>)
allenai_allennlp
train
424a1a99cc61606fced0d234d3dff23b5ca83a1c
diff --git a/glue/ligolw/ligolw.py b/glue/ligolw/ligolw.py index <HASH>..<HASH> 100644 --- a/glue/ligolw/ligolw.py +++ b/glue/ligolw/ligolw.py @@ -278,7 +278,7 @@ def WalkChildren(elem): Walk the XML tree of children below elem, returning each in order. """ for child in elem.childNodes: - for elem in xmlWalk(chi...
typo: xmlWalk --> WalkChildren.
gwastro_pycbc-glue
train
271c594e5dff392dca0da23bf1dc894978f049be
diff --git a/javascript/atoms/events.js b/javascript/atoms/events.js index <HASH>..<HASH> 100644 --- a/javascript/atoms/events.js +++ b/javascript/atoms/events.js @@ -446,6 +446,19 @@ bot.events.KeyboardEventFactory_.prototype.create = function(target, opt_args) { /** + * Enum representing which mechanism to use f...
Use the TouchEvent constructor. TouchEvent.initTouchEvent was deprecated in Chrome <I>, and removed in Chrome <I>, because it was really quite broken. Chrome still falls under bot.events.BROKEN_TOUCH_API_ for now, but having the TouchEvent code available sets the stage for switching when convenient.
SeleniumHQ_selenium
train
a90775dafd5fe215cf2a46242bda90226ce9bb6d
diff --git a/code/ControllerPolicyApplicator.php b/code/ControllerPolicyApplicator.php index <HASH>..<HASH> 100644 --- a/code/ControllerPolicyApplicator.php +++ b/code/ControllerPolicyApplicator.php @@ -15,6 +15,11 @@ class ControllerPolicyApplicator extends Extension private $requestFilter; /** + * @va...
FIX Remove fragile getPolicies logic in favour of getter/setter on the extension
silverstripe_silverstripe-controllerpolicy
train
53898513afe1d65cf49ab9d7d74250fa6d95406a
diff --git a/sos/sos_step.py b/sos/sos_step.py index <HASH>..<HASH> 100755 --- a/sos/sos_step.py +++ b/sos/sos_step.py @@ -76,6 +76,7 @@ def execute_task(params): .format(sos_dict['_input'], sos_dict['_output'])) try: # set current directory if specified + orig_dir = os.getcwd() i...
Correctly handle workdir of nested runtime options #<I>
vatlab_SoS
train
3135f1796e0bbbe4d24900b1f3164f390d80b651
diff --git a/src/Grant/PasswordGrant.php b/src/Grant/PasswordGrant.php index <HASH>..<HASH> 100644 --- a/src/Grant/PasswordGrant.php +++ b/src/Grant/PasswordGrant.php @@ -16,6 +16,7 @@ use League\Event\Event; use League\OAuth2\Server\Entities\AccessTokenEntity; use League\OAuth2\Server\Entities\Interfaces\ClientEntit...
Generate a refresh token in password grant
thephpleague_oauth2-server
train
5b0079f61f0c0127b0e75c27be836cd27e7dbbf4
diff --git a/pylocus/mds.py b/pylocus/mds.py index <HASH>..<HASH> 100644 --- a/pylocus/mds.py +++ b/pylocus/mds.py @@ -7,13 +7,16 @@ from .basics import eigendecomp def theta_from_eigendecomp(factor, u): - theta_hat = np.dot(np.diag(factor[:]), u.T) - theta_hat = theta_hat[0, :] - return np.real(theta_hat...
ENH: More efficients MDS function Less copying, use of broadcast_to to avoid creation of intermediate arrays. Improved efficiency of `theta_from_eigendecomp` and `x_from_eigendecom` by means of efficient use of broadcasting in numpy
LCAV_pylocus
train
a9b49c17b2cb4d7fd6fbcc9818a7dce6fab7fb5e
diff --git a/src/Phalcon/DI/Container.php b/src/Phalcon/DI/Container.php index <HASH>..<HASH> 100644 --- a/src/Phalcon/DI/Container.php +++ b/src/Phalcon/DI/Container.php @@ -2,6 +2,7 @@ namespace VideoRecruit\Phalcon\DI; +use Closure; use Phalcon\Di\FactoryDefault; use Phalcon\Di\ServiceInterface; use Phalcon\...
Bind DI as a context to registered closures.
VideoRecruit_phalcon-di-tags
train
94fe4e525d2a075692bcbe689be7548e2e34d716
diff --git a/enabler/src/main/java/com/openxc/enabler/preferences/DweetingPreferenceManager.java b/enabler/src/main/java/com/openxc/enabler/preferences/DweetingPreferenceManager.java index <HASH>..<HASH> 100644 --- a/enabler/src/main/java/com/openxc/enabler/preferences/DweetingPreferenceManager.java +++ b/enabler/src/m...
fixes null pointer issue with first run after installation
openxc_openxc-android
train
bf6108147d9d9541d0103aae5d8026809ac06a8b
diff --git a/src/Yosymfony/Spress/Application.php b/src/Yosymfony/Spress/Application.php index <HASH>..<HASH> 100644 --- a/src/Yosymfony/Spress/Application.php +++ b/src/Yosymfony/Spress/Application.php @@ -33,13 +33,14 @@ class Application extends \Silex\Application parent::__construct(); $...
Support to get the templates path when Spress is used as package
spress_spress
train
d62a0cf6929055213b81a1feeaec1f83f1db5a6d
diff --git a/lib/model/progressemitter.go b/lib/model/progressemitter.go index <HASH>..<HASH> 100644 --- a/lib/model/progressemitter.go +++ b/lib/model/progressemitter.go @@ -197,27 +197,30 @@ func (t *ProgressEmitter) VerifyConfiguration(from, to config.Configuration) err } // CommitConfiguration implements the co...
lib/model: Handle progress emitter zero interval (fixes #<I>) (#<I>) Makes the logic a bit clearer and safer. This also sneakily redefines the 0 interval to also mean disabled, whereas it previously meant ... sometimes default to 1s, sometimes just spin.
syncthing_syncthing
train
13d12df2711c5cfccb8190259d307da81c419847
diff --git a/test/helpers/kubectl.go b/test/helpers/kubectl.go index <HASH>..<HASH> 100644 --- a/test/helpers/kubectl.go +++ b/test/helpers/kubectl.go @@ -240,6 +240,7 @@ func Init() { "CILIUM_TAG": "global.tag", "CILIUM_IMAGE": "agent.image", "CILIUM_OPERATOR_IMAGE": "operator.image", + "...
test: set hubble-relay image in helm defaults if available Hubble-relay image must be set in helm defaults for it to take effect.
cilium_cilium
train
eb9220444752e6bb37fcfeb7b6b746e8d5ab7dd4
diff --git a/structr-ui/src/main/java/org/structr/websocket/command/RemoveCommand.java b/structr-ui/src/main/java/org/structr/websocket/command/RemoveCommand.java index <HASH>..<HASH> 100644 --- a/structr-ui/src/main/java/org/structr/websocket/command/RemoveCommand.java +++ b/structr-ui/src/main/java/org/structr/websoc...
Moved call to removeChild into try..catch block to suppress websocket error bubbling up
structr_structr
train
d2e2261a958ec2f8e48cc4e66c6436cd4f4bb0e7
diff --git a/lib/View/ModelDetails.php b/lib/View/ModelDetails.php index <HASH>..<HASH> 100644 --- a/lib/View/ModelDetails.php +++ b/lib/View/ModelDetails.php @@ -34,8 +34,9 @@ class View_ModelDetails extends Grid_Basic throw $this->exception('Specified model must be loaded'); } ...
Compatibility with new model fields.
atk4_atk4
train
4953c5d06959149a68b4d2d3bc8a1883fe1b4f7d
diff --git a/test/gdb_server_json_test.py b/test/gdb_server_json_test.py index <HASH>..<HASH> 100644 --- a/test/gdb_server_json_test.py +++ b/test/gdb_server_json_test.py @@ -198,7 +198,7 @@ def gdb_server_json_test(board_id, testing_standalone=False): out = subprocess.check_output(['pyocd', 'json', '--targets']) ...
Corrected expected targets JSON minor version in gdb_server_json_test.py.
mbedmicro_pyOCD
train
06cab0c5e904eddf32bd8bb7fb97579662707d6c
diff --git a/src/tolerance/decorators.py b/src/tolerance/decorators.py index <HASH>..<HASH> 100644 --- a/src/tolerance/decorators.py +++ b/src/tolerance/decorators.py @@ -33,7 +33,7 @@ def tolerate(substitute=None, exceptions=None, A list of exception classes or None. If exceptions is specified, igno...
Add pydoc for new features
lambdalisue_tolerance
train
5306711986f32c20039f923d9009f05cb3b093ed
diff --git a/ELiDE/layout.py b/ELiDE/layout.py index <HASH>..<HASH> 100644 --- a/ELiDE/layout.py +++ b/ELiDE/layout.py @@ -43,6 +43,60 @@ def try_json_load(obj): return obj +class StatWindow(BoxLayout): + layout = ObjectProperty() + + def __init__(self, **kwargs): + kwargs['orientation'] = 've...
refactor the stat window into its own widget
LogicalDash_LiSE
train
f5429c953b411c1dceacb395c949470c4192d578
diff --git a/src/Illuminate/Queue/Worker.php b/src/Illuminate/Queue/Worker.php index <HASH>..<HASH> 100644 --- a/src/Illuminate/Queue/Worker.php +++ b/src/Illuminate/Queue/Worker.php @@ -581,6 +581,8 @@ class Worker */ public function kill($status = 0) { + $this->events->dispatch(new Events\Worke...
allow graceful handling of SIGTERM in queue workers (#<I>)
laravel_framework
train
a9e12890e5eb56b7bc0d665223b103398769eabc
diff --git a/genghis.rb b/genghis.rb index <HASH>..<HASH> 100755 --- a/genghis.rb +++ b/genghis.rb @@ -673,9 +673,14 @@ module Genghis def server_status_alerts alerts = [] unless defined? ::BSON::BSON_C + require 'rubygems' + + Gem.refresh + + installed = Gem::Specification.find_...
Add a version to the bson_ext nag See #<I>
bobthecow_genghis
train
41c14b82c41de817c0b4ab7a4e721f32cb71ac54
diff --git a/tornado/stack_context.py b/tornado/stack_context.py index <HASH>..<HASH> 100644 --- a/tornado/stack_context.py +++ b/tornado/stack_context.py @@ -93,16 +93,13 @@ def NullContext(): finally: _state.contexts = old_contexts -def wrap(fn, *args, **kwargs): +def wrap(fn): '''Returns a calla...
Remove the ability to pre-bind parameters in stack_context.wrap. This functionality was incorrect and unused, and unlike async_callback, I don't think the implicit binding is a good fit for this API.
tornadoweb_tornado
train
fb84c104e770d11ba384d9534f3faa73250db193
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -84,3 +84,4 @@ These are the current default plugins: * [@rnagle](https://github.com/rnagle) * [@topher200](https://github.com/topher200) * [@StewPoll](https://github.com/StewPoll) +* [@eSoares](https://github.com/eSoar...
Add Threaded Message Support * Add threads support * all answers from plugins to a message posted inside a thread is replied to the thread * add @eSoares as a contributor * improve slack client variable name * bump to version <I> closes #<I>
llimllib_limbo
train
c2266c4caf61e99c53f00c35b4145dd7ae0cf4fb
diff --git a/openpnm/algorithms/MixedInvasionPercolation.py b/openpnm/algorithms/MixedInvasionPercolation.py index <HASH>..<HASH> 100644 --- a/openpnm/algorithms/MixedInvasionPercolation.py +++ b/openpnm/algorithms/MixedInvasionPercolation.py @@ -207,7 +207,7 @@ class MixedInvasionPercolation(GenericAlgorithm): ...
elem_id was not instantiated if this statement is run
PMEAL_OpenPNM
train
34d3f46931e6b3792d2ec55cd097553a377401ea
diff --git a/agent/core/src/main/java/org/jolokia/converter/object/StringToObjectConverter.java b/agent/core/src/main/java/org/jolokia/converter/object/StringToObjectConverter.java index <HASH>..<HASH> 100644 --- a/agent/core/src/main/java/org/jolokia/converter/object/StringToObjectConverter.java +++ b/agent/core/src/m...
StringToObjectConstructor now can create object by its constructor.
rhuss_jolokia
train
e19a06630de9ae72b10dc916ffcec2b9aacd4f17
diff --git a/packages/utils/src/__tests__/add-missing-protocol.test.js b/packages/utils/src/__tests__/add-missing-protocol.test.js index <HASH>..<HASH> 100644 --- a/packages/utils/src/__tests__/add-missing-protocol.test.js +++ b/packages/utils/src/__tests__/add-missing-protocol.test.js @@ -2,10 +2,14 @@ import addMissi...
chore: lint (#<I>)
newsuk_times-components
train
04ac0dc74712046016cd091eb56213e2a1ba9d3a
diff --git a/lxd/container_lxc.go b/lxd/container_lxc.go index <HASH>..<HASH> 100644 --- a/lxd/container_lxc.go +++ b/lxd/container_lxc.go @@ -1101,27 +1101,45 @@ func (c *containerLXC) Start(stateful bool) error { return fmt.Errorf("Container has no existing state to restore.") } - err := c.c.Restore(lxc.Res...
stateful start: rework behavior * use forkmigrate to restore not as a child of LXD * uidshift the images into container's uids * remember to collect the log file from criu * destroy any state on stateless start * don't destroy state on failed stateful start
lxc_lxd
train
700b20d4d3544de3ad4f766496600a10c4c6e917
diff --git a/packages/babel6/__tests__/babel6.test.js b/packages/babel6/__tests__/babel6.test.js index <HASH>..<HASH> 100644 --- a/packages/babel6/__tests__/babel6.test.js +++ b/packages/babel6/__tests__/babel6.test.js @@ -1,15 +1,20 @@ import test from 'ava' +import sinon from 'sinon' import babel6 from '../index' ...
Update babel6 block to use new API
andywer_webpack-blocks
train
7eb1413a46824f3416c2bf4a9b78bea6f297ef75
diff --git a/lib/chef/knife/cloudformation_inspect.rb b/lib/chef/knife/cloudformation_inspect.rb index <HASH>..<HASH> 100644 --- a/lib/chef/knife/cloudformation_inspect.rb +++ b/lib/chef/knife/cloudformation_inspect.rb @@ -80,10 +80,26 @@ class Chef ui.info "Displaying stack #{ui.color(stack_name, :bold)} fail...
Allow specification of multiple ssh users via config and cycle when attempting node based checks
sparkleformation_sfn
train
3b36e6bcea483dc050817e300b73fc974bdb2f87
diff --git a/cmd/kubeadm/app/preflight/checks.go b/cmd/kubeadm/app/preflight/checks.go index <HASH>..<HASH> 100644 --- a/cmd/kubeadm/app/preflight/checks.go +++ b/cmd/kubeadm/app/preflight/checks.go @@ -832,9 +832,15 @@ func (ImagePullCheck) Name() string { // Check pulls images required by kubeadm. This is a mutati...
kubeadm: fix image pull policy integration If the user has not specified a pull policy we must assume a default of v1.PullIfNotPresent. Add some extra verbose output to help users monitor what policy is used and what images are skipped / pulled. Use "fallthrough" and case handle "v1.PullAlways". Update unit test.
kubernetes_kubernetes
train
45f748085e8088f8802bfacc1bbee806611bdc26
diff --git a/framework/CHANGELOG.md b/framework/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/framework/CHANGELOG.md +++ b/framework/CHANGELOG.md @@ -14,6 +14,7 @@ Yii Framework 2 Change Log - Bug #7603: Fixed escape characters in `FormatConverter` to work with unicode characters (maddoger, cebe) - Bug #7656: Fixed ...
Fix conversion of ICU 'L' symbol. L should not contain a leading zero. Added a test for this too. close #<I>
yiisoft_yii-core
train
b2351be60867787af58469d09a8e37092451d2a4
diff --git a/nodeconductor/structure/views.py b/nodeconductor/structure/views.py index <HASH>..<HASH> 100644 --- a/nodeconductor/structure/views.py +++ b/nodeconductor/structure/views.py @@ -987,7 +987,7 @@ class BaseResourceViewSet(UpdateOnlyByPaidCustomerMixin, service_project_link = serializer.validated_dat...
Better wording (SAAS-<I>)
opennode_waldur-core
train
64b78461f6f4f1db4c07f5bf111495d1566d81aa
diff --git a/integration/access_log_test.go b/integration/access_log_test.go index <HASH>..<HASH> 100644 --- a/integration/access_log_test.go +++ b/integration/access_log_test.go @@ -84,7 +84,7 @@ func (s *AccessLogSuite) TestAccessLog(c *check.C) { c.Assert(count, checker.Equals, 3) } - // Verify no other Trarf...
Remove some debug logs (requested in review)
containous_traefik
train
61e231b57493e1318dd68aba91318e43eda01585
diff --git a/barcode/writer.py b/barcode/writer.py index <HASH>..<HASH> 100644 --- a/barcode/writer.py +++ b/barcode/writer.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -from __future__ import unicode_literals, print_function +from __future__ import unicode_literals import codecs import gzip @@ -12,7 +12,8 @@ from...
PIL not found error now goes to stderr.
WhyNotHugo_python-barcode
train
4a8205c28001a8ca8f3f0ff03d879c9ec9255537
diff --git a/nodeCacheModule.js b/nodeCacheModule.js index <HASH>..<HASH> 100644 --- a/nodeCacheModule.js +++ b/nodeCacheModule.js @@ -83,14 +83,14 @@ function nodeCacheModule(config){ var expiration = arguments[2] || null; var refresh = (arguments.length == 5) ? arguments[3] : null; var cb = (arguments....
Fixing an expiration error and cleaning some code.
jpodwys_cache-service-node-cache
train
07138534626073510e32fc63ceaefc82fb8bdc03
diff --git a/integration/helpers/servicebrokerstub/app_deploy.go b/integration/helpers/servicebrokerstub/app_deploy.go index <HASH>..<HASH> 100644 --- a/integration/helpers/servicebrokerstub/app_deploy.go +++ b/integration/helpers/servicebrokerstub/app_deploy.go @@ -48,6 +48,7 @@ func ensureAppIsPushed() { "push", ...
Test: specify buildpack on test app for legacy envs Some of the legacy envs have a Go buildpack that's so old it will not run the test broker, so we should specify that it should use the latest buildpack.
cloudfoundry_cli
train
b908920444a4308aee5cff8de46dec9879e11c5d
diff --git a/lib/arid_cache/store.rb b/lib/arid_cache/store.rb index <HASH>..<HASH> 100644 --- a/lib/arid_cache/store.rb +++ b/lib/arid_cache/store.rb @@ -1,6 +1,6 @@ module AridCache class Store < Hash - Struct.new('Item', :cache_key, :proc, :klass, :opts) + Struct.new('Item', :cache_key, :proc, :klass, :opt...
Use empty options when creating a dynamic store item that is not a count.
kjvarga_arid_cache
train
cc30e2a99edd7d5bb0d111f5ff2582154447ec0c
diff --git a/README.rdoc b/README.rdoc index <HASH>..<HASH> 100644 --- a/README.rdoc +++ b/README.rdoc @@ -299,6 +299,20 @@ You can traverse all Person's friend by doing: f.friends.each { |n| puts n } +=== Filtering nodes in a relationship + +If you want to find one node in a relationship you can use a filter. +...
Impl: Fires event when a relationship has been created. Updated README with example how to filter traversing relationships
neo4jrb_neo4j
train
62862703f6f429b198196ccd33d5868c3a389e65
diff --git a/src/pyechonest/search_tracks.py b/src/pyechonest/search_tracks.py index <HASH>..<HASH> 100644 --- a/src/pyechonest/search_tracks.py +++ b/src/pyechonest/search_tracks.py @@ -11,6 +11,6 @@ try: except ImportError: import simplejson as json -def search_tracks(artist=None, title=None, sort=None, query...
added result count as a parameter. Constraints still need to be added.
echonest_pyechonest
train
9bd0df32b937d7b1e5679a385c8f5ed89a286789
diff --git a/src/Exceptions/CurlException.php b/src/Exceptions/CurlException.php index <HASH>..<HASH> 100644 --- a/src/Exceptions/CurlException.php +++ b/src/Exceptions/CurlException.php @@ -1,7 +1,7 @@ <?php /** Curl errors wrapper * -* @version SVN: $Id: CurlException.php 788 2018-04-03 14:58:56Z anrdaemon $ +* @v...
Improved CurlException error message construction. Difference in curl_error vs. curl_strerror was a nasty surprize.
AnrDaemon_library-php
train
e682990ad26037d01e9b7747f75942f76f5c62b5
diff --git a/src/colors/colormap.js b/src/colors/colormap.js index <HASH>..<HASH> 100644 --- a/src/colors/colormap.js +++ b/src/colors/colormap.js @@ -470,7 +470,7 @@ const colormapsData = { /** * Generate linearly spaced vectors * http://cens.ioc.ee/local/man/matlab/techdoc/ref/linspace.html - * @param {Number} ...
fix(webgl): Fix logic in getImageDataType for WebGL rendering pipeline (#<I>) * Fix Issue #<I> - WebGL Rendering fails for a High BVAL Diffusion image * Fix JSdoc warnings * Fix typo in Number for JSDoc
cornerstonejs_cornerstone
train
6acedb8741041e3a90625a4eac7108fc6bb4e05e
diff --git a/liquibase-core/src/main/java/liquibase/changelog/ChangeLogIterator.java b/liquibase-core/src/main/java/liquibase/changelog/ChangeLogIterator.java index <HASH>..<HASH> 100644 --- a/liquibase-core/src/main/java/liquibase/changelog/ChangeLogIterator.java +++ b/liquibase-core/src/main/java/liquibase/changelog/...
Save changeSet key so checksum doesn't have to be recomputed
liquibase_liquibase
train
70dcfc73b0f57649cbe0663f1d058826ad8944d6
diff --git a/src/streamcorpus_pipeline/_tsv_files_list.py b/src/streamcorpus_pipeline/_tsv_files_list.py index <HASH>..<HASH> 100644 --- a/src/streamcorpus_pipeline/_tsv_files_list.py +++ b/src/streamcorpus_pipeline/_tsv_files_list.py @@ -151,7 +151,7 @@ class tsv_files_list(object): return stream_item if _...
renaming extractor --> reader one more (trivial)
trec-kba_streamcorpus-pipeline
train
85046d40336ed564616c556c16b17e8c4c9dcedd
diff --git a/fastlane/lib/fastlane/actions/version_get_podspec.rb b/fastlane/lib/fastlane/actions/version_get_podspec.rb index <HASH>..<HASH> 100644 --- a/fastlane/lib/fastlane/actions/version_get_podspec.rb +++ b/fastlane/lib/fastlane/actions/version_get_podspec.rb @@ -31,7 +31,7 @@ module Fastlane ...
Fix name in ENV variable in podspec action (#<I>) * Fix name in ENV variable in podspec action * Update version_get_podspec.rb Typo'd * Add missing bump from env name
fastlane_fastlane
train
16e1dd3886aad937835fb33ef782e48afe12efec
diff --git a/salt/renderers/gpg.py b/salt/renderers/gpg.py index <HASH>..<HASH> 100644 --- a/salt/renderers/gpg.py +++ b/salt/renderers/gpg.py @@ -71,10 +71,11 @@ Now you can include your ciphers in your pillar data like so: ''' import re +import salt.utils try: import gnupg HAS_GPG = True -except Import...
gnupg test fix The gnupg lib will stack trace if the gpg binary isn't present on the system.
saltstack_salt
train
223f90e3dab4955318958e643c659a136b344c17
diff --git a/mrcrowbar/lib/games/lemmings.py b/mrcrowbar/lib/games/lemmings.py index <HASH>..<HASH> 100644 --- a/mrcrowbar/lib/games/lemmings.py +++ b/mrcrowbar/lib/games/lemmings.py @@ -55,7 +55,7 @@ class DATCompressor( mrc.Transform ): total_num_bytes -= 10 compressed_size -= 10 - ...
lib.games.lemmings: Port from BitWriter to BitStream
moralrecordings_mrcrowbar
train
0193f0b88e9939108fc147637c9257623981f973
diff --git a/jquery.dirtyforms.js b/jquery.dirtyforms.js index <HASH>..<HASH> 100644 --- a/jquery.dirtyforms.js +++ b/jquery.dirtyforms.js @@ -116,22 +116,24 @@ dirtylog('Adding forms to watch'); bindExit(); - // Initialize settings with the currently focused element (autofocus) -...
Fixed HTML 5 autofocus to check whether the focused element belongs to same selector as the ones the event is watching.
snikch_jquery.dirtyforms
train
8c72432cc513becb0b7ba89dcd81a62b13a4721c
diff --git a/aws/gen/s3/s3.go b/aws/gen/s3/s3.go index <HASH>..<HASH> 100644 --- a/aws/gen/s3/s3.go +++ b/aws/gen/s3/s3.go @@ -3628,7 +3628,7 @@ type GetObjectAclRequest struct { // GetObjectOutput is undocumented. type GetObjectOutput struct { AcceptRanges string `xml:"accept-ranges"` - Body ...
Actually, use io.ReadCloser. That way the streaming member shapes won't leak. (I did not name any of the concepts in this commit.)
aws_aws-sdk-go
train
28c26c84641b5a1d6a128795f253bc60aca93f18
diff --git a/src/Collection.php b/src/Collection.php index <HASH>..<HASH> 100644 --- a/src/Collection.php +++ b/src/Collection.php @@ -113,12 +113,26 @@ class Collection /** * @param WriteModelInterface[] $requests * @param array $options - * @param WriteConcern|null $writeConcern * @return W...
Support for writeConcern option in Collection write methods and in Collection::bulkWrite()
tequila_mongodb-php-lib
train
2910dce92e3d361547b940ef4621b35ec9bb63cc
diff --git a/test/index.js b/test/index.js index <HASH>..<HASH> 100644 --- a/test/index.js +++ b/test/index.js @@ -644,7 +644,7 @@ describe("mongoose-hidden", function () { // Github issue https://github.com/mblarsen/mongoose-hidden/issues/1 describe("A document with nested documents when hiding", function () {...
Remove two extraneous apostrophes. The sequence “it’s” always expands to “it is”. To show possession, use “its”.
mblarsen_mongoose-hidden
train
42b3a09c26aabb665a3a4fd2042e07dfef9d5bab
diff --git a/framework/core/js/src/common/utils/patchMithril.js b/framework/core/js/src/common/utils/patchMithril.js index <HASH>..<HASH> 100644 --- a/framework/core/js/src/common/utils/patchMithril.js +++ b/framework/core/js/src/common/utils/patchMithril.js @@ -1,12 +1,9 @@ -import Link from '../components/Link'; imp...
Eliminate temporary BC layers from rewrite During the frontend rewrite, we introduced mithril patches for a `route` attr, and for `m.stream`. Later, we decided not to go that route, but not to remove the patches yet to avoid breaking extensions while we were finalizing the replacements. We can now remove these. Other...
flarum_core
train
15715d80e789a07ff9600cb14c2d3afa3b951214
diff --git a/src/com/google/javascript/jscomp/GlobalNamespace.java b/src/com/google/javascript/jscomp/GlobalNamespace.java index <HASH>..<HASH> 100644 --- a/src/com/google/javascript/jscomp/GlobalNamespace.java +++ b/src/com/google/javascript/jscomp/GlobalNamespace.java @@ -27,8 +27,10 @@ import com.google.javascript.r...
Make GlobalNamespace references implement StaticReference R=acleung DELTA=<I> (<I> added, 1 deleted, <I> changed) Revision created by MOE tool push_codebase. MOE_MIGRATION=<I> git-svn-id: <URL>
google_closure-compiler
train
82086782d1ae790cfbb31548918295ae43ad3b02
diff --git a/lxc/storage_volume.go b/lxc/storage_volume.go index <HASH>..<HASH> 100644 --- a/lxc/storage_volume.go +++ b/lxc/storage_volume.go @@ -945,6 +945,9 @@ func (c *cmdStorageVolumeList) Run(cmd *cobra.Command, args []string) error { for _, volume := range volumes { usedby := strconv.Itoa(len(volume.UsedBy)...
lxc: Identify snapshots when listed
lxc_lxd
train
67a74f17a8ef9ec7e408c1c597cf27cfb471a95b
diff --git a/jams/core.py b/jams/core.py index <HASH>..<HASH> 100644 --- a/jams/core.py +++ b/jams/core.py @@ -810,7 +810,7 @@ class AnnotationData(object): for (t, d, v, c) in self.obs: times.append(t) durations.append(d) - values.append(v) + ...
ported over nsconvert
marl_jams
train
c35d936f9838ab27754e8779d4d5c7da81e941c1
diff --git a/tests/testcomparisondimension.py b/tests/testcomparisondimension.py index <HASH>..<HASH> 100644 --- a/tests/testcomparisondimension.py +++ b/tests/testcomparisondimension.py @@ -18,9 +18,8 @@ class DimensionsComparisonTestCase(ComparisonTestCase): self.dimension6 = Dimension('dim1', cyclic=True, r...
Removed outdated unit test from testcomparisondimension.py
pyviz_holoviews
train
e5ea9e2e662231d6218a32d6d15e5058ecebc8d2
diff --git a/app/helpers/cielo_assets/form_helper.rb b/app/helpers/cielo_assets/form_helper.rb index <HASH>..<HASH> 100644 --- a/app/helpers/cielo_assets/form_helper.rb +++ b/app/helpers/cielo_assets/form_helper.rb @@ -4,11 +4,18 @@ module CieloAssets id = options.delete(:id) || :cielo_controls styl...
Fixes issues with nested attributes selection after a failed validation
fabiolnm_cielo_assets
train
c589aa7c251b0084785596105d349fc04e6b4d60
diff --git a/src/Provider/LinkedIn.php b/src/Provider/LinkedIn.php index <HASH>..<HASH> 100644 --- a/src/Provider/LinkedIn.php +++ b/src/Provider/LinkedIn.php @@ -92,7 +92,7 @@ class LinkedIn extends AbstractProvider { $fields = implode(',', $this->fields); - return 'https://api.linkedin.com/v1/p...
Update resource owner url to version 2
thephpleague_oauth2-linkedin
train
4c8f68de32610f0093a97c15a9df1cbd75ac05a5
diff --git a/slim/Request.php b/slim/Request.php index <HASH>..<HASH> 100644 --- a/slim/Request.php +++ b/slim/Request.php @@ -200,7 +200,7 @@ class Request { * @return string The resource string */ private function extractQueryString() { - $this->root = ltrim(dirname($_SERVER['PHP_SELF']), '/') . DIRECTORY_SE...
Adding inline docs for Request::root Simplifying Request::root method
slimphp_Slim
train
f75083aee5b203295df8bb74949ea853fb454f84
diff --git a/HARK/ConsumptionSaving/ConsumerParameters.py b/HARK/ConsumptionSaving/ConsumerParameters.py index <HASH>..<HASH> 100644 --- a/HARK/ConsumptionSaving/ConsumerParameters.py +++ b/HARK/ConsumptionSaving/ConsumerParameters.py @@ -16,7 +16,7 @@ Rfree = 1.03 # Interest factor on assets Di...
Restore default PFexample to no borrowing constraint Now everything will run like before.
econ-ark_HARK
train
c3c749cb78fe2c13a12dececdddd9eb7fd68aac0
diff --git a/lxd/db_update.go b/lxd/db_update.go index <HASH>..<HASH> 100644 --- a/lxd/db_update.go +++ b/lxd/db_update.go @@ -136,6 +136,13 @@ func dbUpdateFromV30(currentVersion int, version int, d *Daemon) error { entries, err := ioutil.ReadDir(shared.VarPath("containers")) if err != nil { + /* If the directo...
don't fail db upgrade if $LXD_DIR/containers doesn't exist The user may not have actually started LXD or imported any containers, so let's not fail in this case. Launchpad #<I>
lxc_lxd
train
542eb98e135099e13e67acd5c200dd474689136f
diff --git a/code/libraries/koowa/controller/form.php b/code/libraries/koowa/controller/form.php index <HASH>..<HASH> 100644 --- a/code/libraries/koowa/controller/form.php +++ b/code/libraries/koowa/controller/form.php @@ -19,27 +19,6 @@ abstract class KControllerForm extends KControllerModel { /** - * URL for red...
Moved redirect handling from model controller to view controller.
timble_kodekit
train