hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
3cc205bc1a198c6789401609fc51ba5b166ed89b
diff --git a/kernel.py b/kernel.py index <HASH>..<HASH> 100755 --- a/kernel.py +++ b/kernel.py @@ -464,7 +464,7 @@ class Kernel: ''' if not out_filename: if self._filename: - out_filename = os.path.splitext(self._filename)[0] + out_filename = os.path.abspath(...
fixed path in Kernel.assemble
RRZE-HPC_kerncraft
train
9d6418aa4ba49c531dfd0b8940eba32c605c67f0
diff --git a/grails-datastore-gorm-hibernate5/src/main/groovy/org/grails/orm/hibernate/cfg/GrailsDomainBinder.java b/grails-datastore-gorm-hibernate5/src/main/groovy/org/grails/orm/hibernate/cfg/GrailsDomainBinder.java index <HASH>..<HASH> 100644 --- a/grails-datastore-gorm-hibernate5/src/main/groovy/org/grails/orm/hib...
fix for #<I> (#<I>)
grails_gorm-hibernate5
train
b30ee65e77ed70337f2f792af82656b966d07b89
diff --git a/lib/rtlize/rtlizer.rb b/lib/rtlize/rtlizer.rb index <HASH>..<HASH> 100644 --- a/lib/rtlize/rtlizer.rb +++ b/lib/rtlize/rtlizer.rb @@ -72,14 +72,14 @@ module Rtlize # selector.gsub!(/\/\*!= end\(no-rtl\) \*\//, '') end - selector + '{' + self.transform_declarations(d...
fix: no_invert was not working properly.
maljub01_RTLize
train
fe2cc2f8954cd460ae6ac1ed4296384e80d7b873
diff --git a/test/DebuggerAgent.js b/test/DebuggerAgent.js index <HASH>..<HASH> 100644 --- a/test/DebuggerAgent.js +++ b/test/DebuggerAgent.js @@ -189,10 +189,10 @@ describe('DebuggerAgent', function() { }); }); - describe('canGetStringValuesLargerThan80Chars', function() { + describe('evaluateOnCallFrame',...
test: improved describe/it names Fix few test names to improve the output of `mocha -R spec`.
node-inspector_node-inspector
train
d80a0693902d3832bbf36a46c91c77b373584026
diff --git a/lib/DnsError.js b/lib/DnsError.js index <HASH>..<HASH> 100644 --- a/lib/DnsError.js +++ b/lib/DnsError.js @@ -7,17 +7,10 @@ var DnsError = module.exports = createError({ name: 'DnsError', preprocess: function (err) { if (!(err instanceof DnsError)) { - if (err && err.code) { -...
Drop the NotDnsError class, use DnsError.supports to check before instantiating instead.
One-com_node-dnserrors
train
5e028c2b5196589ae7e19bd5f956173729358841
diff --git a/org.openbel.framework.common/src/main/java/org/openbel/framework/common/record/StringColumn.java b/org.openbel.framework.common/src/main/java/org/openbel/framework/common/record/StringColumn.java index <HASH>..<HASH> 100644 --- a/org.openbel.framework.common/src/main/java/org/openbel/framework/common/recor...
improved StringColumn.decodeData performance decodeData was noticably slow using regex pattern matching switched to checking the length of the trim() function and returning the "" (empty string) if 0 over <I> strings the run-time went from <I> to <I> milliseconds
OpenBEL_openbel-framework
train
6790999f806353baa43576579812f54742fbab75
diff --git a/alot/message.py b/alot/message.py index <HASH>..<HASH> 100644 --- a/alot/message.py +++ b/alot/message.py @@ -500,21 +500,27 @@ class Envelope(object): if self.sent_time: self.modified_since_sent = True - def attach(self, path, filename=None, ctype=None): + def attach(self, at...
Envelope.attachments: list of Attachment store Attachment objects instead of raw email parts and use accordingly in construct_mail. Envelope.attach now accepts path strings as well as Attachment objects.
pazz_alot
train
0a39449694cf874c92a04d0b634d2dfe0627ac48
diff --git a/spec/api-browser-window-spec.js b/spec/api-browser-window-spec.js index <HASH>..<HASH> 100644 --- a/spec/api-browser-window-spec.js +++ b/spec/api-browser-window-spec.js @@ -153,6 +153,14 @@ describe('browser-window module', function () { }) w.loadURL('file://' + path.join(fixtures, 'api', 'd...
spec: loadUrl should not crash in did-fail-provisional-load handler
electron_electron
train
9e375e7f37ec5342357a421157774aa21a470aa5
diff --git a/server/sonar-process/src/main/java/org/sonar/process/ProcessEntryPoint.java b/server/sonar-process/src/main/java/org/sonar/process/ProcessEntryPoint.java index <HASH>..<HASH> 100644 --- a/server/sonar-process/src/main/java/org/sonar/process/ProcessEntryPoint.java +++ b/server/sonar-process/src/main/java/or...
Faster sonar-process monitor to detect when process is started
SonarSource_sonarqube
train
ba6f2debb5e032dfe0d15996e827e77bd7aa454d
diff --git a/src/parsers/date.js b/src/parsers/date.js index <HASH>..<HASH> 100644 --- a/src/parsers/date.js +++ b/src/parsers/date.js @@ -12,12 +12,19 @@ module.exports.getPublishedAtDateFromSubtitle = function(subtitle) { return subDays(new Date(), 1); } - const dateRaw = _.head(subtitle.match(dateRegex));...
refactor: extract functions further from date parser
tneudevteam_tneu-news
train
93546c5070d6b29fe4aa0f82cffe7a7e49f763f2
diff --git a/satpy/tests/reader_tests/test_cmsaf_claas.py b/satpy/tests/reader_tests/test_cmsaf_claas.py index <HASH>..<HASH> 100644 --- a/satpy/tests/reader_tests/test_cmsaf_claas.py +++ b/satpy/tests/reader_tests/test_cmsaf_claas.py @@ -79,18 +79,15 @@ def fake_file(fake_dataset, encoding, tmp_path): @pytest.fix...
Use tmp_path fixture in another test
pytroll_satpy
train
1b230eb59842a3e8080ab25fd445638a52929080
diff --git a/lib/node.js b/lib/node.js index <HASH>..<HASH> 100644 --- a/lib/node.js +++ b/lib/node.js @@ -161,7 +161,7 @@ Node.prototype = { if (!Array.isArray(this.content)) return; this.content.splice(index, 1); - this.indexHasChanged[0] = 1; + if (this.indexHasChanged) this.indexHa...
[api, node] Update `traverseBy...` methods
tonyganch_gonzales-pe
train
5ef3c5e9a96fd5761342f4f8277d49ecdd5fce96
diff --git a/observe_sequence.js b/observe_sequence.js index <HASH>..<HASH> 100644 --- a/observe_sequence.js +++ b/observe_sequence.js @@ -4,12 +4,14 @@ module.exports = function(Meteor) { var Tracker = Meteor.Tracker; var LocalCollection = Meteor.LocalCollection; var ReactiveVar = Meteor.ReactiveVar; + var E...
remove minimongo dependcies to reduce size
eface2face_meteor-observe-sequence
train
4045c1791ebb4cb41705f5d411cbd0c47d17c327
diff --git a/builtin/credential/github/path_login.go b/builtin/credential/github/path_login.go index <HASH>..<HASH> 100644 --- a/builtin/credential/github/path_login.go +++ b/builtin/credential/github/path_login.go @@ -1,6 +1,7 @@ package github import ( + "context" "fmt" "net/url" "strings" @@ -126,7 +127,7 ...
Fix github compile breakage after dep upgrade
hashicorp_vault
train
1df3981476337fa6a03b572ca5b3f9c0ac7f03d2
diff --git a/centinel/experiments/baseline.py b/centinel/experiments/baseline.py index <HASH>..<HASH> 100644 --- a/centinel/experiments/baseline.py +++ b/centinel/experiments/baseline.py @@ -15,6 +15,7 @@ import csv import logging import os +from random import shuffle import time import urlparse @@ -176,6 +177,7...
shuffle input lists to be marginally less detectable
iclab_centinel
train
c3cc8c106ffa19c0d5e91c5a2cbae39da2348c69
diff --git a/WeaveServices/src/weave/servlets/AdminService.java b/WeaveServices/src/weave/servlets/AdminService.java index <HASH>..<HASH> 100644 --- a/WeaveServices/src/weave/servlets/AdminService.java +++ b/WeaveServices/src/weave/servlets/AdminService.java @@ -1267,7 +1267,7 @@ public class AdminService extends Gener...
Fixed bug with postgres support. CSV import syntax was incorrect because it was not skipping the header. Change-Id: I0d8bb4eeffc<I>d6ad<I>cadbbf<I>a4ad<I>aef
WeaveTeam_WeaveJS
train
0cab82961cbba512defffbde8b8c2134da0913ad
diff --git a/lib/inspectors/res.js b/lib/inspectors/res.js index <HASH>..<HASH> 100644 --- a/lib/inspectors/res.js +++ b/lib/inspectors/res.js @@ -570,7 +570,7 @@ getWriterFile(util.getRuleFile(resRules.resWriteRaw), _res.statusCode)], functio }); } try { - res.writeHead(_res.statusCode, _...
refactor: Output the formated headers
avwo_whistle
train
17e73d15269009118301967e0a2ccf8d6e746c32
diff --git a/chempy/util/tests/test_parsing.py b/chempy/util/tests/test_parsing.py index <HASH>..<HASH> 100644 --- a/chempy/util/tests/test_parsing.py +++ b/chempy/util/tests/test_parsing.py @@ -36,7 +36,9 @@ def test_formula_to_composition_caged(): """Should parse cage species.""" assert formula_to_compositi...
feat(testing): add more caged examples
bjodah_chempy
train
5d4eff6cd7c8aecb8575ce048e90d6fb80ba0ed5
diff --git a/examples/bookstore/BooksList.js b/examples/bookstore/BooksList.js index <HASH>..<HASH> 100644 --- a/examples/bookstore/BooksList.js +++ b/examples/bookstore/BooksList.js @@ -6,7 +6,6 @@ module.exports = class BooksList extends CollectionView { constructor(properties) { super(Object.assign({id: 'boo...
Fix book selection in bookstore example Replace CollectionView select event with tap event on cell.
eclipsesource_tabris-js
train
2934bf511c65261a8b8ad9abb728e5215ca5fa19
diff --git a/src/Graviton/SchemaBundle/Listener/SchemaLinkResponseListener.php b/src/Graviton/SchemaBundle/Listener/SchemaLinkResponseListener.php index <HASH>..<HASH> 100644 --- a/src/Graviton/SchemaBundle/Listener/SchemaLinkResponseListener.php +++ b/src/Graviton/SchemaBundle/Listener/SchemaLinkResponseListener.php @...
hacky workaround for parsing routename in schema case
libgraviton_graviton
train
90f4d014eecd212134c156c6ccf8ca6de7c7fec3
diff --git a/cycy/parser/sourceparser.py b/cycy/parser/sourceparser.py index <HASH>..<HASH> 100644 --- a/cycy/parser/sourceparser.py +++ b/cycy/parser/sourceparser.py @@ -175,6 +175,10 @@ class SourceParser(object): def while_loop(self, p): return While(condition=p[2], body=p[4]) + @pg.production("wh...
parser supports single line while (no curly braces)
Magnetic_cycy
train
4b29036db919b3dab283a4920eb5055f63f8b002
diff --git a/pkg/kubectl/cmd/apply/apply.go b/pkg/kubectl/cmd/apply/apply.go index <HASH>..<HASH> 100644 --- a/pkg/kubectl/cmd/apply/apply.go +++ b/pkg/kubectl/cmd/apply/apply.go @@ -398,6 +398,7 @@ func (o *ApplyOptions) Run() error { if err != nil { return cmdutil.AddSourceToErr("serverside-apply", info.Sour...
Inverted error handling to ensure server-side apply does not fall back on client-side apply when there is an error
kubernetes_kubernetes
train
a947eb7660055027e7406aa45e3c82dd3daa5cab
diff --git a/spring-boot/src/main/java/org/springframework/boot/bind/RelaxedConversionService.java b/spring-boot/src/main/java/org/springframework/boot/bind/RelaxedConversionService.java index <HASH>..<HASH> 100644 --- a/spring-boot/src/main/java/org/springframework/boot/bind/RelaxedConversionService.java +++ b/spring-...
RelaxedConversionService support lowercase enums Update RelaxedConversionService to support enums that are themselves declared as lower-case (or mixed case) items. Fixes gh-<I>
spring-projects_spring-boot
train
a2875d18f95dd6d64c3ef79f4c37adbfcd81305e
diff --git a/example/recommenders/recotools.py b/example/recommenders/recotools.py index <HASH>..<HASH> 100644 --- a/example/recommenders/recotools.py +++ b/example/recommenders/recotools.py @@ -28,6 +28,7 @@ def CosineLoss(a, b, label): dot = mx.symbol.sum_axis(dot, axis=1) dot = mx.symbol.Flatten(dot) ...
Fixes: Cosine Loss Formula (#<I>)
apache_incubator-mxnet
train
1a4220c4dbba3b331ddd396d3c158ff0fcdc72f2
diff --git a/macros/index.js b/macros/index.js index <HASH>..<HASH> 100644 --- a/macros/index.js +++ b/macros/index.js @@ -184,14 +184,23 @@ macro $adt__compile { } } function parseField(inp) { - var res = inp.takeAPeek(IDENT, COLON); - if (res) { - var cons = parseConstraint(inp); - ...
Make constraints/contracts optional for record declarations
natefaubion_adt-simple
train
8c42ed630d96565055c5cd2fdedb37dbd6ec4524
diff --git a/js/front/dataset/index.js b/js/front/dataset/index.js index <HASH>..<HASH> 100644 --- a/js/front/dataset/index.js +++ b/js/front/dataset/index.js @@ -75,7 +75,7 @@ new Vue({ * @return {Object} The parsed dataset */ extractDataset() { - const selector = "script[type='...
Use an ID to speed up the retrieval of the JSON on the client side
opendatateam_udata
train
1d14164d72418e42ec201cdbcf37d1ae9ecfa948
diff --git a/panoptes_client/panoptes.py b/panoptes_client/panoptes.py index <HASH>..<HASH> 100644 --- a/panoptes_client/panoptes.py +++ b/panoptes_client/panoptes.py @@ -61,10 +61,10 @@ class Panoptes(object): _endpoint_client_ids = { 'default': ( - 'f79cf5ea821bb161d8cbb52d061ab9a2321d7cb16...
switch to distinct oauth apps for the python client ensure we have distinct applications for the different clients, PFE, python, etc
zooniverse_panoptes-python-client
train
4fcf0fa12879af7286a345ae68f617fc07cbd284
diff --git a/gui/main.py b/gui/main.py index <HASH>..<HASH> 100644 --- a/gui/main.py +++ b/gui/main.py @@ -138,6 +138,12 @@ class Main(QObject, Ui_MainWindow): QObject.connect(self.buttonPlay, SIGNAL("clicked(bool)"), self.onButtonPlay) QObject.connect(self.buttonIMDB, SIGNAL("clicked(bool)"), self.on...
-fixbug in autodetect videoplayers. -started the drag and drop.
subdownloader_subdownloader
train
67b0c9203da650a7bacc4429af5290d8f613da62
diff --git a/src/main/java/javapns/notification/PushNotificationPayload.java b/src/main/java/javapns/notification/PushNotificationPayload.java index <HASH>..<HASH> 100644 --- a/src/main/java/javapns/notification/PushNotificationPayload.java +++ b/src/main/java/javapns/notification/PushNotificationPayload.java @@ -222,8...
Adding title, subtitle, title-loc-key, title-loc-args, launch-image support.
fernandospr_javapns-jdk16
train
6e068d59688749271c6362035c455e4a87342fd7
diff --git a/app/Http/Controllers/EditNoteController.php b/app/Http/Controllers/EditNoteController.php index <HASH>..<HASH> 100644 --- a/app/Http/Controllers/EditNoteController.php +++ b/app/Http/Controllers/EditNoteController.php @@ -57,7 +57,7 @@ class EditNoteController extends AbstractBaseController { $edit_rest...
Fix: matching line endings when creating new shared notes
fisharebest_webtrees
train
bc619640e15e905718c41201ac8a557695de6965
diff --git a/abydos/stats.py b/abydos/stats.py index <HASH>..<HASH> 100644 --- a/abydos/stats.py +++ b/abydos/stats.py @@ -851,6 +851,13 @@ def amean(nums): :param list nums: A series of numbers :returns: The arithmetric mean of nums :rtype: float + + >>> amean([1, 2, 3, 4]) + 2.5 + >>> amean([1...
a/g/h and combined a/g/h means
chrislit_abydos
train
9cfb9bd860e53121f47103dd5ebdd32cfe9b4107
diff --git a/web/app_dev.php b/web/app_dev.php index <HASH>..<HASH> 100644 --- a/web/app_dev.php +++ b/web/app_dev.php @@ -10,11 +10,7 @@ use Symfony\Component\HttpFoundation\Request; // Feel free to remove this, extend it, or make something more sophisticated. if (isset($_SERVER['HTTP_CLIENT_IP']) || isset($_SE...
added fe<I>::1 as a local IP address in config.php
symfony_symfony-standard
train
8900649e16c2247d1ad2f9faec4ffdb8a0a5c864
diff --git a/shinken/daemons/brokerdaemon.py b/shinken/daemons/brokerdaemon.py index <HASH>..<HASH> 100644 --- a/shinken/daemons/brokerdaemon.py +++ b/shinken/daemons/brokerdaemon.py @@ -472,11 +472,13 @@ class Broker(BaseSatellite): # and for external queues # REF: doc/broker-modules.png (3...
Fix : do NOT resend already send broks to external queues if internal ones are low (like the ndo one).
Alignak-monitoring_alignak
train
3df54dfe7a6c41a225ae02cd66eb267b3234f943
diff --git a/axiom/store.py b/axiom/store.py index <HASH>..<HASH> 100644 --- a/axiom/store.py +++ b/axiom/store.py @@ -28,7 +28,7 @@ class XFilePath(FilePath): def dirname(self): return os.path.dirname(self.path) -def _md(dirname): +def _mkdirIfNotExists(dirname): if os.path.isdir(dirname): ...
i don't understand what is so hard about typing.
twisted_axiom
train
3e967dd85d849e2c0f8720b12d2070974279bcb8
diff --git a/cli/src/main/java/hudson/cli/CLI.java b/cli/src/main/java/hudson/cli/CLI.java index <HASH>..<HASH> 100644 --- a/cli/src/main/java/hudson/cli/CLI.java +++ b/cli/src/main/java/hudson/cli/CLI.java @@ -136,6 +136,13 @@ public class CLI { return execute(Arrays.asList(args)); } + /** + * R...
added a mechanism to check the existence of a command. git-svn-id: <URL>
jenkinsci_jenkins
train
f5eee2a837fa157b4d4ba476103ab252bb11414b
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -15,8 +15,10 @@ var testNode = require('./lib/ast-tests'), * @param {object} opt An options hash */ function browserifyNgInject(opt) { - var options = merge({ filter: filter }, opt); - return esprimaTools.createTran...
allow json files to be passed through without transform and without error
bholloway_browserify-nginject
train
9fddb5de999bb4faf3f95c81efcd23c19c857247
diff --git a/src/Forms/GridField/GridFieldDeleteAction.php b/src/Forms/GridField/GridFieldDeleteAction.php index <HASH>..<HASH> 100644 --- a/src/Forms/GridField/GridFieldDeleteAction.php +++ b/src/Forms/GridField/GridFieldDeleteAction.php @@ -41,7 +41,7 @@ class GridFieldDeleteAction implements GridField_ColumnProvider...
NEW Add getter and setter for removeRelation in GridFieldDeleteAction This allows users to modify the property value in the component without having to remove it and add a new one when they want to change it.
silverstripe_silverstripe-framework
train
d2d973794bd381478f345b1ee1cbcf4854d79859
diff --git a/sqlite_migrations.js b/sqlite_migrations.js index <HASH>..<HASH> 100644 --- a/sqlite_migrations.js +++ b/sqlite_migrations.js @@ -371,7 +371,7 @@ function migrateDb(connection, onDone){ SELECT address, IFNULL(asset, 'base'), SUM(amount) AS balance \n\ FROM aa_addresses \n\ CROSS JOIN o...
fix join, was using unit from wrong table
byteball_ocore
train
87ca8fe21f2a06fa3b5b186964a3261c68942f1c
diff --git a/src/Impetus.js b/src/Impetus.js index <HASH>..<HASH> 100644 --- a/src/Impetus.js +++ b/src/Impetus.js @@ -4,6 +4,11 @@ const bounceDeceleration = 0.04; const bounceAcceleration = 0.11; +// fixes weird safari 10 bug where preventDefault is prevented +// @see https://github.com/metafizzy/flickity/issues...
fix: preventDefault not working in Safari <I>
chrisbateman_impetus
train
d19dd3547a253dabe745966ee1219ea279f017c2
diff --git a/src/Handlers/AbstractHandler.php b/src/Handlers/AbstractHandler.php index <HASH>..<HASH> 100644 --- a/src/Handlers/AbstractHandler.php +++ b/src/Handlers/AbstractHandler.php @@ -38,5 +38,4 @@ abstract class AbstractHandler { $this->registered = true; } - } diff --git a/src/Handlers/...
github-<I>: fix codacy issues
rollbar_rollbar-php
train
806276702bcb5cb6027cbe89e11533fd4ed5a319
diff --git a/file-adapter/adapter.go b/file-adapter/adapter.go index <HASH>..<HASH> 100644 --- a/file-adapter/adapter.go +++ b/file-adapter/adapter.go @@ -43,7 +43,7 @@ func NewAdapter(filePath string) *Adapter { // LoadPolicy loads all policy rules from the storage. func (a *Adapter) LoadPolicy(model model.Model) er...
Improve the error string in file adapter.
casbin_casbin
train
fbd58f9789d27207e30ab2c126773bc6894a15d6
diff --git a/menuconfig.py b/menuconfig.py index <HASH>..<HASH> 100755 --- a/menuconfig.py +++ b/menuconfig.py @@ -742,12 +742,16 @@ def _jump_to(node): # parent menus before. _parent_screen_rows = [] - # Turn on show-all mode if the node isn't visible - if not (node.prompt and expr_value(node.prompt[...
menuconfig: Fix a case of needlessly turning on show-all Show-all mode does not need to be enabled when jumping to an invisible symbol with visible children from an implicit submenu, because the invisible symbol will be shown anyway in that case. Explicitly check whether the jumped-to node would be shown instead, and...
ulfalizer_Kconfiglib
train
f1a38d0c099324f7c53871f8ab7566d916a700de
diff --git a/ui/src/utils/groupByTimeSeriesTransform.js b/ui/src/utils/groupByTimeSeriesTransform.js index <HASH>..<HASH> 100644 --- a/ui/src/utils/groupByTimeSeriesTransform.js +++ b/ui/src/utils/groupByTimeSeriesTransform.js @@ -124,13 +124,14 @@ const constructCells = serieses => { forEach(rows, ({vals}) => {...
Prevent construction of cells which are from series that have a groupby
influxdata_influxdb
train
8b114305351e5a2a7d6ae009487050ad7f57056f
diff --git a/lib/pghero.rb b/lib/pghero.rb index <HASH>..<HASH> 100644 --- a/lib/pghero.rb +++ b/lib/pghero.rb @@ -217,14 +217,14 @@ module PgHero end # private - # Rails 6.1 deprecate `spec_name` and use `name` for configurations + # Rails 6.1 deprecates `spec_name` for `name` # https://github.c...
Updated comments [skip ci]
ankane_pghero
train
5a15fef7c7fc8d46b8f701229213a1447bfd008d
diff --git a/tests/test_for_support/test_for_sbo.py b/tests/test_for_support/test_for_sbo.py index <HASH>..<HASH> 100644 --- a/tests/test_for_support/test_for_sbo.py +++ b/tests/test_for_support/test_for_sbo.py @@ -85,7 +85,8 @@ def test_find_components_without_sbo_terms(model, num, components): ("multiple_sbo_ter...
fix(): add missing term argument in unit test Add a missing argument (term) in a refactored unit test.
opencobra_memote
train
74118767135b8e65f083ce3aed4cf2b192c41c82
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -11,10 +11,6 @@ module.exports = function(grunt) { // Project configuration. grunt.initConfig({ - - // Project paths and files. - links: grunt.file.readYAML('docs/data/url.yml'), - // package...
remove no-longer-needed links object from Gruntfile.
assemble_grunt-assemble
train
08340ca19c411a9b35b7e51c0232e3ea1cc72300
diff --git a/HISTORY.md b/HISTORY.md index <HASH>..<HASH> 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -2,6 +2,9 @@ None yet! +* Fix issue where calling Worker.find, Worker.all, or Worker.working from withing + a running job would rewrite the PID file with the PID of the forked worker. (@jeremywadsack) + ## 1.26....
Initializing a worker should not write the PID file or re-daemonize. Class methods like ::find (and those that depend on it, like ::all and ::working) call #new to create new instances of the worker objects. If these methods are called from withing the forked object it would cause #initialize to rewrite the PIDFILE or...
resque_resque
train
c517affaf13e4682e7622b14540e2056e43cf24e
diff --git a/src/Notifynder/Traits/Notifable.php b/src/Notifynder/Traits/Notifable.php index <HASH>..<HASH> 100644 --- a/src/Notifynder/Traits/Notifable.php +++ b/src/Notifynder/Traits/Notifable.php @@ -53,7 +53,7 @@ trait Notifable * * @return \Illuminate\Database\Eloquent\Relations\HasMany|\Illuminate\Dat...
Modifying function visibilities from private to protected
fenos_Notifynder
train
1a93e2e319a005a6992274096af63dc15b6f410b
diff --git a/engineer/engine.py b/engineer/engine.py index <HASH>..<HASH> 100644 --- a/engineer/engine.py +++ b/engineer/engine.py @@ -1,7 +1,6 @@ # coding=utf-8 import argparse import gzip -import humanize import logging import sys import time @@ -9,6 +8,7 @@ import times from codecs import open from p...
Fix pending posts warning to use correct natural time.
tylerbutler_engineer
train
b8dcadadb75a43d10b3d56ec7829237ae41db843
diff --git a/packages/roc-package-webpack-dev/src/builder/index.js b/packages/roc-package-webpack-dev/src/builder/index.js index <HASH>..<HASH> 100644 --- a/packages/roc-package-webpack-dev/src/builder/index.js +++ b/packages/roc-package-webpack-dev/src/builder/index.js @@ -21,7 +21,8 @@ export default ({ previousValue...
Added fallback for other modes than dev and dist and added __CWD__
rocjs_extensions
train
ef31334f16567cd4f65af40e316702a3b2f695c0
diff --git a/bosh-director/spec/unit/config_spec.rb b/bosh-director/spec/unit/config_spec.rb index <HASH>..<HASH> 100644 --- a/bosh-director/spec/unit/config_spec.rb +++ b/bosh-director/spec/unit/config_spec.rb @@ -20,4 +20,4 @@ describe Bosh::Director::Config do end end -end \ No newline at end of file +end ...
Back-fill test for create_vm retry in director
cloudfoundry_bosh
train
f0c143b948482fb781ab7e3a8f64cee46bf4ecdd
diff --git a/src/labels/label_multipoint.js b/src/labels/label_multipoint.js index <HASH>..<HASH> 100644 --- a/src/labels/label_multipoint.js +++ b/src/labels/label_multipoint.js @@ -22,7 +22,14 @@ export default function fitToLine (line, size, options) { switch (strategy){ case PLACEMENT.SPACED: - ...
Make sure at least one multipoint label is placed on a line
tangrams_tangram
train
3d130ac0164378aba627b925f982a08e2f9a1560
diff --git a/pyaavso/formats/visual.py b/pyaavso/formats/visual.py index <HASH>..<HASH> 100644 --- a/pyaavso/formats/visual.py +++ b/pyaavso/formats/visual.py @@ -2,4 +2,9 @@ from __future__ import unicode_literals class VisualFormatWriter(object): - pass + """ + A class responsible for writing observatio...
Added a basic docstring to VisualFormatWriter.
zsiciarz_pyaavso
train
c367c5bacc51fe99f674255f945d7a9b12a23861
diff --git a/aeron-client/src/main/java/io/aeron/logbuffer/ExclusiveTermAppender.java b/aeron-client/src/main/java/io/aeron/logbuffer/ExclusiveTermAppender.java index <HASH>..<HASH> 100644 --- a/aeron-client/src/main/java/io/aeron/logbuffer/ExclusiveTermAppender.java +++ b/aeron-client/src/main/java/io/aeron/logbuffer/...
[Java] Remove unneeded byteArray field from term appenders.
real-logic_aeron
train
09edef40d70e17ebdefb0c3eb6bfeaa6b16ac7ac
diff --git a/BaseModel.php b/BaseModel.php index <HASH>..<HASH> 100644 --- a/BaseModel.php +++ b/BaseModel.php @@ -455,11 +455,11 @@ class BaseModel extends Record implements JsonSerializable return $this->$record; } - public function load($names) + public function includes($names) { ...
load => includes, 确定关联方法为getXxx #<I>
miaoxing_plugin
train
19a2250d73f77bab39399dd2c36251767929c2ff
diff --git a/api/app/handler.go b/api/app/handler.go index <HASH>..<HASH> 100644 --- a/api/app/handler.go +++ b/api/app/handler.go @@ -101,9 +101,8 @@ func CloneRepositoryHandler(w http.ResponseWriter, r *http.Request) error { if err != nil { return err } - out, err = installDeps(&app, nil, nil) + _, err = insta...
setting writer how stdout and stderr for installDeps
tsuru_tsuru
train
66bff0ef0582e2d2da89c08f45be8247a8dbc203
diff --git a/public/js/views/standard-list.js b/public/js/views/standard-list.js index <HASH>..<HASH> 100644 --- a/public/js/views/standard-list.js +++ b/public/js/views/standard-list.js @@ -62,6 +62,7 @@ define(function (require) { } }, + // Init an individual row in the list initRow: function (row) { ...
Fixing drag and drop and improving it too, fixes #<I>
BKWLD_decoy
train
14f77607910df94b2e175b5d85da730cd366b73a
diff --git a/lib/searchkick/model.rb b/lib/searchkick/model.rb index <HASH>..<HASH> 100644 --- a/lib/searchkick/model.rb +++ b/lib/searchkick/model.rb @@ -78,7 +78,7 @@ module Searchkick def searchkick_reindex(method_name = nil, **options) scoped = Searchkick.relation?(self) - relat...
Updated default_scope behavior match Searchkick 5 [skip ci]
ankane_searchkick
train
d07eca5997c55fd61e6d5c857a23659251d8505f
diff --git a/app/controllers/devise_token_auth/registrations_controller.rb b/app/controllers/devise_token_auth/registrations_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/devise_token_auth/registrations_controller.rb +++ b/app/controllers/devise_token_auth/registrations_controller.rb @@ -94,8 +94,7 @@...
Allow current_password to be supplied when updating profile.
lynndylanhurley_devise_token_auth
train
1ad1c5e87e1d3988832833111d14754e9e7a68f7
diff --git a/stagpy/__init__.py b/stagpy/__init__.py index <HASH>..<HASH> 100644 --- a/stagpy/__init__.py +++ b/stagpy/__init__.py @@ -68,16 +68,16 @@ def load_mplstyle(): plt = importlib.import_module('matplotlib.pyplot') if conf.plot.mplstyle: for style in conf.plot.mplstyle.split(): - s...
Don't report faulty mplstyle when ISOLATED Report them anyway if DEBUG
StagPython_StagPy
train
ab2d66880be34fba6773466e9ba31c7829cb400c
diff --git a/addok/core.py b/addok/core.py index <HASH>..<HASH> 100644 --- a/addok/core.py +++ b/addok/core.py @@ -360,7 +360,9 @@ class Search(BaseHelper): self.keys = [t.db_key for t in self.meaningful] if self.bucket_empty: self.new_bucket(self.keys, 10) - if self.has_cream(...
Do not check cream before autocompleting when autocomplete is on Rationale: daumaz will never catch daumazan because daumaz exists and so will be considered as cream
addok_addok
train
344b768a4c2569ade173f1c9f8a4dcd2232023b0
diff --git a/src/entity/camera.js b/src/entity/camera.js index <HASH>..<HASH> 100644 --- a/src/entity/camera.js +++ b/src/entity/camera.js @@ -292,10 +292,13 @@ /** * shake the camera - * @param {int} intensity - * @param {int} duration - * @param {axis} axis AXIS.HORIZONTAL, AXIS...
Use "globalAlpha" as well here for fading effects, and completed other function inline documentation.
melonjs_melonJS
train
6e8cd94d25e6d9f53420e0f7ee8f206feb3ba832
diff --git a/trinity/protocol/common/managers.py b/trinity/protocol/common/managers.py index <HASH>..<HASH> 100644 --- a/trinity/protocol/common/managers.py +++ b/trinity/protocol/common/managers.py @@ -248,7 +248,14 @@ class ExchangeManager(Generic[TRequestPayload, TResponsePayload, TResult]): timeout: fl...
Fix when requesting from a peer after cancellaton
ethereum_py-evm
train
5bb8bd8d5685bcd8f18c97a5a56cdec8a31560a9
diff --git a/oauth2client/client.py b/oauth2client/client.py index <HASH>..<HASH> 100644 --- a/oauth2client/client.py +++ b/oauth2client/client.py @@ -760,6 +760,8 @@ class OAuth2Credentials(Credentials): d = json.loads(content) if 'error' in d: error_msg = d['error'] + if 'error_d...
Added error description to AccessTokenRefreshError The JSON response returned can contain an "error_description" field that contains additional information about the error. If found, appending to the error message.
googleapis_oauth2client
train
dd7f338c40c7eb629b1f2b80a0058a98c3a114c6
diff --git a/core/css.js b/core/css.js index <HASH>..<HASH> 100644 --- a/core/css.js +++ b/core/css.js @@ -216,7 +216,7 @@ Blockly.Css.CONTENT = [ '}', '.blocklyDropDownDiv {', - 'position: absolute;', + 'position: fixed;', 'left: 0;', 'top: 0;', 'z-index: 1000;', @@ -228,6 +228,11 @@ Block...
Temporary fix for page-breaking drop-downs (#<I>)
LLK_scratch-blocks
train
94271d90372f097ab9326649c1830ab0992dffad
diff --git a/bezier/_surface_helpers.py b/bezier/_surface_helpers.py index <HASH>..<HASH> 100644 --- a/bezier/_surface_helpers.py +++ b/bezier/_surface_helpers.py @@ -27,6 +27,7 @@ import six from bezier import _curve_helpers from bezier import _helpers +from bezier import curved_polygon MAX_POLY_SUBDIVISIONS ...
Adding beginnings of `combine_intersections()`.
dhermes_bezier
train
196c280c4bc756c78af63b2e468519713709eff9
diff --git a/src/toil/provisioners/abstractProvisioner.py b/src/toil/provisioners/abstractProvisioner.py index <HASH>..<HASH> 100644 --- a/src/toil/provisioners/abstractProvisioner.py +++ b/src/toil/provisioners/abstractProvisioner.py @@ -97,6 +97,16 @@ class Shape(object): self.cores, ...
Define __hash__ for Shape We need this for using shapes as keys to work right. Python 3 started actually enforcing this. Fixes src/toil/test/provisioners/clusterScalerTest.py::BinPackingTest
DataBiosphere_toil
train
1adc4f0f2ae939b8d0e56281574062b78078a8de
diff --git a/plugins/inputs/x509_cert/x509_cert.go b/plugins/inputs/x509_cert/x509_cert.go index <HASH>..<HASH> 100644 --- a/plugins/inputs/x509_cert/x509_cert.go +++ b/plugins/inputs/x509_cert/x509_cert.go @@ -211,6 +211,7 @@ func (c *X509Cert) Gather(acc telegraf.Accumulator) error { // name validation against th...
Allow any key usage type on x<I> certificate (#<I>)
influxdata_telegraf
train
9d61bdcba8cd5d905ef582e80740e679ed00f738
diff --git a/src/com/jayantkrish/jklol/ccg/lambda/ExpressionParser.java b/src/com/jayantkrish/jklol/ccg/lambda/ExpressionParser.java index <HASH>..<HASH> 100644 --- a/src/com/jayantkrish/jklol/ccg/lambda/ExpressionParser.java +++ b/src/com/jayantkrish/jklol/ccg/lambda/ExpressionParser.java @@ -88,7 +88,7 @@ public clas...
fixing serious efficiency bug with expression parsing
jayantk_jklol
train
73f259732368fa13cd3e84f1e9d24b6469769304
diff --git a/build/breeze.base.debug.js b/build/breeze.base.debug.js index <HASH>..<HASH> 100644 --- a/build/breeze.base.debug.js +++ b/build/breeze.base.debug.js @@ -23,7 +23,7 @@ })(this, function (global) { "use strict"; var breeze = { - version: "1.5.17", + version: "1.6.0", metad...
Updated version number to <I>
Breeze_breeze.js
train
3745cd7cb0a7dc1cada5dd688b2f51128ea9203e
diff --git a/packages/tools/build-translation.js b/packages/tools/build-translation.js index <HASH>..<HASH> 100644 --- a/packages/tools/build-translation.js +++ b/packages/tools/build-translation.js @@ -166,19 +166,35 @@ async function createPotFile(potFilePath) { const extractor = new GettextExtractor(); + // In...
Tools: Do not process context when running build-translation tool
laurent22_joplin
train
d4d22e6b9aa07df93e38503f21ad3b49b11fff92
diff --git a/simulator/src/main/java/com/hazelcast/simulator/worker/loadsupport/AbstractAsyncStreamer.java b/simulator/src/main/java/com/hazelcast/simulator/worker/loadsupport/AbstractAsyncStreamer.java index <HASH>..<HASH> 100644 --- a/simulator/src/main/java/com/hazelcast/simulator/worker/loadsupport/AbstractAsyncStr...
Fixed AbstractAsyncStreamer to call releasePermit() if the future could not be created.
hazelcast_hazelcast-simulator
train
548385888e400254605d8edbb7b9dcc8ac27a478
diff --git a/TYPO3.Flow/Classes/TYPO3/Flow/Http/Headers.php b/TYPO3.Flow/Classes/TYPO3/Flow/Http/Headers.php index <HASH>..<HASH> 100644 --- a/TYPO3.Flow/Classes/TYPO3/Flow/Http/Headers.php +++ b/TYPO3.Flow/Classes/TYPO3/Flow/Http/Headers.php @@ -99,9 +99,6 @@ class Headers { * @api */ public function set($name...
[BUGFIX] Accept incoming HTTPS headers This removes a check from ``Http\Headers`` that prevented any header starting with "HTTP". Background: A recent version of Google Chrome seems to send a ``HTTPS`` header for requests via SSL (see <URL>
neos_flow-development-collection
train
19a5889d213774aa3ad2ca7ef58d053d4cb4d779
diff --git a/cufflinks/plotlytools.py b/cufflinks/plotlytools.py index <HASH>..<HASH> 100644 --- a/cufflinks/plotlytools.py +++ b/cufflinks/plotlytools.py @@ -615,7 +615,7 @@ def _iplot(self,data=None,layout=None,filename='',sharing=None, # 'error_y','error_type','locations','lon','lat','asFrame','asDates','asFigur...
Added support for connectgaps
santosjorge_cufflinks
train
9d9b7e596b78214b73c153a35c1e7498470c2d14
diff --git a/src/Phergie/Irc/Parser.php b/src/Phergie/Irc/Parser.php index <HASH>..<HASH> 100644 --- a/src/Phergie/Irc/Parser.php +++ b/src/Phergie/Irc/Parser.php @@ -3,7 +3,7 @@ * Phergie (http://phergie.org) * * @link http://github.com/phergie/phergie-irc-parser for the canonical source repository - * @copyrigh...
Copyright year bump in src
phergie_phergie-irc-parser
train
652fdf2766209645c383ed492392c7df0e3daba6
diff --git a/PyFunceble/cli/processes/base.py b/PyFunceble/cli/processes/base.py index <HASH>..<HASH> 100644 --- a/PyFunceble/cli/processes/base.py +++ b/PyFunceble/cli/processes/base.py @@ -107,18 +107,24 @@ class ProcessesManagerBase: input_queue: Optional[queue.Queue] = None, output_queue: Optional...
Fix pickling issue under MacOS and Windows.
funilrys_PyFunceble
train
1c7d31557f5b0db72b4ac40da0f817929f445b6e
diff --git a/src/SortIterator.php b/src/SortIterator.php index <HASH>..<HASH> 100644 --- a/src/SortIterator.php +++ b/src/SortIterator.php @@ -10,11 +10,16 @@ namespace Jasny\Iterator; class SortIterator implements \OuterIterator { /** - * @var \Iterator|\ArrayIterator + * @var \Iterator */ pr...
The inner iterator should always return the iterator that has been passed. Fixed for SortIterator.
improved-php-library_iterable
train
d242848d39b0458792a5c566451a28eeb0d9161a
diff --git a/lib/engineyard-serverside/cli.rb b/lib/engineyard-serverside/cli.rb index <HASH>..<HASH> 100644 --- a/lib/engineyard-serverside/cli.rb +++ b/lib/engineyard-serverside/cli.rb @@ -93,6 +93,9 @@ module EY servers, config, shell = init_and_propagate(integrate_options, 'integrate') + # We ha...
Fix permissions across the whole app directory before integrate runs rsync Rsync stumbles on anything with owner/group that isn't the user. [SS-<I>]
engineyard_engineyard-serverside
train
b79bab0920eef442cd713b4d828d3c3537613e0f
diff --git a/watchtower/wtdb/mock.go b/watchtower/wtdb/mock.go index <HASH>..<HASH> 100644 --- a/watchtower/wtdb/mock.go +++ b/watchtower/wtdb/mock.go @@ -2,16 +2,23 @@ package wtdb -import "sync" +import ( + "sync" + + "github.com/lightningnetwork/lnd/chainntnfs" +) type MockDB struct { - mu sync.Mutex -...
watchtower/wtdb/mock: adds lookout-related mock functions
lightningnetwork_lnd
train
c7bab1b28e71559802c20fddcf3353d04a654e54
diff --git a/Lib/ufo2ft/kernFeatureWriter.py b/Lib/ufo2ft/kernFeatureWriter.py index <HASH>..<HASH> 100644 --- a/Lib/ufo2ft/kernFeatureWriter.py +++ b/Lib/ufo2ft/kernFeatureWriter.py @@ -52,7 +52,10 @@ class KernFeatureWriter(AbstractFeatureWriter): self._collectFeaClasses() self._collectFeaClassKer...
[kerning] Update UFO kerning with group names
googlefonts_ufo2ft
train
491c9c078f5aeaef39133d5e654a9d0d21e5f004
diff --git a/jujupy.py b/jujupy.py index <HASH>..<HASH> 100644 --- a/jujupy.py +++ b/jujupy.py @@ -578,7 +578,6 @@ class EnvJujuClient: if debug is not _backend.debug: raise ValueError('debug mismatch: {} {}'.format( debug, _backend.debug)) - self.feature_flags = set() ...
Don't set feature flags in EnvJujuClient constructor.
juju_juju
train
fb760314374a7b7811d433276baf4cd045a46c3a
diff --git a/spyderlib/plugins/help.py b/spyderlib/plugins/help.py index <HASH>..<HASH> 100644 --- a/spyderlib/plugins/help.py +++ b/spyderlib/plugins/help.py @@ -363,15 +363,11 @@ class Help(SpyderPluginWidget): self.plain_text.editor.toggle_wrap_mode(self.get_option('wrap')) # Add entries to rea...
Help: Remove the possibility to set a new font to its plain text widget
spyder-ide_spyder
train
7e03eb0da44a70eaf8b6e12bea74dd1396c0a8e0
diff --git a/d1_common_python/src/d1_common/util.py b/d1_common_python/src/d1_common/util.py index <HASH>..<HASH> 100644 --- a/d1_common_python/src/d1_common/util.py +++ b/d1_common_python/src/d1_common/util.py @@ -165,15 +165,21 @@ def urlencode(query, doseq=0): parameters in the output will match the order of para...
Fixed bug I had introduced in urlencode.
DataONEorg_d1_python
train
0f0805a2f03b8e9fd1d522b2200bf69898803bd8
diff --git a/ui/src/side_nav/components/NavItems.js b/ui/src/side_nav/components/NavItems.js index <HASH>..<HASH> 100644 --- a/ui/src/side_nav/components/NavItems.js +++ b/ui/src/side_nav/components/NavItems.js @@ -35,10 +35,6 @@ const NavHeader = React.createClass({ render() { const {link, title, useAnchor} = ...
Complete refactor of sidenav - Reduced DOM complexity - Less styles overall - Added an icon in the navbar to show version number - Still needs an eslint ignore
influxdata_influxdb
train
9abbb25449eac1f37eb62117fe72a8482355bc90
diff --git a/graphql/error/graphql_error.py b/graphql/error/graphql_error.py index <HASH>..<HASH> 100644 --- a/graphql/error/graphql_error.py +++ b/graphql/error/graphql_error.py @@ -39,14 +39,16 @@ class GraphQLError(Exception): """ path: Optional[List[Union[str, int]]] - """A list of GraphQL AST Nodes ...
Fix docstrings for GraphQLErrors
graphql-python_graphql-core-next
train
f71a1e4eb8d68e50940e69c32d446507a6f9e211
diff --git a/src/ProcessControl.php b/src/ProcessControl.php index <HASH>..<HASH> 100644 --- a/src/ProcessControl.php +++ b/src/ProcessControl.php @@ -77,33 +77,35 @@ class ProcessControl * Check if the signal is catchable, then set the signal to be caught by $callable * * @param int $signal - * @...
Update API to comply with pcntl_signal function
auraphp_Aura.Cli
train
2101c24fc4628d3ad26e9190774f6120114c5a7e
diff --git a/src/Builder/Builder.php b/src/Builder/Builder.php index <HASH>..<HASH> 100644 --- a/src/Builder/Builder.php +++ b/src/Builder/Builder.php @@ -2,6 +2,8 @@ namespace p810\MySQL\Builder; +use PDOStatement; + use function ucfirst; use function is_array; use function array_map; @@ -67,6 +69,14 @@ abstra...
Changes the way that results are handled from PDOStatement objects A default callback, Builder::process(), will be invoked with the PDOStatement returned from a prepared query, unless the user specifies a separate callback in their call to Query::execute()
p810_mysql-helper
train
1f3153b702d4f6cd0aa0c0a94febc14449a58cee
diff --git a/release.py b/release.py index <HASH>..<HASH> 100644 --- a/release.py +++ b/release.py @@ -8,7 +8,6 @@ from urh import constants open("/tmp/urh_releasing", "w").close() script_dir = os.path.dirname(__file__) if not os.path.islink(__file__) else os.path.dirname(os.readlink(__file__)) -sys.path.append(os....
set pythonpath for tests in init.py
jopohl_urh
train
26ff8899c39039459b67e5dbe0fe7133c3653d9a
diff --git a/src/ol/PluggableMap.js b/src/ol/PluggableMap.js index <HASH>..<HASH> 100644 --- a/src/ol/PluggableMap.js +++ b/src/ol/PluggableMap.js @@ -934,8 +934,9 @@ class PluggableMap extends BaseObject { if (frameState) { const hints = frameState.viewHints; if (hints[ViewHint.ANIMATING] || h...
Do not load new tiles when low on frame budget
openlayers_openlayers
train
a0c4a64c028e7636facddc82eab5c3290e9af280
diff --git a/raiden/main.py b/raiden/main.py index <HASH>..<HASH> 100644 --- a/raiden/main.py +++ b/raiden/main.py @@ -1,4 +1,6 @@ # -*- coding: utf-8 -*- +from gevent import monkey +monkey.patch_all() from ui.cli import run diff --git a/raiden/ui/cli.py b/raiden/ui/cli.py index <HASH>..<HASH> 100644 --- a/raiden...
Some changes to enable running raiden as an app
raiden-network_raiden
train
0b5f97f8fa82deac552d42bab72a2722bb6bd430
diff --git a/tests/Test/Synapse/SocialLogin/SocialLoginServiceTest.php b/tests/Test/Synapse/SocialLogin/SocialLoginServiceTest.php index <HASH>..<HASH> 100644 --- a/tests/Test/Synapse/SocialLogin/SocialLoginServiceTest.php +++ b/tests/Test/Synapse/SocialLogin/SocialLoginServiceTest.php @@ -21,6 +21,20 @@ class SocialLo...
Refs #<I> - reordered method definition
synapsestudios_synapse-base
train
6c9e8477efb07672b3a52ea00e2f78e8cee63677
diff --git a/lib/edsl/watir_elements.rb b/lib/edsl/watir_elements.rb index <HASH>..<HASH> 100644 --- a/lib/edsl/watir_elements.rb +++ b/lib/edsl/watir_elements.rb @@ -3,7 +3,7 @@ require 'facets/string/snakecase' module EDSL # This module extends the DSL to include the various Watir elements module WatirElements...
Break out some of the watir elements that need to just return an element
Donavan_edsl
train
bbb79f47a758a36b7228058357c86b07af2feadc
diff --git a/message/output/email/message_output_email.php b/message/output/email/message_output_email.php index <HASH>..<HASH> 100644 --- a/message/output/email/message_output_email.php +++ b/message/output/email/message_output_email.php @@ -47,7 +47,10 @@ class message_output_email extends message_output { }...
messaging MDL-<I> Last minute fix of bug during integration, empty user preference causing error
moodle_moodle
train
c14da7bd7c1cd32879071c36e283b2b1ba656d72
diff --git a/ella/core/views.py b/ella/core/views.py index <HASH>..<HASH> 100644 --- a/ella/core/views.py +++ b/ella/core/views.py @@ -278,10 +278,14 @@ def category_detail(request, category): }, context_instance=RequestContext(request) ) + def export_test(*args, **kwargs): return [] -@cache_this...
Fixed wrong cache generation for export banner - it didn't include SITE_ID. git-svn-id: <URL>
ella_ella
train
f8cf963bb5f7f2b26b9119298477faf6c60c4143
diff --git a/lancet/__init__.py b/lancet/__init__.py index <HASH>..<HASH> 100644 --- a/lancet/__init__.py +++ b/lancet/__init__.py @@ -409,6 +409,13 @@ class StaticArgs(BaseArgs): support for len(). """ + HTML = param.Callable(default=str, doc=''' + Callable to process HTML markup as returned b...
HTML table output and display added to StaticArg specifiers Intended for IPython, specifiers can be immediately displayed in tabular form using the 'html' method. For this to work, the HTML parameter needs to be set to the HTML class imported from IPython.display. This avoids making IPython a core dependency.
ioam_lancet
train
fa723128e00b3a3dda550c30460e4b69c99586f8
diff --git a/packages/build-tools/tasks/pattern-lab-tasks.js b/packages/build-tools/tasks/pattern-lab-tasks.js index <HASH>..<HASH> 100644 --- a/packages/build-tools/tasks/pattern-lab-tasks.js +++ b/packages/build-tools/tasks/pattern-lab-tasks.js @@ -142,7 +142,7 @@ async function watch() { // The watch event ~ sa...
refactor: update Pattern Lab to ignore files being initially watched -- prevents a double compile the first time the build tools boot up
bolt-design-system_bolt
train
1601e1a443b8b5dd229ab55434451a1f161f15c0
diff --git a/bika/lims/browser/analysisrequest/analysisrequests.py b/bika/lims/browser/analysisrequest/analysisrequests.py index <HASH>..<HASH> 100644 --- a/bika/lims/browser/analysisrequest/analysisrequests.py +++ b/bika/lims/browser/analysisrequest/analysisrequests.py @@ -193,7 +193,7 @@ class AnalysisRequestsView(Bi...
Make review_state in AR listing sortable
senaite_senaite.core
train
65f6ce3b86a70d7a36b502b6012493b4ea75e57c
diff --git a/includes/functions/functions_mediadb.php b/includes/functions/functions_mediadb.php index <HASH>..<HASH> 100644 --- a/includes/functions/functions_mediadb.php +++ b/includes/functions/functions_mediadb.php @@ -231,8 +231,16 @@ function get_medialist($currentdir = false, $directory = "", $linkonly = false, ...
Fix: random media block: recognise FORM and TYPE tags at any level, not just 1 FILE/2 FORM/3 TYPE, for compatibility with GEDCOM <I> and other applications
fisharebest_webtrees
train
0a06392acb62b736ff9da3af29913c57da23d199
diff --git a/tests/test_directed_random_walk.py b/tests/test_directed_random_walk.py index <HASH>..<HASH> 100644 --- a/tests/test_directed_random_walk.py +++ b/tests/test_directed_random_walk.py @@ -13,7 +13,7 @@ def test_directed_random_walk(): directedHyperGraph.read('tests/data/dirhypergraph.txt') assert...
reverted to old graph for testing
Murali-group_halp
train
92bc469f581044948975e5eadface88829342bcd
diff --git a/pydoop/mapreduce/api.py b/pydoop/mapreduce/api.py index <HASH>..<HASH> 100644 --- a/pydoop/mapreduce/api.py +++ b/pydoop/mapreduce/api.py @@ -66,6 +66,18 @@ class JobConf(dict): '1' >>> jc.get_int('a') 1 + + .. warning:: + + For the most part, a JobConf object behaves like a :c...
JobConf docs: added warning about the differences with dict [ci skip]
crs4_pydoop
train