hash
stringlengths
40
40
diff
stringlengths
131
26.7k
message
stringlengths
7
694
project
stringlengths
5
67
split
stringclasses
1 value
diff_languages
stringlengths
2
24
4764e7ad64b673cfc9f3ebe50a66b878d6f5e829
diff --git a/Query/Builder.php b/Query/Builder.php index <HASH>..<HASH> 100755 --- a/Query/Builder.php +++ b/Query/Builder.php @@ -2826,8 +2826,8 @@ class Builder */ public function aggregate($function, $columns = ['*']) { - $results = $this->cloneWithout($this->unions ? [] : ['columns']) - ...
fix #<I> (aggregates with having) (#<I>)
illuminate_database
train
php,php
e019fb4c887fa95a678bd4b7dc9b915a062f7114
diff --git a/pyghmi/ipmi/events.py b/pyghmi/ipmi/events.py index <HASH>..<HASH> 100644 --- a/pyghmi/ipmi/events.py +++ b/pyghmi/ipmi/events.py @@ -454,8 +454,10 @@ class EventHandler(object): # is wholly left up to the OEM layer, using the OEM ID of the BMC event['oemdata'] = selentry[3:] ...
Only conditionally delete fields from event If some events (for example, OEM events) are encountered, the deleted fields won't exist in the first place. Avoid KeyErrors by checking before deleting. Change-Id: I<I>ca<I>f<I>c7b<I>e<I>c8ce1ea<I>e0d<I>
openstack_pyghmi
train
py
74ae0d4b2f7a3e0ce9d6fa7434b4da2b4dd99230
diff --git a/src/BuiltinServerFactory.php b/src/BuiltinServerFactory.php index <HASH>..<HASH> 100644 --- a/src/BuiltinServerFactory.php +++ b/src/BuiltinServerFactory.php @@ -47,7 +47,7 @@ class BuiltinServerFactory $timer->promise(), ])->then(null, function () use ($process) { $proce...
Removed parenthesis of the constructor that takes no arguments
mpyw_php-hyper-builtin-server
train
php
940170f882c6fb8c2704dd825cf5a6d217c8118f
diff --git a/provision/juju/provisioner_test.go b/provision/juju/provisioner_test.go index <HASH>..<HASH> 100644 --- a/provision/juju/provisioner_test.go +++ b/provision/juju/provisioner_test.go @@ -797,7 +797,7 @@ func (s *ELBSuite) TestCollectStatusWithELBAndIDChange(c *C) { c.Assert(instances, HasLen, 2) c.Asser...
provision/juju: another timeout increase Sometimes it fails with -race.
tsuru_tsuru
train
go
909778e8ad6a79ee8940ddb213ec95b8adae938d
diff --git a/lxd/networks.go b/lxd/networks.go index <HASH>..<HASH> 100644 --- a/lxd/networks.go +++ b/lxd/networks.go @@ -319,6 +319,26 @@ func networksPost(d *Daemon, r *http.Request) response.Response { return resp } +// networkPartiallyCreated returns true of supplied network has properties that indicate it ha...
lxd/networks: Adds networkPartiallyCreated helper function
lxc_lxd
train
go
1b996eefbfe8d40cd60582a718dabf69af0cec0d
diff --git a/spec/knapsack_pro/queue_allocator_spec.rb b/spec/knapsack_pro/queue_allocator_spec.rb index <HASH>..<HASH> 100644 --- a/spec/knapsack_pro/queue_allocator_spec.rb +++ b/spec/knapsack_pro/queue_allocator_spec.rb @@ -210,7 +210,6 @@ describe KnapsackPro::QueueAllocator do context 'when 2nd re...
Update queue_allocator_spec.rb
KnapsackPro_knapsack_pro-ruby
train
rb
371ebb788ac776ba929bbabe0cba050cc017d9bd
diff --git a/lark/parsers/earley_forest.py b/lark/parsers/earley_forest.py index <HASH>..<HASH> 100644 --- a/lark/parsers/earley_forest.py +++ b/lark/parsers/earley_forest.py @@ -770,7 +770,7 @@ class ForestToPyDotVisitor(ForestVisitor): graph_node = self.graph.get_node(graph_node_id)[0] for child in ...
Fix ForestToPyDotVisitor (Issue #<I>)
lark-parser_lark
train
py
8f9d039948788546fa48522d505df35bb1e510a5
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -144,7 +144,7 @@ //. //. ### Variadic functions //. -//. Ramda provides several functions with take any number of arguments. These +//. Ramda provides several functions which take any number of arguments. These //. are kno...
fix(typo): `with` should be `which`
sanctuary-js_sanctuary
train
js
ba2bd10a21bcae1ca4ac36128c7130d9d8c64076
diff --git a/lib/createLiveStyleApp.js b/lib/createLiveStyleApp.js index <HASH>..<HASH> 100644 --- a/lib/createLiveStyleApp.js +++ b/lib/createLiveStyleApp.js @@ -63,7 +63,7 @@ module.exports = function createLiveStyleApp(options) { if (options.compilesass) { app.use(compilesass({ ...
Join livestyle logging and sass compile logging into the same flag
One-com_livestyle
train
js
8b1f3d581d8833495cb8b70d9f1d2bcdbddc0ef2
diff --git a/lib/rollbar/request_data_extractor.rb b/lib/rollbar/request_data_extractor.rb index <HASH>..<HASH> 100644 --- a/lib/rollbar/request_data_extractor.rb +++ b/lib/rollbar/request_data_extractor.rb @@ -91,11 +91,11 @@ module Rollbar def rollbar_filtered_params(sensitive_params, params) params.inj...
Fix params filtering Neither Symbol nor String in Ruby has `#in?` method. So this filtering raises another exception instead of sending it:     Exception while reporting exception to Rollbar:     undefined method `in?' for :session_id:Symbol This patch fixes expressions to by Rubista not Pythonista :D
rollbar_rollbar-gem
train
rb
242159b78c09755d228fce3f541c1d18fc656322
diff --git a/custodian/vasp/handlers.py b/custodian/vasp/handlers.py index <HASH>..<HASH> 100644 --- a/custodian/vasp/handlers.py +++ b/custodian/vasp/handlers.py @@ -96,17 +96,17 @@ class VaspErrorHandler(ErrorHandler, MSONable): if "NBANDS" in vi["INCAR"]: nbands = int(vi["INCAR"]["NBAND...
Decrease NBANDS increment to <I>%.
materialsproject_custodian
train
py
1425765e7fd816df2d34f98a71cbebad92c5f350
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -34,7 +34,7 @@ function parse(base, key, value) { var obj = copy(value); - if (key === '') seal(base || obj.href, obj, []); + if (key === '' || obj.href) seal(base || obj.href, obj, []); return obj; } @@ -75,7 +...
seal objects with hrefs
hypergroup_hyper-json-immutable-parse
train
js
0f2987645343a9f75dd411b3bc7451fa0ed6a5e6
diff --git a/src/main/java/org/sakaiproject/nakamura/lite/content/InternalContent.java b/src/main/java/org/sakaiproject/nakamura/lite/content/InternalContent.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/sakaiproject/nakamura/lite/content/InternalContent.java +++ b/src/main/java/org/sakaiproject/nakamura/lit...
Added Encoding field to content.
ieb_sparsemapcontent
train
java
01e38ed4cadd2558a9386cbf6106127c28702d00
diff --git a/src/js/ripple/crypt.js b/src/js/ripple/crypt.js index <HASH>..<HASH> 100644 --- a/src/js/ripple/crypt.js +++ b/src/js/ripple/crypt.js @@ -361,11 +361,19 @@ Crypt.getStringToSign = function(config, parsed, date, mechanism) { // Sort the properties of the JSON object into canonical form var canonicalDa...
[BUG] merge IE<I> signature fix
ChainSQL_chainsql-lib
train
js
33fff408f6dd1ca44cf2525dfbec9a786dab8d36
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -126,6 +126,15 @@ export default class StepWizard extends PureComponent { // Update hash if prop set if (this.props.isHashEnabled) this.updateHash(this.state.activeStep); } + + /**...
Define currentStep and totalSteps as getters So that they can be used by the SW returned from instance
jcmcneal_react-step-wizard
train
js
a7c9328341121d8e62baf249ae61bd61f471d69e
diff --git a/src/tree/builder/TreeAdapter.js b/src/tree/builder/TreeAdapter.js index <HASH>..<HASH> 100644 --- a/src/tree/builder/TreeAdapter.js +++ b/src/tree/builder/TreeAdapter.js @@ -194,7 +194,7 @@ class TreeAdapter { the most recent ancestor which is either a heading or paragraph. */ const ancestor ...
_appendFormattingElement now only checks if found ancestor is not null.
Yoast_YoastSEO.js
train
js
b4c3c6f20a9dcd30705143cf364fba784dce574f
diff --git a/ghost/admin/routes/application.js b/ghost/admin/routes/application.js index <HASH>..<HASH> 100644 --- a/ghost/admin/routes/application.js +++ b/ghost/admin/routes/application.js @@ -2,6 +2,12 @@ import ShortcutsRoute from 'ghost/mixins/shortcuts-route'; var ApplicationRoute = Ember.Route.extend(SimpleAu...
Check for server notifications on hard refresh Closes #<I> - Trigger the loadServerNotifications event from the ApplicationRoute's afterModel hook, which gets called every time the app gets loaded.
TryGhost_Ghost
train
js
9a9b533f2177b16d1f3fbc0b7122253c9c53e73f
diff --git a/test/utils/grunt.js b/test/utils/grunt.js index <HASH>..<HASH> 100644 --- a/test/utils/grunt.js +++ b/test/utils/grunt.js @@ -17,7 +17,7 @@ exports.runTask = function (task) { that.stderr = stderr; // Callback - done(); + done(err); }); });
If a Grunt task fails during a unit test, fail the test
twolfson_grunt-zip
train
js
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
py
4c1a16eed1b33ec6b0f80f290574ba07b4d6725c
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -25,13 +25,14 @@ install_requires = [ setup( name='Firenado', - version=".".join(map(str,firenado.__version__)), - description='Componentized web framework based on Tornado.', + version='.'.join(map(str,firena...
Fixed setup.py for <I>.
candango_firenado
train
py
78ce0b4047f1d7fcf1e8a00da93642f1b1620bf2
diff --git a/CHANGELOG b/CHANGELOG index <HASH>..<HASH> 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https:...
Remove mustache from our list of supported template engines
mailgun_mailgun-go
train
CHANGELOG,go,go
48816d9f2e0d8004717b86b2a02852b22ab5198e
diff --git a/system/src/Grav/Common/GPM/GPM.php b/system/src/Grav/Common/GPM/GPM.php index <HASH>..<HASH> 100644 --- a/system/src/Grav/Common/GPM/GPM.php +++ b/system/src/Grav/Common/GPM/GPM.php @@ -251,7 +251,7 @@ class GPM extends Iterator $repository[$slug]->version = $local_version; ...
Fix issue with vUndefined in GPM
getgrav_grav
train
php
abbcf15bb2b0d06829dfff4bfc97ac5892365af7
diff --git a/cluster/service.go b/cluster/service.go index <HASH>..<HASH> 100644 --- a/cluster/service.go +++ b/cluster/service.go @@ -95,7 +95,7 @@ func (s *Service) Close() error { // Shut down all handlers. close(s.closing) - s.wg.Wait() + // s.wg.Wait() // FIXME(benbjohnson) return nil } diff --git a/cmd...
integrate mux into influxd cluster service
influxdata_influxdb
train
go,go
e7b71f30817643c23bab5749151a9dee795beb65
diff --git a/src/main/java/ixa/kaflib/KAFDocument.java b/src/main/java/ixa/kaflib/KAFDocument.java index <HASH>..<HASH> 100644 --- a/src/main/java/ixa/kaflib/KAFDocument.java +++ b/src/main/java/ixa/kaflib/KAFDocument.java @@ -149,7 +149,21 @@ public class KAFDocument { return lp; } - /** Returns a list of...
addLinguisticProcessors() added. Using the combination of it and getLinguisticProcessors() methods, it's quite straightforward to copy LPs from one document to another.
ixa-ehu_kaflib
train
java
fad031066a3f78f818b3899b5f0c199f44b5a0bc
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,3 +1,5 @@ +// We use Grunt to build our dist files +// commands are run by the makefile var Promise = require('es6-promise').Promise; global.window = {
added some commenting to the Gruntfile
buzzfeed_solid
train
js
1442f11a5827915abb364bf02a40eaa1cfd3b33f
diff --git a/lib/parser.js b/lib/parser.js index <HASH>..<HASH> 100644 --- a/lib/parser.js +++ b/lib/parser.js @@ -50,7 +50,11 @@ var Parser = function (options) { objectMode: !self.options.passThru }) - self._buffer = Buffer.allocUnsafe(0) + self.bufferAllocUnsafe = + (typeof(Buffer.allocUnsafe) === "fu...
lib/parser: check that `Buffer.allocUnsafe` is actually available
mkrufky_node-dvbtee
train
js
cd32f4a04356b41506b652dc8286b0c6cdd821d8
diff --git a/moneywagon/__init__.py b/moneywagon/__init__.py index <HASH>..<HASH> 100644 --- a/moneywagon/__init__.py +++ b/moneywagon/__init__.py @@ -417,11 +417,13 @@ def guess_currency_from_address(address): fixer = lambda x: x # does nothing first_byte = fixer(b58decode_check(address)[0]) + doubl...
allow guess currency code to match currencies that have two version bytes
priestc_moneywagon
train
py
465dada11d8c229786ba967538cd5136dcb367a6
diff --git a/src/GraphQL.php b/src/GraphQL.php index <HASH>..<HASH> 100644 --- a/src/GraphQL.php +++ b/src/GraphQL.php @@ -193,7 +193,7 @@ class GraphQL */ protected function shouldCacheAST() { - return app()->environment('production') && config('cache.enable'); + return app()->environment...
Fix bug preventing the AST from ever being cached
nuwave_lighthouse
train
php
dbc0ce06317382ea83acbdaed4aea5c01cc91433
diff --git a/fireplace/cards/classic/shaman.py b/fireplace/cards/classic/shaman.py index <HASH>..<HASH> 100644 --- a/fireplace/cards/classic/shaman.py +++ b/fireplace/cards/classic/shaman.py @@ -8,16 +8,6 @@ class CS2_042: action = damageTarget(3) -# Dust Devil -class EX1_243: - Recall = 2 - - -# Earth Elemental ...
Use Recall from enhanced CardXML database Previously, Recall was stored as a boolean
jleclanche_fireplace
train
py
0ffed9132385b123546ed4cf26b3f887719229ff
diff --git a/storage/api.js b/storage/api.js index <HASH>..<HASH> 100644 --- a/storage/api.js +++ b/storage/api.js @@ -53,6 +53,9 @@ class SubStorage { set(key, value) { return this._storage.set(this._path + '/' + key, values.toJSON('mixed', value)); } + + sub(key) { + return new SubStorage(this._storage, this....
Add ability to create custom substorages
tinkerhub_abstract-things
train
js
9950f63e8cc1bdb764b47f299d034adc4a6d1554
diff --git a/python/ray/worker.py b/python/ray/worker.py index <HASH>..<HASH> 100644 --- a/python/ray/worker.py +++ b/python/ray/worker.py @@ -901,7 +901,7 @@ class Worker(object): if not self.actor_id.is_nil() and function_name == "__init__": self.mark_actor_init_failed(error) # Send sig...
Send task error instead of raw exception for signal (#<I>)
ray-project_ray
train
py
3709d5694cb9727ff934b10a99eff14bca7e10bf
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -14,7 +14,7 @@ nconf module.exports = function(grunt) { - // Temporary fix for a bug in a dependency + // Temporary fix for a bug in grunt-pg grunt.utils = grunt.util; @@ -34,6 +34,7 @@ module.exp...
[FIX] Added temp fix for bug in dependency grunt-db-migrate
ripple_ripple-rest
train
js
71483fd154c241b771f4a0b97335e602a39ad3fb
diff --git a/bcbio/broad/__init__.py b/bcbio/broad/__init__.py index <HASH>..<HASH> 100644 --- a/bcbio/broad/__init__.py +++ b/bcbio/broad/__init__.py @@ -50,7 +50,8 @@ class BroadRunner: subprocess.check_call(cl) def run_gatk(self, params, tmp_dir=None): - support_nt = set(["UnifiedGenotyper", "...
Avoid parallelizing UnifiedGenotyper, which parallelizes by splitting across chromosomes
bcbio_bcbio-nextgen
train
py
fa3ecc7d1ff0426c6c2e190b6f830427f78efca2
diff --git a/code/src/main/com/lmax/disruptor/dsl/EventProcessorRepository.java b/code/src/main/com/lmax/disruptor/dsl/EventProcessorRepository.java index <HASH>..<HASH> 100644 --- a/code/src/main/com/lmax/disruptor/dsl/EventProcessorRepository.java +++ b/code/src/main/com/lmax/disruptor/dsl/EventProcessorRepository.ja...
Ensure custom event processors are included in gating sequences.
LMAX-Exchange_disruptor
train
java
acf09aa391b2b570a8002ddc08fabe297b5588b1
diff --git a/centinel/__init__.py b/centinel/__init__.py index <HASH>..<HASH> 100644 --- a/centinel/__init__.py +++ b/centinel/__init__.py @@ -1,6 +1,6 @@ #!/usr/bin/python __title__ = 'centinel' -__version__ = '0.1.5.6.1' +__version__ = '0.1.5.6.2' import centinel.backend import centinel.client diff --git a/setu...
bumped to version <I>
iclab_centinel
train
py,py
a4a84ee1841854a6e325fca61e1fed099a11d2fe
diff --git a/user_management/tests/run.py b/user_management/tests/run.py index <HASH>..<HASH> 100755 --- a/user_management/tests/run.py +++ b/user_management/tests/run.py @@ -55,6 +55,12 @@ settings.configure( SENTRY_CLIENT='user_management.utils.sentry.SensitiveDjangoClient', USE_TZ=True, MIGRATION_MODU...
Added Templates to settings as Django<I> complains otherwise
incuna_django-user-management
train
py
f59f8aa272ea82d16fa4179e146925f5082cbd06
diff --git a/src/tkj/Economics/Order/Order.php b/src/tkj/Economics/Order/Order.php index <HASH>..<HASH> 100644 --- a/src/tkj/Economics/Order/Order.php +++ b/src/tkj/Economics/Order/Order.php @@ -170,7 +170,7 @@ class Order { { $handle = $this->getHandle($no); - $request = array('orderHandle'=>$ha...
[BUGFIX] Using wrong variable name
tkjaergaard_Economic-PHP-SDK
train
php
23b014034af5f91b8b26a590bb2f7718c7cc631e
diff --git a/src/Connection/Connector.php b/src/Connection/Connector.php index <HASH>..<HASH> 100644 --- a/src/Connection/Connector.php +++ b/src/Connection/Connector.php @@ -179,7 +179,11 @@ class Connector implements ConnectorInterface protected function loadToken() { if ($this->config['api_token']...
Work around missing token expiry for old-style access tokens
platformsh_platformsh-client-php
train
php
2520e535a0b4ccfa712de37139089b7a2ca54fa0
diff --git a/pkg/s3select/csv/reader.go b/pkg/s3select/csv/reader.go index <HASH>..<HASH> 100644 --- a/pkg/s3select/csv/reader.go +++ b/pkg/s3select/csv/reader.go @@ -138,6 +138,12 @@ func NewReader(readCloser io.ReadCloser, args *ReaderArgs) (*Reader, error) { csvReader.Comma = []rune(args.FieldDelimiter)[0] csvRe...
Allow lazyQuotes for certain types of CSV (#<I>) Set lazyQuotes to true, to allow a quote to appear in an unquote field and a non-doubled quote may appear in a quoted field.
minio_minio
train
go
dce240d5a9a7100b83eca7eba5d1762c537ee758
diff --git a/security_groups.go b/security_groups.go index <HASH>..<HASH> 100644 --- a/security_groups.go +++ b/security_groups.go @@ -100,7 +100,7 @@ func (req *DeleteSecurityGroup) response() interface{} { // CloudStack API: https://cloudstack.apache.org/api/apidocs-4.10/apis/authorizeSecurityGroupIngress.html type...
security groups: fun fact cidrlist is a list
exoscale_egoscale
train
go
31458a94a6ee5c96cbdcdaafc6720fe2dc459ed6
diff --git a/actionview/lib/action_view/railtie.rb b/actionview/lib/action_view/railtie.rb index <HASH>..<HASH> 100644 --- a/actionview/lib/action_view/railtie.rb +++ b/actionview/lib/action_view/railtie.rb @@ -37,10 +37,6 @@ module ActionView end end - initializer "action_view.collection_caching", aft...
Push action_view.collection_caching to be called towards the end, since it depends on being called after action_controller.set_configs. This causes, other AV initializers after it to be called after all of AC initializers, which get pulled in before since action_controller.set_configs gets called. Hence, push initializ...
rails_rails
train
rb
710aafbc9128fc0cbb3f7220a2300eef7018de94
diff --git a/src/Symfony/Component/Routing/Generator/Dumper/PhpGeneratorDumper.php b/src/Symfony/Component/Routing/Generator/Dumper/PhpGeneratorDumper.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Routing/Generator/Dumper/PhpGeneratorDumper.php +++ b/src/Symfony/Component/Routing/Generator/Dumper/PhpGener...
[Routing] generate(null) should throw an exception
symfony_symfony
train
php
5d38a0d58ffebdc99ebac4e3a89f6533ce0456b1
diff --git a/lib/Slackbot_worker.js b/lib/Slackbot_worker.js index <HASH>..<HASH> 100755 --- a/lib/Slackbot_worker.js +++ b/lib/Slackbot_worker.js @@ -165,6 +165,7 @@ module.exports = function(botkit, config) { var err = new Error('Stale RTM connection, closing RTM'); b...
Stop ping/pong checking once we've determined the connection is bad
howdyai_botkit
train
js
f4be18e082888f6d07dd134fd1664f0ff6c6516e
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ def readme(): return f.read() setup(name='pyTelegramBotAPI', - version='0.3.8', + version='0.3.9', description='Python Telegram bot api. ', long_description=readme(), aut...
Update Version. Change log: - New type Chat support. - Bugs fix.
eternnoir_pyTelegramBotAPI
train
py
f514ebde313dcf27afcd4806bf33f4426e59835e
diff --git a/sonar-batch/src/test/java/org/sonar/batch/issue/IssuesDecoratorTest.java b/sonar-batch/src/test/java/org/sonar/batch/issue/IssuesDecoratorTest.java index <HASH>..<HASH> 100644 --- a/sonar-batch/src/test/java/org/sonar/batch/issue/IssuesDecoratorTest.java +++ b/sonar-batch/src/test/java/org/sonar/batch/issu...
Add unit test when issuable is null
SonarSource_sonarqube
train
java
42c0af702dff1a91a56054076621b9048b77aa7e
diff --git a/model/accessory/thermostat.go b/model/accessory/thermostat.go index <HASH>..<HASH> 100644 --- a/model/accessory/thermostat.go +++ b/model/accessory/thermostat.go @@ -50,7 +50,9 @@ func (t *thermostat) TargetTemperature() float64 { } func (t *thermostat) SetMode(value model.HeatCoolMode) { - t.thermo...
Prevent current heating cooling mode of thermostat to be auto
brutella_hc
train
go,go
e490e25834b4c81ed00bf60431716d755220583a
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -1,7 +1,7 @@ /** * DB task set for pon * @module pon-task-db - * @version 2.2.3 + * @version 2.2.4 */ 'use strict'
[ci skip] Travis CI committed after build
realglobe-Inc_pon-task-db
train
js
1f8fe06e47ea12f8d5a9ed5e6dd72f9164e039aa
diff --git a/ci/taskcluster/bin/decision.py b/ci/taskcluster/bin/decision.py index <HASH>..<HASH> 100755 --- a/ci/taskcluster/bin/decision.py +++ b/ci/taskcluster/bin/decision.py @@ -21,7 +21,7 @@ tasks = [ 'artifacts_from': [ { 'task_name': 'recipe-client-addon:build', - ...
Use correct path for pulling build artifact in TaskCluster test script.
mozilla_normandy
train
py
c1b05b720ded1338d82f50f5c2df050930ccd350
diff --git a/python/ray/worker.py b/python/ray/worker.py index <HASH>..<HASH> 100644 --- a/python/ray/worker.py +++ b/python/ray/worker.py @@ -1391,6 +1391,9 @@ def register_custom_serializer(cls, use_dict: Deprecated. class_id (str): Unique ID of the class. Autogenerated if None. """ + worker...
calling register_custom_serializer require ray to be initialized (#<I>)
ray-project_ray
train
py
723ceb41eefefaa8731d2dd6c48e58d03ad1ab66
diff --git a/DataSet/Front/ProducerDataSet.php b/DataSet/Front/ProducerDataSet.php index <HASH>..<HASH> 100755 --- a/DataSet/Front/ProducerDataSet.php +++ b/DataSet/Front/ProducerDataSet.php @@ -13,6 +13,10 @@ namespace WellCommerce\Bundle\ProducerBundle\DataSet\Front; use WellCommerce\Bundle\ProducerBundle\DataSet...
Cached datasets, second level cache
WellCommerce_WishlistBundle
train
php
92bd0b46329388eac1d2729a9d507144e28464df
diff --git a/src/Models/Link.php b/src/Models/Link.php index <HASH>..<HASH> 100644 --- a/src/Models/Link.php +++ b/src/Models/Link.php @@ -397,7 +397,7 @@ class Link extends DataObject { $class = $this->Classes ? Convert::raw2att($this->Classes) : ''; - return $class ? " class='$class'" : ''; + ...
quotes added when template processed. no need of manually adding them in php
sheadawson_silverstripe-linkable
train
php
7afc28a24a53842f0118e33b23703240afb5372a
diff --git a/spec/twitter/client_spec.rb b/spec/twitter/client_spec.rb index <HASH>..<HASH> 100644 --- a/spec/twitter/client_spec.rb +++ b/spec/twitter/client_spec.rb @@ -83,7 +83,7 @@ describe Twitter::Client do before do stub_delete("/custom/delete").with(:query => {:deleted => "object"}) end - it...
use correct method name in spec description
sferik_twitter
train
rb
69b7821d2a0b46a12023bc19ec5eae680f840bd4
diff --git a/jupyter-js-widgets/src/widget.js b/jupyter-js-widgets/src/widget.js index <HASH>..<HASH> 100644 --- a/jupyter-js-widgets/src/widget.js +++ b/jupyter-js-widgets/src/widget.js @@ -37,9 +37,9 @@ var unpack_models = function unpack_models(value, manager) { var WidgetModel = Backbone.Model.extend({ defa...
Set default module for model and view in the frontend
jupyter-widgets_ipywidgets
train
js
91ce841c6b253ce0e9789ffbad167bc5175e8ee6
diff --git a/src/main/java/com/couchbase/cblite/replicator/CBLReplicator.java b/src/main/java/com/couchbase/cblite/replicator/CBLReplicator.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/couchbase/cblite/replicator/CBLReplicator.java +++ b/src/main/java/com/couchbase/cblite/replicator/CBLReplicator.java @@ -2...
Needed to fix issue #<I> (Ektorp Tests take forever). This is needed for being able to properly observer replications.
couchbase_couchbase-lite-java-core
train
java
4142dda9988d69a9e6c3d3ac098442a9309f0c67
diff --git a/server/peer.go b/server/peer.go index <HASH>..<HASH> 100644 --- a/server/peer.go +++ b/server/peer.go @@ -265,6 +265,7 @@ func (peer *Peer) loop() error { } if oldState == bgp.BGP_FSM_ESTABLISHED { peer.fsm.peerConfig.BgpNeighborCommonState.Uptime = time.Time{} + peer.adjRib.DropAll...
server: drop all paths in adj-in when peer is down
osrg_gobgp
train
go,go
381f06d34848e9bf055551dd5365f5a1e3d14120
diff --git a/api/service_consumption.go b/api/service_consumption.go index <HASH>..<HASH> 100644 --- a/api/service_consumption.go +++ b/api/service_consumption.go @@ -506,6 +506,13 @@ func serviceInstanceGrantTeam(w http.ResponseWriter, r *http.Request, t auth.Tok return serviceInstance.Grant(teamName) } +// title...
api/services: add comments to describe service instance revoke access
tsuru_tsuru
train
go
1c33b650a98c1e9bfb1e177952384ec145fef612
diff --git a/src/discoursegraphs/discoursegraph.py b/src/discoursegraphs/discoursegraph.py index <HASH>..<HASH> 100644 --- a/src/discoursegraphs/discoursegraph.py +++ b/src/discoursegraphs/discoursegraph.py @@ -605,6 +605,7 @@ def get_annotation_layers(docgraph): node_layers = get_node_annotation_layers(docgraph) ...
discoursegraph.py: flake8
arne-cl_discoursegraphs
train
py
39e68348bf60a59f1ca0cd0969e7b66ea973c549
diff --git a/src/utils.js b/src/utils.js index <HASH>..<HASH> 100644 --- a/src/utils.js +++ b/src/utils.js @@ -59,3 +59,40 @@ export const swap = (o) => dict( .entries(o) .map((kv) => [].concat(kv).reverse()) ) + + + + +// setTimeout in promise/async skin +// example usage: +// +// sf.utils.timeout( ...
utils: timeout() and delay() added.
drmats_js-toolbox
train
js
59827b2ec88f83a0f38d09aae61857f99ba2568f
diff --git a/sciluigi/dependencies.py b/sciluigi/dependencies.py index <HASH>..<HASH> 100644 --- a/sciluigi/dependencies.py +++ b/sciluigi/dependencies.py @@ -63,11 +63,11 @@ class DependencyHelpers(): ''' if callable(val): val = val() - if isinstance(val, list): + if isinst...
Formatting: Default case first, in recursive method
pharmbio_sciluigi
train
py
ff02a175f5c8d73b0104464868a785da07efcf98
diff --git a/gui/src/main/java/org/jboss/as/console/client/shared/subsys/infinispan/v3/CacheFinderPresenter.java b/gui/src/main/java/org/jboss/as/console/client/shared/subsys/infinispan/v3/CacheFinderPresenter.java index <HASH>..<HASH> 100644 --- a/gui/src/main/java/org/jboss/as/console/client/shared/subsys/infinispan/...
Workaround some of the WFLY-<I> problems
hal_core
train
java
e50a7215b6aac1b0adb41dd3689a81474b666714
diff --git a/main.py b/main.py index <HASH>..<HASH> 100644 --- a/main.py +++ b/main.py @@ -44,5 +44,7 @@ def main(): args.dry_run ), args.query['query'], - args.query['options'] + args.query['options'], + args.start_at, + args.end_at )
Entrypoint should be called with start and end All collectors care about the time period they should be collecting over, so these parameters should be passed throught to the entrypoint.
alphagov_performanceplatform-collector
train
py
d8f64d487760988bbbbd77dc8785b59a94bf9548
diff --git a/src/CfdiUtils/SumasConceptos/SumasConceptos.php b/src/CfdiUtils/SumasConceptos/SumasConceptos.php index <HASH>..<HASH> 100644 --- a/src/CfdiUtils/SumasConceptos/SumasConceptos.php +++ b/src/CfdiUtils/SumasConceptos/SumasConceptos.php @@ -46,8 +46,8 @@ class SumasConceptos foreach ($conceptos as $c...
cast array_sum return to float since it can be integer
eclipxe13_CfdiUtils
train
php
ddb843ddfac0cf58951073c48f48c096c6bd93ad
diff --git a/hawkrest/__init__.py b/hawkrest/__init__.py index <HASH>..<HASH> 100644 --- a/hawkrest/__init__.py +++ b/hawkrest/__init__.py @@ -117,6 +117,9 @@ class HawkAuthenticatedUser(object): def get_username(self): return str(self.__class__.__name__) + def save(self, *args, **kwargs): + r...
Give HawkAuthenticatedUser a save() method to match AbstractBaseUser A `save()` method was added to `AbstractBaseUser` in: <URL>: File "/home/Ed/src/hawkrest/tests/test_authentication.py", line <I>, in test_method_compliance .format(name)) AssertionError: HawkAuthenticatedUser is missing method: save
kumar303_hawkrest
train
py
944156cf432bf482894d9f7be4b5e61a5122597d
diff --git a/asammdf/gui/widgets/tabular.py b/asammdf/gui/widgets/tabular.py index <HASH>..<HASH> 100644 --- a/asammdf/gui/widgets/tabular.py +++ b/asammdf/gui/widgets/tabular.py @@ -100,9 +100,18 @@ class Tabular(Ui_TabularDisplay, QtWidgets.QWidget): self.prefix.currentIndexChanged.connect(self.prefix_change...
fix scrolling with mouse wheel in tabular window
danielhrisca_asammdf
train
py
9d8dbe0ba359ac15d078673a430f05f522716395
diff --git a/source/rafcon/mvc/history.py b/source/rafcon/mvc/history.py index <HASH>..<HASH> 100755 --- a/source/rafcon/mvc/history.py +++ b/source/rafcon/mvc/history.py @@ -2007,10 +2007,10 @@ class History(ModelMT): self.actual_action.after_storage = self.actual_action.get_storage() self.tm...
workaround for merge problem -> use default behavior of MetaAction data from root_state - at the moment the behavior is not understandable -> before merge this problem was not existing
DLR-RM_RAFCON
train
py
2992c64514e1fbf5924711858c450f534ba0dfc4
diff --git a/src/wyil/lang/IntersectionOperator.java b/src/wyil/lang/IntersectionOperator.java index <HASH>..<HASH> 100644 --- a/src/wyil/lang/IntersectionOperator.java +++ b/src/wyil/lang/IntersectionOperator.java @@ -108,7 +108,10 @@ public class IntersectionOperator implements Relation { case K_LIST: case K...
Possible bug fix for deterministic compound types, such as lists and sets.
Whiley_WhileyCompiler
train
java,java
461d615c045623f9f2417c9e5dc1cb397aea3433
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -107,6 +107,7 @@ module.exports = function(grunt) { ]); grunt.registerTask('release', [ + 'sauce', 'pack', 'compress', 'changelog',
chore(gruntfile): Add sauce task to release steps [skip ci]
mbenford_ngTagsInput
train
js
7fd2b4292d602ef649e5fcb1d264a91bb78b88d6
diff --git a/reana_commons/version.py b/reana_commons/version.py index <HASH>..<HASH> 100755 --- a/reana_commons/version.py +++ b/reana_commons/version.py @@ -14,4 +14,4 @@ and parsed by ``setup.py``. from __future__ import absolute_import, print_function -__version__ = "0.6.0.dev20191129" +__version__ = "0.6.0.de...
release: <I>.de<I>
reanahub_reana-commons
train
py
b4e0d91ba440e8d2ae17c62ccd9863938ef28ae9
diff --git a/core/src/main/java/hudson/model/ListView.java b/core/src/main/java/hudson/model/ListView.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/hudson/model/ListView.java +++ b/core/src/main/java/hudson/model/ListView.java @@ -217,6 +217,9 @@ public class ListView extends View implements Saveable { ...
Ensure only POST requests are responded to
jenkinsci_jenkins
train
java
d8866d17964485b5929e889d49ebfbee4686f03d
diff --git a/public/js/editor.js b/public/js/editor.js index <HASH>..<HASH> 100644 --- a/public/js/editor.js +++ b/public/js/editor.js @@ -608,6 +608,7 @@ function AposSchemas() { // Implement custom relationship field types (tags) $field.off('afterAddItem'); $field.on('afterAddItem', function(e, i...
apostrophe enhance event triggered as each item is added to jquery selective, allowing for nice select dropdowns etc. However there is still an aesthetic issue which is beyond my pay grade. -Tom
apostrophecms-legacy_apostrophe-schemas
train
js
bcdde28250481902389dd04befdd87176008329a
diff --git a/openquake/engine/calculators/hazard/event_based/core.py b/openquake/engine/calculators/hazard/event_based/core.py index <HASH>..<HASH> 100644 --- a/openquake/engine/calculators/hazard/event_based/core.py +++ b/openquake/engine/calculators/hazard/event_based/core.py @@ -440,13 +440,14 @@ class EventBasedHaz...
A trick to partition the ruptures by trt_id Former-commit-id: 7df7ac<I>c<I>bfa<I>c<I>a4b4a5a<I>
gem_oq-engine
train
py
c0fd00406e3b30353f99cdf6d908302f135236ef
diff --git a/collector.js b/collector.js index <HASH>..<HASH> 100644 --- a/collector.js +++ b/collector.js @@ -21,18 +21,18 @@ module.exports = function(RED) { function CollectorNode(n) { RED.nodes.createNode(this,n); this.name = n.name; - this.state = {}; + this.values = {}; ...
Renamed variable 'state' to 'values'
njh_node-red-contrib-collector
train
js
284aeb83ca005113e89f4a9aa2923b5b23bcbadb
diff --git a/src/basis/ui/popup.js b/src/basis/ui/popup.js index <HASH>..<HASH> 100644 --- a/src/basis/ui/popup.js +++ b/src/basis/ui/popup.js @@ -329,11 +329,15 @@ // async document.body ready basis.doc.body.ready(function(body){ - popupManager.body = body; + var popupContainer = document.createElement('...
basis.ui.popup: separate popup container is back Inserting popups right into <body> caused all kinds of shenanigans in Firefox, so I did a little Firefix.
basisjs_basisjs
train
js
f75524a3da4c8df19c2f0f76d6871638c0864983
diff --git a/jarn/mkrelease/tee.py b/jarn/mkrelease/tee.py index <HASH>..<HASH> 100644 --- a/jarn/mkrelease/tee.py +++ b/jarn/mkrelease/tee.py @@ -11,7 +11,7 @@ try: except NameError: from .utils import callable -__all__ = ['run', 'On', 'Off', 'NotEmpty', 'Equals', +__all__ = ['run', 'On', 'Off', 'NotEmpty', 'E...
Add Contains tee filter.
Jarn_jarn.mkrelease
train
py
1287e338d4ceceaa413d8f04047057334916af7c
diff --git a/gwt-material/src/main/java/gwt/material/design/client/MaterialDesignBase.java b/gwt-material/src/main/java/gwt/material/design/client/MaterialDesignBase.java index <HASH>..<HASH> 100644 --- a/gwt-material/src/main/java/gwt/material/design/client/MaterialDesignBase.java +++ b/gwt-material/src/main/java/gwt/...
Ensure the futureResources list isn't null.
GwtMaterialDesign_gwt-material
train
java
cecd3ae5505ba7ee90a7e277d42949c0801034be
diff --git a/lib/Cake/Network/Http/Request.php b/lib/Cake/Network/Http/Request.php index <HASH>..<HASH> 100644 --- a/lib/Cake/Network/Http/Request.php +++ b/lib/Cake/Network/Http/Request.php @@ -66,7 +66,7 @@ class Request extends Message { if ($method === null) { return $this->_method; } - $name = __CLASS__...
Fix possible early-static binding issues.
cakephp_cakephp
train
php
44e3eacf3758df05de583c96466b346d74d21245
diff --git a/tilequeue/worker.py b/tilequeue/worker.py index <HASH>..<HASH> 100644 --- a/tilequeue/worker.py +++ b/tilequeue/worker.py @@ -129,7 +129,8 @@ class DataFetch(object): log_level = logging.WARNING else: log_level = logging.ERROR - self...
Better logging of error messages in workers
tilezen_tilequeue
train
py
cb93f7b46817634a77806df8c378d60be498b1b6
diff --git a/salt/modules/linux_lvm.py b/salt/modules/linux_lvm.py index <HASH>..<HASH> 100644 --- a/salt/modules/linux_lvm.py +++ b/salt/modules/linux_lvm.py @@ -252,11 +252,6 @@ def pvremove(devices, override=True): ''' cmd = ['pvremove', '-y'] for device in devices.split(','): - if not __salt__...
Remove buggy runner and its output
saltstack_salt
train
py
ed72610c542f56eaf14b1bf8aeda5709917cf274
diff --git a/robospock/src/main/java/org/robospock/internal/GradleRoboSputnik.java b/robospock/src/main/java/org/robospock/internal/GradleRoboSputnik.java index <HASH>..<HASH> 100644 --- a/robospock/src/main/java/org/robospock/internal/GradleRoboSputnik.java +++ b/robospock/src/main/java/org/robospock/internal/GradleRo...
Read AndroidManifest from new location. Android Gradle plugin <I>.+ has moved where manifest is built. Adding some lines to be compatible with old and new plugins.
robospock_RoboSpock
train
java
6cde0648fc234e1a8cac1e0d0733f7c4e0834a95
diff --git a/css-plugin-base-builder.js b/css-plugin-base-builder.js index <HASH>..<HASH> 100644 --- a/css-plugin-base-builder.js +++ b/css-plugin-base-builder.js @@ -143,7 +143,7 @@ exports.bundle = function(loads, compileOpts, outputOpts) { })); return postcss(postCssPlugins) - .process(Object.keys(inputFi...
Convert back slashes to forward slashes in import statement. Usually an import of css is replaced with the css content, however sometimes it results in an @import statement. Could not produce an example that generates an @import statement. In a current project of mine this happens to some css files imported from a jsp...
systemjs_plugin-css
train
js
f6f39e5ff18e39844cd5d586cc08fea18dc83926
diff --git a/spec/integration_spec.rb b/spec/integration_spec.rb index <HASH>..<HASH> 100644 --- a/spec/integration_spec.rb +++ b/spec/integration_spec.rb @@ -28,10 +28,6 @@ describe Flipper do Flipper.register(:devs) { |thing| thing.dev? } end - after do - Flipper.groups = nil - end - describe "#en...
Already doing this for each spec so not needed.
jnunemaker_flipper
train
rb
6e66130338c84c6a4292ce2f3f4e3a0528fc5ce1
diff --git a/mod/glossary/sql.php b/mod/glossary/sql.php index <HASH>..<HASH> 100644 --- a/mod/glossary/sql.php +++ b/mod/glossary/sql.php @@ -43,7 +43,7 @@ case GLOSSARY_CATEGORY_VIEW: if ($hook == GLOSSARY_SHOW_ALL_CATEGORIES ) { - $sqlselect = "SELECT ge.*, gec.id, gc.name $as pivot"; + ...
In 'categories view' (all and only one), now attachements, edit, comment and delete are working properly.
moodle_moodle
train
php
b7b9786414026ab2d3a4f1bc667871557799dbfb
diff --git a/lib/moodlelib.php b/lib/moodlelib.php index <HASH>..<HASH> 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -2387,7 +2387,8 @@ function authenticate_user_login($username, $password) { } if (empty($user->auth)) { // For some reason it isn't set yet - if (!empty($user->id) &&...
MDL-<I> removed obsoleted use of isadmin() from authenticate_user_login()
moodle_moodle
train
php
4816eb7a4155de366cc5ac87d5349159dee97dd5
diff --git a/server.js b/server.js index <HASH>..<HASH> 100644 --- a/server.js +++ b/server.js @@ -100,10 +100,13 @@ function Server (opts) { self.http.on('error', function (err) { self._onError(err) }) self.http.on('listening', onListening) - // Add default http request handler if user does not ad...
send <I> response when req headers are not sent
webtorrent_bittorrent-tracker
train
js
929a9767729ed7055f853b5ab10124589ae93e47
diff --git a/kafka_scanner/msg_processor_handlers.py b/kafka_scanner/msg_processor_handlers.py index <HASH>..<HASH> 100644 --- a/kafka_scanner/msg_processor_handlers.py +++ b/kafka_scanner/msg_processor_handlers.py @@ -25,7 +25,7 @@ class MsgProcessorHandlers(object): """ Get messages batch from Kafka (list at...
better starting/step next messages modifiers
scrapinghub_kafka-scanner
train
py
b475d7f6639d6ee808419d4261166ae7ee92c066
diff --git a/lib/config.js b/lib/config.js index <HASH>..<HASH> 100755 --- a/lib/config.js +++ b/lib/config.js @@ -1 +1,31 @@ - \ No newline at end of file +/*global _*/ +/** + * @module focus/configuration + */ + +/** + * Configuration object. + * @type {{CORS: boolean}} + */ +var configuration = { + CORS: true +}; ...
#<I> [config] Add a object and function to extend it.
KleeGroup_focus-core
train
js
c85782061e15be3a225827da3c8aaf9f2ab3116d
diff --git a/lib/plugins/slack/summary.js b/lib/plugins/slack/summary.js index <HASH>..<HASH> 100644 --- a/lib/plugins/slack/summary.js +++ b/lib/plugins/slack/summary.js @@ -86,7 +86,7 @@ module.exports = function( let logo = 'https://www.sitespeed.io/img/slack/sitespeed-logo-slack.png'; if (metrics.coachScore...
Fix incorrect url to Pippi logo.
sitespeedio_sitespeed.io
train
js
158c217eee81f744cc3a10ec23f912a8264d2af0
diff --git a/lib/json/api/resource_controller.rb b/lib/json/api/resource_controller.rb index <HASH>..<HASH> 100644 --- a/lib/json/api/resource_controller.rb +++ b/lib/json/api/resource_controller.rb @@ -212,12 +212,12 @@ module JSON return fields elsif params[:fields].is_a?(String) value ...
Removed CSV dependency for parse_fields
cerebris_jsonapi-resources
train
rb
10162f2ddae18e415ed8f89cc5c2691a0b64735f
diff --git a/jams/tests/namespace_tests.py b/jams/tests/namespace_tests.py index <HASH>..<HASH> 100644 --- a/jams/tests/namespace_tests.py +++ b/jams/tests/namespace_tests.py @@ -167,3 +167,30 @@ def test_ns_lyrics(): for line in [23, None]: yield raises(ValidationError)(__test), line + +def test_ns_tem...
#<I> added tempo validation
marl_jams
train
py
14b516df8d9b8e12aaa8dd122d918966ebe1a72f
diff --git a/lib/styleguide.js b/lib/styleguide.js index <HASH>..<HASH> 100644 --- a/lib/styleguide.js +++ b/lib/styleguide.js @@ -143,6 +143,23 @@ function generatePugMarkup(json, options) { } } +function generateStyleguideAppStyles(opt) { + var srcFiles, + cssCopiedLib, + cssCopiedDist; + srcFiles = [di...
fix the bug preventing styles file to get copied into project if build is clean
SC5_sc5-styleguide
train
js
dc8af4befef663b367955ceba3614276123d85a2
diff --git a/app/controllers/neighborly/balanced/bankaccount/accounts_controller.rb b/app/controllers/neighborly/balanced/bankaccount/accounts_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/neighborly/balanced/bankaccount/accounts_controller.rb +++ b/app/controllers/neighborly/balanced/bankaccount/acco...
Use bank_account variable on attach new bank account
FromUte_dune-balanced-bankaccount
train
rb
d3d4276f19d5e1961736284934b171a726a1c004
diff --git a/src/basicserial/json.py b/src/basicserial/json.py index <HASH>..<HASH> 100644 --- a/src/basicserial/json.py +++ b/src/basicserial/json.py @@ -106,15 +106,8 @@ class SimpleJsonImplementation(StdlibJsonImplementation): class OrJsonImplementation(JsonImplementation): module_name = 'orjson' - def _d...
Tweaks to orjson serialization
jayclassless_basicserial
train
py
345c691af72850ebacadb67eb4745f058d94a34b
diff --git a/src/setuptools_scm/__main__.py b/src/setuptools_scm/__main__.py index <HASH>..<HASH> 100644 --- a/src/setuptools_scm/__main__.py +++ b/src/setuptools_scm/__main__.py @@ -36,7 +36,7 @@ def main() -> None: print(fname) -def _get_cli_opts(): +def _get_cli_opts() -> argparse.Namespace: pr...
bugfix: handle errors in pyproject for cli command finding
pypa_setuptools_scm
train
py
bc840caf4bfabe49cef73961d774fd80f01df729
diff --git a/maxquant/filters.py b/maxquant/filters.py index <HASH>..<HASH> 100644 --- a/maxquant/filters.py +++ b/maxquant/filters.py @@ -58,7 +58,7 @@ def filter_localization_probability(df, threshold=0.75): return df.iloc[localization_probability_mask, :] -def minimum_valid_values_in_group(df, levels, n=1, ...
Change name of at least n in any group function
mfitzp_padua
train
py
874688d366144bef15412d8c9274d2fa54bfcffb
diff --git a/pysolr.py b/pysolr.py index <HASH>..<HASH> 100644 --- a/pysolr.py +++ b/pysolr.py @@ -102,10 +102,16 @@ document 5 from urllib import urlencode from urlparse import urlsplit -from datetime import datetime, date import re try: + # Use Django's implementation if available because it can handle dat...
Altered pysolr to use, if available, Django's implementation of datetime for dates before <I>. Falls back to the default implementation of datetime.
django-haystack_pysolr
train
py,py
aceec7b9b9e808fe7b868658030b72b92f482e60
diff --git a/includes/os/class.BSDCommon.inc.php b/includes/os/class.BSDCommon.inc.php index <HASH>..<HASH> 100644 --- a/includes/os/class.BSDCommon.inc.php +++ b/includes/os/class.BSDCommon.inc.php @@ -425,7 +425,7 @@ abstract class BSDCommon extends OS if (defined('PSI_SHOW_VIRTUALIZER_INFO') && PSI_SHOW...
trim($buffer['Manufacturer']." ".$buffer['Model'])
phpsysinfo_phpsysinfo
train
php
52731991583fb9fae71080ac35f27bd5297fb147
diff --git a/lib/config.js b/lib/config.js index <HASH>..<HASH> 100644 --- a/lib/config.js +++ b/lib/config.js @@ -9,6 +9,13 @@ module.exports = class Config { this.Renderer = Renderer this.commands = {} this.infoStringParsers = [] + this.loadDefaultCommands() + } + + loadDefaultCommands () { + t...
Add command to parse info strings everywhere
hagenburger_pimd
train
js,js
7838f2cfc53523bafd4578c56905d54e918661ad
diff --git a/lib/onetime/api.rb b/lib/onetime/api.rb index <HASH>..<HASH> 100644 --- a/lib/onetime/api.rb +++ b/lib/onetime/api.rb @@ -56,7 +56,7 @@ module Onetime include HTTParty base_uri 'https://onetimesecret.com/api' format :json - headers 'X-Onetime-Client' => Onetime::API::VERSION.to_s + hea...
API client sends header with ruby version and lib version
onetimesecret_onetime-ruby
train
rb
90b7d26b5fc5f5fe8bf689c13f5e884f585c5be9
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index <HASH>..<HASH> 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -138,7 +138,7 @@ end module Hawkular::Operations::RSpec SLEEP_SECONDS = 0.1 - MAX_ATTEMPTS = 120 + MAX_ATTEMPTS = 200 def wait_for(object) fast = WebSocketVCR.casse...
Increase max attempts before a timeout on the specs
hawkular_hawkular-client-ruby
train
rb
1c3271172fec2dc5d04ef4dedae481b1e0f9746f
diff --git a/scripts/update/Updater.php b/scripts/update/Updater.php index <HASH>..<HASH> 100644 --- a/scripts/update/Updater.php +++ b/scripts/update/Updater.php @@ -466,7 +466,7 @@ class Updater extends common_ext_ExtensionUpdater if (!is_a($authService, TestTakerAuthorizationDelegator::class)) { ...
restore updater to except future issue with delegator
oat-sa_extension-tao-proctoring
train
php