hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
333848b6e49f7d72970a1f2ccd1972cbfa65e714
diff --git a/venues.go b/venues.go index <HASH>..<HASH> 100644 --- a/venues.go +++ b/venues.go @@ -213,6 +213,7 @@ type User struct { Contact Contact `json:"contact"` } +// Lists are Lists on User. type Lists struct { Groups []Group `json:"groups"` } @@ -260,11 +261,13 @@ type PhotoSource struct { URL ...
add comments to the rest of the structs
peppage_foursquarego
train
fe80f87b198352cad0baa96b921e063748e0ac9b
diff --git a/tests/js/harness.js b/tests/js/harness.js index <HASH>..<HASH> 100644 --- a/tests/js/harness.js +++ b/tests/js/harness.js @@ -9,8 +9,6 @@ require("../../"); fluid.defaults("gpii.test.pouch.harness", { gradeNames: ["fluid.component"], - port: 6789, - baseUrl: "http://localhost:6789/",...
GPII-<I>: Moved port options to avoid having defaults in the harness grade itself.
GPII_gpii-pouchdb
train
1030d613e034c93fbe6057d6ca3e79c1e91a0ff0
diff --git a/filterpy/common/helpers.py b/filterpy/common/helpers.py index <HASH>..<HASH> 100644 --- a/filterpy/common/helpers.py +++ b/filterpy/common/helpers.py @@ -117,7 +117,6 @@ class Saver(object): if save_current: self.save() - def save(self): """ save the current state of t...
Added flatten() to Saver Just a convienence function to flatten any column vectors that are saved, mostly so they display nicely in the REPL.
rlabbe_filterpy
train
fc63be111b11dbaa6331ce5e75937864683d8834
diff --git a/src/component/legend/LegendView.js b/src/component/legend/LegendView.js index <HASH>..<HASH> 100644 --- a/src/component/legend/LegendView.js +++ b/src/component/legend/LegendView.js @@ -197,6 +197,7 @@ export default echarts.extendComponentView({ var itemWidth = legendModel.get('itemWidth'); ...
feat: support symbolKeepAspect for legend
apache_incubator-echarts
train
0ac0207f45744621f0a359800e4a2606327f7ff4
diff --git a/lib/ohai/plugins/c.rb b/lib/ohai/plugins/c.rb index <HASH>..<HASH> 100644 --- a/lib/ohai/plugins/c.rb +++ b/lib/ohai/plugins/c.rb @@ -85,7 +85,7 @@ end status, stdout, stderr = run_command(:no_status_check => true, :command => "cc -V -flags") if status == 0 output = stderr.split - if stderr !~ /^cc: ...
[OHAI-<I>] Don't pick up sun C compiler on HP-UX systems
chef_ohai
train
25a5b2be3790026273ddbc2cf13934d4cf63ef51
diff --git a/lxd/container_lxc.go b/lxd/container_lxc.go index <HASH>..<HASH> 100644 --- a/lxd/container_lxc.go +++ b/lxd/container_lxc.go @@ -4798,10 +4798,12 @@ func (c *containerLXC) tarStoreFile(linkmap map[uint64]string, offset int, tw *t } } - // Handle xattrs. - hdr.Xattrs, err = shared.GetAllXattr(path) ...
Don't attempt to read xattrs from symlinks Closes #<I>
lxc_lxd
train
b311f888f60aed037a9d2f63dde407f5a8c21f84
diff --git a/config.go b/config.go index <HASH>..<HASH> 100644 --- a/config.go +++ b/config.go @@ -7,6 +7,7 @@ package main import ( "fmt" + "net" "net/url" "os" "os/user" @@ -50,7 +51,8 @@ var ( defaultHost = "localhost" defaultHTTPProfPath = "/p" defaultAPIProto = "ht...
config: normalize addresses and expand paths (#<I>) * config: normalize addresses and expand paths Check for valid host and port for dcrd and API, adding default if not present. Expand all filepaths. * error if protocol identifier in local network addresses
decred_dcrdata
train
11dd937d1f38c5b14ca20d8bf393148dc7edfee7
diff --git a/lib/dragonfly/image_magick/generators/text.rb b/lib/dragonfly/image_magick/generators/text.rb index <HASH>..<HASH> 100644 --- a/lib/dragonfly/image_magick/generators/text.rb +++ b/lib/dragonfly/image_magick/generators/text.rb @@ -69,9 +69,9 @@ module Dragonfly tempfile = convert(args.join(' '), ...
proper use of command line in text generator
markevans_dragonfly
train
6cd5309544f1104b6a3db4b1d1568cd5d89fea1c
diff --git a/packages/@uppy/utils/src/canvasToBlob.js b/packages/@uppy/utils/src/canvasToBlob.js index <HASH>..<HASH> 100644 --- a/packages/@uppy/utils/src/canvasToBlob.js +++ b/packages/@uppy/utils/src/canvasToBlob.js @@ -1,5 +1,3 @@ -const dataURItoBlob = require('./dataURItoBlob') - /** * Save a <canvas> element'...
@uppy/utils: simplify `canvasToBlob` (#<I>) The built-in `HTMLCanvasElement#toBlob` is supported everywhere.
transloadit_uppy
train
01ca3ee7aeb9f21f292060b16a54cb527bf0cee8
diff --git a/lib/json/api/resource.rb b/lib/json/api/resource.rb index <HASH>..<HASH> 100644 --- a/lib/json/api/resource.rb +++ b/lib/json/api/resource.rb @@ -70,7 +70,7 @@ module JSON end def filters(*attrs) - @_allowed_filters.merge(*attrs) + @_allowed_filters.merge(attrs) ...
Fixed issue with filters method expecting an array of filters
cerebris_jsonapi-resources
train
b9038a8ffeae80bf43395c08f2cb1b6b04c486c5
diff --git a/src/example-types/esTwoLevelAggregation.js b/src/example-types/esTwoLevelAggregation.js index <HASH>..<HASH> 100644 --- a/src/example-types/esTwoLevelAggregation.js +++ b/src/example-types/esTwoLevelAggregation.js @@ -38,19 +38,11 @@ module.exports = { ), aggs: { ...(vali...
Use F.arrayToObject per PR suggestions.
smartprocure_contexture-elasticsearch
train
4557515fd848da66310cf1078e3da3aefc400563
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -6,25 +6,26 @@ const SELECT_STATE = state => state.routing; // Action creator -function updatePath(path, noRouterUpdate) { +function updatePath(path, avoidRouterUpdate) { return { type: UPDATE_PATH...
simplify how we track when to tell the router to update
reactjs_react-router-redux
train
d6b46fcb037d1ad383fd538793ac06c739186143
diff --git a/jplephem/test.py b/jplephem/test.py index <HASH>..<HASH> 100644 --- a/jplephem/test.py +++ b/jplephem/test.py @@ -1,6 +1,12 @@ -"""Test harness for checking jplephem against actual JPL computations.""" +"""Test harness for checking jplephem against actual JPL computations. +This test can be invoked with ...
Added a message for how to download the test data
brandon-rhodes_python-jplephem
train
d70815725a37d415d43368b91ee1c0e573aafd7b
diff --git a/src/alchemist/__init__.py b/src/alchemist/__init__.py index <HASH>..<HASH> 100644 --- a/src/alchemist/__init__.py +++ b/src/alchemist/__init__.py @@ -239,11 +239,10 @@ class Alchemist(flask.Flask): self.metadata[name] = meta # Update registry. + ...
Update to comply with flake8.
concordusapps_alchemist
train
417a6b5b27a546f6f68f9803f76f85d9f8c5a57e
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -49,7 +49,7 @@ O.scope = 'control'; // Public // {{{1 exports.browserConfig = true; -exports.config = function(name, data, deps) { +exports.config = function(name, val, deps) { O.kind('./lirc', 'lirc', ...
Rename: "entry.data" => "entry.dval"
OpenSmartEnvironment_ose-lirc
train
ce8b720fe834668e082cd1b505ce674a8bab744d
diff --git a/lib/linkage/runner.rb b/lib/linkage/runner.rb index <HASH>..<HASH> 100644 --- a/lib/linkage/runner.rb +++ b/lib/linkage/runner.rb @@ -5,11 +5,13 @@ module Linkage # @param [Linkage::Configuration] config # @param [String] uri Sequel-style database URI + # @param [Hash] options Sequel.connect...
Add Sequel.connect options to Runner
coupler_linkage
train
757230b1052415a6698227b2b0faa974f5bf4dc4
diff --git a/Kwf/Assets/Components/Dependency/Abstract.php b/Kwf/Assets/Components/Dependency/Abstract.php index <HASH>..<HASH> 100644 --- a/Kwf/Assets/Components/Dependency/Abstract.php +++ b/Kwf/Assets/Components/Dependency/Abstract.php @@ -85,6 +85,9 @@ class Kwf_Assets_Components_Dependency_Abstract extends Kwf_Ass...
Correctly rebuild Component css when included scss file changed
koala-framework_koala-framework
train
a301044d1ce4ced23fffe7f9021dfb0f51c296ac
diff --git a/packages/sketch/package.json b/packages/sketch/package.json index <HASH>..<HASH> 100644 --- a/packages/sketch/package.json +++ b/packages/sketch/package.json @@ -20,6 +20,7 @@ "build": "cross-env NODE_ENV=production skpm-build", "clean": "rimraf carbon-elements.sketchplugin", "develop": "cro...
fix(sketch): add undefined exception handler in icon generate script (#<I>) * chore: add log script * chore: fix typo * fix(sketch): handle undefined exception
carbon-design-system_carbon-components
train
450d7c20af2e91fb8290fa2b8f7cf6612d7aed4c
diff --git a/bin/dna-to-aa.py b/bin/dna-to-aa.py index <HASH>..<HASH> 100755 --- a/bin/dna-to-aa.py +++ b/bin/dna-to-aa.py @@ -15,6 +15,7 @@ import argparse from Bio.Data.CodonTable import TranslationError +from dark.reads import DNARead, RNARead from dark.fasta import FastaReads @@ -36,7 +37,13 @@ if __name_...
TRIVIAL: make dna-to-aa.py pass a read class to FastaReads
acorg_dark-matter
train
6608ea6f422a1902a1087eea1a83477a637157b5
diff --git a/raiden/tasks.py b/raiden/tasks.py index <HASH>..<HASH> 100644 --- a/raiden/tasks.py +++ b/raiden/tasks.py @@ -144,7 +144,8 @@ class StartMediatedTransferTask(Task): # someone down the line timedout / couldn't proceed elif isinstance(response, (RefundTransfer, TransferTimeout)): ...
Fixes to cancel transfer by removing locked transfers on errors
raiden-network_raiden
train
1d345e53cd437c75a0f9c8b55d7e0660dfb1efc4
diff --git a/lib/sprockets_uglifier_with_source_maps/compressor.rb b/lib/sprockets_uglifier_with_source_maps/compressor.rb index <HASH>..<HASH> 100644 --- a/lib/sprockets_uglifier_with_source_maps/compressor.rb +++ b/lib/sprockets_uglifier_with_source_maps/compressor.rb @@ -9,15 +9,16 @@ module SprocketsUglifierWithSM ...
use local instance of Uglifier since sprockets initializes it differently now
AlexanderPavlenko_sprockets_uglifier_with_source_maps
train
dd7b4b98a3daae3bbf5f82ffee986a02d4a913c8
diff --git a/controller/common/src/Controller/Common/Common/Import/Xml/Processor/Lists/Standard.php b/controller/common/src/Controller/Common/Common/Import/Xml/Processor/Lists/Standard.php index <HASH>..<HASH> 100644 --- a/controller/common/src/Controller/Common/Common/Import/Xml/Processor/Lists/Standard.php +++ b/cont...
Skip comments in XML files too
aimeos_ai-controller-jobs
train
d86f9d34a8d2dcb2841fdac77e461f725a3f2b01
diff --git a/src/InMemoryRepository.php b/src/InMemoryRepository.php index <HASH>..<HASH> 100644 --- a/src/InMemoryRepository.php +++ b/src/InMemoryRepository.php @@ -126,11 +126,7 @@ class InMemoryRepository implements EditableRepository $resources = array(); if (false !== strpos($query, '*')) { - ...
Simplified InMemoryRepository
puli_repository
train
d8399a4bf249109ccaecdbf6bd20413e64f50b32
diff --git a/ciscosparkapi/api/messages.py b/ciscosparkapi/api/messages.py index <HASH>..<HASH> 100644 --- a/ciscosparkapi/api/messages.py +++ b/ciscosparkapi/api/messages.py @@ -236,7 +236,8 @@ class MessagesAPI(object): if markdown: post_data[u'markdown'] = utf8(markdown) if files: - ...
Fix Bug #8 - Message posting with File URL isn't working Treat files variable as an list (correct type) and ensure its contents are utf8 strings by applying the utf8 function via map.
CiscoDevNet_webexteamssdk
train
2851a4d06a3435548d53e7b4b1cf06d2bdb9786d
diff --git a/androguard/gui/mainwindow.py b/androguard/gui/mainwindow.py index <HASH>..<HASH> 100644 --- a/androguard/gui/mainwindow.py +++ b/androguard/gui/mainwindow.py @@ -156,8 +156,6 @@ class MainWindow(QtGui.QMainWindow): androconf.debug("curentTabChanged -> %d" % index) if index == -1: ...
androgui: Reload is manual for now (no more scrolling when changing tab)
androguard_androguard
train
1d03cde18b31378a999c4a617a6cd28190125124
diff --git a/lib/seahorse/client/net_http_handler.rb b/lib/seahorse/client/net_http_handler.rb index <HASH>..<HASH> 100644 --- a/lib/seahorse/client/net_http_handler.rb +++ b/lib/seahorse/client/net_http_handler.rb @@ -49,7 +49,7 @@ module Seahorse # extract HTTP status code and headers resp...
Added NetHttpHandler response parsing tests.
aws_aws-sdk-ruby
train
ac88b666db62f7423a17a9974d61c6aa475e7794
diff --git a/lib/adhearsion/configuration.rb b/lib/adhearsion/configuration.rb index <HASH>..<HASH> 100644 --- a/lib/adhearsion/configuration.rb +++ b/lib/adhearsion/configuration.rb @@ -25,7 +25,7 @@ module Adhearsion level :info, :desc => <<-__ Supported levels (in increasing severity) -- :tra...
outputters defined as an array instead of a String it makes easier to add a new outputter: ``` Adhearsion.config do |config| config.platform.logging.outputters << "log/test.log" end ```
adhearsion_adhearsion
train
133a74df22d6b38afd842a27eed8f7ffad3a1977
diff --git a/app/js/timer.js b/app/js/timer.js index <HASH>..<HASH> 100644 --- a/app/js/timer.js +++ b/app/js/timer.js @@ -6,6 +6,7 @@ angular.module('timer', []) scope: { interval: '=interval', startTimeAttr: '=startTime', + endTimeAttr: '=endTime', countdownattr: '=countdown',...
Add endTime attribute to timer directive.
siddii_angular-timer
train
8cb22efb833ce957a32080b4dbe3c8237f6433ec
diff --git a/example-plugins/homebridge-samplePlatform/index.js b/example-plugins/homebridge-samplePlatform/index.js index <HASH>..<HASH> 100644 --- a/example-plugins/homebridge-samplePlatform/index.js +++ b/example-plugins/homebridge-samplePlatform/index.js @@ -74,6 +74,10 @@ SamplePlatform.prototype.configureAccessor...
Add a example to use "identify" event
nfarina_homebridge
train
3bbf1fab465fe0af3145ea94902e8855b6cff378
diff --git a/sharding-jdbc/sharding-jdbc-core/src/main/java/io/shardingsphere/shardingjdbc/jdbc/adapter/AbstractConnectionAdapter.java b/sharding-jdbc/sharding-jdbc-core/src/main/java/io/shardingsphere/shardingjdbc/jdbc/adapter/AbstractConnectionAdapter.java index <HASH>..<HASH> 100644 --- a/sharding-jdbc/sharding-jdbc...
for #<I>, throw SQLException instead of ShardingException
apache_incubator-shardingsphere
train
a8562bd7148131d3ec4b732096cdf7b210433e1e
diff --git a/public/js/admin/rcm-ckeditor.js b/public/js/admin/rcm-ckeditor.js index <HASH>..<HASH> 100644 --- a/public/js/admin/rcm-ckeditor.js +++ b/public/js/admin/rcm-ckeditor.js @@ -142,20 +142,7 @@ function RcmCkEditor(config) { * @return {*} */ me.getHtml5EditorData = function(editor) { - - ...
Fixed save on html5 edit areas.
reliv_Rcm
train
cbc48e6930409e523d8c8039fa9ccaa5c44df53d
diff --git a/lib/db/cortex.php b/lib/db/cortex.php index <HASH>..<HASH> 100644 --- a/lib/db/cortex.php +++ b/lib/db/cortex.php @@ -736,7 +736,7 @@ class Cortex extends Cursor { $has_filter=$this->mergeFilter([$has_filter, [$this->rel($key)->getTable().'.'.$fromConf[1].'='.$this->getTable().'.'.$id]]); ...
Fixes a bug in has( "something IN ?", array) '+' between arrays overwrites elements with the same index, even if numeral. 'array_merge' doesn't.
ikkez_f3-cortex
train
efe962f01b2f0de0126e310799153ab53a0fdf60
diff --git a/lib/nagios_analyzer/section.rb b/lib/nagios_analyzer/section.rb index <HASH>..<HASH> 100644 --- a/lib/nagios_analyzer/section.rb +++ b/lib/nagios_analyzer/section.rb @@ -16,5 +16,16 @@ module NagiosAnalyzer self[:status] = (self[:current_state] == NagiosAnalyzer::Status::STATE_OK ? "OK" : "CRITICA...
Added sorting to Section's arrays
jbbarth_nagios_analyzer
train
019ac6a39a9c3d44fd51352b0cbf4252b012bd27
diff --git a/src/SerializerClassLoader.php b/src/SerializerClassLoader.php index <HASH>..<HASH> 100644 --- a/src/SerializerClassLoader.php +++ b/src/SerializerClassLoader.php @@ -72,6 +72,10 @@ class SerializerClassLoader { $classMetadata = $this->metadataFactory->getMetadataForClass(get_class($object)); ...
Added exception when a metadata is not found
tsantos84_serializer
train
153998fa3fd85614e9677132608427c8da8c8cc9
diff --git a/tests/test_test_if_else.py b/tests/test_test_if_else.py index <HASH>..<HASH> 100644 --- a/tests/test_test_if_else.py +++ b/tests/test_test_if_else.py @@ -345,6 +345,27 @@ y = 5 if True else 4 self.data["DC_CODE"] = "def f(): return 'wrong' if True else 3" sct_payload = helper.run(self.dat...
test_if_exp unit tests w/ list comps
datacamp_pythonwhat
train
5b13f29a0fa7ea46aceaf57710ddb9657bf9855f
diff --git a/src/adLDAP/Connections/LDAP.php b/src/adLDAP/Connections/LDAP.php index <HASH>..<HASH> 100644 --- a/src/adLDAP/Connections/LDAP.php +++ b/src/adLDAP/Connections/LDAP.php @@ -305,6 +305,18 @@ class LDAP implements ConnectionInterface } /** + * Adds entries to the current LDAP directory. + ...
Added ldap_add method to ldap connection
Adldap2_Adldap2
train
e1fa59d675d1cbd088333dc3f1776a74483d7a7b
diff --git a/Grido/DataSources/DibiFluent.php b/Grido/DataSources/DibiFluent.php index <HASH>..<HASH> 100644 --- a/Grido/DataSources/DibiFluent.php +++ b/Grido/DataSources/DibiFluent.php @@ -46,7 +46,7 @@ class DibiFluent extends \Nette\Object implements IDataSource public function getCount() { $flue...
DataSources\DibiFluent: Fixed for PostgreSQL
o5_grido
train
c21af84599e728194ade4f4b0fb90cbfe0955736
diff --git a/impl-servlet/src/main/java/com/ocpsoft/rewrite/servlet/config/rule/Join.java b/impl-servlet/src/main/java/com/ocpsoft/rewrite/servlet/config/rule/Join.java index <HASH>..<HASH> 100644 --- a/impl-servlet/src/main/java/com/ocpsoft/rewrite/servlet/config/rule/Join.java +++ b/impl-servlet/src/main/java/com/ocp...
Join now respects query strings in outbound URLs
ocpsoft_rewrite
train
4e4bbf5a5dfcef8824a948eb1aa066dd6100fd4f
diff --git a/lib/erector/rails/rails_form_builder.rb b/lib/erector/rails/rails_form_builder.rb index <HASH>..<HASH> 100644 --- a/lib/erector/rails/rails_form_builder.rb +++ b/lib/erector/rails/rails_form_builder.rb @@ -4,7 +4,7 @@ module Erector def initialize(object_name, object, template, options, proc) ...
Make sure that we use whatever the default form builder for the app, in case it's been overridden by the user in rails environment.rb, instead of just assuming it's always the ActionView form builder
erector_erector
train
3fa1b9df7556cecd74f0d75bcc99ec5523d7278e
diff --git a/request.js b/request.js index <HASH>..<HASH> 100644 --- a/request.js +++ b/request.js @@ -29,8 +29,10 @@ function TChannelRequest(channel, options) { self.channel = channel; self.options = options; self.outReqs = []; + self.timeout = self.options.timeout; self.start = 0; self.en...
TChannelRequest: add dark retry path
uber_tchannel-node
train
31cdd7a3dab4fb2bb2a61b9c80d2e7c9fee36b2b
diff --git a/jujupy.py b/jujupy.py index <HASH>..<HASH> 100644 --- a/jujupy.py +++ b/jujupy.py @@ -663,7 +663,7 @@ class EnvJujuClient26(EnvJujuClient): """ if self._use_jes: return - if self.is_jes_enabled() and self.get_jes_command() == 'controller': + if self.is_jes_enabl...
Do not check for controller in enable_jes.
juju_juju
train
bf51dbdafbc0d9586a6898ee0b89329116d30507
diff --git a/src/georegression/geometry/GeometryMath_F64.java b/src/georegression/geometry/GeometryMath_F64.java index <HASH>..<HASH> 100644 --- a/src/georegression/geometry/GeometryMath_F64.java +++ b/src/georegression/geometry/GeometryMath_F64.java @@ -27,10 +27,11 @@ import org.ejml.data.DenseMatrix64F; /** ...
- Added acute angle and comments
lessthanoptimal_GeoRegression
train
fce87db5c3b5750213652e24f2941a92116adbbb
diff --git a/src/FeatureflowClient.js b/src/FeatureflowClient.js index <HASH>..<HASH> 100644 --- a/src/FeatureflowClient.js +++ b/src/FeatureflowClient.js @@ -102,8 +102,6 @@ export default class FeatureflowClient{ var d = new Date(); //these could be event or session attributes ie not persisted directly to u...
Removed auto created attributes To improve performance and simplify
featureflow_featureflow-javascript-sdk
train
6da399beed21dddd2bf81a5f6094e1486c74bcab
diff --git a/python_modules/dagster/dagster/core/definitions/decorators/repository.py b/python_modules/dagster/dagster/core/definitions/decorators/repository.py index <HASH>..<HASH> 100644 --- a/python_modules/dagster/dagster/core/definitions/decorators/repository.py +++ b/python_modules/dagster/dagster/core/definition...
Fix error message when repository contains non-pipeline-like objects (#<I>) Closes #<I>
dagster-io_dagster
train
92c2ac8e4f05cd78a855531144b02278359695a5
diff --git a/lib/spaceship/certificate.rb b/lib/spaceship/certificate.rb index <HASH>..<HASH> 100644 --- a/lib/spaceship/certificate.rb +++ b/lib/spaceship/certificate.rb @@ -57,6 +57,36 @@ module Spaceship end def factory(attrs) + # TODO: does this belong here? + + # Example: + # =...
Added properly parsing of different kind of server response
fastlane_fastlane
train
0689c96a0d2a75e4ba7db356ab4495efb1ae932d
diff --git a/lib/payson_api/response/payment_details.rb b/lib/payson_api/response/payment_details.rb index <HASH>..<HASH> 100644 --- a/lib/payson_api/response/payment_details.rb +++ b/lib/payson_api/response/payment_details.rb @@ -24,7 +24,7 @@ class PaymentDetails case @payment_type when 'GUARANTEE' @...
Bug fix: "guaranteeDeadlineTimestamp" arrives HTML-escaped.
stoffus_payson_api
train
279b9ed6b5b5435bc4b44eec2765f55a5ab55f78
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -15,19 +15,17 @@ Not intended to be the Next Big Thing, more of a stepping stone to make your cod - Write declarative views with ES6 template strings - Built-in event delegation - Lightweight and not overly opinionated ...
Prevent delegated events of nested components propagating to parent component
brendan-jefferis_comp
train
ceeaf8967543e0da66abd116136570665b5bc320
diff --git a/tasks/typescript.js b/tasks/typescript.js index <HASH>..<HASH> 100644 --- a/tasks/typescript.js +++ b/tasks/typescript.js @@ -20,12 +20,11 @@ module.exports = function (grunt) { resolvePath:path.resolve, readFile:function (file){ - var content = grunt....
fix task failure when typescript looks for files that may be missing typescript seems to look for files by trying to read them, this causes problems as if the grunt.file.read fails it will fail the task.
k-maru_grunt-typescript
train
4fe11342d049f708c3416e5b29fa3ed5bfc3b393
diff --git a/js/bootstrap-typeahead.js b/js/bootstrap-typeahead.js index <HASH>..<HASH> 100644 --- a/js/bootstrap-typeahead.js +++ b/js/bootstrap-typeahead.js @@ -35,7 +35,8 @@ constructor: Typeahead , matcher: function (item, query) { - return ~item.indexOf(query) + // ;_; http://jsperf.com/asdfdfa...
make case lookahead case insensitive
twbs_bootstrap
train
9009466481335d7967b8b62c8fcd6ddf169a50bb
diff --git a/src/japronto/app/__init__.py b/src/japronto/app/__init__.py index <HASH>..<HASH> 100644 --- a/src/japronto/app/__init__.py +++ b/src/japronto/app/__init__.py @@ -21,10 +21,7 @@ class Application: self._connections = set() self._reaper_settings = reaper_settings or {} self._error_...
allow overriding debug in run
squeaky-pl_japronto
train
2e4856c16ef138aa67fbb85e8719d6fa71bacca8
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -25,7 +25,7 @@ function fastifyCors (fastify, opts, next) { } else { if (opts.hideOptionsRoute !== undefined) hideOptionsRoute = opts.hideOptionsRoute const corsOptions = Object.assign({}, defaultOptions, opts) - ...
chore: rename hook functions (#<I>)
fastify_fastify-cors
train
505722af119e8f8390ed8abc066a2f0ca573f475
diff --git a/tests/auth/test_backends.py b/tests/auth/test_backends.py index <HASH>..<HASH> 100644 --- a/tests/auth/test_backends.py +++ b/tests/auth/test_backends.py @@ -1,7 +1,7 @@ import pytest from django.contrib.auth.models import User from django.core.exceptions import ObjectDoesNotExist -from taskcluster.sync...
Import Auth from taskcluster rather than taskcluster.sync Since the latter no longer exists in taskcluster 1.x, whereas the former works in all versions.
mozilla_treeherder
train
a081d6b4adb314691c1a90f6e389e23e5e0d05df
diff --git a/googleanalytics/columns.py b/googleanalytics/columns.py index <HASH>..<HASH> 100644 --- a/googleanalytics/columns.py +++ b/googleanalytics/columns.py @@ -23,6 +23,12 @@ DIMENSIONS = { 'ga:dateHour': lambda date: utils.date.parse('{} {}'.format(date[:8], date[8:])), } +PYSLUG_OVERRIDES = { + '1da...
Override column names for active user metrics Names for active users metrics start with a digit (e.g. '1dayUsers'), so are not valid python identifiers.
debrouwere_google-analytics
train
e09099e639255f48a41c4c89e2d38eceacd41589
diff --git a/application/briefkasten/tests/test_submission.py b/application/briefkasten/tests/test_submission.py index <HASH>..<HASH> 100644 --- a/application/briefkasten/tests/test_submission.py +++ b/application/briefkasten/tests/test_submission.py @@ -43,14 +43,6 @@ def test_submission_with_one_attachment_post(testi...
remove non-sensical assertions since the dropbox (finally) cleans up after itself and thus tries hard to avoid leaving any submitted material behind, these assertions don't make any sense anymore. at this point we can onl assert, that the form submission works w/o erroring out. once the processing has been refactore...
ZeitOnline_briefkasten
train
bcc07e9e5252615d4ee9a514ae64db6c4ea9cd36
diff --git a/django_pandas/managers.py b/django_pandas/managers.py index <HASH>..<HASH> 100644 --- a/django_pandas/managers.py +++ b/django_pandas/managers.py @@ -83,9 +83,9 @@ class DataFrameQuerySet(QuerySet): rs_kwargs = {} if storage == 'wide': - df = self.to_dataframe(*fields, in...
Fixes an issue in to_timeseries.
chrisdev_django-pandas
train
64cd11efc2e7eefc12b3ae37c12a5620c2d01216
diff --git a/spec/raven/processors/sanitizedata_processor_spec.rb b/spec/raven/processors/sanitizedata_processor_spec.rb index <HASH>..<HASH> 100644 --- a/spec/raven/processors/sanitizedata_processor_spec.rb +++ b/spec/raven/processors/sanitizedata_processor_spec.rb @@ -108,18 +108,58 @@ describe Raven::Processor::Sani...
Adding tests to account for multiple form values per key and for url encoded data.
getsentry_raven-ruby
train
a1c460bb6cea3c46aa071b5761327d2e5fa1f0e4
diff --git a/vuepress/.vuepress/config.js b/vuepress/.vuepress/config.js index <HASH>..<HASH> 100644 --- a/vuepress/.vuepress/config.js +++ b/vuepress/.vuepress/config.js @@ -94,6 +94,15 @@ module.exports = { link: 'https://marketplace.visualstudio.com/items?itemName=lokalise.i18n-ally' ...
docs: add 3rd party integrations
kazupon_vue-i18n
train
b1b7502b602bcb1391c8a55ae60d2440cee420d0
diff --git a/classes/PodsAdmin.php b/classes/PodsAdmin.php index <HASH>..<HASH> 100644 --- a/classes/PodsAdmin.php +++ b/classes/PodsAdmin.php @@ -2331,7 +2331,7 @@ class PodsAdmin { $capabilities[] = 'delete_' . $capability_type; if ( 1 == pods_var( 'capability_type_extra', ...
Match indentation to surrounding code (spaced)
pods-framework_pods
train
ddcebeed9bc4aebdebf7222d2b9822381c213965
diff --git a/lib/hexdump/hexdump.rb b/lib/hexdump/hexdump.rb index <HASH>..<HASH> 100644 --- a/lib/hexdump/hexdump.rb +++ b/lib/hexdump/hexdump.rb @@ -173,8 +173,9 @@ module Hexdump # @return [nil] # # @raise [ArgumentError] - # The given data does not define the `#each_byte` method, or - # the `:output`...
Raise an ArgumentError if :base is not recognized.
postmodern_hexdump
train
e5498eb18f717fc389b05cd3927c8f22c13c0bfe
diff --git a/doc/conf.py b/doc/conf.py index <HASH>..<HASH> 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -40,6 +40,9 @@ templates_path = ['_templates'] # This pattern also affects html_static_path and html_extra_path. exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] +# Tell RTD to use index.rst, not content...
Set master_doc for Sphinx
pypa_pep517
train
e1dec6061db4c8483e5def4fbb60ee79366c422b
diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/mongo/MongoRepositoriesAutoConfiguration.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/mongo/MongoRepositoriesAutoConfiguration.java index <HASH>..<HASH> 100644 --- a/spring-boot...
Make MongoRepositoriesAutoConfiguration order more explicit It has to come after MongoDataAutoConfiguration (not MongoAutoConfiguration) because it looks for beans that are defined there (e.g. MongoMappingContext which is the one that scans for entities). Fixes gh-<I>
spring-projects_spring-boot
train
ab1fc35e8ac2a8861d532ec073a19e781791937a
diff --git a/lib/perpetuity/mapper.rb b/lib/perpetuity/mapper.rb index <HASH>..<HASH> 100644 --- a/lib/perpetuity/mapper.rb +++ b/lib/perpetuity/mapper.rb @@ -104,7 +104,7 @@ module Perpetuity end def self.first - retrieve.limit(1).first + data_source.first mapped_class end def self.al...
Move ID injection out of retrieval class This also uses the `find_one` method on the `mongo` gem in the mongodb driver, rather than using the `find` method, which should provide a small performance boost by not instantiating and dereferencing a MongoDB cursor.
jgaskins_perpetuity
train
1d33c03537b20308fdef2efc15e592c212002d16
diff --git a/lib/register/enter_implementation.rb b/lib/register/enter_implementation.rb index <HASH>..<HASH> 100644 --- a/lib/register/enter_implementation.rb +++ b/lib/register/enter_implementation.rb @@ -6,11 +6,9 @@ module Register next unless code.is_a? Virtual::MethodEnter # save return register...
corrected method enter and return and created those missing constants
ruby-x_rubyx
train
93fc1e639991b7727b65f3511de86ec07e066659
diff --git a/OpenPNM/Fluids/models/density.py b/OpenPNM/Fluids/models/density.py index <HASH>..<HASH> 100644 --- a/OpenPNM/Fluids/models/density.py +++ b/OpenPNM/Fluids/models/density.py @@ -6,13 +6,99 @@ Submodule -- density """ import scipy as _sp -def IABWS(fluid,coefficients, - **kwargs): +def IdealGas...
added density models Former-commit-id: cc<I>f<I>b1a<I>cfe<I>c<I>cb<I>d1c<I>e5d Former-commit-id: e<I>ccb5e7b6bd<I>b7a<I>bed<I>e9e<I>bdfc
PMEAL_OpenPNM
train
0f35e95f8887ebbb68ed083f3c9e1ad288237e89
diff --git a/js/bitso.js b/js/bitso.js index <HASH>..<HASH> 100644 --- a/js/bitso.js +++ b/js/bitso.js @@ -327,18 +327,18 @@ module.exports = class bitso extends Exchange { parseTicker (ticker, market = undefined) { // - // { - // "high":"37446.85", - // "last":"36599.54", -...
bitso: update response for ticker
ccxt_ccxt
train
ef2cc62f85b4ec67501c76e6537dba4506d3a26c
diff --git a/tests/ProxyManagerTest/Functional/LazyLoadingGhostFunctionalTest.php b/tests/ProxyManagerTest/Functional/LazyLoadingGhostFunctionalTest.php index <HASH>..<HASH> 100644 --- a/tests/ProxyManagerTest/Functional/LazyLoadingGhostFunctionalTest.php +++ b/tests/ProxyManagerTest/Functional/LazyLoadingGhostFunction...
Verifying `self` hint usage in lazy loading value holder as of #<I>
Ocramius_ProxyManager
train
280fff2a414f649f62029dce448963f045380c0a
diff --git a/client.go b/client.go index <HASH>..<HASH> 100644 --- a/client.go +++ b/client.go @@ -176,8 +176,9 @@ func (c *Client) DoBatch(workers int, reqs ...*Request) <-chan *Response { func (c *Client) do(req *Request) (*Response, error) { // create a response resp := &Response{ - Request: req, - Start: t...
Added configurable buffer size. Fixes #8
cavaliercoder_grab
train
91747b3ef4e7a37b5e7f6826837d41193ed66a91
diff --git a/lib/module.js b/lib/module.js index <HASH>..<HASH> 100644 --- a/lib/module.js +++ b/lib/module.js @@ -11,33 +11,39 @@ (function () { "use strict"; - + // get the core var core = require('./core/core.js'); - + + function mergeObject(from, to) { + for (var name in from) { + to[name] = from[name...
[fix] extend the thintalk function with core abstraction
AndreasMadsen_thintalk
train
2e0ebba1052af09307b93567daece9a04115bf71
diff --git a/externs/mux.js b/externs/mux.js index <HASH>..<HASH> 100644 --- a/externs/mux.js +++ b/externs/mux.js @@ -88,3 +88,50 @@ muxjs.mp4.Transmuxer.prototype.dispose = function() {}; * @exportDoc */ muxjs.mp4.Transmuxer.Segment; + + +/** + * Parser for CEA closed captions embedded in video streams for Dash....
Add CaptionParser to mux.js externs We're going to use Caption Parser from mux.js for parsing closed captions for Dash. Adding the it to mux.js externs. Change-Id: I<I>b4cfeed4abdb<I>df<I>c<I>b3e<I>ba<I>
google_shaka-player
train
e07a35a70179bdd82a1d4743f17286ee48180ae7
diff --git a/planet/cli/types.py b/planet/cli/types.py index <HASH>..<HASH> 100644 --- a/planet/cli/types.py +++ b/planet/cli/types.py @@ -55,24 +55,6 @@ class CommaSeparatedFloat(click.types.StringParamType): return ret -class CommaSeparatedChoice(click.types.StringParamType): - def __init__(self, *arg...
Removed the CommaSeparatedChoice class.
planetlabs_planet-client-python
train
2fe287a01ea1ddea166de3f23c26ee39a0c335c8
diff --git a/test/unit/test_generators.py b/test/unit/test_generators.py index <HASH>..<HASH> 100644 --- a/test/unit/test_generators.py +++ b/test/unit/test_generators.py @@ -1,8 +1,8 @@ import porespy as ps import numpy as np -import scipy as sp import pytest import scipy.ndimage as spim +import scipy.stats as sps...
deleting old tests that used the shape of the result, which now fails since it's a list
PMEAL_porespy
train
91c4e43c8a262a9929e9711c7899163b724109b5
diff --git a/worker/worker-execution/score-worker-execution-impl/src/main/java/io/cloudslang/worker/execution/services/StubAplsLicensingServiceImpl.java b/worker/worker-execution/score-worker-execution-impl/src/main/java/io/cloudslang/worker/execution/services/StubAplsLicensingServiceImpl.java index <HASH>..<HASH> 1006...
US/<I>/merge UI steps from master
CloudSlang_score
train
d7819f42d8230a4e1b76f0b25cab11168b80c144
diff --git a/src/main/java/com/microsoft/azure/functions/worker/broker/CoreTypeResolver.java b/src/main/java/com/microsoft/azure/functions/worker/broker/CoreTypeResolver.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/microsoft/azure/functions/worker/broker/CoreTypeResolver.java +++ b/src/main/java/com/microso...
remove direct dependency on custombinding and bindingName
Azure_azure-functions-java-worker
train
3273a55c31748e2eb42144fcbc90c659a7441a17
diff --git a/loky/process_executor.py b/loky/process_executor.py index <HASH>..<HASH> 100644 --- a/loky/process_executor.py +++ b/loky/process_executor.py @@ -378,6 +378,7 @@ def _queue_management_worker(executor_reference, def shutdown_all_workers(): mp.util.debug("queue management thread shutting down...
FIX better flagging for shutdown/broken
tomMoral_loky
train
f1997a7e6c5e92579492e67b79240a26309dce79
diff --git a/bundles/org.eclipse.orion.client.ui/web/orion/jslintworker.js b/bundles/org.eclipse.orion.client.ui/web/orion/jslintworker.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.ui/web/orion/jslintworker.js +++ b/bundles/org.eclipse.orion.client.ui/web/orion/jslintworker.js @@ -730,7 +730,7 ...
add 'window' to set of globals in browser mode
eclipse_orion.client
train
a90e1866b7539b80c7bad05315f7708625d9d365
diff --git a/cumulusci/cli/cli.py b/cumulusci/cli/cli.py index <HASH>..<HASH> 100644 --- a/cumulusci/cli/cli.py +++ b/cumulusci/cli/cli.py @@ -372,7 +372,7 @@ def project_init(config, extend): if extend: yml_config.append(' dependencies:') - yml_config.append(' github: {}'.format(extend...
- Fix issue with github dependency set by cci project init - beta<I>
SFDO-Tooling_CumulusCI
train
5c8c875b6191e9f2501f95bd0660cc76b45408b7
diff --git a/contract/models/contract.py b/contract/models/contract.py index <HASH>..<HASH> 100644 --- a/contract/models/contract.py +++ b/contract/models/contract.py @@ -183,7 +183,6 @@ class AccountAnalyticAccount(models.Model): ) ): self[field_name] = self.contract_temp...
[FIX] - don't play onchange date_start for old lines on contract template change [FIX] - Fix stop post message [FIX] - Fix sale_contract_count should count all partner contract [FIX] - set recurring_next_date to False if contract line stoped at last date invoiced [FIX] - Group by next_invoice also considers dates i...
OCA_contract
train
d35d8cce559c7a612b7c8acdf7c6f65e649caece
diff --git a/spyder/plugins/ipythonconsole/widgets/figurebrowser.py b/spyder/plugins/ipythonconsole/widgets/figurebrowser.py index <HASH>..<HASH> 100644 --- a/spyder/plugins/ipythonconsole/widgets/figurebrowser.py +++ b/spyder/plugins/ipythonconsole/widgets/figurebrowser.py @@ -24,9 +24,13 @@ class FigureBrowserWidget(...
_mute_inline_plotting
spyder-ide_spyder
train
790e6ebdad0568a687f782ae1ecaf7eff8a2d4eb
diff --git a/main/main.go b/main/main.go index <HASH>..<HASH> 100644 --- a/main/main.go +++ b/main/main.go @@ -78,7 +78,7 @@ func main() { theApp := app.NewApp(cmdRunner, cmdFactory.CommandMetadatas()...) //command `cf` without argument - if len(os.Args) == 1 { + if len(os.Args) == 1 || os.Args[1] == "help" { ...
help will run as a core command instead of calling plugin commands [Finishes #<I>]
cloudfoundry_cli
train
6472c3581cfbbd1ec90ff1ea111c8439d01b01c6
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -22,7 +22,8 @@ function StyleManifest(inputNode, options) { this.currentTree = new FSTree(); this.styleFiles = {}; - this.outputFileName = options.outputFileName; + this.outputFileStem = options.outputFileNameWithout...
feat(better defaults): allowing to set the default extension when no files are passed to the plugin, also explicitly stating that the filename should not have an extension
webark_broccoli-style-manifest
train
68fa92051b62bec76da61b4232213b3265130490
diff --git a/phoebe-testlib/test_DC/test_dc_with_rv2.py b/phoebe-testlib/test_DC/test_dc_with_rv2.py index <HASH>..<HASH> 100644 --- a/phoebe-testlib/test_DC/test_dc_with_rv2.py +++ b/phoebe-testlib/test_DC/test_dc_with_rv2.py @@ -50,14 +50,26 @@ def get_bundle_with_data_and_initial_guess(): mybundle.add_parameter...
Updated test_dc_with_rv2.py with some additional comments
phoebe-project_phoebe2
train
550c434aef6bf451705fe668875cee3f7738837b
diff --git a/dcard/posts.py b/dcard/posts.py index <HASH>..<HASH> 100644 --- a/dcard/posts.py +++ b/dcard/posts.py @@ -10,8 +10,17 @@ client = Client() class Post: - def __init__(self): - pass + def __init__(self, metas): + ''' + params `metas`: list of article_metas/ids, or one article_...
refctor class posts inner-interface
leVirve_dcard-spider
train
baed22bb1c3a940d3cacecec51e4df19f6c28541
diff --git a/lib/moodlelib.php b/lib/moodlelib.php index <HASH>..<HASH> 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -3978,6 +3978,7 @@ function &get_mailer($action='get') { * * @uses $CFG * @uses $FULLME + * @uses $MNETIDPJUMPURL IdentityProvider(IDP) URL user hits to jump to mnet peer. * @uses SI...
MNET-<I> Additional commenting and variable name change
moodle_moodle
train
67c737f325373f9486647069a56d4a795475e1cd
diff --git a/src/modules/Dropdown/Dropdown.js b/src/modules/Dropdown/Dropdown.js index <HASH>..<HASH> 100644 --- a/src/modules/Dropdown/Dropdown.js +++ b/src/modules/Dropdown/Dropdown.js @@ -447,6 +447,7 @@ export default class Dropdown extends Component { document.addEventListener('click', this.closeOnDocumentC...
fix(Dropdown):make active dropdown item scroll into view on open (#<I>) * fix:make active dropdown item visible into view(#<I>) * fix:check this.ref, menu, item in scrollSelectedItemIntoView method * test(Dropdown): scroll item into view on open
Semantic-Org_Semantic-UI-React
train
4031968eb1be82c48ac8f7c6b51a2988d4b62a5f
diff --git a/lim/genetics/qtl/test/test_qtl.py b/lim/genetics/qtl/test/test_qtl.py index <HASH>..<HASH> 100644 --- a/lim/genetics/qtl/test/test_qtl.py +++ b/lim/genetics/qtl/test/test_qtl.py @@ -58,6 +58,8 @@ def test_qtl_normal_scan(): # # X[:] = 1 # qtl = normal_scan(y, X, G=G, progress=False) +# for p...
fixed ep for redundancy
limix_lim
train
99a2123977058f2617beabc9438a01445a2767e2
diff --git a/lib/uxml/tree.py b/lib/uxml/tree.py index <HASH>..<HASH> 100644 --- a/lib/uxml/tree.py +++ b/lib/uxml/tree.py @@ -22,7 +22,7 @@ class node(object): class element(node): def __init__(self, name, attrs=None, parent=None):#, ancestors=None): self.xml_name = name - self.xml_attrs = attrs ...
Fixes to uxml.tree
uogbuji_amara3-xml
train
d06b64d4b9e8203945ad946495ff300d9852b37c
diff --git a/lib/utils/fs/safe-move-file.js b/lib/utils/fs/safe-move-file.js index <HASH>..<HASH> 100644 --- a/lib/utils/fs/safe-move-file.js +++ b/lib/utils/fs/safe-move-file.js @@ -1,6 +1,7 @@ 'use strict'; const fsp = require('fs').promises; +const fse = require('fs-extra'); const crypto = require('crypto'); c...
fix: Properly move directories across filesystems
serverless_serverless
train
334ebce0589ced0202addb23031830bc3325ac96
diff --git a/simuvex/procedures/syscalls/__init__.py b/simuvex/procedures/syscalls/__init__.py index <HASH>..<HASH> 100644 --- a/simuvex/procedures/syscalls/__init__.py +++ b/simuvex/procedures/syscalls/__init__.py @@ -9,7 +9,7 @@ syscall_table['AMD64'][3] = 'close' syscall_table['AMD64'][4] = 'stat' syscall_table['A...
export the syscall table to a separate file from the handler
angr_angr
train
a3ce1fe7e052489f50285b4689b472d5e4eebd4e
diff --git a/lib/dynode/client.js b/lib/dynode/client.js index <HASH>..<HASH> 100644 --- a/lib/dynode/client.js +++ b/lib/dynode/client.js @@ -170,7 +170,7 @@ Client.prototype.batchGetItem = function(options, cb) { var responses = {}; var meta = {UnprocessedKeys: resp.UnprocessedKeys, ConsumedCapacityUnits: {...
testing parsing response for get batch item
Wantworthy_dynode
train
2be0862cd6dc3ebb422eabbe459067446edfb614
diff --git a/chef/lib/chef/node/attribute.rb b/chef/lib/chef/node/attribute.rb index <HASH>..<HASH> 100644 --- a/chef/lib/chef/node/attribute.rb +++ b/chef/lib/chef/node/attribute.rb @@ -22,7 +22,7 @@ require 'chef/log' class Chef class Node class Attribute - attr_accessor :attribute, :default, :override,...
Fixing CHEF-<I>, adding in support for ||= in Chef::Node::Attribute objects
chef_chef
train
179b371f0535ea61f107e64ebc43e9ff4024184b
diff --git a/app/controllers/api/foreman/smart_proxies_controller.rb b/app/controllers/api/foreman/smart_proxies_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/api/foreman/smart_proxies_controller.rb +++ b/app/controllers/api/foreman/smart_proxies_controller.rb @@ -17,13 +17,13 @@ class Api::Foreman::S...
smart proxies - listing available features in cli info
Katello_katello
train
91d44085a803c97f48bfa9cb4f3f3af9cb0b2a5a
diff --git a/hydra-spring/src/test/java/de/escalon/hypermedia/spring/HydraMessageConverterTest.java b/hydra-spring/src/test/java/de/escalon/hypermedia/spring/HydraMessageConverterTest.java index <HASH>..<HASH> 100644 --- a/hydra-spring/src/test/java/de/escalon/hypermedia/spring/HydraMessageConverterTest.java +++ b/hydr...
Fixed test after introduction of mediaType ld+json
dschulten_hydra-java
train
6e17647bd6365929a9c289ccb65307a52a8c515d
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ import sys kernel_json = {"argv":["sys.executable","-m","sas_kernel", "-f", "{connection_file}"], "display_name":"SAS", - "codemirror_mode":"shell", + "codemirror_mode":"sql", #"env":{"PS1": "$"}, "langua...
update the codemirror_mode to sql to see if that controls the ipython syntax coloring
sassoftware_sas_kernel
train
81c1f1594e513f0a50125a808c93d370f348b5e2
diff --git a/dev/com.ibm.ws.concurrent.persistent_fat_configupdate/fat/src/com/ibm/ws/concurrent/persistent/fat/configupd/PersistentExecutorConfigUpdateTest.java b/dev/com.ibm.ws.concurrent.persistent_fat_configupdate/fat/src/com/ibm/ws/concurrent/persistent/fat/configupd/PersistentExecutorConfigUpdateTest.java index <...
Issue #<I> PersistentExecutorConfigUpdateTest should expect CWWKC<I>W
OpenLiberty_open-liberty
train
346fb186925575c4fcbd9b1cab6e83da62dec48e
diff --git a/lib/right_develop/ci/util.rb b/lib/right_develop/ci/util.rb index <HASH>..<HASH> 100644 --- a/lib/right_develop/ci/util.rb +++ b/lib/right_develop/ci/util.rb @@ -1,3 +1,7 @@ +if RUBY_VERSION =~ /^1\.8/ + require 'iconv' +end + module RightDevelop::CI module Util module_function @@ -37,14 +41,18 @...
Purify using iconv to avoid 8-bit characters entirely
rightscale_right_develop
train
def638ff880d368e5c4cf9bb440b873df1656a9b
diff --git a/lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php b/lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php index <HASH>..<HASH> 100644 --- a/lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php +++ b/lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php @@ -226,7 +226,6 @@ class OCI8Statement implements \IteratorAggregate, St...
[DBAL-<I>] Added platform independent test for Statement#fetchAll(PDO::FETCH_COLUMN)
doctrine_dbal
train
4be4b718ed55b3624c39093ff84cd1a66bb0044c
diff --git a/spec/schedule_at_spec.rb b/spec/schedule_at_spec.rb index <HASH>..<HASH> 100644 --- a/spec/schedule_at_spec.rb +++ b/spec/schedule_at_spec.rb @@ -92,15 +92,21 @@ describe Rufus::Scheduler do it 'accepts a time string' do job = @scheduler.at('2100-12-12 20:30', :job => true) {} + jt = job...
Adapt at spec to gh-<I> [ci skip]
jmettraux_rufus-scheduler
train
633ff127e41ea83764e3aed1db26d5151201d9e3
diff --git a/tests/PHPUnit/Fixtures/InvalidVisits.php b/tests/PHPUnit/Fixtures/InvalidVisits.php index <HASH>..<HASH> 100644 --- a/tests/PHPUnit/Fixtures/InvalidVisits.php +++ b/tests/PHPUnit/Fixtures/InvalidVisits.php @@ -67,7 +67,7 @@ class Test_Piwik_Fixture_InvalidVisits extends Test_Piwik_BaseFixture ...
Investigating travis build failure... (<I>th commit)
matomo-org_matomo
train
d2f1ebbac24c4f22adc942c21ae42952c9cd6de2
diff --git a/msspeak/voices.py b/msspeak/voices.py index <HASH>..<HASH> 100644 --- a/msspeak/voices.py +++ b/msspeak/voices.py @@ -118,6 +118,12 @@ AZURE_VOICES = [ "Locale": "en-GB" }, { + "Name": "Microsoft Server Speech Text to Speech Voice (en-GB, LibbyNeural)", + "ShortName": "en-G...
[fix](voices) add en-GB Neural voice
newfies-dialer_python-msspeak
train
3886e7e015f00cdadd5223ee9bceb4f2bab5e7cd
diff --git a/lib/chartkick/remote/helper.rb b/lib/chartkick/remote/helper.rb index <HASH>..<HASH> 100644 --- a/lib/chartkick/remote/helper.rb +++ b/lib/chartkick/remote/helper.rb @@ -33,7 +33,7 @@ module Chartkick::Remote if chart_id # json request controller.chartkick_remote_blocks ||= {} ...
fix standalone to include, not exclude, the desired chart
ashanbrown_chartkick-remote
train