hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
09ccc78db77dc23cd2bf1c47190570d0c018ece2
diff --git a/lib/Paymill/Request.php b/lib/Paymill/Request.php index <HASH>..<HASH> 100755 --- a/lib/Paymill/Request.php +++ b/lib/Paymill/Request.php @@ -38,6 +38,12 @@ class Request private $_version = "3.0.2"; /** + * @var string + */ + private $_source; + + + /** * Creates a Request ...
PMPW-<I> : added source
paymill_paymill-php
train
78630ec94fec5c4463a9e62d4be9c01238c2656d
diff --git a/build/src/main/resources/configuration/subsystems/ejb3.xml b/build/src/main/resources/configuration/subsystems/ejb3.xml index <HASH>..<HASH> 100644 --- a/build/src/main/resources/configuration/subsystems/ejb3.xml +++ b/build/src/main/resources/configuration/subsystems/ejb3.xml @@ -4,15 +4,13 @@ <extens...
WFLY-<I> Disable pooling of stateless EJBs by default.
wildfly_wildfly
train
9528e04fde7cab4fc35b178c2ad0ad38ab45a34a
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -53,6 +53,7 @@ module.exports = function debounce( f, ms, ctx, immediate ) { fn.cancel = function () { clearTimeout( timeout ); + timeout = null; // properly clear the timeout so the next call to fn works as expec...
FIX: Properly cancel the previous execution of a debounced call
royriojas_debouncy
train
d771f0d6b570ea46d8d35e8efe86ec70878649c2
diff --git a/cellpy/_version.py b/cellpy/_version.py index <HASH>..<HASH> 100644 --- a/cellpy/_version.py +++ b/cellpy/_version.py @@ -1,2 +1,2 @@ -version_info = (0, 4, 1, "a2") +version_info = (0, 4, 1, "a3") __version__ = ".".join(map(str, version_info))
bump v to <I>.a3
jepegit_cellpy
train
da76baef9a148a7994577c30daac21532fa5e7bb
diff --git a/openquake/hazardlib/site.py b/openquake/hazardlib/site.py index <HASH>..<HASH> 100644 --- a/openquake/hazardlib/site.py +++ b/openquake/hazardlib/site.py @@ -140,11 +140,16 @@ site_param_dt = { class SiteCollection(object): - """ + __doc__ = """\ A collection of :class:`sites <Site>`. ...
Improved SiteCollection.__doc__ [skip CI]
gem_oq-engine
train
c26776fe48acc52304321d92a5dfcb3e60327c5b
diff --git a/gcs/gcsbench_test.go b/gcs/gcsbench_test.go index <HASH>..<HASH> 100644 --- a/gcs/gcsbench_test.go +++ b/gcs/gcsbench_test.go @@ -55,6 +55,30 @@ func BenchmarkGCSFilterBuild50000(b *testing.B) { generatedFilter = localFilter } +// BenchmarkGCSFilterBuild benchmarks building a filter. +func BenchmarkGC...
gcs: add an extra benchmark for a filter with <I>k items
btcsuite_btcutil
train
7dcff6ccc7d844d2ed22362f354d7425a6dd1926
diff --git a/API.rdoc b/API.rdoc index <HASH>..<HASH> 100644 --- a/API.rdoc +++ b/API.rdoc @@ -13,13 +13,11 @@ Public API minus the optional stuff like Pool, IdentityMap, Migrations etc. # Abstract. Adapter .new #=> Adapter - #all #=> Result #begin #=> Adapter #...
Removing all/first SQL generation.
shanna_swift
train
920cc9a7c2822d65c6fcbe268aa28d10efebaa2c
diff --git a/spec/unit/mongoid/criteria_spec.rb b/spec/unit/mongoid/criteria_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/mongoid/criteria_spec.rb +++ b/spec/unit/mongoid/criteria_spec.rb @@ -892,11 +892,11 @@ describe Mongoid::Criteria do end it "is false when asking about a private criteria instanc...
Fix build. Rubies have work to do on consistent method publicity.
mongodb_mongoid
train
d6b923adbdfc9a4df20132f741bbfb43db12113c
diff --git a/activerecord/lib/active_record.rb b/activerecord/lib/active_record.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record.rb +++ b/activerecord/lib/active_record.rb @@ -37,6 +37,9 @@ module ActiveRecord [Base, DynamicFinderMatch, ConnectionAdapters::AbstractAdapter] end + autoload :...
get activerecord tests passing with lazy loading
rails_rails
train
c4684c8b72de56c5b4c475443ec92eee72b0d57b
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -180,13 +180,11 @@ Tracker.prototype._requestUdp = function (requestUrl, opts) { function error (message) { self.client.emit('error', new Error(message + ' (connecting to tracker ' + requestUrl + ')')) - socket.cl...
fixed issue where an erroneous tracker could cause webtorrent to crash because socket.close was already closed after an error state
ZeroNetJS_zeronet-tracker
train
151e3333937c468f2cdca5a3c77241409919e45f
diff --git a/nerdamer.core.js b/nerdamer.core.js index <HASH>..<HASH> 100644 --- a/nerdamer.core.js +++ b/nerdamer.core.js @@ -4327,7 +4327,7 @@ var nerdamer = (function (imports) { acsc: function (symbol) { if (Settings.PARSE2NUMBER) { if (symbol.isConstant()) - ...
Fixed a bug that was causing the acsc to return symbol acos(1/x) instead of asin(1/x)
jiggzson_nerdamer
train
039aaf5f37dbc7d57955556ed06b769d079ea699
diff --git a/src/Tenanti/Migrator.php b/src/Tenanti/Migrator.php index <HASH>..<HASH> 100644 --- a/src/Tenanti/Migrator.php +++ b/src/Tenanti/Migrator.php @@ -43,7 +43,7 @@ class Migrator extends \Illuminate\Database\Migrations\Migrator return $this->pretendToRun($migration, 'up'); } - $m...
Use id as first parameter.
orchestral_tenanti
train
e65b3f34ab84d3d5686b5c384598dd5317fc07f6
diff --git a/lib/clickatell/api.rb b/lib/clickatell/api.rb index <HASH>..<HASH> 100644 --- a/lib/clickatell/api.rb +++ b/lib/clickatell/api.rb @@ -69,12 +69,13 @@ module Clickatell # Additional options: # :from - the from number/name # :set_mobile_originated - mobile originated flag - # + # ...
updated api to accept a client message id that can be used in place of the generated Clickatell API message id
lukeredpath_clickatell
train
123696e21f7daa581c89f6d4891653465cc7e2a8
diff --git a/openaps/uses/registry.py b/openaps/uses/registry.py index <HASH>..<HASH> 100644 --- a/openaps/uses/registry.py +++ b/openaps/uses/registry.py @@ -1,13 +1,4 @@ -__USES__ = { } -def use ( ): - def decorator (cls): - if cls.__name__ not in __USES__: - __USES__[cls.__name__] = cls - return cls - ...
clean up registry, rm older prototype code
openaps_openaps
train
a8ea9445aae5822a988356633cba3e8d3ba7e319
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ requirements = [ # Protocol and data packages "pytmpdir >= 0.2.3", # A temporary directory, useful for extracting archives to "txhttputil >= 0.2.7", # Utility class for http requests - "vorte...
Updating PoF SQL sql now also updates data using that SQL OR<I>-<I>
Synerty_peek-plugin-base
train
dd050a094c5159cd90e4f90d0e09f1a8206010da
diff --git a/src/Illuminate/Support/Arr.php b/src/Illuminate/Support/Arr.php index <HASH>..<HASH> 100755 --- a/src/Illuminate/Support/Arr.php +++ b/src/Illuminate/Support/Arr.php @@ -313,17 +313,9 @@ class Arr */ public static function has($array, $keys) { - if (is_null($keys)) { - ret...
[<I>] Arr::has code clean up (#<I>) * Null value are coerced to an empty array, we do not need this check. * Combine the two if blocks. * Added more tests for edge cases
laravel_framework
train
5d591dde0f5e067a8a0ebc343eda3c16febf2831
diff --git a/client/state/plugins/installed/reducer.js b/client/state/plugins/installed/reducer.js index <HASH>..<HASH> 100644 --- a/client/state/plugins/installed/reducer.js +++ b/client/state/plugins/installed/reducer.js @@ -2,7 +2,6 @@ * External dependencies */ import { - uniqBy, omit, findIndex, } from '...
Installed Plugins: Don't reduce the list down to unique plugins by slug because then we can loose active plugins. If a user has two copies of a plugin, say different versions for testing, in different folders then when we uniq the list we just pick the first one we find which may or may not be the active one. Ideally...
Automattic_wp-calypso
train
385a9331ca2f4315d7b78dde87baaa87734cbd67
diff --git a/src/com/brein/time/timeseries/ContainerBucketTimeSeries.java b/src/com/brein/time/timeseries/ContainerBucketTimeSeries.java index <HASH>..<HASH> 100644 --- a/src/com/brein/time/timeseries/ContainerBucketTimeSeries.java +++ b/src/com/brein/time/timeseries/ContainerBucketTimeSeries.java @@ -26,6 +26,23 @@ pu...
- added create by content for long series
Breinify_brein-time-utilities
train
742fe00007624c5eaad8b990f46ec8491107370b
diff --git a/src/main/java/com/lazerycode/selenium/download/DownloadHandler.java b/src/main/java/com/lazerycode/selenium/download/DownloadHandler.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/lazerycode/selenium/download/DownloadHandler.java +++ b/src/main/java/com/lazerycode/selenium/download/DownloadHandle...
Only display filename not entire path in logs.
Ardesco_selenium-standalone-server-plugin
train
b790f141d1ba746d1e0291e5a383a8e2ddad6388
diff --git a/Controller/Email/Accountcallback.php b/Controller/Email/Accountcallback.php index <HASH>..<HASH> 100755 --- a/Controller/Email/Accountcallback.php +++ b/Controller/Email/Accountcallback.php @@ -125,7 +125,7 @@ class Accountcallback extends \Magento\Framework\App\Action\Action <h2 class='ce...
Merged PR <I>: Merge sl/bundle-<I> to testing Add event listener to enable cross frame communication.
dotmailer_dotmailer-magento2-extension
train
b82bbb4fcb7a05b8b929fddfcff40bbd8b0edac4
diff --git a/code/png.py b/code/png.py index <HASH>..<HASH> 100755 --- a/code/png.py +++ b/code/png.py @@ -725,36 +725,35 @@ class Writer: def extend(sl): oldextend(map(lambda x: int(round(factor*x)), sl)) - # A test mostly to see if numpy integer types cause our - # defini...
write_passes now consumes each row exactly once. Fixes Issue <I>. git-svn-id: <URL>
drj11_pypng
train
4c5a7830c78ac8e647e351cb65d9ef295fc4a9d7
diff --git a/arcgis/arcgis.py b/arcgis/arcgis.py index <HASH>..<HASH> 100644 --- a/arcgis/arcgis.py +++ b/arcgis/arcgis.py @@ -143,6 +143,11 @@ class ArcGIS: if count_only: return jsobj.get('count') + # If there is no geometry, we default to assuming it's a Table type + # data form...
Added a method to just grab non-geo, Table-type data from arcgis
Schwanksta_python-arcgis-rest-query
train
eb76b7b10418c41a43e79b3432b79adfe6b6c8f1
diff --git a/packages/request-maxdome/src/Asset.js b/packages/request-maxdome/src/Asset.js index <HASH>..<HASH> 100644 --- a/packages/request-maxdome/src/Asset.js +++ b/packages/request-maxdome/src/Asset.js @@ -18,7 +18,7 @@ class Asset { this.title += ` (Staffel ${data.number})`; } this.searchTitle = ...
Fix attributename hotFromUS => hotFromTheUS
Sharaal_dnode
train
4d74848f5f31bf07052efc4e99c0e61bcafda068
diff --git a/app/Http/RequestHandlers/MergeFactsAction.php b/app/Http/RequestHandlers/MergeFactsAction.php index <HASH>..<HASH> 100644 --- a/app/Http/RequestHandlers/MergeFactsAction.php +++ b/app/Http/RequestHandlers/MergeFactsAction.php @@ -127,6 +127,7 @@ class MergeFactsAction implements RequestHandlerInterface ...
Fix: merging records breaks hit-counter
fisharebest_webtrees
train
c3dcc0ad37e06cdddf2da859bf5a5aaa4271a403
diff --git a/asn1crypto/core.py b/asn1crypto/core.py index <HASH>..<HASH> 100644 --- a/asn1crypto/core.py +++ b/asn1crypto/core.py @@ -638,7 +638,7 @@ class Constructable(object): """ # Instance attribute indicating if an object was indefinite - # length when parsed – affects parsing and dumping + # l...
Remove en dashes from various comments and exceptions to help users with unicode issues in terminals
wbond_asn1crypto
train
c1ca9409afab5cd27be4d998fc445023cad42a24
diff --git a/src/config/bot-agent-list.php b/src/config/bot-agent-list.php index <HASH>..<HASH> 100644 --- a/src/config/bot-agent-list.php +++ b/src/config/bot-agent-list.php @@ -120,4 +120,5 @@ $botagents=array("trueknowledgebot" => "TrueKnowledgeBot", "seobility" => "Seobility SEO-Check", "seocheck" => "SeoCheck", ...
Fixed #<I>, Add Uptimebot
BugBuster1701_botdetection
train
4e5ec1b16f9bb66062617a94a2775f12b156d6c2
diff --git a/src/pymp4/parser.py b/src/pymp4/parser.py index <HASH>..<HASH> 100644 --- a/src/pymp4/parser.py +++ b/src/pymp4/parser.py @@ -626,7 +626,8 @@ SoundMediaHeaderBox = Struct( "type" / Const(b"smhd"), "version" / Const(Int8ub, 0), "flags" / Const(Int24ub, 0), - "balance" / Default(Int16sb, 0)...
Fix smhd - missing reserved field Add padding bytes in test to verify only expected bytes read
beardypig_pymp4
train
4de1d28c4665ea8116f6941d90584393ecf4458c
diff --git a/plenum/server/consensus/ordering_service.py b/plenum/server/consensus/ordering_service.py index <HASH>..<HASH> 100644 --- a/plenum/server/consensus/ordering_service.py +++ b/plenum/server/consensus/ordering_service.py @@ -2262,6 +2262,8 @@ class OrderingService: self._logger.info("{} processing ...
INDY-<I>: Fix more tests
hyperledger_indy-plenum
train
c2ce0606900517e98f5dbfbd7d03f91424bc5867
diff --git a/secretservice/secretservice.go b/secretservice/secretservice.go index <HASH>..<HASH> 100644 --- a/secretservice/secretservice.go +++ b/secretservice/secretservice.go @@ -73,6 +73,7 @@ func NewService() (*SecretService, error) { } signalCh := make(chan *dbus.Signal, 16) conn.Signal(signalCh) + _ = con...
add signal match (#<I>)
keybase_go-keychain
train
6a6f6af36b7effbb9e188ff58887013a76173cfa
diff --git a/lib/html/proofer/check_runner/issue.rb b/lib/html/proofer/check_runner/issue.rb index <HASH>..<HASH> 100644 --- a/lib/html/proofer/check_runner/issue.rb +++ b/lib/html/proofer/check_runner/issue.rb @@ -5,9 +5,9 @@ class HTML::Proofer::CheckRunner attr_reader :path, :desc, :status, :line_number ...
Clean up the line number concatenation
gjtorikian_html-proofer
train
21b3547d015982777023c7c2d7b1bb4f9af76eb6
diff --git a/cdm/src/main/java/ucar/nc2/Group.java b/cdm/src/main/java/ucar/nc2/Group.java index <HASH>..<HASH> 100644 --- a/cdm/src/main/java/ucar/nc2/Group.java +++ b/cdm/src/main/java/ucar/nc2/Group.java @@ -1,5 +1,5 @@ /* - * Copyright 1998-2014 University Corporation for Atmospheric Research/Unidata + * Copyright...
Return CDL notation from Group.toString The toString() method in ucar.nc2.FGroup returned only the group short name rather than the CDL description as do other dataset structure classes.
Unidata_thredds
train
c86c306220dae4fd2b45adc1828534e8e3f98347
diff --git a/README.rdoc b/README.rdoc index <HASH>..<HASH> 100644 --- a/README.rdoc +++ b/README.rdoc @@ -81,15 +81,13 @@ The declaration accepts any number of default parameters a normal controller fil === Additional Javascript options -Sometimes, when you need complex arrays of data for plugins or such, the plu...
refinement: minor change to previous commit that allows per controller additional JS.
kete_tiny_mce
train
dd488c339e82ffb9353e7725e0a78ed0d7e9e295
diff --git a/test/it/testbase.py b/test/it/testbase.py index <HASH>..<HASH> 100644 --- a/test/it/testbase.py +++ b/test/it/testbase.py @@ -73,8 +73,8 @@ class TestBase(unittest.TestCase): self.assertEqual(self.bintrayContext.get_service("FAKE_BINTRAY").status(), []) def waitForCondition(self, f, exp...
Fix the waitForCondition which was looping forever
hmrc_service-manager
train
2bc86d4c84e544373f9bb2171adfcb41c868911a
diff --git a/app/models/catarse_pagarme/bank_account_concern.rb b/app/models/catarse_pagarme/bank_account_concern.rb index <HASH>..<HASH> 100644 --- a/app/models/catarse_pagarme/bank_account_concern.rb +++ b/app/models/catarse_pagarme/bank_account_concern.rb @@ -3,6 +3,8 @@ module CatarsePagarme::BankAccountConcern ...
we should use include manual on bank account validation
catarse_catarse_pagarme
train
9cd907c9b54d0466f8f395cfe1f2b31eded7005f
diff --git a/agent/server.go b/agent/server.go index <HASH>..<HASH> 100644 --- a/agent/server.go +++ b/agent/server.go @@ -87,15 +87,16 @@ func (s *Agent) Subscribe(args *Args, stream rpcplus.Stream) error { return nil } -func (s *Agent) Register(args *Args, ret *struct{}) (string, error) { +func (s *Agent) Regist...
discoverd: forgot how rpc works
flynn_flynn
train
412c8866baf2775e31801b9307dde711f551dee9
diff --git a/h2o-docs/src/booklets/v2_2015/source/GLM_Vignette_code_examples/glm_model_output.py b/h2o-docs/src/booklets/v2_2015/source/GLM_Vignette_code_examples/glm_model_output.py index <HASH>..<HASH> 100644 --- a/h2o-docs/src/booklets/v2_2015/source/GLM_Vignette_code_examples/glm_model_output.py +++ b/h2o-docs/src/...
GLM partial merge- ky's push
h2oai_h2o-3
train
a932b1e171b147214f7b9020eac183e92714a6f6
diff --git a/src/meshio/ansys/_ansys.py b/src/meshio/ansys/_ansys.py index <HASH>..<HASH> 100644 --- a/src/meshio/ansys/_ansys.py +++ b/src/meshio/ansys/_ansys.py @@ -18,7 +18,6 @@ def _skip_to(f, char): c = None while c != char: c = f.read(1).decode() - return def _skip_close(f, num_open_bra...
test that input mesh is not changed at all
nschloe_meshio
train
764ffc95af41602b7ba216bad4be438330c3dc45
diff --git a/xarray/core/formatting.py b/xarray/core/formatting.py index <HASH>..<HASH> 100644 --- a/xarray/core/formatting.py +++ b/xarray/core/formatting.py @@ -141,7 +141,7 @@ def format_item(x, timedelta_format=None, quote_strings=True): return format_timedelta(x, timedelta_format=timedelta_format) el...
Match all float types in formatitem (#<I>) * Match all float types in formatitem * Add formatting tests of other floating types
pydata_xarray
train
7802349c3a5c9d0a2f5d4e172fa4c518a07701a0
diff --git a/src/browsing.js b/src/browsing.js index <HASH>..<HASH> 100644 --- a/src/browsing.js +++ b/src/browsing.js @@ -41,7 +41,7 @@ var minorHeading = chalk.bold; var write = console.log.bind(console); var prototypeOf = Object.getPrototypeOf; var properties = Object.getOwnPropertyNames; - +var property = Object...
fix: Use property name in the message list JS doesn't have methods that *belong* only to a single object, like Siren does, so properties work more like aliases than anything else. This new way of reporting shows the name of the property and any modifiers it might have.
robotlolita_metamagical
train
ad2a9920f7a4e417560825e0d6c2e48fac054855
diff --git a/EpicsUtil/src/main/java/org/epics/util/array/ArrayDouble.java b/EpicsUtil/src/main/java/org/epics/util/array/ArrayDouble.java index <HASH>..<HASH> 100644 --- a/EpicsUtil/src/main/java/org/epics/util/array/ArrayDouble.java +++ b/EpicsUtil/src/main/java/org/epics/util/array/ArrayDouble.java @@ -4,6 +4,7 @@ ...
Implementing serialization for ArrayDouble.
diirt_util
train
2931fa425438330f0a369a5e3939f69a48ee10d9
diff --git a/src/main/java/sklearn/preprocessing/PolynomialFeatures.java b/src/main/java/sklearn/preprocessing/PolynomialFeatures.java index <HASH>..<HASH> 100644 --- a/src/main/java/sklearn/preprocessing/PolynomialFeatures.java +++ b/src/main/java/sklearn/preprocessing/PolynomialFeatures.java @@ -27,7 +27,6 @@ import ...
Fixed the encoding of power features. Fixes #<I>
jpmml_jpmml-sklearn
train
d588430ae8e171a62072467977d27f894b0f543c
diff --git a/test/spambl_test.py b/test/spambl_test.py index <HASH>..<HASH> 100644 --- a/test/spambl_test.py +++ b/test/spambl_test.py @@ -573,8 +573,7 @@ class GoogleSafeBrowsingTest(unittest.TestCase): self.assertIn(item.value, self.spam_urls_classification) self.assertEqual(item.source, sel...
Rename ftp_urls to non_http_urls in BaseUrlTesterTest
piotr-rusin_spam-lists
train
c11922d4056edaca76f8606706a48b4279930c90
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -157,6 +157,26 @@ new FastClasspathScanner("com.xyz.widget") .scan(); ``` +**Mechanism 3:** Call `ScanResult#classNameToClassInfo()` after calling `FastClasspathScanner#scan()`, then query the class graph directly....
Add methods for finding implementors of a given interface
classgraph_classgraph
train
88c48395471e686389bc2c672e29d61026de8d95
diff --git a/ceph_deploy/mon.py b/ceph_deploy/mon.py index <HASH>..<HASH> 100644 --- a/ceph_deploy/mon.py +++ b/ceph_deploy/mon.py @@ -58,7 +58,7 @@ def catch_mon_errors(conn, logger, hostname, cfg, args): and warn apropriately about it. """ monmap = mon_status_check(conn, logger, hostname, args).get('mo...
Add abstracted function about get monitor initial members. To get monitor members feature will be reuse serval times in mon.py and osd.py. Due to this reason, I rewrite the helper function for this feature. 1. Add get_mon_initial_members that can handle monitor member featching and configuratio...
ceph_ceph-deploy
train
31746519d0af3f0b182f4195ec13c7589180bc16
diff --git a/features/addressing/managing_zones/adding_zone.feature b/features/addressing/managing_zones/adding_zone.feature index <HASH>..<HASH> 100644 --- a/features/addressing/managing_zones/adding_zone.feature +++ b/features/addressing/managing_zones/adding_zone.feature @@ -40,3 +40,15 @@ Feature: Adding a new zone...
[Admin][Zone] Adding zone with scope scenario
Sylius_Sylius
train
7493a8f06bddd5d4794e4f891e3fbf1b217cc410
diff --git a/spec/dummy/config/initializers/monologue.rb b/spec/dummy/config/initializers/monologue.rb index <HASH>..<HASH> 100644 --- a/spec/dummy/config/initializers/monologue.rb +++ b/spec/dummy/config/initializers/monologue.rb @@ -1,12 +1,13 @@ -Monologue.site_name = "@jipiboily / Jean-Philippe Boily" -M...
added a commented config for GA in dummy's initializer
jipiboily_monologue
train
75d597c411884f7b843e87ba19cc04241a72f1f5
diff --git a/mode/clojure/clojure.js b/mode/clojure/clojure.js index <HASH>..<HASH> 100644 --- a/mode/clojure/clojure.js +++ b/mode/clojure/clojure.js @@ -59,7 +59,8 @@ CodeMirror.defineMode("clojure", function (options) { sign: /[+-]/, exponent: /e/i, keyword_char: /[^\s\(\[\;\)\]]/, - ...
[clojure mode] Allow namespaced forms to smartly indent Fix from <URL>
codemirror_CodeMirror
train
bc97ac197bd6fc652ea5fc3013c8744f55c391c3
diff --git a/modules/archi/includes/archiAdresse.class.php b/modules/archi/includes/archiAdresse.class.php index <HASH>..<HASH> 100644 --- a/modules/archi/includes/archiAdresse.class.php +++ b/modules/archi/includes/archiAdresse.class.php @@ -20999,7 +20999,13 @@ class archiAdresse extends ArchiContenu //Loop on...
Fixed bug for address title generation in list display
Archi-Strasbourg_archi-wiki
train
bdcae60f8a3e6bc460ad0fd270b0f17371944372
diff --git a/app/models/setting.rb b/app/models/setting.rb index <HASH>..<HASH> 100644 --- a/app/models/setting.rb +++ b/app/models/setting.rb @@ -6,16 +6,18 @@ class Setting < ActiveRecord::Base cattr_accessor :cache @@cache = Rails.cache + after_commit :expire_cache + class << self def []=(name, valu...
Setting model improved and now clear cache key after commit
o2web_rails_admin_cms
train
e51915030c9a47207fbc97b38cce366f3f46d573
diff --git a/public/js/editors/panel.js b/public/js/editors/panel.js index <HASH>..<HASH> 100644 --- a/public/js/editors/panel.js +++ b/public/js/editors/panel.js @@ -103,7 +103,7 @@ var Panel = function (name, settings) { } // Add Zen Coding to html pane - if (name === 'html') { + if (name === 'html'...
Selectively apply Zen Coding — no lazy loading Zen Coding is now only on if jsbin.settings.editor.zen === true. It's not lazy loaded, but I'm not sure if this is possible as Zen might have to be applied when the Panel is set up? Currently it requires a refresh to work.
jsbin_jsbin
train
1dfa752ec39b047d3b6d28a99eb73c214b3f3ba6
diff --git a/lib/ice_cube/rule_occurrence.rb b/lib/ice_cube/rule_occurrence.rb index <HASH>..<HASH> 100644 --- a/lib/ice_cube/rule_occurrence.rb +++ b/lib/ice_cube/rule_occurrence.rb @@ -22,10 +22,6 @@ module IceCube find_occurrences { |roc| roc > end_time }.select { |d| d >= begin_time } end - def occ...
Resolve github issue 6
seejohnrun_ice_cube
train
077f9a8760346e5f30a54820a438c7daa59f6955
diff --git a/test/models/authorization/activation_key_authorization_test.rb b/test/models/authorization/activation_key_authorization_test.rb index <HASH>..<HASH> 100644 --- a/test/models/authorization/activation_key_authorization_test.rb +++ b/test/models/authorization/activation_key_authorization_test.rb @@ -38,11 +38...
removing UserBaseTest requirement
Katello_katello
train
8709d5e4015761d985c6d4d29e4a9333ef6780c8
diff --git a/Filter/BooleanFilter.php b/Filter/BooleanFilter.php index <HASH>..<HASH> 100644 --- a/Filter/BooleanFilter.php +++ b/Filter/BooleanFilter.php @@ -11,8 +11,8 @@ namespace Sonata\DoctrineORMAdminBundle\Filter; -use Sonata\AdminBundle\Form\Type\BooleanType; use Sonata\AdminBundle\Datagrid\ProxyQueryInte...
Migrate to CoreBundle
sonata-project_SonataDoctrineORMAdminBundle
train
8ceb3e67d56934c47eb09904120eab24b0f330d1
diff --git a/lib/weblib.php b/lib/weblib.php index <HASH>..<HASH> 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -2515,7 +2515,7 @@ function print_simple_box($message, $align='', $width='', $color='', $padding=5, /** * Print the top portion of a standard themed box. * - * @param string $align string, alignmen...
Part fix, bug <I>: print_simple_box behaviour changed. Now aligns box, and shrinks to fit for left/right-alignment.
moodle_moodle
train
f2afb57a276042d7110a2a938965d41196fcfb9f
diff --git a/test/matrix.test.js b/test/matrix.test.js index <HASH>..<HASH> 100644 --- a/test/matrix.test.js +++ b/test/matrix.test.js @@ -122,7 +122,7 @@ suite('numbers', function() { ]; var res0 = matrix.determinant(m0); - assert.equal(1,m0); + assert.equal(1, res0); var m1 = [ [2,...
Fix Bug in Test (Will, rightly, break the build until the determinant function is updated.)
numbers_numbers.js
train
c8541a9933db4af6e157c3f587b2e5d88d4005b7
diff --git a/spec/how_is/contributions_spec.rb b/spec/how_is/contributions_spec.rb index <HASH>..<HASH> 100644 --- a/spec/how_is/contributions_spec.rb +++ b/spec/how_is/contributions_spec.rb @@ -130,7 +130,7 @@ describe HowIs::Contributions do context "#pretty_date" do it "formats the date correctly" do - ...
no unintentional octal literals
duckinator_inq
train
743c4fa8cb0494bb7015d9c03a6e7672d794b191
diff --git a/lib/core/config.js b/lib/core/config.js index <HASH>..<HASH> 100644 --- a/lib/core/config.js +++ b/lib/core/config.js @@ -24,6 +24,7 @@ var Config = function(options) { this.events = options.events; this.embarkConfig = {}; this.context = options.context || [constants.contexts.any]; + this.shownNo...
Update “no account” message and hide for infura The “no account” message was appearing when using infura as the contract deploy target. This has been changed so that this message will only show when the user has configured their environment to have a `networkType` of `testnet`, `rinkeby`, or `mainnet` and a missing `a...
embark-framework_embark
train
aa46425080e8ce45cbfe387487be20181bdec5bc
diff --git a/adventure/game.py b/adventure/game.py index <HASH>..<HASH> 100644 --- a/adventure/game.py +++ b/adventure/game.py @@ -113,6 +113,16 @@ class Game(Data): def start(self): """Start the game.""" + + # For old-fashioned players, accept five-letter truncations like + # "inven" inst...
Adjusted game vocabulary to accept the old 5-letter command abbreviations.
brandon-rhodes_python-adventure
train
58197f75c8cfc69e3e2734a60db89533bf9fc731
diff --git a/gcs/gcstesting/register_bucket_tests.go b/gcs/gcstesting/register_bucket_tests.go index <HASH>..<HASH> 100644 --- a/gcs/gcstesting/register_bucket_tests.go +++ b/gcs/gcstesting/register_bucket_tests.go @@ -18,25 +18,38 @@ type bucketTestSetUpInterface interface { } func getSuiteName(suiteType reflect.T...
Filter out unexported methods.
jacobsa_gcloud
train
9b7482afc5f5618e2cfc8c983ec556fff7a28094
diff --git a/controllers/ThemeController.php b/controllers/ThemeController.php index <HASH>..<HASH> 100644 --- a/controllers/ThemeController.php +++ b/controllers/ThemeController.php @@ -74,7 +74,7 @@ class ThemeController extends ApiController if ($return) return false; - throw new CHttp...
Themes isInstalled now returns <I> instead of <I> when a theme is not installed
ciims_ciims-modules-api
train
fc862a3edd010e65b9b3fe586855fe81807ee4e8
diff --git a/airflow/executors/celery_executor.py b/airflow/executors/celery_executor.py index <HASH>..<HASH> 100644 --- a/airflow/executors/celery_executor.py +++ b/airflow/executors/celery_executor.py @@ -170,11 +170,11 @@ class CeleryExecutor(BaseExecutor): task_tuples_to_send.append((key, simple_ti, co...
Do not create a separate process for one task in CeleryExecutor (#<I>)
apache_airflow
train
2a489d3eeac4d4909862aac1b43ea891e427f416
diff --git a/core/src/main/java/hudson/security/SecurityRealm.java b/core/src/main/java/hudson/security/SecurityRealm.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/hudson/security/SecurityRealm.java +++ b/core/src/main/java/hudson/security/SecurityRealm.java @@ -48,6 +48,7 @@ import static org.acegisecurity...
Better handled or fixed identified problematic parts of the code.
jenkinsci_jenkins
train
3677c0aa05f9eda116407c61570a3dfcd7828893
diff --git a/bin/blt-robo.php b/bin/blt-robo.php index <HASH>..<HASH> 100755 --- a/bin/blt-robo.php +++ b/bin/blt-robo.php @@ -17,6 +17,11 @@ require_once __DIR__ . '/blt-robo-run.php'; /** * Finds the root directory for the repository. * + * Ordinarily this function is robust, but it can fail if you've symlinked ...
More informative error when BLT can't locate repo root. (#<I>)
acquia_blt
train
6c067bd343349af1238a7d99cf1f4bcd8ab07d49
diff --git a/test/test_cli.py b/test/test_cli.py index <HASH>..<HASH> 100644 --- a/test/test_cli.py +++ b/test/test_cli.py @@ -7,6 +7,7 @@ import subprocess from importlib import import_module from pathlib import Path from git import Repo +from pyontutils.utils import TermColors as tc from pyontutils.config impor...
test cli fixed logic that prevented neurons tests from running locally, still issues with LocalNameManager collisions
tgbugs_pyontutils
train
7bad040ea715b7a9ca1767076edc35fb2822f762
diff --git a/lib/Doctrine/Common/Cache/CacheProvider.php b/lib/Doctrine/Common/Cache/CacheProvider.php index <HASH>..<HASH> 100644 --- a/lib/Doctrine/Common/Cache/CacheProvider.php +++ b/lib/Doctrine/Common/Cache/CacheProvider.php @@ -40,6 +40,11 @@ abstract class CacheProvider implements Cache private $namespace ...
CacheProvider: memoize namespace version value. Prior implementation for CacheProvider was seriously flawed from performance point of view as each fetch() call results in 2 additional cache storage calls due to $this->getNamespaceId(), which always checks for $namespaceCacheKey (and fetches it if exists, which will be...
doctrine_common
train
475a5509f6d491618461a6c5c5681540020fadb4
diff --git a/src/Http/RedirectBinding.php b/src/Http/RedirectBinding.php index <HASH>..<HASH> 100644 --- a/src/Http/RedirectBinding.php +++ b/src/Http/RedirectBinding.php @@ -51,32 +51,21 @@ class RedirectBinding */ private $entityRepository; - /** - * @var bool - */ - private $mustBeSigned; ...
Remove boolean in favor of new method.
OpenConext_Stepup-saml-bundle
train
09a12d89dce9c602fe14433b4bc9ed45f2acae25
diff --git a/lib/dat-tcp.rb b/lib/dat-tcp.rb index <HASH>..<HASH> 100644 --- a/lib/dat-tcp.rb +++ b/lib/dat-tcp.rb @@ -134,9 +134,10 @@ module DatTCP def work_loop(client_file_descriptors = nil) logger.info "Starting work loop..." - pool_args = [ @min_workers, @max_workers, @debug ] - @worker_po...
Remove `accept_connection` loop, not needed This removes the while loop in the `accept_connection` method. This is ultimately not-needed and just creates extra overhead. I'm not sure why I originally thought this was needed, but it's a loop within a loop that both have the same conditions. This might have been due to ...
redding_dat-tcp
train
42f95e82551e350eb8f1a2ddd24987e3fa38e5bc
diff --git a/.gitignore b/.gitignore index <HASH>..<HASH> 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ _testmain.go *.exe *.test *.prof +coverage.out diff --git a/auth_test.go b/auth_test.go index <HASH>..<HASH> 100644 --- a/auth_test.go +++ b/auth_test.go @@ -9,7 +9,7 @@ import ( var _ = Describe("...
[#<I>] fixing tests
pivotal-pez_pezdispenser
train
ab186deb1a4d221f54f439bf9f2006a56d2a055e
diff --git a/package.php b/package.php index <HASH>..<HASH> 100644 --- a/package.php +++ b/package.php @@ -4,7 +4,7 @@ require_once 'PEAR/PackageFileManager2.php'; -$version = '1.4.63'; +$version = '1.4.64'; $notes = <<<EOT No release notes for you! EOT;
prepare for release of <I> svn commit r<I>
silverorange_swat
train
ebc71bb6b1a4351333fb4578ed9bbfc9b7eff2f0
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index <HASH>..<HASH> 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,10 @@ Changelog ========= +next +---- +#. New content type `Search` allows tweets to be retrieved by term or hashtag. + 0.3.2 ----- #. Increase cache time so we can survive Twitter outages be...
Simplify test setup and add more tests
praekelt_jmbo-twitter
train
3511da62611bbd41b9fc72b296adca47a3d7e05e
diff --git a/pkg/synthetictests/duplicated_events.go b/pkg/synthetictests/duplicated_events.go index <HASH>..<HASH> 100644 --- a/pkg/synthetictests/duplicated_events.go +++ b/pkg/synthetictests/duplicated_events.go @@ -78,7 +78,7 @@ var allowedRepeatedEventPatterns = []*regexp.Regexp{ // currently UPI install default...
Fix vsphere testing workarounds
openshift_origin
train
066eb23e4a415f3992169398c22749632af1e1f1
diff --git a/Algebra.js b/Algebra.js index <HASH>..<HASH> 100644 --- a/Algebra.js +++ b/Algebra.js @@ -4163,7 +4163,7 @@ if((typeof module) !== 'undefined') { return [symbol, patterns]; }, - simplify: function(symbol) { + simplify: function(symbol) { ...
Extend simplify to `Equation` class as per #<I>
jiggzson_nerdamer
train
94ef3d88b9054372ff9442695f1dd6c2c6b112bc
diff --git a/cmd/minikube/cmd/start.go b/cmd/minikube/cmd/start.go index <HASH>..<HASH> 100644 --- a/cmd/minikube/cmd/start.go +++ b/cmd/minikube/cmd/start.go @@ -46,6 +46,7 @@ const ( cpus = "cpus" humanReadableDiskSize = "disk-size" vmDriver = "vm-driver" + xhyveDiskDriver = ...
Add support for using raw disks with xhyve (#<I>) * Add support for using raw disks with xhyve, default it to true * Fix formatting issue * Prefix disk-driver with xhyve to make it clear it is only for xhyve * Add missing config
kubernetes_minikube
train
0c724baed8d24c0bd82845674b592a949e0e8dec
diff --git a/Resources/public/js/views/ez-contenteditview.js b/Resources/public/js/views/ez-contenteditview.js index <HASH>..<HASH> 100644 --- a/Resources/public/js/views/ez-contenteditview.js +++ b/Resources/public/js/views/ez-contenteditview.js @@ -7,9 +7,7 @@ YUI.add('ez-contenteditview', function (Y) { Y.nam...
Changed the touch device detection to use Y.UA
ezsystems_PlatformUIBundle
train
94aea9af02c5f9da8f6b28e7a491af335c4f12d7
diff --git a/dataclass.py b/dataclass.py index <HASH>..<HASH> 100644 --- a/dataclass.py +++ b/dataclass.py @@ -295,7 +295,7 @@ def dataclass(_cls=None, *, repr=True, cmp=True, hash=None, init=True, return wrap(_cls) -def make_class(cls_name, fields, bases=None, repr=True, cmp=True, +def make_class(cls_name, fi...
Make most params to make_class keyword-only. Add a test for derived classes in make_class.
ericvsmith_dataclasses
train
0dd046b7deaa7962f68c4439ad71a963db2645d5
diff --git a/demo/component/TextDemo.js b/demo/component/TextDemo.js index <HASH>..<HASH> 100644 --- a/demo/component/TextDemo.js +++ b/demo/component/TextDemo.js @@ -81,9 +81,9 @@ class TextDemo extends Component { onChange={e => this.setState({ width: Number(e.target.value) })} /> {this.state....
fix: fix bug of BarChart when add stackId in only one Bar and update test cases, fix #<I>
recharts_recharts
train
6071120890347fd2c04bcfb4e8387d4b1dd839ba
diff --git a/lib/usmu/page.rb b/lib/usmu/page.rb index <HASH>..<HASH> 100644 --- a/lib/usmu/page.rb +++ b/lib/usmu/page.rb @@ -1,3 +1,4 @@ +require 'usmu/layout' module Usmu # Represents a page in the source directory of the website. diff --git a/lib/usmu/site_generator.rb b/lib/usmu/site_generator.rb index <HASH...
Updates so specs can be run individually
usmu_usmu
train
78a16853a1c9ec37377860cea3ecf604cdedf260
diff --git a/examples/async-effects-example/src/store.test.js b/examples/async-effects-example/src/store.test.js index <HASH>..<HASH> 100644 --- a/examples/async-effects-example/src/store.test.js +++ b/examples/async-effects-example/src/store.test.js @@ -3,17 +3,19 @@ const { configureStore } = require("./store"); c...
Remove async/await from example to comply with lts/boron lang support
rradczewski_expect-redux
train
687bcf0461f8251e60caa508c898b87046fbbe1c
diff --git a/blueprints/glimmer-component/index.js b/blueprints/glimmer-component/index.js index <HASH>..<HASH> 100644 --- a/blueprints/glimmer-component/index.js +++ b/blueprints/glimmer-component/index.js @@ -20,7 +20,7 @@ module.exports = { }, locals(options) { - let className = stringUtils.classify(optio...
blueprints: Add "Component" suffix to generated class name
glimmerjs_glimmer-application-pipeline
train
4082dbfbb342163ab1ba58d9e0a55fbe0a5b10a4
diff --git a/symphony/content/content.publish.php b/symphony/content/content.publish.php index <HASH>..<HASH> 100644 --- a/symphony/content/content.publish.php +++ b/symphony/content/content.publish.php @@ -17,6 +17,12 @@ class contentPublish extends AdministrationPage public function sort(&$sort, &$order, $params...
Preserve filters when doing a 'unsort' operation Re: #<I> Re: #<I> Picked from b5de<I>ed<I> Picked from d1c1bb<I>d
symphonycms_symphony-2
train
d2553f08f7144ea412be91046af9a7ced21a37c5
diff --git a/__tests__/index.spec.js b/__tests__/index.spec.js index <HASH>..<HASH> 100644 --- a/__tests__/index.spec.js +++ b/__tests__/index.spec.js @@ -43,5 +43,6 @@ describe('core', () => { it('export intent', () => { expect(core.REGEX).toBeDefined(); expect(core.recognizers).toBeDefined(); + expect...
export createRecognizer from core
Yoctol_bottender
train
55e244efceb6d0b3b4bbbdfbb362f202c1d9dbbf
diff --git a/lenses/optics/traversals.py b/lenses/optics/traversals.py index <HASH>..<HASH> 100644 --- a/lenses/optics/traversals.py +++ b/lenses/optics/traversals.py @@ -112,7 +112,7 @@ class RecurTraversal(Traversal): >>> data = [[1, 2, 100.0], [3, 'hello', [{}, 4], 5]] >>> RecurTraversal(int).to_li...
refactored RecurTraversal to stop consuming values list
ingolemo_python-lenses
train
5f0574496b53a557564c9480c3e490c39d1ace56
diff --git a/eli5/keras/explain_prediction.py b/eli5/keras/explain_prediction.py index <HASH>..<HASH> 100644 --- a/eli5/keras/explain_prediction.py +++ b/eli5/keras/explain_prediction.py @@ -116,7 +116,7 @@ def explain_prediction_keras(estimator, # type: Model weights, activations, grads, predicted_idx, predicted_...
Use tuple unpacking to get image from batch
TeamHG-Memex_eli5
train
31aebc480315d94b91570db999a3e35107d56d59
diff --git a/cmsplugin_cascade/bootstrap4/grid.py b/cmsplugin_cascade/bootstrap4/grid.py index <HASH>..<HASH> 100644 --- a/cmsplugin_cascade/bootstrap4/grid.py +++ b/cmsplugin_cascade/bootstrap4/grid.py @@ -225,7 +225,8 @@ class Bootstrap4Row(list): def compute_column_bounds(self): assert isinstance(self....
Fix: KeyError if a Breakpoint is not checked in container plugin If a Breakpoint is not checked in container plugin and if there is a image / picture in a columns. This is not necessary for the jumbotron apparently.
jrief_djangocms-cascade
train
29f48465cd5c16a087a24508a23f4066c97a63bc
diff --git a/kie-api/src/main/java/org/kie/api/definition/process/Process.java b/kie-api/src/main/java/org/kie/api/definition/process/Process.java index <HASH>..<HASH> 100644 --- a/kie-api/src/main/java/org/kie/api/definition/process/Process.java +++ b/kie-api/src/main/java/org/kie/api/definition/process/Process.java @...
[DROOLS-<I>] PKGs downloaded from guvor contain void references to the internal resources
kiegroup_droolsjbpm-knowledge
train
16579a96338af6c1d8c7b33bef149a88ccb9ee4f
diff --git a/lib/ace/document.js b/lib/ace/document.js index <HASH>..<HASH> 100644 --- a/lib/ace/document.js +++ b/lib/ace/document.js @@ -40,7 +40,7 @@ define(function(require, exports, module) { var oop = require("ace/lib/oop").oop; var lang = require("ace/lib/lang").lang; var MEventEmitter = require("ace/event_em...
convert Search, Selection and TextInput to exports style
joewalker_gcli
train
b19802e6fc8a0655c257b89ffe39ce39fa2ad79d
diff --git a/fontaine/builder.py b/fontaine/builder.py index <HASH>..<HASH> 100644 --- a/fontaine/builder.py +++ b/fontaine/builder.py @@ -66,9 +66,9 @@ class Director(object): if self.charmaps: cn = getattr(cmap, 'common_name', False) nn = getattr(cmap, 'native_name', Fal...
rename accessed variable `_charmaps` to `charmaps`
davelab6_pyfontaine
train
bc854dcc7031df5040ef8a58d0f9b82fdcb08a69
diff --git a/spyder/plugins/plots/widgets/figurebrowser.py b/spyder/plugins/plots/widgets/figurebrowser.py index <HASH>..<HASH> 100644 --- a/spyder/plugins/plots/widgets/figurebrowser.py +++ b/spyder/plugins/plots/widgets/figurebrowser.py @@ -481,8 +481,8 @@ class FigureViewer(QScrollArea): def scale_image(self)...
Fix int devide to see if test pass in py2
spyder-ide_spyder
train
b4664630952fdef5445da38f1e20867cba8b45aa
diff --git a/lib/jitsu/commands/env.js b/lib/jitsu/commands/env.js index <HASH>..<HASH> 100644 --- a/lib/jitsu/commands/env.js +++ b/lib/jitsu/commands/env.js @@ -194,7 +194,16 @@ env.clear = function (appName, callback) { // function viewApp(callback, success) { jitsu.package.tryRead(process.cwd(), callback, func...
[ux] Better messaging on attempting to set env vars for local-only app. Closes #<I>
nodejitsu_jitsu
train
5ae847a0761318375a714334e7cafcb55e1274f8
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -78,25 +78,25 @@ module.exports = class Multispinner { // iterate over spinners to check state and build current strings Object.keys(this.spinners).map(spinner => { + let color + let symbol ...
stub out remaining tests; simplify spinner string logic
codekirei_node-multispinner
train
2d00c417bbf69b62da84e313cec1630fe9f0456d
diff --git a/flask_user/views.py b/flask_user/views.py index <HASH>..<HASH> 100644 --- a/flask_user/views.py +++ b/flask_user/views.py @@ -433,7 +433,7 @@ def register(): # delete new User object if send fails db_adapter.delete_object(user) db_adapter.commit() - ...
rethrow exception, instead of catching and throwing
lingthio_Flask-User
train
c0aec09693cd2366c950e436732a86d76057a177
diff --git a/src/org/opencms/search/CmsSearchManager.java b/src/org/opencms/search/CmsSearchManager.java index <HASH>..<HASH> 100644 --- a/src/org/opencms/search/CmsSearchManager.java +++ b/src/org/opencms/search/CmsSearchManager.java @@ -525,6 +525,9 @@ public class CmsSearchManager implements I_CmsScheduledJob, I_Cms...
Added a method to get all Solr indexes.
alkacon_opencms-core
train
a541b585b11c96e08ac8c385e6b3c4262141d9ed
diff --git a/addon/components/file-browser/component.js b/addon/components/file-browser/component.js index <HASH>..<HASH> 100644 --- a/addon/components/file-browser/component.js +++ b/addon/components/file-browser/component.js @@ -218,6 +218,7 @@ export default Ember.Component.extend(Analytics, { item.set(...
Always attempt to create a file's guid on upload
CenterForOpenScience_ember-osf
train
020889efee28216215a1589da6153d786ff66b0f
diff --git a/lib/field.js b/lib/field.js index <HASH>..<HASH> 100644 --- a/lib/field.js +++ b/lib/field.js @@ -167,6 +167,18 @@ MarcControlField.clone = function(field) { } /* + * Replaces content of the field. + */ +MarcControlField.prototype.assign = function(field) { + if (!(field instanceof MarcControlField)) ...
Added method assign() to record and fields.
afronkin_node-marcrecord
train
1a6f5e78335f114da347109a4da8c5f4d9c7846d
diff --git a/test/last/last.test.js b/test/last/last.test.js index <HASH>..<HASH> 100644 --- a/test/last/last.test.js +++ b/test/last/last.test.js @@ -5,10 +5,17 @@ test('Testing last', (t) => { //For more information on all the methods supported by tape //Please go to https://github.com/substack/tape t.true(type...
update last test, type, throw err, time, and omit args
30-seconds_30-seconds-of-code
train
3208e8c458a53b817a2f40562f2528670bb1a0d7
diff --git a/modules/core/src/main/java/org/projectodd/wunderboss/ec/ConcreteDaemonContext.java b/modules/core/src/main/java/org/projectodd/wunderboss/ec/ConcreteDaemonContext.java index <HASH>..<HASH> 100644 --- a/modules/core/src/main/java/org/projectodd/wunderboss/ec/ConcreteDaemonContext.java +++ b/modules/core/src...
Notify stop callback whenever stop is called even if the daemon is no longer running.
projectodd_wunderboss-release
train
34b10830c21dac777f90ddb381b74be6a339efa9
diff --git a/packages/webpack/lib/middleware/render.js b/packages/webpack/lib/middleware/render.js index <HASH>..<HASH> 100644 --- a/packages/webpack/lib/middleware/render.js +++ b/packages/webpack/lib/middleware/render.js @@ -29,7 +29,8 @@ module.exports = function createRenderMiddleware(webpackConfig) { fs.r...
feat(webpack): use esm in node entry to enable possible tree shaking
untool_untool
train
4f1caaa03a931c764ad25c569e15af4e05cee8ed
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -13,37 +13,45 @@ blockRenderer.urltransform = function (url) { var hasSigil = (c == '@' || c == '&' || c == '%') if (this.options.sanitize && !hasSigil) { + // sanitize - only allow ssb refs or http/s links try...
extract refs from http urls when found in markdown content
ssbc_ssb-markdown
train
322e0ac624c7b83c1ea5f31e6118cba3f2ffbbcc
diff --git a/jsonapi/resource.py b/jsonapi/resource.py index <HASH>..<HASH> 100644 --- a/jsonapi/resource.py +++ b/jsonapi/resource.py @@ -38,6 +38,27 @@ class ResourceManager(object): ResourceManager.get_concrete_model(resource.Meta)) @staticmethod + def get_concrete_model_by_name(model_name...
split get_concrete_model into two: get model by name and by meta
pavlov99_jsonapi
train
1d296c03c9b2fd415e434066f1b0e51728f0095a
diff --git a/backtrader/indicator.py b/backtrader/indicator.py index <HASH>..<HASH> 100644 --- a/backtrader/indicator.py +++ b/backtrader/indicator.py @@ -26,6 +26,7 @@ import six from six.moves import xrange from .lineiterator import LineIterator, IndicatorBase +from .lineseries import LineSeriesMaker class M...
Indicators receiving only 1 data get the 2nd and later lines as extras (use case: a crossover uses line 0 and 1 automatically)
backtrader_backtrader
train