hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
146a25b1d46da9ed31bff233b00e5e034a91d350
diff --git a/spec/unit/plugins/solaris2/platform_spec.rb b/spec/unit/plugins/solaris2/platform_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/plugins/solaris2/platform_spec.rb +++ b/spec/unit/plugins/solaris2/platform_spec.rb @@ -105,4 +105,44 @@ describe Ohai::System, "Solaris plugin platform" do end + de...
Add unit testing for omnios platform detection Make sure this actually works and act as a reference for what the output actually looks like.
chef_ohai
train
56050e95aab8cd872c807337b453f41954c0dcbc
diff --git a/lifxlan/device.py b/lifxlan/device.py index <HASH>..<HASH> 100644 --- a/lifxlan/device.py +++ b/lifxlan/device.py @@ -426,12 +426,13 @@ class Device(object): # Usually used for Get messages, or for state confirmation after Set (hence the optional payload) def req_with_resp(self, msg_type, respo...
Fixed bug where resp_with_ack calls weren't recieving Acknowledgements because changing the response type parameter to a list instead of single type made the Acknowledgement check fail and the devices were being sent messages without the Ack flag set, so of course they didn't response with Acknowledgements.
mclarkk_lifxlan
train
ec80ac202611f1ecfab7e7794a149371f67f1e8e
diff --git a/lib/determine-basal/determine-basal.js b/lib/determine-basal/determine-basal.js index <HASH>..<HASH> 100644 --- a/lib/determine-basal/determine-basal.js +++ b/lib/determine-basal/determine-basal.js @@ -804,15 +804,14 @@ var determine_basal = function determine_basal(glucose_status, currenttemp, iob_ ...
check max_iob against net IOB, not just basaliob
openaps_oref0
train
81290579d2508a7b0edca9d570d6cb2c3e7109ac
diff --git a/resources/views/components/bootstrap4/datetime.blade.php b/resources/views/components/bootstrap4/datetime.blade.php index <HASH>..<HASH> 100644 --- a/resources/views/components/bootstrap4/datetime.blade.php +++ b/resources/views/components/bootstrap4/datetime.blade.php @@ -39,6 +39,7 @@ ...
Disable auto-selection of current date/time
GeneaLabs_laravel-casts
train
fa04c27f24debc3eb34fca2af0256e3700b9516c
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 @@ -97,7 +97,6 @@ from salt.exceptions import SaltRenderError # Import 3rd-party libs import salt.ext.six as six -# pylint: disable=import-error if salt.utils.which('gpg'...
log error and return ciphered txt on decrypt error
saltstack_salt
train
4483a5aa92a4594cb9bdccd6e213bc0bf190f7b2
diff --git a/beatrix/src/test/java/org/killbill/billing/beatrix/integration/usage/TestConsumableInArrear.java b/beatrix/src/test/java/org/killbill/billing/beatrix/integration/usage/TestConsumableInArrear.java index <HASH>..<HASH> 100644 --- a/beatrix/src/test/java/org/killbill/billing/beatrix/integration/usage/TestCons...
invoice: clarify behavior for skipping overlapping usage items
killbill_killbill
train
bd7a77716b9d20833038759fae2a58b088435b1e
diff --git a/RL/space/set.py b/RL/space/set.py index <HASH>..<HASH> 100644 --- a/RL/space/set.py +++ b/RL/space/set.py @@ -139,10 +139,14 @@ class IntervalProd(AbstractSet): def dim(self): return len(self._begin) + @property + def volume(self): + return np.prod(self._end - self._begin) + ...
Added 'volume' property and the likes; fixed an issue with 'equals'
odlgroup_odl
train
23b8cf23b877777dc05df0fe1c64c89b59aa3399
diff --git a/glue/ligolw/lsctables.py b/glue/ligolw/lsctables.py index <HASH>..<HASH> 100644 --- a/glue/ligolw/lsctables.py +++ b/glue/ligolw/lsctables.py @@ -1134,7 +1134,8 @@ class MultiInspiralTable(LSCTableMulti): "ligo_angle": "real_4", "ligo_angle_sig": "real_4", "inclination": "real_4", - "polarization...
Wow, the coinc tables were just a little messed up. Looks like I had gotten half-way through doing something and then forgot and went on to something else.
gwastro_pycbc-glue
train
3e84a06b2849876436cf4f3c3a59f04c3b1a9c3e
diff --git a/cartoframes/context.py b/cartoframes/context.py index <HASH>..<HASH> 100644 --- a/cartoframes/context.py +++ b/cartoframes/context.py @@ -1306,8 +1306,8 @@ class CartoContext(object): median_income = cc.data_discovery('transaction_events', ...
adds conditional greying to account for color=HEXCODE situations
CartoDB_cartoframes
train
a572d4fc4b54b20c7e78fb9848491784bb7051cb
diff --git a/restcomm/restcomm.ui/src/main/webapp/resources/js/controllers/logs-calls.js b/restcomm/restcomm.ui/src/main/webapp/resources/js/controllers/logs-calls.js index <HASH>..<HASH> 100644 --- a/restcomm/restcomm.ui/src/main/webapp/resources/js/controllers/logs-calls.js +++ b/restcomm/restcomm.ui/src/main/webapp/...
Use wildcard as needed/possible for Logs search With this, most fields are now supporting partial matches, except those where LIKE is not used at the DB queries. Also, for some fields, the DB query already contains some %, so those are not added again, as it wouldn't work anyway. Fixes #<I>
RestComm_Restcomm-Connect
train
b2524111bf13ae263bf27f5f0a5bc289af1d810e
diff --git a/src/Adapter/Pdo.php b/src/Adapter/Pdo.php index <HASH>..<HASH> 100644 --- a/src/Adapter/Pdo.php +++ b/src/Adapter/Pdo.php @@ -38,10 +38,11 @@ class Pdo implements Adapter * ['id' => 1]. * @param array $opts Hash of options. Supported keys are 'limit', * 'offset' and 'order' and they cor...
use $ctor arg and fetchAll, is better
ornament-orm_core
train
39959804676e31dc14043acd1c58940abea76c4b
diff --git a/tensor2tensor/envs/env_problem.py b/tensor2tensor/envs/env_problem.py index <HASH>..<HASH> 100644 --- a/tensor2tensor/envs/env_problem.py +++ b/tensor2tensor/envs/env_problem.py @@ -23,6 +23,7 @@ from __future__ import absolute_import from __future__ import division from __future__ import print_function ...
Change env_problem and gym_utils to use absl.logging instead of tf's logging. PiperOrigin-RevId: <I>
tensorflow_tensor2tensor
train
6fe576b3d4deb975bddcec19565d4ca346b00f4e
diff --git a/worker/instancemutater/mutater.go b/worker/instancemutater/mutater.go index <HASH>..<HASH> 100644 --- a/worker/instancemutater/mutater.go +++ b/worker/instancemutater/mutater.go @@ -7,12 +7,16 @@ import ( "github.com/juju/errors" "gopkg.in/juju/names.v2" "gopkg.in/juju/worker.v1" + "strings" + "git...
add unitsChanged() and a few methods to the interface
juju_juju
train
14343a32bfed9b1930e2847d5cbb6a804026e96b
diff --git a/src/main/groovy/xml/MarkupBuilder.java b/src/main/groovy/xml/MarkupBuilder.java index <HASH>..<HASH> 100644 --- a/src/main/groovy/xml/MarkupBuilder.java +++ b/src/main/groovy/xml/MarkupBuilder.java @@ -151,25 +151,28 @@ public class MarkupBuilder extends BuilderSupport { } protected Object crea...
minor refactor - using MarkupBuilder with NamespaceBuilder is currently not a supported option but at least now if you did it would no longer produce malformed XML git-svn-id: <URL>
groovy_groovy-core
train
72b8806abca06cfe60ff3fa08dba9dfb6e714505
diff --git a/mod/quiz/classes/structure.php b/mod/quiz/classes/structure.php index <HASH>..<HASH> 100644 --- a/mod/quiz/classes/structure.php +++ b/mod/quiz/classes/structure.php @@ -715,7 +715,8 @@ class structure { } $followingslotnumber = $moveafterslotnumber + 1; - if ($followingslotnumbe...
MDL-<I> quiz: Fix error moving question from last page When moving the last question from the last page to the last slot of the previous page would show the error in the error log but move successfully.
moodle_moodle
train
b66313d834e72ca213f8dd50e8ff192bb6fd9824
diff --git a/lib/Buzz/Message/AbstractMessage.php b/lib/Buzz/Message/AbstractMessage.php index <HASH>..<HASH> 100644 --- a/lib/Buzz/Message/AbstractMessage.php +++ b/lib/Buzz/Message/AbstractMessage.php @@ -2,8 +2,6 @@ namespace Buzz\Message; -use Buzz\Message\Parser\Parser; - abstract class AbstractMessage imple...
re-removed fromString
kriswallsmith_Buzz
train
97bfe7794ab5ce1f752a8a83556973e0dcb02ad4
diff --git a/daemon_posix.go b/daemon_posix.go index <HASH>..<HASH> 100644 --- a/daemon_posix.go +++ b/daemon_posix.go @@ -170,7 +170,7 @@ func (d *Context) prepareEnv() (err error) { } if len(d.Args) == 0 { - d.Args = os.Args[1:] + d.Args = os.Args } mark := fmt.Sprintf("%s=%s", MARK_NAME, MARK_VALUE)
Bug fix: omitted path to the executable file
sevlyar_go-daemon
train
13cb412b27ad99b3281032a6fc54fec12ce4515f
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ for dirpath, dirnames, filenames in os.walk(walk_dir): install_requires = [ "geoshape-geonode==1.2", "django-classification-banner>=0.1.4", - "django-maploom==1.2", + "django-map...
Use django-maploom <I> this is only because Pypi doesn't allow for pushing updates to a released package, so a minor version is added. it is still the <I> release of maploom but there was an update that had to be made to include the README.md. this means geoshape-geonode will have to be released as well with a minor v...
ROGUE-JCTD_rogue_geonode
train
d2cd7b4ae84ca607fd012eae021521861144483e
diff --git a/AbstractCmdTask.php b/AbstractCmdTask.php index <HASH>..<HASH> 100644 --- a/AbstractCmdTask.php +++ b/AbstractCmdTask.php @@ -49,6 +49,12 @@ abstract class AbstractCmdTask extends AbstractTask ]; /** + * @var array $hiddenOutput replace matching strings of output with stars + */ + pr...
Hide password from mysql commands of Robo (task #<I>)
QoboLtd_qobo-robo
train
4e300803f2ab44becbe737abdd1459aa026000c9
diff --git a/hacking/checks/localization.py b/hacking/checks/localization.py index <HASH>..<HASH> 100644 --- a/hacking/checks/localization.py +++ b/hacking/checks/localization.py @@ -42,8 +42,11 @@ def check_i18n(): except GeneratorExit: return - if (token_type == tokenize.NAME and text =...
Update localization checks to understand separate catalogs Make sure localization checks understand OpenStack's seperate message catalogs. <URL>
openstack_hacking
train
ad746f6924cef98474f476d3df55a59efb4a6c15
diff --git a/metagenomefilter/automateCLARK.py b/metagenomefilter/automateCLARK.py index <HASH>..<HASH> 100755 --- a/metagenomefilter/automateCLARK.py +++ b/metagenomefilter/automateCLARK.py @@ -400,8 +400,12 @@ class CLARK(object): except AttributeError: self.runmetadata = MetadataObject() ...
Updated CLARK script to work in a non-pipeline setting
lowandrew_OLCTools
train
a8f5047352541682e347cc74b5e142b8b7ea95bd
diff --git a/heron/api/src/java/com/twitter/heron/api/topology/BaseComponentDeclarer.java b/heron/api/src/java/com/twitter/heron/api/topology/BaseComponentDeclarer.java index <HASH>..<HASH> 100644 --- a/heron/api/src/java/com/twitter/heron/api/topology/BaseComponentDeclarer.java +++ b/heron/api/src/java/com/twitter/her...
added null check when heron reads the config file
apache_incubator-heron
train
0396237ce1a457c2485bfdc4a40fa1f8cbf3f993
diff --git a/bridge.js b/bridge.js index <HASH>..<HASH> 100644 --- a/bridge.js +++ b/bridge.js @@ -27,10 +27,16 @@ var whitelist = function(req, res, next) { ]); }; +var stringifyOutput = function(req, res, next) { + res.body = JSON.stringify(res.body); + next(); +}; + app.use(express.logger()); app.use...
output is now JSON.stringify-ed - this should be what the iOS SDK is expecting.
nooblucker_hueSimulator
train
334ae69ca2c59d0ea19f129aef4b75dfb88f92fc
diff --git a/test/unittests/study/test_combined.py b/test/unittests/study/test_combined.py index <HASH>..<HASH> 100644 --- a/test/unittests/study/test_combined.py +++ b/test/unittests/study/test_combined.py @@ -133,6 +133,8 @@ class TestCombined(TestCase): 'c': Dataset('ones', mrtrix_format)}) ...
added mrtrix load to test_combined_study
MonashBI_arcana
train
85f2fee245936ea6291e2e38fe4c7199dc96c8fe
diff --git a/uproot/source/compressed.py b/uproot/source/compressed.py index <HASH>..<HASH> 100644 --- a/uproot/source/compressed.py +++ b/uproot/source/compressed.py @@ -4,10 +4,10 @@ from __future__ import absolute_import -import struct +import sys +import struct import numpy - import xxhash from copy impor...
Fixed for python 2
scikit-hep_uproot
train
e1dae5f05460857b10a1d33e355e55a4a5ec59b2
diff --git a/src/Parsers/Search/RecursiveOneX.php b/src/Parsers/Search/RecursiveOneX.php index <HASH>..<HASH> 100644 --- a/src/Parsers/Search/RecursiveOneX.php +++ b/src/Parsers/Search/RecursiveOneX.php @@ -78,6 +78,13 @@ class RecursiveOneX */ protected function isPaginationBroken(Results $big, Results $sma...
Fixes call to a member function toArray() on null. Fixes #<I> (#<I>)
troydavisson_PHRETS
train
687a6515ea8eac0e6c6735c9756b23ea18e02819
diff --git a/plugins/org.eclipse.xtext/src/org/eclipse/xtext/scoping/impl/ImportNormalizer.java b/plugins/org.eclipse.xtext/src/org/eclipse/xtext/scoping/impl/ImportNormalizer.java index <HASH>..<HASH> 100644 --- a/plugins/org.eclipse.xtext/src/org/eclipse/xtext/scoping/impl/ImportNormalizer.java +++ b/plugins/org.ecli...
[xtext] Introduced accessors for the fields of the ImportNormalizer see <URL>
eclipse_xtext-core
train
8870379ad7abbb09ad0eae5f79ff38d33af659f6
diff --git a/lib/puppet/util/autoload.rb b/lib/puppet/util/autoload.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/util/autoload.rb +++ b/lib/puppet/util/autoload.rb @@ -24,7 +24,7 @@ class Puppet::Util::Autoload # see if a given plugin is currently loaded and thus should be # reloaded. def loaded?(path...
(#<I>) Normalize path names to avoid unnecessary reloading
puppetlabs_puppet
train
7bc259b74ac3b8ce24b5dbc3c7cca333cd246d4c
diff --git a/graftm/create.py b/graftm/create.py index <HASH>..<HASH> 100644 --- a/graftm/create.py +++ b/graftm/create.py @@ -404,22 +404,21 @@ graftM create --taxtastic_taxonomy %s --taxtastic_seqinfo %s --alignment %s --r seen_taxons = set() prefix_re = re.compile(r'^[a-zA-...
create: do not choke when dereplicating underdefined taxonomies
geronimp_graftM
train
2153f4a5fb4333389dd8fa51bca938e2dc0b44cf
diff --git a/src/Facades/API.php b/src/Facades/API.php index <HASH>..<HASH> 100644 --- a/src/Facades/API.php +++ b/src/Facades/API.php @@ -73,4 +73,14 @@ class API extends Facade { return static::$app['router']->getCurrentRequest() instanceof InternalRequest; } + + /** + * Get the response fac...
Remove the response macro and use API::response() instead to get an instance of the factory and builder.
dingo_api
train
1ae188a3f323272a4d28f5814d60a62b6f32f38e
diff --git a/lib/gir_ffi/builders/callback_argument_builder.rb b/lib/gir_ffi/builders/callback_argument_builder.rb index <HASH>..<HASH> 100644 --- a/lib/gir_ffi/builders/callback_argument_builder.rb +++ b/lib/gir_ffi/builders/callback_argument_builder.rb @@ -64,7 +64,7 @@ module GirFFI def pre_convertor ...
Make ClosureArgumentBuilder a descendant of CallbackArgumentBuilder This makes sense since the building logic is identical, except for the decision whether conversion is actually needed. That said, ClosureArgumentBuilder only uses the logic for :in arguments at the moment.
mvz_gir_ffi
train
ebc05cc93ab4483e294affa4c37359dd375f4493
diff --git a/admin.go b/admin.go index <HASH>..<HASH> 100644 --- a/admin.go +++ b/admin.go @@ -525,14 +525,13 @@ func (ca *clusterAdmin) AlterPartitionReassignments(topic string, assignment [][ errs = append(errs, err) } else { if rsp.ErrorCode > 0 { - errs = append(errs, errors.New(rsp.ErrorCode.Error())...
fix(admin): make DeleteRecords err consistent Also prevent a few other creations of new errors where the existing KError should have been preserved for errors.Is checking. Fixes #<I>
Shopify_sarama
train
a9cad44f5d63dd8b9eb676f1aadcb136060c4dff
diff --git a/src/InteractsWithMedia.php b/src/InteractsWithMedia.php index <HASH>..<HASH> 100644 --- a/src/InteractsWithMedia.php +++ b/src/InteractsWithMedia.php @@ -286,11 +286,16 @@ trait InteractsWithMedia */ public function getMedia(string $collectionName = 'default', $filters = []): MediaCollections\Mo...
Add `getMediaRepository()` to `InteractsWithMedia` and `query()` to `MediaRepository` (#<I>) * Add `getMediaRepository()` method for override capability and ease of use * Add `query()` method for extensibility * Make `query()` method protected
spatie_laravel-medialibrary
train
462e4ad9dfd297c9512c70eec27adeb223ca4e24
diff --git a/cmd/nfpm/main.go b/cmd/nfpm/main.go index <HASH>..<HASH> 100644 --- a/cmd/nfpm/main.go +++ b/cmd/nfpm/main.go @@ -12,7 +12,6 @@ import ( "github.com/goreleaser/nfpm" _ "github.com/goreleaser/nfpm/deb" _ "github.com/goreleaser/nfpm/rpm" - yaml "gopkg.in/yaml.v2" ) var ( @@ -56,19 +55,18 @@ func in...
feat: overrides for nfpm cli
goreleaser_nfpm
train
37cb3eef464668ea73379df5d438c64e7abaa1a5
diff --git a/core/src/main/java/com/opentext/ia/sdk/client/api/ArchiveClient.java b/core/src/main/java/com/opentext/ia/sdk/client/api/ArchiveClient.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/opentext/ia/sdk/client/api/ArchiveClient.java +++ b/core/src/main/java/com/opentext/ia/sdk/client/api/ArchiveC...
Re-introduce accidentally removed method
Enterprise-Content-Management_infoarchive-sip-sdk
train
ac8c1cff87bc64f162207028c6ca3b30740aa830
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -66,13 +66,15 @@ module.exports = (function() vector.push(a.charCodeAt(offset + y)); } - for (; (x + 3) < lb;) { + var len = vector.length - 1; + + for (; x < lb - 3;) { bx0 = b.charCodeAt(offset ...
minor tweeks to help the compiler to optimize, surprisingly gained 5-<I>% speedup
gustf_js-levenshtein
train
3c3cd31cba9643c6ec6c6261120b72fbe429b937
diff --git a/hazelcast/src/main/java/com/hazelcast/cache/impl/AbstractCacheService.java b/hazelcast/src/main/java/com/hazelcast/cache/impl/AbstractCacheService.java index <HASH>..<HASH> 100644 --- a/hazelcast/src/main/java/com/hazelcast/cache/impl/AbstractCacheService.java +++ b/hazelcast/src/main/java/com/hazelcast/ca...
Minimal cleanup of AbstractCacheService to ease debugging of NPE
hazelcast_hazelcast
train
c3e503c2c3bbc74ebe3404bb0c6d4e13bf7357be
diff --git a/src/Command/Organization/OrganizationInfoCommand.php b/src/Command/Organization/OrganizationInfoCommand.php index <HASH>..<HASH> 100644 --- a/src/Command/Organization/OrganizationInfoCommand.php +++ b/src/Command/Organization/OrganizationInfoCommand.php @@ -32,13 +32,11 @@ class OrganizationInfoCommand ext...
Show an "owner" in the org:info command
platformsh_platformsh-cli
train
84e0787665cceda1c3c33f431a1f871e8fbab3d2
diff --git a/uri/part/path.py b/uri/part/path.py index <HASH>..<HASH> 100644 --- a/uri/part/path.py +++ b/uri/part/path.py @@ -26,6 +26,9 @@ class PathPart(ProxyPart): value = str(value) obj._trailing = value.endswith('/') + if obj.authority and not value.startswith('/'): + raise ValueError("Can only assig...
Restrict rootless path assignment if authority is present.
marrow_uri
train
f9f33590e9bb76358afac3ef650a4009d1e47a25
diff --git a/facade/service.go b/facade/service.go index <HASH>..<HASH> 100644 --- a/facade/service.go +++ b/facade/service.go @@ -1217,6 +1217,16 @@ func (f *Facade) scheduleService(ctx datastore.Context, tenantID, serviceID stri affected := 0 var errToReturn error = nil if emergency { + // Set EmergencyShu...
Set EmergencyShutdown on all services before stopping them
control-center_serviced
train
3a5abeb1c604bc83f07dbdac0e577a2ba4f14acc
diff --git a/sandbox/namespace_linux.go b/sandbox/namespace_linux.go index <HASH>..<HASH> 100644 --- a/sandbox/namespace_linux.go +++ b/sandbox/namespace_linux.go @@ -25,7 +25,7 @@ var ( garbagePathMap = make(map[string]bool) gpmLock sync.Mutex gpmWg sync.WaitGroup - gpmCleanupPeriod = 60 + ...
Loopback interface not t brought up Loopback interface was s not brought up when wemoved to clone method of creating namespace. e. Adding it. Also taking care of PR R comments.
docker_libnetwork
train
cec62db2d8c6428fc1bd161bac2e221c35d3c79e
diff --git a/lib/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php b/lib/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php index <HASH>..<HASH> 100644 --- a/lib/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php +++ b/lib/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php @@ -88,7 +88,7 @@ class DatabaseDriver implements Driver ...
Removed _ prefix from private functions.
doctrine_orm
train
2ca86b608560d3aea0df279bed4a71d953a98821
diff --git a/src/app/panels/graph/module.js b/src/app/panels/graph/module.js index <HASH>..<HASH> 100644 --- a/src/app/panels/graph/module.js +++ b/src/app/panels/graph/module.js @@ -116,7 +116,7 @@ function (angular, app, $, _, kbn, moment, TimeSeries, PanelMeta) { _.defaults($scope.panel.grid, _d.grid); _.d...
Changed log base <I> to log base <I>, #<I>
grafana_grafana
train
61ed24fdad689cc8783f70b8a5074eaf636cd8f4
diff --git a/va/validation-authority.go b/va/validation-authority.go index <HASH>..<HASH> 100644 --- a/va/validation-authority.go +++ b/va/validation-authority.go @@ -279,7 +279,6 @@ func (va *ValidationAuthorityImpl) fetchHTTP(identifier core.AcmeIdentifier, pat return emptyBody, challenge, err } - // Read body...
close http response bodies in the va Fixes #<I>
letsencrypt_boulder
train
5e7c48ffed475d798935713bfc20f7ef150ac384
diff --git a/lib/geometry/point.rb b/lib/geometry/point.rb index <HASH>..<HASH> 100644 --- a/lib/geometry/point.rb +++ b/lib/geometry/point.rb @@ -157,6 +157,30 @@ geometry class (x, y, z). end end + # Returns a new {Point} with the given number of elements removed from the end + # @return [Point] the poppe...
Added #push, #pop, #shift, and #unshift to Point
bfoz_geometry
train
55ae770de6f312b619ba89eb7c19bf0bc56a6cf8
diff --git a/openquake/calculators/classical.py b/openquake/calculators/classical.py index <HASH>..<HASH> 100644 --- a/openquake/calculators/classical.py +++ b/openquake/calculators/classical.py @@ -567,8 +567,8 @@ class ClassicalCalculator(base.HazardCalculator): build_hazard, allargs, distribute=dist, h5...
Small fix [skip CI]
gem_oq-engine
train
9430d98c81e14b3b9bdbce518b5b8f00e9eef919
diff --git a/rules/best_practices.js b/rules/best_practices.js index <HASH>..<HASH> 100644 --- a/rules/best_practices.js +++ b/rules/best_practices.js @@ -1,35 +1,35 @@ module.exports = { - "yoda": ["error", "never", { exceptRange: true }], - "vars-on-top": "error", - "no-with": "error", - "no-void": "error", - "...
adding links to each issue in rules/best_practices.js
dwyl_goodparts
train
0381fd060c8a1b5862a2175c02ebd67a07f577ab
diff --git a/spec/service_spec.rb b/spec/service_spec.rb index <HASH>..<HASH> 100644 --- a/spec/service_spec.rb +++ b/spec/service_spec.rb @@ -122,8 +122,31 @@ describe Cocaine::Service do end end - it 'should return error if service throws error' do - fail() + it 'should return future with error if serv...
Checking streaming protocol implementation for cases when some error occurred.
cocaine_cocaine-framework-ruby
train
c82afab387700a79df561b24f2c84f4abc15796e
diff --git a/firebase_test.go b/firebase_test.go index <HASH>..<HASH> 100644 --- a/firebase_test.go +++ b/firebase_test.go @@ -1,7 +1,6 @@ package firebase_test import ( - "fmt" "os" "reflect" "testing" @@ -159,10 +158,11 @@ func TestSetRules(t *testing.T) { } } +/* TODO: Once circle ci supports go 1.4, ...
Disable go <I> features for now, they just make us fail more elegantly
ereyes01_firebase
train
350041ecaea5ec2fd84a7fc8493b9719cfa39caf
diff --git a/packages/api/server/endpoints.js b/packages/api/server/endpoints.js index <HASH>..<HASH> 100644 --- a/packages/api/server/endpoints.js +++ b/packages/api/server/endpoints.js @@ -62,7 +62,27 @@ class EndpointController { const options = { url: req.url, cache: this.cache, ws: this.ws, db } ...
fix(api): Send <I> on errors in component, store error in db
cubic-js_cubic
train
5a4fea759244723568bb7cf789948bae203b9ec1
diff --git a/scikits/umfpack/interface.py b/scikits/umfpack/interface.py index <HASH>..<HASH> 100644 --- a/scikits/umfpack/interface.py +++ b/scikits/umfpack/interface.py @@ -110,6 +110,7 @@ class UmfpackLU(object): Methods ------- solve + solve_sparse Examples --------
DOC: add missing method to docs
scikit-umfpack_scikit-umfpack
train
ecadd352bf63df4b050b725fd65d6f813828d9e5
diff --git a/flink-clients/src/main/java/org/apache/flink/client/CliFrontend.java b/flink-clients/src/main/java/org/apache/flink/client/CliFrontend.java index <HASH>..<HASH> 100644 --- a/flink-clients/src/main/java/org/apache/flink/client/CliFrontend.java +++ b/flink-clients/src/main/java/org/apache/flink/client/CliFro...
[FLINK-<I>] [cleanup] Remove redundant code in CliFrontend This closes #<I>.
apache_flink
train
717495447d53c5a6285bfb2e9024aacefc9c4551
diff --git a/gimmemotifs/motif/__init__.py b/gimmemotifs/motif/__init__.py index <HASH>..<HASH> 100644 --- a/gimmemotifs/motif/__init__.py +++ b/gimmemotifs/motif/__init__.py @@ -98,7 +98,7 @@ class Motif(object): else: self.pfm = [] else: - if np.all(np.isclose(np.sum(...
fix incorrect recognition of pcm, logo issue
vanheeringen-lab_gimmemotifs
train
3582ef53dd2da09bc4f4b926122b87d1bf580559
diff --git a/test/test_iptables.py b/test/test_iptables.py index <HASH>..<HASH> 100644 --- a/test/test_iptables.py +++ b/test/test_iptables.py @@ -164,7 +164,7 @@ class Test_IptablesMangleMark_to_delete_command(object): class Test_IptablesMangleController_get_unique_mark_id(object): - @pytest.mark.xfail + @p...
Change xfail test cases to skip in default
thombashi_tcconfig
train
e2c8d925a510bd21627fed5f533ffa0f9cc25aaa
diff --git a/lib/influxdb/client.rb b/lib/influxdb/client.rb index <HASH>..<HASH> 100644 --- a/lib/influxdb/client.rb +++ b/lib/influxdb/client.rb @@ -69,7 +69,7 @@ module InfluxDB @worker = InfluxDB::Worker.new(self) if @async self.udp_client = opts[:udp] ? InfluxDB::UDPClient.new(opts[:udp][:host], opts...
Don't register at_exit if not retrying This prevents a memory leak in long running processes
influxdata_influxdb-ruby
train
39504c526a5df55ed17ea560e06d5aeddbdc5513
diff --git a/lib/msg-auth.js b/lib/msg-auth.js index <HASH>..<HASH> 100644 --- a/lib/msg-auth.js +++ b/lib/msg-auth.js @@ -91,7 +91,7 @@ MsgAuth.prototype.getBufForSig = function () { return bw.toBuffer() } -MsgAuth.prototype.validate = function () { +MsgAuth.prototype.asyncVerify = function () { return AsyncC...
validate -> asyncVerify In keeping consistency with content-auth, this method should be named asyncVerify.
moneybutton_yours-core
train
9666d0c5a87d4df04cdc6bb23b9d21d04ad97206
diff --git a/spyderlib/widgets/explorer.py b/spyderlib/widgets/explorer.py index <HASH>..<HASH> 100644 --- a/spyderlib/widgets/explorer.py +++ b/spyderlib/widgets/explorer.py @@ -512,7 +512,7 @@ class DirView(QTreeView): misc.rename_file(fname, path) self.parent_widget.emit( \ ...
Project explorer: it is now possible to rename projects (safely)
spyder-ide_spyder
train
cae0b1a038bc9e02f796617ac1a1329ea554eb10
diff --git a/lib/coffee_script/lexer.rb b/lib/coffee_script/lexer.rb index <HASH>..<HASH> 100644 --- a/lib/coffee_script/lexer.rb +++ b/lib/coffee_script/lexer.rb @@ -93,8 +93,8 @@ module CoffeeScript return if string_token return if js_token return if regex_token - return if comment_token ...
lex indents with higher precedence than comments
gkovacs_livescript-async
train
3d253370b89b950bfaa5602bdb6370ab230f7d25
diff --git a/tests/features/test_features.py b/tests/features/test_features.py index <HASH>..<HASH> 100644 --- a/tests/features/test_features.py +++ b/tests/features/test_features.py @@ -89,6 +89,19 @@ def test_feature_extraction(): n_default_w_customized_features = session.query(FeatureKey).count() featurize...
Demonstrate #<I> using a spurious extra feature extractor
HazyResearch_fonduer
train
ae3a1a1b7e78eb1ef60fb8a74c11c13d605b92eb
diff --git a/docs/components/RestrictFocusToChildrenDocs.js b/docs/components/RestrictFocusToChildrenDocs.js index <HASH>..<HASH> 100644 --- a/docs/components/RestrictFocusToChildrenDocs.js +++ b/docs/components/RestrictFocusToChildrenDocs.js @@ -22,7 +22,7 @@ class RestrictFocusToChildrenDocs extends React.Component {...
Add clarity to RestrictFocusToChildrenDocs
mxenabled_mx-react-components
train
6ea91b1fa6f1c5e00c5b5f0ff8202437836b699f
diff --git a/src/parser/vast_parser.js b/src/parser/vast_parser.js index <HASH>..<HASH> 100644 --- a/src/parser/vast_parser.js +++ b/src/parser/vast_parser.js @@ -154,7 +154,9 @@ export class VASTParser extends EventEmitter { getRemainingAds(all) { return new Promise((resolve, reject) => { if (this.remai...
[parser] Add return statements in intermediate rejects
dailymotion_vast-client-js
train
ba401e154461bca5323ca9121c6dacaee10ebe88
diff --git a/src/validation/rules/UniqueFragmentNames.js b/src/validation/rules/UniqueFragmentNames.js index <HASH>..<HASH> 100644 --- a/src/validation/rules/UniqueFragmentNames.js +++ b/src/validation/rules/UniqueFragmentNames.js @@ -13,7 +13,7 @@ import { GraphQLError } from '../../error'; export function duplic...
Unify wording in error messages. Before this change there was: - There can be only one argument named ... - There can be only one input field named ... - There can be only one variable named ... - There can only be one fragment named ... - There can only be one operation named ... Now the last two match the others.
graphql_graphql-js
train
4c24784e59e26522442540409f5d735370be4abf
diff --git a/libkbfs/config_local.go b/libkbfs/config_local.go index <HASH>..<HASH> 100644 --- a/libkbfs/config_local.go +++ b/libkbfs/config_local.go @@ -5,6 +5,7 @@ package libkbfs import ( + "flag" "fmt" "os" "path/filepath" @@ -146,6 +147,8 @@ type ConfigLocal struct { // DiskCacheMode represents the mod...
disk_cache_mode: Fixed the parameter to use a flag.Value so the parsing is transparently handled by the flag package.
keybase_client
train
a3bc4438ebda8b95f74c7afd2b44e7910e2bcc98
diff --git a/steampy/client.py b/steampy/client.py index <HASH>..<HASH> 100644 --- a/steampy/client.py +++ b/steampy/client.py @@ -86,28 +86,18 @@ class SteamClient: return msg in response.text @login_required - def get_my_inventory(self, game: GameOptions, merge: bool = True) -> dict: - url =...
Client - change getting inventory to using new api
bukson_steampy
train
d72fa382cfc1876a114ed394d33e86b926fb95fd
diff --git a/abaaso.js b/abaaso.js index <HASH>..<HASH> 100644 --- a/abaaso.js +++ b/abaaso.js @@ -1381,7 +1381,7 @@ var abaaso = function(){ (nodelist === false) ? obj = Array.prototype.slice.call(obj) : void(0); break; case "#": - obj = document.getElementById(arg); + obj = document.getE...
Fixed an error in $() for ID case
avoidwork_abaaso
train
a40e7a88f86a40291863709f4241403574326916
diff --git a/lib/ronin/program/options.rb b/lib/ronin/program/options.rb index <HASH>..<HASH> 100644 --- a/lib/ronin/program/options.rb +++ b/lib/ronin/program/options.rb @@ -135,6 +135,13 @@ module Ronin return self end + def parse(argv,&block) + super(argv) + + block.call(self) if...
Added Options#parse back.
ronin-ruby_ronin
train
d577f18921ac717f09f179bfd384c37a5a3a9361
diff --git a/src/Spryker/Zed/CategoryDataImport/CategoryDataImportDependencyProvider.php b/src/Spryker/Zed/CategoryDataImport/CategoryDataImportDependencyProvider.php index <HASH>..<HASH> 100644 --- a/src/Spryker/Zed/CategoryDataImport/CategoryDataImportDependencyProvider.php +++ b/src/Spryker/Zed/CategoryDataImport/Ca...
[DT-4] Huge diff after fixing get methods
spryker_category-data-import
train
ce7ec254b1c4aff8bb82fe1ab4e6c5ade5bd5c9a
diff --git a/src/Type/Base/BaseType.php b/src/Type/Base/BaseType.php index <HASH>..<HASH> 100644 --- a/src/Type/Base/BaseType.php +++ b/src/Type/Base/BaseType.php @@ -34,7 +34,7 @@ abstract class BaseType */ public static function isCorrectType(?string $type): bool { - return in_array($type, (new...
Increase Mutation Score Indicator (MSI) by removing "src/Type/Base/BaseType.php:<I> [M] TrueValue" mutant
meritoo_common-library
train
0021301ce932dc767d10fe6fc76f759f44afd348
diff --git a/xchange-coinmarketcap/src/main/java/org/knowm/xchange/coinmarketcap/CoinMarketCap.java b/xchange-coinmarketcap/src/main/java/org/knowm/xchange/coinmarketcap/CoinMarketCap.java index <HASH>..<HASH> 100644 --- a/xchange-coinmarketcap/src/main/java/org/knowm/xchange/coinmarketcap/CoinMarketCap.java +++ b/xcha...
fix api path, to exclude http redirects from service
knowm_XChange
train
52678b2eb59b048dec89283859a9074baa581931
diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index <HASH>..<HASH> 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -215,6 +215,14 @@ class Command(_BaseCommand): If ``True``\, cooldown processing is done after argument parsing, which calls con...
[commands] Add Command.extras
Rapptz_discord.py
train
dace5dbc6108136a866ecc08890ee0ddfd05f400
diff --git a/src/base/types/Api.php b/src/base/types/Api.php index <HASH>..<HASH> 100644 --- a/src/base/types/Api.php +++ b/src/base/types/Api.php @@ -295,6 +295,28 @@ } /** + * @param ModelCriteria $query + */ + private function checkReturnFields(ModelCriteria &$query) { + ...
Improved performance in admin api lists
psfs_core
train
e67d72986039fcc2cdbb3ad5a42754386dc9f4f6
diff --git a/spec/ten_thousand_feet/api/time_entries_spec.rb b/spec/ten_thousand_feet/api/time_entries_spec.rb index <HASH>..<HASH> 100644 --- a/spec/ten_thousand_feet/api/time_entries_spec.rb +++ b/spec/ten_thousand_feet/api/time_entries_spec.rb @@ -3,27 +3,26 @@ require 'spec_helper' module TenThousandFeet module...
Refactor time_entries_spec
spindance_ten_thousand_feet
train
893d2311d4d02f283cd579aa4bfe22a7abcad50e
diff --git a/lib/template/helpers/action.js b/lib/template/helpers/action.js index <HASH>..<HASH> 100644 --- a/lib/template/helpers/action.js +++ b/lib/template/helpers/action.js @@ -27,7 +27,7 @@ exports.create = function (data) { } // If action is one that shouldn't have a helper skip it - if (utils.array.in...
Remove actions shouldn't have a helper, just like the old destroy action
mde_ejs
train
9e52c57e80696c28246f5e40d924e7aea904d5e9
diff --git a/lib/natural/index.js b/lib/natural/index.js index <HASH>..<HASH> 100644 --- a/lib/natural/index.js +++ b/lib/natural/index.js @@ -65,6 +65,7 @@ exports.Trie = require('./trie/trie'); exports.SentenceAnalyzer = require('./analyzers/sentence_analyzer'); exports.stopwords = require('./util/stopwords').words...
exports.Spellcheck missing I am working on an example demonstrating the Spellcheck functionality and noticed that the exports was missing from this file. If this is not correct, please close and ignore!
NaturalNode_natural
train
22e07e0d32ed635bb0bf21c7e8eb09e324405210
diff --git a/src/java/org/archive/wayback/archivalurl/TagMagixTest.java b/src/java/org/archive/wayback/archivalurl/TagMagixTest.java index <HASH>..<HASH> 100644 --- a/src/java/org/archive/wayback/archivalurl/TagMagixTest.java +++ b/src/java/org/archive/wayback/archivalurl/TagMagixTest.java @@ -166,6 +166,29 @@ public c...
FEATURE: added test for "correct" handling of page URLs that do not include scheme. git-svn-id: <URL>
iipc_openwayback
train
f005f5901d5abe0842a036c3c1666787bda19248
diff --git a/sharepointAPI.php b/sharepointAPI.php index <HASH>..<HASH> 100644 --- a/sharepointAPI.php +++ b/sharepointAPI.php @@ -66,7 +66,7 @@ class sharepointAPI{ */ public function read($list, $limit = 0, $query = null){ //Check limit is set - if($limit==0 || $limit == null)$limit = $MAX_ROWS; + if($limit...
Fix to typo. Credit: Geraint
thybag_PHP-SharePoint-Lists-API
train
b1f6f3b2a7f7d27494e299b5fcc7ac79618b97a1
diff --git a/pebble/decorators.py b/pebble/decorators.py index <HASH>..<HASH> 100644 --- a/pebble/decorators.py +++ b/pebble/decorators.py @@ -111,7 +111,7 @@ class ThreadWrapper(object): def __call__(self, *args, **kwargs): t = Task(next(self._counter), - self._function, args, kwargs, s...
fixed decorators to comply with new Task
noxdafox_pebble
train
deb5f6f78c5fdb88fcd1ceb8400ebd471a4ef265
diff --git a/src/Mapper.php b/src/Mapper.php index <HASH>..<HASH> 100644 --- a/src/Mapper.php +++ b/src/Mapper.php @@ -71,12 +71,6 @@ abstract class Mapper implements Mapper\IMapper return $this->mapProperties($properties); } - // Add primary property automatically if not set - $pr...
FindAll: moved primary property to selection from mapper to query
unimapper_unimapper
train
55320261d364c3b76fd5a950c0579f49f0cfbdfe
diff --git a/backend/impl/src/main/java/org/geomajas/internal/layer/feature/FeatureModelRegistry.java b/backend/impl/src/main/java/org/geomajas/internal/layer/feature/FeatureModelRegistry.java index <HASH>..<HASH> 100644 --- a/backend/impl/src/main/java/org/geomajas/internal/layer/feature/FeatureModelRegistry.java +++ ...
GBE-<I> do not fail because of buggy feature model
geomajas_geomajas-project-server
train
ac62d86c315ec64243081941ad59d98083e105f3
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,6 @@ #!/usr/bin/env python from setuptools import setup -# import matplotlib import os from aston import __version__ @@ -39,7 +38,7 @@ options = { # 'data_files': matplotlib.get_py2exe_datafiles(), 'p...
allowed newer versions of numpy
bovee_Aston
train
e3125e7e02d461ee7f47e4b5d70dcd3493e68783
diff --git a/bonobo/commands/run.py b/bonobo/commands/run.py index <HASH>..<HASH> 100644 --- a/bonobo/commands/run.py +++ b/bonobo/commands/run.py @@ -62,9 +62,7 @@ def read(filename, module, install=False, quiet=False, verbose=False, env=None): ename, evalue = e.split('=', 1) if len(evalue)...
Further Refactored the setting of env vars passed via the env flag.
python-bonobo_bonobo
train
4ada6f437c2b1dfe613c29acdc7f56f4e89fe20b
diff --git a/ipyrad/__main__.py b/ipyrad/__main__.py index <HASH>..<HASH> 100644 --- a/ipyrad/__main__.py +++ b/ipyrad/__main__.py @@ -439,8 +439,8 @@ def main(): ## otherwise use all available cores. By default _ipcluster[cores] ## is set to detect_cpus in Assembly.__init__) if ...
testing MPI on HPC multiple nodes
dereneaton_ipyrad
train
1a8777ea94a50eeacfaa9cc8ce4e195e3356fd20
diff --git a/lib/xrc/client.rb b/lib/xrc/client.rb index <HASH>..<HASH> 100644 --- a/lib/xrc/client.rb +++ b/lib/xrc/client.rb @@ -16,6 +16,8 @@ module Xrc connect end + private + def on_received(element) case when element.attribute("id") && has_reply_callbacks_to?(element.attribute(...
Client#on_receive should be private
r7kamura_xrc
train
0748f754e38206f4548ff3fe20a22abb3cb5d302
diff --git a/railgun_test.go b/railgun_test.go index <HASH>..<HASH> 100644 --- a/railgun_test.go +++ b/railgun_test.go @@ -223,6 +223,8 @@ func TestRailgunZones(t *testing.T) { } mux.HandleFunc("/railguns/e928d310693a83094309acf9ead50448/zones", handler) + createdOn, _ := time.Parse(time.RFC3339, "2014-01-01T05:2...
Update time fields to use time.Time instead of string
cloudflare_cloudflare-go
train
5e72bb3db0b965fce0065cb12d56bcc6b122d8c5
diff --git a/src/components/autocomplete/demoBasicUsage/index.html b/src/components/autocomplete/demoBasicUsage/index.html index <HASH>..<HASH> 100644 --- a/src/components/autocomplete/demoBasicUsage/index.html +++ b/src/components/autocomplete/demoBasicUsage/index.html @@ -11,6 +11,7 @@ md-selected-item-cha...
fix(autocomplete): fixes bug that prevented autocomplete results from displaying on focus if min-length was set to 0
angular_material
train
6eeaf13385b86a4e83b39f6556d16539ec5413f7
diff --git a/GitHubCity.py b/GitHubCity.py index <HASH>..<HASH> 100755 --- a/GitHubCity.py +++ b/GitHubCity.py @@ -113,9 +113,9 @@ class GitHubCity: for user in new_users: if not user["login"] in self._names and not user["login"] in self._excluded: self._names.add(user["login"]) -...
Ok, request are now from today to <I> #<I>
iblancasa_GitHubCity
train
0ae320934c04f3e62da4a6873d411b2f9b71db96
diff --git a/cwltool/pathmapper.py b/cwltool/pathmapper.py index <HASH>..<HASH> 100644 --- a/cwltool/pathmapper.py +++ b/cwltool/pathmapper.py @@ -146,7 +146,7 @@ def trim_listing(obj): def downloadHttpFile(httpurl): r = requests.get(httpurl, stream=True) with NamedTemporaryFile(mode='wb', delete=Fal...
changing chunksize to <I> kb
common-workflow-language_cwltool
train
872fcde9e57354b7a3f2d9e1034ceb7a655047ad
diff --git a/pyqode/core/widgets/output_window.py b/pyqode/core/widgets/output_window.py index <HASH>..<HASH> 100644 --- a/pyqode/core/widgets/output_window.py +++ b/pyqode/core/widgets/output_window.py @@ -154,6 +154,7 @@ class OutputWindow(CodeEdit): """ # clear previous output self.clear()...
OutputWindow: reset read only when starting a new process
pyQode_pyqode.core
train
a66bb88d57146d87ddbdc5d3ad9cb6f1518a0d5b
diff --git a/main.js b/main.js index <HASH>..<HASH> 100644 --- a/main.js +++ b/main.js @@ -176,9 +176,15 @@ function checkNativeInterface(set, client, nativeGeo) { client.send_command('command', native_commands, function(err, response) { - if (!err && response && response.length > 0 && -...
Updating check for geo commands.
arjunmehta_node-georedis
train
52ade7e1953ffcd3b301021b74805b6e033e3945
diff --git a/src/host.py b/src/host.py index <HASH>..<HASH> 100644 --- a/src/host.py +++ b/src/host.py @@ -299,7 +299,7 @@ class Host(SchedulingItem): #We are just going to launch the notif to the poller - #so we must actualise the command (Macros) + #so we must actualise the command (Macros). def u...
oups, a early commit... bad bash.
Alignak-monitoring_alignak
train
ea5b72ef50c11adefd6fe68a0aff8feaff024f51
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,9 +17,9 @@ # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # -# import os -# import sys -# sy...
Outcomment lines to include other modules
scopus-api_scopus
train
b251ec60ebe37e4588fe30f7ea5c625c486c6ba3
diff --git a/src/main/java/ch/rasc/embeddedtc/EmbeddedTomcat.java b/src/main/java/ch/rasc/embeddedtc/EmbeddedTomcat.java index <HASH>..<HASH> 100644 --- a/src/main/java/ch/rasc/embeddedtc/EmbeddedTomcat.java +++ b/src/main/java/ch/rasc/embeddedtc/EmbeddedTomcat.java @@ -89,6 +89,10 @@ public class EmbeddedTomcat { pr...
Add enableCompression method. Turns on compression on the connector.
ralscha_embeddedtc
train
0d3571d405e7a28f421a53ebf31ed9face60096b
diff --git a/packages/list-view/lib/list_item_view_mixin.js b/packages/list-view/lib/list_item_view_mixin.js index <HASH>..<HASH> 100644 --- a/packages/list-view/lib/list_item_view_mixin.js +++ b/packages/list-view/lib/list_item_view_mixin.js @@ -17,8 +17,7 @@ function positionElement() { // TODO: avoid needing th...
ensure we apply transforms in the render queue
emberjs_list-view
train
e7fb695e27b13e8bcafc7db8eb8d615e9ed467df
diff --git a/pyang/translators/dsdl.py b/pyang/translators/dsdl.py index <HASH>..<HASH> 100644 --- a/pyang/translators/dsdl.py +++ b/pyang/translators/dsdl.py @@ -135,14 +135,6 @@ class DSDLTranslator(object): return [ tuple(r.split("..")) for r in range_expr.split("|") ] decode_ranges = staticmethod(deco...
Schema-switching CL options are now honoured.
mbj4668_pyang
train
5ef66b9812e22426cb5b6230e7dcb1e8b763fb6e
diff --git a/turbolift/operations/systemconfig.py b/turbolift/operations/systemconfig.py index <HASH>..<HASH> 100644 --- a/turbolift/operations/systemconfig.py +++ b/turbolift/operations/systemconfig.py @@ -9,16 +9,20 @@ class ConfigureationSetup(object): self.args = args self.config_file = args['syst...
removed perms check show stopper, Does not work in os x.
cloudnull_turbolift
train
294e167661fc43472c3b56eb039cb35fda7d251e
diff --git a/spyder/widgets/fileswitcher.py b/spyder/widgets/fileswitcher.py index <HASH>..<HASH> 100644 --- a/spyder/widgets/fileswitcher.py +++ b/spyder/widgets/fileswitcher.py @@ -237,7 +237,7 @@ class FileSwitcher(QDialog): # Either allow searching for a line number or a symbol but not both rege...
Change in the regex expression to allow underscore to be valid
spyder-ide_spyder
train
f9215b551e08f39882a22ee8d488342d3c1c3b4f
diff --git a/src/ServiceContainer.js b/src/ServiceContainer.js index <HASH>..<HASH> 100644 --- a/src/ServiceContainer.js +++ b/src/ServiceContainer.js @@ -40,10 +40,9 @@ var ServiceContainer = createClass( */ getService: function(serviceName, argsExtend) { + if(serviceName === '__esModule') return; var servi...
fix(ServiceContainer): workaround for the problem with '__esModule' property exposed in IE8
karfcz_kff
train
93a05033e073634b5b93ef7f1a4b3aec8997f57d
diff --git a/src/Application.php b/src/Application.php index <HASH>..<HASH> 100644 --- a/src/Application.php +++ b/src/Application.php @@ -287,7 +287,7 @@ class Application extends Silex\Application } ); - // @todo: make a provider for the Integrity checker and Random generator.. + ...
IntegrityCheckerProvider already implemented
bolt_bolt
train
416035250289f14f6959c94288b80689e214d92d
diff --git a/src/template/resolvers/node.js b/src/template/resolvers/node.js index <HASH>..<HASH> 100644 --- a/src/template/resolvers/node.js +++ b/src/template/resolvers/node.js @@ -6,13 +6,13 @@ export default function resolveNode(host, target, value) { const prevValue = nodeMap.get(target); const data = dataMa...
fix(html): replace elements only if does not equal to last value
hybridsjs_hybrids
train
4ce7e5afd248e038b6ba2896ba54de6302c8ff9b
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -130,7 +130,15 @@ Mixin => MixinUsed ## Tips and Tricks -#### __3.4__ _-(unreleased)_ +#### __since 3.6__ + +Eager-load and freeze usables in production Rails environments with the `frozen` setting: + +```ruby +config...
Update and enable Railtie with frozen setting
ridiculous_usable
train