hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
71bc9c4d1ed59d96070727dcefae9bfab467c57d
diff --git a/lib/master.js b/lib/master.js index <HASH>..<HASH> 100644 --- a/lib/master.js +++ b/lib/master.js @@ -447,6 +447,7 @@ Master.prototype.maintainWorkerCount = function(){ */ Master.prototype.remove = function(n, signal){ + if (!arguments.length) n = 1; var len = this.children.length , worker; ...
Default both Master#spawn() and Master#remove() to 1
LearnBoost_cluster
train
eb36319d4e183e84815446086146a9d557718df6
diff --git a/src/bootstrap.php b/src/bootstrap.php index <HASH>..<HASH> 100644 --- a/src/bootstrap.php +++ b/src/bootstrap.php @@ -8,23 +8,22 @@ * Default exception handler. * */ -function myExceptionHandler($exception) { +set_exception_handler ( function ($exception) { echo "Anax: Uncaught exception: <p>" . $...
Using anonomous functions to setup exception handler and autoloaders
mosbth_Anax-MVC
train
93d26da2401cdfb0c7775c2561d25017eacd07fa
diff --git a/reader-gtfs/src/main/java/com/conveyal/gtfs/model/Entity.java b/reader-gtfs/src/main/java/com/conveyal/gtfs/model/Entity.java index <HASH>..<HASH> 100644 --- a/reader-gtfs/src/main/java/com/conveyal/gtfs/model/Entity.java +++ b/reader-gtfs/src/main/java/com/conveyal/gtfs/model/Entity.java @@ -28,7 +28,6 @@...
Remove String-deduplicator. Looks like an unbounded cache and a bit suspicious, since we use a database anyway.
graphhopper_graphhopper
train
7f4dea1ea88396500c14abcdf5c4c22a8953da46
diff --git a/sum.js b/sum.js index <HASH>..<HASH> 100644 --- a/sum.js +++ b/sum.js @@ -1,8 +1,11 @@ +var identity = require('std/identity') + module.exports = function sum(list, fn) { if (!list) { return 0 } + if (!fn) { fn = identity } var total = 0 - for (var i=0; i<list.length; i++) { - total += fn(list[i]) - ...
make identity the default sum function, to easily sum up an array of numbers
marcuswestin_std.js
train
c85df5ca3ed83db078286b4182b83fa7e84bd140
diff --git a/fluo/db/models/models.py b/fluo/db/models/models.py index <HASH>..<HASH> 100644 --- a/fluo/db/models/models.py +++ b/fluo/db/models/models.py @@ -129,6 +129,7 @@ class TreeOrderedModel(OrderedModel): 'self', blank=True, null=True, + on_delete=models.CASCADE, relat...
explicit set {ForeignKey,OneToOneFeld}.on_delete to CASCADE In Django <I> on_delete param will be explicit, so set a default value now.
rsalmaso_django-fluo
train
9055539f69d274314ad722b6bdb73b41baeeb44a
diff --git a/src/java/com/threerings/media/ManagedJApplet.java b/src/java/com/threerings/media/ManagedJApplet.java index <HASH>..<HASH> 100644 --- a/src/java/com/threerings/media/ManagedJApplet.java +++ b/src/java/com/threerings/media/ManagedJApplet.java @@ -43,7 +43,6 @@ public class ManagedJApplet extends JApplet ...
We want to hear about repaints, though I need to test this more in various other scenarios to really really be sure. Oh the twisty maze of AWT passages. git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@<I> ed5b<I>cb-e<I>-<I>-a<I>-f6a<I>f<I>b<I>
threerings_nenya
train
b31736f0dc8682fbad4454b97d4c7aada60931cd
diff --git a/symphony/lib/toolkit/data-sources/datasource.section.php b/symphony/lib/toolkit/data-sources/datasource.section.php index <HASH>..<HASH> 100755 --- a/symphony/lib/toolkit/data-sources/datasource.section.php +++ b/symphony/lib/toolkit/data-sources/datasource.section.php @@ -101,7 +101,7 @@ if(!isset($fi...
Fix filtering by system id.
symphonycms_symphony-2
train
87353b64c688e963eadb132aefc97b9dea8a5519
diff --git a/activiti-engine/src/main/java/org/activiti/engine/impl/persistence/entity/TaskEntity.java b/activiti-engine/src/main/java/org/activiti/engine/impl/persistence/entity/TaskEntity.java index <HASH>..<HASH> 100644 --- a/activiti-engine/src/main/java/org/activiti/engine/impl/persistence/entity/TaskEntity.java +...
ACT-<I> fixing task variable instance deletion
camunda_camunda-bpm-platform
train
d0f92b4d1e61e1c97937f0a6f8422a8b33472b74
diff --git a/mobly/controllers/android_device_lib/jsonrpc_client_base.py b/mobly/controllers/android_device_lib/jsonrpc_client_base.py index <HASH>..<HASH> 100644 --- a/mobly/controllers/android_device_lib/jsonrpc_client_base.py +++ b/mobly/controllers/android_device_lib/jsonrpc_client_base.py @@ -316,6 +316,17 @@ clas...
Disable the blacklist on hidden apis for sl4a/snippets (#<I>) New requirement for P
google_mobly
train
234931bf634b14868eb62e2cb0c3a618bdfb4343
diff --git a/pipenv/patched/pip/req/req_install.py b/pipenv/patched/pip/req/req_install.py index <HASH>..<HASH> 100644 --- a/pipenv/patched/pip/req/req_install.py +++ b/pipenv/patched/pip/req/req_install.py @@ -417,9 +417,12 @@ class InstallRequirement(object): self.setup_py, self.link, ) ...
get egg_info from client python!
pypa_pipenv
train
cd03dc3e297381e654597748bb30071a11854c81
diff --git a/lib/eu_central_bank.rb b/lib/eu_central_bank.rb index <HASH>..<HASH> 100644 --- a/lib/eu_central_bank.rb +++ b/lib/eu_central_bank.rb @@ -5,6 +5,8 @@ require 'money/rates_store/eu_central_bank_historical_data_support' class InvalidCache < StandardError ; end +class CurrencyUnavailable < StandardError;...
Shows exception if currency is not in the list. Individual comits : - Checks if currency is available in list - Gives an explicit error message in case unavailable currencies are requested. - Simplifies exception generation
RubyMoney_eu_central_bank
train
3d5289533b03e298fdc9195d2fceb35557d605b3
diff --git a/message_sender/tasks.py b/message_sender/tasks.py index <HASH>..<HASH> 100644 --- a/message_sender/tasks.py +++ b/message_sender/tasks.py @@ -84,13 +84,17 @@ class ConcurrencyLimiter(object): BUCKET_SIZE = 60 @classmethod + def get_key(cls, msg_type, bucket): + return "%s_messages_at%...
Added a method to get cache key
praekeltfoundation_seed-message-sender
train
b4d845a64737562590e4257887e7543d8ba17b7f
diff --git a/packages/nitro-app/app/core/webpack.js b/packages/nitro-app/app/core/webpack.js index <HASH>..<HASH> 100644 --- a/packages/nitro-app/app/core/webpack.js +++ b/packages/nitro-app/app/core/webpack.js @@ -21,5 +21,7 @@ const wphm = webpackHotMiddleware(webpackCompiler, { module.exports = function (app) { ...
fix(app): use browsersync not only in livereload mode
namics_generator-nitro
train
9552a027b52ca4e4efe0feaba82c6da6de139b38
diff --git a/config-dist.php b/config-dist.php index <HASH>..<HASH> 100644 --- a/config-dist.php +++ b/config-dist.php @@ -38,7 +38,7 @@ $CFG = new stdClass(); // will be stored. This database must already have been created // // and a username/password created to access it. // -$CF...
MDL-<I> dml: Add auroramysql to config-dist
moodle_moodle
train
c01f57f3e0d81554fde0637c745a544b067c1b35
diff --git a/core/content-manager/src/main/java/org/wisdom/content/jackson/JacksonSingleton.java b/core/content-manager/src/main/java/org/wisdom/content/jackson/JacksonSingleton.java index <HASH>..<HASH> 100644 --- a/core/content-manager/src/main/java/org/wisdom/content/jackson/JacksonSingleton.java +++ b/core/content-...
Add explicit casts required by java 8
wisdom-framework_wisdom
train
1b5c82ab83c01c48cec5f004a0e88053eac76f75
diff --git a/nion/swift/model/DocumentModel.py b/nion/swift/model/DocumentModel.py index <HASH>..<HASH> 100644 --- a/nion/swift/model/DocumentModel.py +++ b/nion/swift/model/DocumentModel.py @@ -1337,18 +1337,21 @@ class DocumentModel(Observable.Observable, ReferenceCounting.ReferenceCounted, P #logging.de...
Improve handling of sample image loading (submitted by Gwyn).
nion-software_nionswift
train
532427e435a336bbfae367cd318c456ec762244a
diff --git a/src/apispec/ext/marshmallow/openapi.py b/src/apispec/ext/marshmallow/openapi.py index <HASH>..<HASH> 100644 --- a/src/apispec/ext/marshmallow/openapi.py +++ b/src/apispec/ext/marshmallow/openapi.py @@ -72,7 +72,7 @@ class OpenAPIConverter(FieldConverterMixin): # If schema is a string and is not fo...
Don't build ref in resolve_nested_schema This is done in APISpec core
marshmallow-code_apispec
train
2b47907866a243a5e16534e363ade9d764d3bf36
diff --git a/src/Fracture/Http/Request.php b/src/Fracture/Http/Request.php index <HASH>..<HASH> 100644 --- a/src/Fracture/Http/Request.php +++ b/src/Fracture/Http/Request.php @@ -70,19 +70,17 @@ class Request implements \Fracture\Routing\Routable } - public function setParameters(array $list) + public fu...
chaning request's default behavior to override values, but with a warning emitted
fracture_http
train
88a1b153db2848101e73236a2bf16d59c299353b
diff --git a/logdissect/__init__.py b/logdissect/__init__.py index <HASH>..<HASH> 100644 --- a/logdissect/__init__.py +++ b/logdissect/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.3' +__version__ = '1.3.1-dev' __author__ = 'Dan Persons <dpersonsdev@gmail.com>' __license__ = 'MIT License' __github__ = 'https://githu...
Update version: <I>-dev
dogoncouch_logdissect
train
642ce0421ea33f4a030ef7e303afe6367f612958
diff --git a/lib/travis/services/stats.rb b/lib/travis/services/stats.rb index <HASH>..<HASH> 100644 --- a/lib/travis/services/stats.rb +++ b/lib/travis/services/stats.rb @@ -2,42 +2,25 @@ module Travis module Services class Stats < Base def daily_repository_counts - total_repos = 0 - repos...
use bare sql for stats, can be mapped on the client
travis-ci_travis-core
train
30eecad512e786b3fcbaa2e235d470a394f4d963
diff --git a/cli/index.js b/cli/index.js index <HASH>..<HASH> 100755 --- a/cli/index.js +++ b/cli/index.js @@ -12,9 +12,6 @@ process.env.VERBOSE = let cmd = process.argv[2] switch(cmd) { - case '.': // Watch current root - watch(process.cwd()) - break case 'start': // Start the daemon let starting = ...
fix(cli): fail if wch . has any flags
aleclarson_wch
train
a464817eb27c9c44aa20b92a56f0fb0235187edf
diff --git a/php/class-wp-cli.php b/php/class-wp-cli.php index <HASH>..<HASH> 100644 --- a/php/class-wp-cli.php +++ b/php/class-wp-cli.php @@ -91,11 +91,6 @@ class WP_CLI { } static function add_man_dir( $dest_dir, $src_dir ) { - $dest_dir = realpath( $dest_dir ) . '/'; - - if ( $src_dir ) - $src_dir = realpa...
make manpages work from a Phar archive
wp-cli_extension-command
train
73467e7c1eb4b05c23cbb165e173bfd1efad8590
diff --git a/DependencyInjection/Compiler/RegisterCachePoolPass.php b/DependencyInjection/Compiler/RegisterCachePoolPass.php index <HASH>..<HASH> 100644 --- a/DependencyInjection/Compiler/RegisterCachePoolPass.php +++ b/DependencyInjection/Compiler/RegisterCachePoolPass.php @@ -16,7 +16,7 @@ use Symfony\Bundle\Framewor...
[DI] Fix typo in cache pool compiler pass
egeloen_IvorySerializerBundle
train
50d4443e70a82d215e775be85021e0dedbbfab49
diff --git a/static/js/invenio.js b/static/js/invenio.js index <HASH>..<HASH> 100644 --- a/static/js/invenio.js +++ b/static/js/invenio.js @@ -188,7 +188,7 @@ } $(document).ready(function() { - bindModals(null, 'input:text:visible:first'); + bindModals(); }); window.bindModals = bindModals;
comments: annotations integration * Integrates the record document annotations with the Invenio commenting facilities and PDFtk previewer.
inveniosoftware_invenio-base
train
4cc62596499d48c3e55406a8b11a9f4d4f0aa701
diff --git a/client/state/jetpack-connect/actions.js b/client/state/jetpack-connect/actions.js index <HASH>..<HASH> 100644 --- a/client/state/jetpack-connect/actions.js +++ b/client/state/jetpack-connect/actions.js @@ -361,10 +361,27 @@ export function authorize( queryObject ) { data: data, error: null, ...
Jetpack Connect: Assure user is fetched before continuing after auth (#<I>)
Automattic_wp-calypso
train
3fc1bc6f3547bd8fee1e9cb2597bc556f1934e47
diff --git a/select2.js b/select2.js index <HASH>..<HASH> 100755 --- a/select2.js +++ b/select2.js @@ -380,6 +380,8 @@ /** * blurs any Select2 container that has focus when an element outside them was clicked or received focus + * + * also takes care of clicks on label tags that point to the source...
focus select2 on a click to a related label. fixes #<I>
select2_select2
train
17d7c7a10e2cb6317807996ce647f2f823ac97ff
diff --git a/src/Rules/StrictCalls/StrictFunctionCallsRule.php b/src/Rules/StrictCalls/StrictFunctionCallsRule.php index <HASH>..<HASH> 100644 --- a/src/Rules/StrictCalls/StrictFunctionCallsRule.php +++ b/src/Rules/StrictCalls/StrictFunctionCallsRule.php @@ -48,16 +48,16 @@ class StrictFunctionCallsRule implements \PHP...
Improve compatibility with PHPParser <I>
phpstan_phpstan-strict-rules
train
4768ebde488e31d03a336d13769d41b0074555ed
diff --git a/rate.go b/rate.go index <HASH>..<HASH> 100644 --- a/rate.go +++ b/rate.go @@ -205,8 +205,8 @@ func (g *GCRARateLimiter) RateLimit(key string, quantity int) (bool, RateLimitRe if diff := now.Sub(allowAt); diff < 0 { if increment <= g.delayVariationTolerance { rlc.RetryAfter = -diff + ttl = ta...
fix issue #<I>: fix statistics calculation when requested quantity exceeds MaxBurst
throttled_throttled
train
5adffc7fe22a983b3f3316a871aec2dc4bbbfdc5
diff --git a/ambry/cache/__init__.py b/ambry/cache/__init__.py index <HASH>..<HASH> 100644 --- a/ambry/cache/__init__.py +++ b/ambry/cache/__init__.py @@ -32,9 +32,12 @@ def new_cache(config): raise ConfigurationError("Can't determine cache type: {} ".format(config)) if 'options' in config and '...
Fixed config altering issues that was causing tests to fail.
CivicSpleen_ambry
train
78171b8a650d6bac1dab774253ea83c5251a5ba6
diff --git a/tasks/grunt-tenon.js b/tasks/grunt-tenon.js index <HASH>..<HASH> 100644 --- a/tasks/grunt-tenon.js +++ b/tasks/grunt-tenon.js @@ -10,19 +10,22 @@ module.exports = function(grunt) { done = this.async(), options = this.options({ config: '.tenonrc', - asyncLim: 1 + ...
Force Option Report errors but not fail the grunt task.
egauci_grunt-tenon-client
train
39b854d00a33f8d5ec028831083fc054651ef16e
diff --git a/torf/_utils.py b/torf/_utils.py index <HASH>..<HASH> 100644 --- a/torf/_utils.py +++ b/torf/_utils.py @@ -26,6 +26,7 @@ from urllib.parse import urlparse from urllib.parse import quote_plus as urlquote from collections import abc, OrderedDict import re +import errno from . import _errors as error @...
Raise ReadError when getting file paths of unreadable directory
rndusr_torf
train
1dc390a35ae5ee043132007d16839154876a4b71
diff --git a/course.py b/course.py index <HASH>..<HASH> 100644 --- a/course.py +++ b/course.py @@ -1,5 +1,5 @@ from canvas_object import CanvasObject -from upload import upload +from upload import uploader from util import combine_kwargs from paginated_list import PaginatedList @@ -193,7 +193,7 @@ class Course(Can...
Renamed upload methods for readability
ucfopen_canvasapi
train
73139069567b223423472c81c2f8ed645a3adafc
diff --git a/src/CompanionLoader.php b/src/CompanionLoader.php index <HASH>..<HASH> 100644 --- a/src/CompanionLoader.php +++ b/src/CompanionLoader.php @@ -64,21 +64,28 @@ class CompanionLoader extends CompanionProvider * @param string $className * The class for which a companion, of they type provided by this l...
Added ability to pass companion instance constructor args to CompanionLoader
pgraham_opal
train
3176a1da1e3a9f6ff22d70802a0397b3f52465be
diff --git a/src/CorsService.php b/src/CorsService.php index <HASH>..<HASH> 100644 --- a/src/CorsService.php +++ b/src/CorsService.php @@ -38,11 +38,15 @@ class CorsService /** * @var array Simple headers * @see https://www.w3.org/TR/cors/#simple-header + * + * "Origin" is not officially a simp...
Include "Origin" in simple header list
phpnexus_cors
train
3b0f2b38e043066b174aba11f2a36c53dc82756a
diff --git a/src/traverse.js b/src/traverse.js index <HASH>..<HASH> 100644 --- a/src/traverse.js +++ b/src/traverse.js @@ -48,6 +48,17 @@ export function traverse(schema, options, spec) { ); } + if (schema.oneOf && schema.oneOf.length) { + if (schema.anyOf) { + console.warn('oneOf and anyOf are not s...
feat: support anyOf and oneOf
APIs-guru_openapi-sampler
train
0b69c978df036bc2bb62667b4c98be1361f2a9ee
diff --git a/modules/activiti-engine/src/main/java/org/activiti/engine/impl/db/DbSqlSessionFactory.java b/modules/activiti-engine/src/main/java/org/activiti/engine/impl/db/DbSqlSessionFactory.java index <HASH>..<HASH> 100644 --- a/modules/activiti-engine/src/main/java/org/activiti/engine/impl/db/DbSqlSessionFactory.jav...
ACT-<I>: connection pool is not used in standalone mode
Activiti_Activiti
train
8b46735274de553c1fdf295b86e96d94eb9516fc
diff --git a/src/org/zaproxy/zap/extension/pscan/ExtensionPassiveScan.java b/src/org/zaproxy/zap/extension/pscan/ExtensionPassiveScan.java index <HASH>..<HASH> 100644 --- a/src/org/zaproxy/zap/extension/pscan/ExtensionPassiveScan.java +++ b/src/org/zaproxy/zap/extension/pscan/ExtensionPassiveScan.java @@ -39,6 +39,7 @@...
Issue <I>: Auto tagging broken
zaproxy_zaproxy
train
537678def3d3f048296c8088c9d3d57abf3de351
diff --git a/dvc/__init__.py b/dvc/__init__.py index <HASH>..<HASH> 100644 --- a/dvc/__init__.py +++ b/dvc/__init__.py @@ -5,7 +5,7 @@ Make your data science projects reproducible and shareable. """ import os -VERSION_BASE = '0.14.1' +VERSION_BASE = '0.14.2' __version__ = VERSION_BASE PACKAGEPATH = os.path.absp...
dvc: bump to <I>
iterative_dvc
train
c4ece95110e42e6cde6f5a94dbf4ae12665772e6
diff --git a/treeherder/perf/email.py b/treeherder/perf/email.py index <HASH>..<HASH> 100644 --- a/treeherder/perf/email.py +++ b/treeherder/perf/email.py @@ -158,14 +158,14 @@ class BackfillNotificationWriter(EmailWriter): # For performance data cycling class DeletionReportContent: DESCRIPTION = """Perfherder r...
Bug <I> - Fix email with summary of signatures (#<I>)
mozilla_treeherder
train
43dd0151d237274504b428b3ed5805290c7ac267
diff --git a/textx/model.py b/textx/model.py index <HASH>..<HASH> 100644 --- a/textx/model.py +++ b/textx/model.py @@ -64,7 +64,7 @@ def get_model_parser(top_rule, comments_model, **kwargs): # By default first rule is starting rule # and must be followed by the EOF self.parser_mod...
Renamed root rule of the created parser to 'Model'.
textX_textX
train
96fd6a28bd3d2270b803866a24b9d39f7248c41a
diff --git a/plugin/deskmanager/deskmanager/src/main/java/org/geomajas/plugin/deskmanager/command/manager/dto/RasterCapabilitiesInfo.java b/plugin/deskmanager/deskmanager/src/main/java/org/geomajas/plugin/deskmanager/command/manager/dto/RasterCapabilitiesInfo.java index <HASH>..<HASH> 100644 --- a/plugin/deskmanager/de...
WMS-<I>: Add support for different featureinfo formats
geomajas_geomajas-project-server
train
fc8c239608859b7b7eaa38f3960a184e76eec849
diff --git a/deepdish/tools/caffe/maker.py b/deepdish/tools/caffe/maker.py index <HASH>..<HASH> 100644 --- a/deepdish/tools/caffe/maker.py +++ b/deepdish/tools/caffe/maker.py @@ -18,6 +18,7 @@ DATA_DIR = os.environ['MAKER_DATA_DIR'] DATASETS = { 'cifar10w40': ([3, 32, 32], ('cifar10_w_tr40k', 'cifar10_w_val')), ...
Added momentum_correction.
uchicago-cs_deepdish
train
145a755f17055abf5dc23ae71d4264d600166ab2
diff --git a/composer.json b/composer.json index <HASH>..<HASH> 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ "php": ">=5.4" }, "require-dev": { - "phpunit/phpunit": "5.7.*" + "phpunit/phpunit": "4.8.*" }, "autoload": { "psr-4": { diff --git a/src/E...
Updated PHPUnit to <I> due PHP <I> compatibility. Improved code
eusonlito_laravel-Meta
train
0a38ae7c01390157769443103cc011e92fdce0fb
diff --git a/src/AbstractPayload.php b/src/AbstractPayload.php index <HASH>..<HASH> 100644 --- a/src/AbstractPayload.php +++ b/src/AbstractPayload.php @@ -60,9 +60,10 @@ abstract class AbstractPayload { $masked = ''; $data = str_split($data); + $key = str_split($this->maskKey); ...
The mask is a boolean, not an integer
Wisembly_elephant.io
train
a6124cdef0ab0ac04eb831e584cec9cf4ff94368
diff --git a/addon/services/current-user.js b/addon/services/current-user.js index <HASH>..<HASH> 100644 --- a/addon/services/current-user.js +++ b/addon/services/current-user.js @@ -281,7 +281,7 @@ export default Service.extend({ roles.pushObject('SESSION_ADMINISTRATOR'); } if (await this.isTeachingSe...
Fix role given to session instructors When someone is teaching in a session they get SESSION_INSTRUCTOR not COURSE_INSTRUCTOR. So it is written... so it must be done.
ilios_common
train
625f3739a2e6624114ff539df9a5cd2c14a3a53d
diff --git a/Model.php b/Model.php index <HASH>..<HASH> 100644 --- a/Model.php +++ b/Model.php @@ -235,9 +235,11 @@ class Model { // with that type $type = $matches[1]; $outArr = array(); - foreach ($resultArray[$rProperty->getName()] as $listResult) { - $this->loadP...
Adding includes into bootstrap. Fixed model issues when sending in empty mabi model arrays.
prolificinteractive_mabi
train
ce2f1471477dcf56c3c4c0b2f991f8093505c8e6
diff --git a/dist/blueprint.js b/dist/blueprint.js index <HASH>..<HASH> 100644 --- a/dist/blueprint.js +++ b/dist/blueprint.js @@ -32,17 +32,21 @@ merge( Blueprint.prototype, { this.events().on( event, listener ); return this; }, - off: function( event, listener ) { - this.events().remo...
Optimize the Events methods to do nothing if no listeners exists
avinoamr_blueprint.js
train
a4b6a16514f322d5c36b292270d1f968719124c3
diff --git a/examples/laravel/config/database.php b/examples/laravel/config/database.php index <HASH>..<HASH> 100644 --- a/examples/laravel/config/database.php +++ b/examples/laravel/config/database.php @@ -26,7 +26,7 @@ return [ | */ - 'default' => env('DB_CONNECTION', 'mysql'), + 'default' => env('D...
Added sqlite as default connection to achieve that everything is working
ddelnano_dredd-hooks-php
train
7f3071b9c240d7e95535cfd3d0c8ece1f136e50c
diff --git a/src/main/java/com/facebook/swift/metadata/ThriftStructMetadataBuilder.java b/src/main/java/com/facebook/swift/metadata/ThriftStructMetadataBuilder.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/facebook/swift/metadata/ThriftStructMetadataBuilder.java +++ b/src/main/java/com/facebook/swift/metadat...
Resolve null issues with guava collections
facebookarchive_swift
train
1716808de320684bcc56aa080bddd30809b62d5f
diff --git a/test/components/markdown-editor-test.js b/test/components/markdown-editor-test.js index <HASH>..<HASH> 100644 --- a/test/components/markdown-editor-test.js +++ b/test/components/markdown-editor-test.js @@ -128,6 +128,7 @@ describe('MarkdownEditor', () => { cbName = cbName || name.charAt(0...
Attempt to fix tests in Firefox/IE
zooniverse_markdownz
train
a66809890b58ce4bd6d43d13aa558d45a58d3f03
diff --git a/numexpr/cpuinfo.py b/numexpr/cpuinfo.py index <HASH>..<HASH> 100755 --- a/numexpr/cpuinfo.py +++ b/numexpr/cpuinfo.py @@ -507,11 +507,11 @@ class SunOSCPUInfo(CPUInfoBase): return info = command_info(arch='arch', mach='mach', - u...
Fix Solaris issue with: numexpr/cpuinfo.py:<I>: UserWarning: [Errno 2] No such file or directory stacklevel=stacklevel + 1) and the second similar warning.
pydata_numexpr
train
ad925c9f17c624117fa4427cf9da4b58403508a7
diff --git a/src/main/java/net/bootsfaces/component/selectMultiMenu/SelectMultiMenuRenderer.java b/src/main/java/net/bootsfaces/component/selectMultiMenu/SelectMultiMenuRenderer.java index <HASH>..<HASH> 100644 --- a/src/main/java/net/bootsfaces/component/selectMultiMenu/SelectMultiMenuRenderer.java +++ b/src/main/java...
Tooltips now are rendered correctly. The solution consists of using two ids - one for the outer div, and a second id for the inner select tag.
TheCoder4eu_BootsFaces-OSP
train
e63b4cdd08dbb18b5619a00401cf1566fda4816d
diff --git a/icetea_lib/arguments.py b/icetea_lib/arguments.py index <HASH>..<HASH> 100755 --- a/icetea_lib/arguments.py +++ b/icetea_lib/arguments.py @@ -389,6 +389,12 @@ def get_tc_arguments(parser): help='Force flashing of hardware device if ' ...
Added previously removed --interface arg.
ARMmbed_icetea
train
e677b12cda50e4adf38b8b8dd86a623ae82ae27f
diff --git a/src/core/createEventObjectProxyPolyfill.js b/src/core/createEventObjectProxyPolyfill.js index <HASH>..<HASH> 100644 --- a/src/core/createEventObjectProxyPolyfill.js +++ b/src/core/createEventObjectProxyPolyfill.js @@ -35,8 +35,8 @@ export default function createEventObjectProxyPolyfill() { }; const t...
Set __isProxy after traversing children in createEventObjectProx… (#<I>) As #<I> says, when we set __isProxy prior to traversing it's children, one of traverse calls uses __isProxy as key, so we have obj[__isProxy] === true, so we try to set true.__isProxy
kmagiera_react-native-reanimated
train
80934e0facea1b10a19fc38be65668563838bdd9
diff --git a/src/DocBlock/UselessDocBlockCleaner.php b/src/DocBlock/UselessDocBlockCleaner.php index <HASH>..<HASH> 100644 --- a/src/DocBlock/UselessDocBlockCleaner.php +++ b/src/DocBlock/UselessDocBlockCleaner.php @@ -62,6 +62,9 @@ final class UselessDocBlockCleaner */ private const COMMENT_CONSTRUCTOR_CLAS...
[PHPStanRules] Add NoMixedMethodCallerRule (#<I>)
Symplify_CodingStandard
train
be7d44ebade8023dda95f0ffb6c04a123b24c808
diff --git a/aws/data_source_aws_kms_secrets.go b/aws/data_source_aws_kms_secrets.go index <HASH>..<HASH> 100644 --- a/aws/data_source_aws_kms_secrets.go +++ b/aws/data_source_aws_kms_secrets.go @@ -43,12 +43,10 @@ func dataSourceAwsKmsSecrets() *schema.Resource { }, }, "plaintext": { - Type: schema...
Update data_source_aws_kms_secrets.go This commit will fix the fact that terraform display sensitive information in it's plan when using the data source for KMS Secrets. Plugin API ocmpatibility was not respected.
terraform-providers_terraform-provider-aws
train
8700ca7de6ab735d711da96443fb3b9e8127c25d
diff --git a/python/docs/source/conf.py b/python/docs/source/conf.py index <HASH>..<HASH> 100644 --- a/python/docs/source/conf.py +++ b/python/docs/source/conf.py @@ -54,6 +54,7 @@ master_doc = 'index' project = 'sbp' author = 'Swift Navigation' copyright = '2021, ' + author +_TITLE = 'sbp Documentation' # The ve...
Sphinx conf.py: Deduplicate strings
swift-nav_libsbp
train
d2722ea513afce6810be424047c2a7ac35fdf7d4
diff --git a/lib/elastomer/client.rb b/lib/elastomer/client.rb index <HASH>..<HASH> 100644 --- a/lib/elastomer/client.rb +++ b/lib/elastomer/client.rb @@ -8,6 +8,7 @@ require "elastomer/version" module Elastomer class Client + MAX_REQUEST_SIZE = 250 * 2**20 # 250 MB # Create a new client that can be us...
use the new request size limiter in the client
github_elastomer-client
train
89a356c3c762dc0c068f2ad5549c2ea6ff13cb6b
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -32,6 +32,12 @@ var program = optimist description: 'only check latest available update', default: false }) + .option('color', { + boolean: true, + alias: 'c', + description: 'col...
added command line option for color output fixes #<I>
bahmutov_next-update
train
86f9a965ef0cb17df7c1df0a535fb52fcaac207d
diff --git a/lib/blob-read-stream.js b/lib/blob-read-stream.js index <HASH>..<HASH> 100644 --- a/lib/blob-read-stream.js +++ b/lib/blob-read-stream.js @@ -34,16 +34,15 @@ BlobReadStream.prototype._read = function(size) { var chunk = this.slice.call(this.blob, start, end); if (chunk.size) { - this.fileReader....
use ArrayBuffer for BlobReadStream
nkzawa_socket.io-stream
train
45f095a93dd5387c86fde999e67eceb2ec74a015
diff --git a/lib/sbsm/session.rb b/lib/sbsm/session.rb index <HASH>..<HASH> 100644 --- a/lib/sbsm/session.rb +++ b/lib/sbsm/session.rb @@ -217,6 +217,7 @@ module SBSM end @request_origin += '://' @request_origin += rack_request.env['REMOTE_ADDR'] if rack_request.env['REMOTE_ADDR']...
Fix remote_ip for POST processing in xmlconf
zdavatz_sbsm
train
c8af2d4a04b1a065dcd6c85b4db1091456cc4255
diff --git a/core/server/data/schema/commands.js b/core/server/data/schema/commands.js index <HASH>..<HASH> 100644 --- a/core/server/data/schema/commands.js +++ b/core/server/data/schema/commands.js @@ -146,6 +146,96 @@ async function dropUnique(tableName, columns, transaction) { } /** + * Checks if a foreign key e...
Added a foreign key in migration utils no issue - This makes it easy to add/remove foreign key in both mysql and sqlite
TryGhost_Ghost
train
48cf0524d5a775781e5a92e3f4d81fda141403e7
diff --git a/src/Http/Controllers/ApiController.php b/src/Http/Controllers/ApiController.php index <HASH>..<HASH> 100644 --- a/src/Http/Controllers/ApiController.php +++ b/src/Http/Controllers/ApiController.php @@ -60,7 +60,6 @@ class ApiController extends BaseController public function forumPostStore() { -...
Remove die dump, Remove Author test as is pretty clear
taskforcedev_laravel-forum
train
a2e205b50adcdc466a8d758b20b3a67438090d9f
diff --git a/src/js/SelectFields/SelectField.js b/src/js/SelectFields/SelectField.js index <HASH>..<HASH> 100644 --- a/src/js/SelectFields/SelectField.js +++ b/src/js/SelectFields/SelectField.js @@ -38,16 +38,32 @@ export default class SelectField extends Component { static propTypes = { /** - * An option...
Updated Styling/ClassName SelectField Props Updated the SelectField to include some additional style props.
mlaursen_react-md
train
ff5055aefef23092388598757df4eb80aa7966c5
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -81,6 +81,14 @@ async function upload(token, file, config = defaultConfig) { } throw new Error('An error happened while uploading the file.'); } + const fileUrl = + config.teamId || config.team + ? `${FIL...
Add support for config.team as alternative to teamId
sergiodxa_now-storage
train
1d1da20afffa8ce81a36005193d318b321840f96
diff --git a/src/Artesaos/Warehouse/Presenter/FractalPresenter.php b/src/Artesaos/Warehouse/Presenter/FractalPresenter.php index <HASH>..<HASH> 100644 --- a/src/Artesaos/Warehouse/Presenter/FractalPresenter.php +++ b/src/Artesaos/Warehouse/Presenter/FractalPresenter.php @@ -21,7 +21,7 @@ abstract class FractalPresenter...
Add new methods to Fractal Presenter
artesaos_warehouse
train
f58ccde7746012f5529e5e247d9f0060ee64e0fe
diff --git a/lib/mlb_gameday/team.rb b/lib/mlb_gameday/team.rb index <HASH>..<HASH> 100644 --- a/lib/mlb_gameday/team.rb +++ b/lib/mlb_gameday/team.rb @@ -1,6 +1,6 @@ module MLBGameday class Team - attr_reader :id, :name, :city, :league, :division, :names, :code, :file_code + attr_reader :id, :name, :city, :l...
Add types of names and refactor full_name: city + name strict_names: name, full_name implicit_names: strict_names, code, and city when not ambiguous (NYC and Chicago)
Fustrate_mlb_gameday
train
bc0262938941f7c9b6ea2e346b0b86a5865e399d
diff --git a/lib/core/plugin/cloud_action.rb b/lib/core/plugin/cloud_action.rb index <HASH>..<HASH> 100644 --- a/lib/core/plugin/cloud_action.rb +++ b/lib/core/plugin/cloud_action.rb @@ -42,8 +42,8 @@ class CloudAction < CORL.plugin_class(:nucleon, :action) def configure super do - node_config ...
Node action configurations should come after all child action provider configurations.
coralnexus_corl
train
321566bcbf3f9171aa7854bf800407bd9d81361e
diff --git a/src/main/java/org/efaps/db/QueryBuilder.java b/src/main/java/org/efaps/db/QueryBuilder.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/efaps/db/QueryBuilder.java +++ b/src/main/java/org/efaps/db/QueryBuilder.java @@ -27,6 +27,7 @@ import java.util.UUID; import org.efaps.admin.datamodel.Attribut...
- kernel: QueryBuilder works with Status and Instance as value git-svn-id: <URL>
eFaps_eFaps-Kernel
train
920398983b1a0498be33f0ea29930406421a5769
diff --git a/app/controllers/nyauth/confirmation_requests_controller.rb b/app/controllers/nyauth/confirmation_requests_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/nyauth/confirmation_requests_controller.rb +++ b/app/controllers/nyauth/confirmation_requests_controller.rb @@ -3,6 +3,7 @@ module Nyauth...
Use Nyauth::AppResponder in nyauth controller!
ppworks_nyauth
train
e368583ba716f90120e7e6ccfc5ee76de015521c
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -696,7 +696,7 @@ module ActionDispatch # Allows you to co...
Adds missing closing regex slashes.
rails_rails
train
2112898277532b07ef53f913ffc1ba4d2821ce8e
diff --git a/core/src/main/java/at/stefangeyer/challonge/model/Attachment.java b/core/src/main/java/at/stefangeyer/challonge/model/Attachment.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/at/stefangeyer/challonge/model/Attachment.java +++ b/core/src/main/java/at/stefangeyer/challonge/model/Attachment.java @...
Removed OffsetDateTime fields from Equals and HashCode as the API does not provide a consistent time offset
stefangeyer_challonge-java
train
fe7904f3155b6f29a191c2dfa1a16f5f61e312a1
diff --git a/src/main/java/com/zandero/utils/InstantTimeUtils.java b/src/main/java/com/zandero/utils/InstantTimeUtils.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/zandero/utils/InstantTimeUtils.java +++ b/src/main/java/com/zandero/utils/InstantTimeUtils.java @@ -5,7 +5,6 @@ import java.time.format.DateTimeF...
Improved instant parsing ...
zandero_utils
train
04c6af8683734966031f6d837790d78e786af913
diff --git a/test/integration/features/step_definitions/common-steps.js b/test/integration/features/step_definitions/common-steps.js index <HASH>..<HASH> 100644 --- a/test/integration/features/step_definitions/common-steps.js +++ b/test/integration/features/step_definitions/common-steps.js @@ -1,6 +1,5 @@ import {EOL}...
test(fs): switched readFile calls from mz/fs to fs/promises which seems to have solved the issues i was having with mock-fs on node <I>
travi_javascript-scaffolder
train
8e4ec8584a2c421cb867f239db9cb1f2a5cc967a
diff --git a/lib/collect.js b/lib/collect.js index <HASH>..<HASH> 100644 --- a/lib/collect.js +++ b/lib/collect.js @@ -1,5 +1,13 @@ 'use strict' +/** + * Used by commander for collecting multiple arguments + * of the same type from the command line. + * + * @param {String} value The string to add to the array....
Added inline docs to modules
roccivic_glob-hash
train
6deb5cc8f2343ff57b90b72cfae0e96efb018e6c
diff --git a/ores/scorer_models/rev_id_scorer.py b/ores/scorer_models/rev_id_scorer.py index <HASH>..<HASH> 100644 --- a/ores/scorer_models/rev_id_scorer.py +++ b/ores/scorer_models/rev_id_scorer.py @@ -38,7 +38,7 @@ class RevIdScorer(ScorerModel): return { 'prediction': prediction, - ...
RevIdScorer now uses 'probability' when scoring rather than 'probabilities'
wikimedia_ores
train
0e0c56e081e1a00f732913264fa5efb57246c644
diff --git a/features/mongoid_objects.feature b/features/mongoid_objects.feature index <HASH>..<HASH> 100644 --- a/features/mongoid_objects.feature +++ b/features/mongoid_objects.feature @@ -27,3 +27,15 @@ Feature: Mongoid Objects And that book should be persisted And that book should have "1984" for a "title...
Add test for generating multiple detailed parented objects
paulelliott_fabrication
train
62f70884c0d8145ea5fd76d822395e1f6b0d6a49
diff --git a/dropwizard-logging/src/test/java/io/dropwizard/logging/TcpServer.java b/dropwizard-logging/src/test/java/io/dropwizard/logging/TcpServer.java index <HASH>..<HASH> 100644 --- a/dropwizard-logging/src/test/java/io/dropwizard/logging/TcpServer.java +++ b/dropwizard-logging/src/test/java/io/dropwizard/logging/...
Stop ignoring exceptions in dropwizard-logging tests (#<I>) We were catching some exceptions and dumping the stack trace. It would be better to fail the tests with details of the exception. This makes error-prone a little happier.
dropwizard_dropwizard
train
1e473967578034e5b0729cab503541aa27c419ce
diff --git a/__tests__/sawConfiguration-test.js b/__tests__/sawConfiguration-test.js index <HASH>..<HASH> 100644 --- a/__tests__/sawConfiguration-test.js +++ b/__tests__/sawConfiguration-test.js @@ -19,11 +19,11 @@ describe('saw', function () { }); }); - describe('initialize() with an available API Adapter',...
sawConfiguration-test should test configure method only
marco-loche_saw
train
52cbe2f6bd5b2bc63a8dfe9c7a7f0800f4b31423
diff --git a/tensorflow_datasets/object_detection/open_images.py b/tensorflow_datasets/object_detection/open_images.py index <HASH>..<HASH> 100644 --- a/tensorflow_datasets/object_detection/open_images.py +++ b/tensorflow_datasets/object_detection/open_images.py @@ -249,7 +249,6 @@ class OpenImagesV4(tfds.core.Generato...
Remove num_shards from other dataset
tensorflow_datasets
train
654f2f7b2ebb735103be9261cb5380f69105d1b5
diff --git a/source/ContextualPopup.js b/source/ContextualPopup.js index <HASH>..<HASH> 100644 --- a/source/ContextualPopup.js +++ b/source/ContextualPopup.js @@ -286,6 +286,9 @@ if (this.scrolling) { this.getScroller().setShowing(this.showing); } + if (!this.showing) { + this.activator = this.ac...
ensure ContextualPopup activator position is refreshed appropriately Issue: ENYO-<I> Enyo-DCO-<I>-
enyojs_onyx
train
b3e66ee980bd200d25b7fe4b4068354bfb1d830e
diff --git a/server/v2/tests/get_handler_test.go b/server/v2/tests/get_handler_test.go index <HASH>..<HASH> 100644 --- a/server/v2/tests/get_handler_test.go +++ b/server/v2/tests/get_handler_test.go @@ -90,6 +90,13 @@ func TestV2GetKeyRecursively(t *testing.T) { // func TestV2WatchKey(t *testing.T) { tests.RunServe...
fix(TestV2Watch): ensure server has started
etcd-io_etcd
train
d4166724f9a7af3e532d2a480aba28223dc04b4b
diff --git a/src/Console/Command/DescribeCommand.php b/src/Console/Command/DescribeCommand.php index <HASH>..<HASH> 100644 --- a/src/Console/Command/DescribeCommand.php +++ b/src/Console/Command/DescribeCommand.php @@ -17,6 +17,7 @@ use PhpCsFixer\Differ\SebastianBergmannDiffer; use PhpCsFixer\Fixer\ConfigurableFixerI...
Fix: Filter code samples and output note when none can be demonstrated
FriendsOfPHP_PHP-CS-Fixer
train
a02a00e37ea96ad2078ea8a8e6f042224409f3a4
diff --git a/django_fsm_log/models.py b/django_fsm_log/models.py index <HASH>..<HASH> 100644 --- a/django_fsm_log/models.py +++ b/django_fsm_log/models.py @@ -5,8 +5,9 @@ from django.contrib.contenttypes.generic import GenericForeignKey from django.contrib.contenttypes.models import ContentType from django.db import ...
implement pre_transition and post_transition callbacks
gizmag_django-fsm-log
train
5ffeaa586bc8a446f10f590ebd2a59bf05097c85
diff --git a/plugins.js b/plugins.js index <HASH>..<HASH> 100644 --- a/plugins.js +++ b/plugins.js @@ -3,6 +3,7 @@ var Path = require('path'); exports.absolute = function(page) { page.wait('ready').run(function() { + var base = dloc.protocol + '//' + dloc.host; function absolut(selector, att) { var list = ...
Plugins are supposed to mount relative to /
kapouer_express-dom
train
e1ac66638333736678b09edd1f04582921ddff66
diff --git a/lib/Softdeleteable/Mapping/Driver/Fluent.php b/lib/Softdeleteable/Mapping/Driver/Fluent.php index <HASH>..<HASH> 100644 --- a/lib/Softdeleteable/Mapping/Driver/Fluent.php +++ b/lib/Softdeleteable/Mapping/Driver/Fluent.php @@ -6,7 +6,7 @@ use Gedmo\FluentExtension; class Fluent extends FluentExtension {...
SoftDeleteable extension name must match what Gedmo will check afterwards
laravel-doctrine_fluent
train
e3130864a131d84ffda8dd046dda37b407cdb2df
diff --git a/jira.go b/jira.go index <HASH>..<HASH> 100644 --- a/jira.go +++ b/jira.go @@ -281,3 +281,37 @@ func (r *Response) populatePageValues(v interface{}) { } return } + +// BasicAuthTransport is an http.RoundTripper that authenticates all requests +// using HTTP Basic Authentication with the provided userna...
Adding basic auth and accompanying tests
andygrunwald_go-jira
train
fdf2dd5d8ecb620c1f06cff50ab135ee064e2dab
diff --git a/can-stache.js b/can-stache.js index <HASH>..<HASH> 100644 --- a/can-stache.js +++ b/can-stache.js @@ -493,7 +493,7 @@ function stache (filename, template) { // now figure out the final structure ... if ( !(scope instanceof Scope) ) { - scope = new Scope(templateContext).add(scope).addLetContext()...
make sure custom scopes get let context
canjs_can-stache
train
24a99142727001f07f64158396306f7b912f91a1
diff --git a/pysat/_constellation.py b/pysat/_constellation.py index <HASH>..<HASH> 100644 --- a/pysat/_constellation.py +++ b/pysat/_constellation.py @@ -218,9 +218,9 @@ class Constellation(object): # If desired, determine the resolution if self.index_res is None: ...
BUG: fixed freq comparisons Frequency comparisons were broken as, if a frequency with a numeric component was provided, the conversion to seconds would not work. Also, the conversion incorrectly used `to_datetime` instead of `Timedelta`. Fixed this and reduced duplicate code by using the new time utilities `calc_res...
rstoneback_pysat
train
62b9d48c87736ef1c398a2658953aee017ab9fc2
diff --git a/python/mxnet/gluon/trainer.py b/python/mxnet/gluon/trainer.py index <HASH>..<HASH> 100644 --- a/python/mxnet/gluon/trainer.py +++ b/python/mxnet/gluon/trainer.py @@ -180,7 +180,7 @@ class Trainer(object): raise UserWarning( "Gradient of Parameter `%s` o...
Fix typo (#<I>) Typo maked -> made
apache_incubator-mxnet
train
0bf247a47763433cab8cd50fa98d50a465f5d5a5
diff --git a/bundles/org.eclipse.orion.client.ui/web/plugins/help/helpPlugin.js b/bundles/org.eclipse.orion.client.ui/web/plugins/help/helpPlugin.js index <HASH>..<HASH> 100644 --- a/bundles/org.eclipse.orion.client.ui/web/plugins/help/helpPlugin.js +++ b/bundles/org.eclipse.orion.client.ui/web/plugins/help/helpPlugin....
temporary Help workaround: change the Help plug-in's root document to Getting Started.md
eclipse_orion.client
train
355aa5d1197bba47ee2c775febef750fd04ff5f3
diff --git a/grid_frame.py b/grid_frame.py index <HASH>..<HASH> 100644 --- a/grid_frame.py +++ b/grid_frame.py @@ -606,12 +606,12 @@ class GridFrame(wx.Frame): self.grid_builder.add_age_data_to_grid() self.grid.size_grid() self.main_sizer.Fit(self) - # if im...
make_magic: fix bug where a blank row was created with MagIC file import
PmagPy_PmagPy
train
2184b07813e2693695afb79e5bbd3304574d5650
diff --git a/moskito-webui/src/main/java/net/anotheria/moskito/webui/threshold/api/ThresholdAPIImpl.java b/moskito-webui/src/main/java/net/anotheria/moskito/webui/threshold/api/ThresholdAPIImpl.java index <HASH>..<HASH> 100644 --- a/moskito-webui/src/main/java/net/anotheria/moskito/webui/threshold/api/ThresholdAPIImpl....
added additional null pointer check for situation when custom thresholds return wrong/null values.
anotheria_moskito
train
cda39beb4ae73d2f9a2843c34e3deb4ff2ac0233
diff --git a/inginious/backend/agent/_cgroup_helper.py b/inginious/backend/agent/_cgroup_helper.py index <HASH>..<HASH> 100644 --- a/inginious/backend/agent/_cgroup_helper.py +++ b/inginious/backend/agent/_cgroup_helper.py @@ -64,21 +64,22 @@ class CGroupMemoryWatcher(threading.Thread): def add_container_memory_li...
Be more inclusive while catching IOError in add_container_memory_limit. Should completely fix #<I> this time.
UCL-INGI_INGInious
train
8ac3925fd52829506c3d3509f99c79b3b7549e63
diff --git a/swift-codec/src/main/java/com/facebook/swift/codec/metadata/ThriftUnionMetadataBuilder.java b/swift-codec/src/main/java/com/facebook/swift/codec/metadata/ThriftUnionMetadataBuilder.java index <HASH>..<HASH> 100644 --- a/swift-codec/src/main/java/com/facebook/swift/codec/metadata/ThriftUnionMetadataBuilder....
Move union field requiredness checking earlier We only respect metadata errors that are in place before the metadata builder build() method is called, so adding this error was useless as is, since it happened inside the invocation of build().
facebookarchive_swift
train
0e3b0bbbb0353784ea8b11c64a40e473ccafa28a
diff --git a/tests/test_assess_block.py b/tests/test_assess_block.py index <HASH>..<HASH> 100644 --- a/tests/test_assess_block.py +++ b/tests/test_assess_block.py @@ -12,7 +12,7 @@ from assess_block import ( parse_args, ) from jujupy import ( - EnvJujuClient, + ModelClient, EnvJujuClient1X, S...
Switch test_assess_block to ModelClient name.
juju_juju
train
0f7fe5e7a7fff016597a38e73b223e9170ab1ea8
diff --git a/spacy/tokens/_serialize.py b/spacy/tokens/_serialize.py index <HASH>..<HASH> 100644 --- a/spacy/tokens/_serialize.py +++ b/spacy/tokens/_serialize.py @@ -13,7 +13,7 @@ from ..attrs import SPACY, ORTH class DocBin(object): """Pack Doc objects for binary serialization. - + The DocBin class l...
Auto-format and fix typo and consistency
explosion_spaCy
train
b6f7856cb39918906f68fbce6d785804f61f87ef
diff --git a/src/payapi/core/core.api.php b/src/payapi/core/core.api.php index <HASH>..<HASH> 100644 --- a/src/payapi/core/core.api.php +++ b/src/payapi/core/core.api.php @@ -190,6 +190,8 @@ final class api extends helper private function getIp() { + //-> @FIXME TODELETE + return $this->hackIp(); if ...
*CARE: ip and domain name hacked for testing (these have to be deleted before any sdk release)
payapi_payapi-sdk-php
train
3b189ccab8e54f75827ba0b0f0ebc418ae07ba55
diff --git a/src/resources/views/admin/index.blade.php b/src/resources/views/admin/index.blade.php index <HASH>..<HASH> 100644 --- a/src/resources/views/admin/index.blade.php +++ b/src/resources/views/admin/index.blade.php @@ -29,17 +29,18 @@ </template> <template slot="columns" slot-scope="{ sortAr...
Vue components renamed
TypiCMS_News
train
256cd0956bf4bb364b472ccdd04d743794d98dee
diff --git a/lib/resolvers/npm-registry.js b/lib/resolvers/npm-registry.js index <HASH>..<HASH> 100644 --- a/lib/resolvers/npm-registry.js +++ b/lib/resolvers/npm-registry.js @@ -65,7 +65,7 @@ module.exports = function resolveFromNpm (name, version, cb) { cb(null, { name: resolved.name, version: reso...
use resolved package version as uid
alexanderGugel_ied
train