hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
c8d614f703f0a65757a509727a749cd14b4c76e1
diff --git a/slam/plugins/dynamodb.py b/slam/plugins/dynamodb.py index <HASH>..<HASH> 100644 --- a/slam/plugins/dynamodb.py +++ b/slam/plugins/dynamodb.py @@ -171,7 +171,7 @@ def _get_table_resource(config, stage, name): 'Projection': _get_dynamodb_projection(index.get('projection')) } ...
local and global indexes must be given as lists Fixes #8
miguelgrinberg_slam
train
55d956e7adb0499fc53c6215369f36b6b9f4186e
diff --git a/lib/https/index.js b/lib/https/index.js index <HASH>..<HASH> 100644 --- a/lib/https/index.js +++ b/lib/https/index.js @@ -119,6 +119,7 @@ function resolveWebsocket(socket, wss) { } resData.statusCode = status; resData.body = body; + resData.ip = resData.ip || LOCALHOST; data.requestT...
chore: ensure show the server ip
avwo_whistle
train
75b2e76088747becc326a22f3c483100530aead2
diff --git a/src/Job/GenerateStaticCacheJob.php b/src/Job/GenerateStaticCacheJob.php index <HASH>..<HASH> 100644 --- a/src/Job/GenerateStaticCacheJob.php +++ b/src/Job/GenerateStaticCacheJob.php @@ -32,6 +32,7 @@ class GenerateStaticCacheJob extends Job unset($this->jobData->URLsToProcess[$url]); ...
FIX GenerateStaticCacheJob should increment the step as it completes them
silverstripe_silverstripe-staticpublishqueue
train
e3715a2e214083b3cf34206cd10fb535a001e0e5
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,7 +13,11 @@ import sys, os, locale sys.path.insert(0, os.path.dirname(os.path.dirname(__file__))) -locale.setlocale(locale.LC_ALL, 'en_US') +try: + locale.setlocale(locale.LC_ALL, 'en_US') +except lo...
The setlocale call fails on RTD
tehmaze_natural
train
263d07ee2f4c1ebf27f19d4705d264660694e74d
diff --git a/README.MD b/README.MD index <HASH>..<HASH> 100644 --- a/README.MD +++ b/README.MD @@ -16,7 +16,8 @@ import ( ) func main() { - client := twitch.NewClient("justinfan123123", "oauth:123123123") + // or client := twitch.NewAnonymousClient() for an anonymous user (no write capabilities) + client := twitch....
Add a constructor for anonymous usage (#<I>) Fixes #<I>
gempir_go-twitch-irc
train
49ef7d3085e44deefb8674470c013da2231e69aa
diff --git a/public/js/editors/panel.js b/public/js/editors/panel.js index <HASH>..<HASH> 100644 --- a/public/js/editors/panel.js +++ b/public/js/editors/panel.js @@ -90,15 +90,16 @@ var Panel = function (name, settings) { $panel = null, splitterSettings = {}, cmSettings = {}, - panelLanguage ...
Fix for #<I>: calling the runner url only once per bin
jsbin_jsbin
train
f499da8794c667d5edeb707b2210c18dada8f915
diff --git a/lib/ecdsa/version.rb b/lib/ecdsa/version.rb index <HASH>..<HASH> 100644 --- a/lib/ecdsa/version.rb +++ b/lib/ecdsa/version.rb @@ -1,3 +1,3 @@ module ECDSA - VERSION = '0.1.4' + VERSION = '0.1.5' end
Bumped version to <I>.
DavidEGrayson_ruby_ecdsa
train
80974033c0aaec57d1c4f95848a6ff0bfcaeb7e4
diff --git a/superset/databases/schemas.py b/superset/databases/schemas.py index <HASH>..<HASH> 100644 --- a/superset/databases/schemas.py +++ b/superset/databases/schemas.py @@ -624,6 +624,7 @@ class ImportV1DatabaseExtraSchema(Schema): schemas_allowed_for_csv_upload = fields.List(fields.String()) cost_estim...
fix database import with cancel_query.. extra field (#<I>)
apache_incubator-superset
train
c39cbe1bf0104bcf370f3251f172062d63a9a57c
diff --git a/src/server/pps/server/api_server.go b/src/server/pps/server/api_server.go index <HASH>..<HASH> 100644 --- a/src/server/pps/server/api_server.go +++ b/src/server/pps/server/api_server.go @@ -1041,6 +1041,9 @@ func (a *apiServer) validatePipeline(ctx context.Context, pipelineInfo *pps.Pipe return fmt.Err...
Adds validation that prevents parallel services.
pachyderm_pachyderm
train
50ad4187a5f32869e8d696ec6b3b01b22df13cbf
diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index <HASH>..<HASH> 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -149,8 +149,29 @@ class Configuration implements ConfigurationInterface -...
Added option "proxy" (#<I>) (#<I>)
8p_EightPointsGuzzleBundle
train
a9053c9bc61d29018dbb7172e7f976d5a30ce70b
diff --git a/lib/github_cli/terminal.rb b/lib/github_cli/terminal.rb index <HASH>..<HASH> 100644 --- a/lib/github_cli/terminal.rb +++ b/lib/github_cli/terminal.rb @@ -10,24 +10,25 @@ module GithubCLI attr_accessor :size def render_output(response, options={}) + render_status response cas...
Add calls to table and csv formatters.
piotrmurach_github_cli
train
de28d60702495fe2a4bcefcb35b9bac4ad5b4693
diff --git a/jsmin/__init__.py b/jsmin/__init__.py index <HASH>..<HASH> 100644 --- a/jsmin/__init__.py +++ b/jsmin/__init__.py @@ -40,7 +40,7 @@ __all__ = ['jsmin', 'JavascriptMinify'] __version__ = '2.0.11' -def jsmin(js): +def jsmin(js, **kwargs): """ returns a minified version of the javascript string...
Expose quote-chars as configuration option: not fully supporting/tracking Harmony, but this should be a enough for the moment.
tikitu_jsmin
train
e2472a79a20c6f8fa67b74bb9f0b3e1ca7e46f06
diff --git a/examples/skeleton/public/gamejs-wrapped.js b/examples/skeleton/public/gamejs-wrapped.js index <HASH>..<HASH> 100644 --- a/examples/skeleton/public/gamejs-wrapped.js +++ b/examples/skeleton/public/gamejs-wrapped.js @@ -743,10 +743,14 @@ function resourceBaseHref() { * @name preload */ var preload = exp...
fix $g.resourceBaseHref being broken if specified as absolute http:// url
GameJs_gamejs
train
b238f4eed3fd432f3ce94aebb924b86d42f3c014
diff --git a/src/core.js b/src/core.js index <HASH>..<HASH> 100644 --- a/src/core.js +++ b/src/core.js @@ -1,4 +1,7 @@ var JSONEditor = function(element,options) { + if (!(element instanceof Element)) { + throw new Error('element should be an instance of Element'); + } options = $extend({},JSONEditor.defaults....
Type check element argument If element argument is not an instance of `Element` the program should fail fast and acknowledge the user.
jdorn_json-editor
train
37f1e912fb9103652f585ebf7d61b39d60aff25e
diff --git a/lib/chef/knife/cloudformation_create.rb b/lib/chef/knife/cloudformation_create.rb index <HASH>..<HASH> 100644 --- a/lib/chef/knife/cloudformation_create.rb +++ b/lib/chef/knife/cloudformation_create.rb @@ -71,7 +71,7 @@ class Chef file = Chef::Config[:knife][:cloudformation][:template] ...
Pass print requests through to sub instance stacks when printing a nested stack that's not processed
sparkleformation_sfn
train
f1127124e831f55824b59618cc8153c755ba265e
diff --git a/icekit/management/commands/publishing_migrate_from_publisher.py b/icekit/management/commands/publishing_migrate_from_publisher.py index <HASH>..<HASH> 100644 --- a/icekit/management/commands/publishing_migrate_from_publisher.py +++ b/icekit/management/commands/publishing_migrate_from_publisher.py @@ -99,3 ...
Make publishing implementation migration script always sets UrlNode.status The `publishing_migrate_from_publisher` script for migrating existing data from legacy "publisher" DB fields to ICEKit's "publishing" DB fields now updates all UrlNode items in the DB to set the Fluent draft/published status correctly, whereas ...
ic-labs_django-icekit
train
baffb95b499249dd22bea412f129934df6cd8285
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index <HASH>..<HASH> 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ Changelog ========= +1.0.0 +----- + +* Fixed path to exercise resolving (#31) + 0.3.16 ------ diff --git a/tmc/__main__.py b/tmc/__main__.py index <HASH>..<HASH> 100755 --- a/tmc/__mai...
Fixed path being resolved to the wrong exercise (Fixes #<I>) This function still sucks
minttu_tmc.py
train
699fd6037c5ea7d77aece0cf005ff6f29d730eba
diff --git a/lib/smartrouter.js b/lib/smartrouter.js index <HASH>..<HASH> 100644 --- a/lib/smartrouter.js +++ b/lib/smartrouter.js @@ -309,11 +309,16 @@ module.exports = new JS.Class(EventEmitter, { * */ check: function (socket, type, message, callback) { + var self = this; socket.get('actorid', func...
Added error log when an unidentified actor tries to send a message
VirtuOz_smart-router
train
d9bc9d38230285e1e77c8d8eee33316c2c3337fa
diff --git a/lib/rubex/ast/ruby_method_def.rb b/lib/rubex/ast/ruby_method_def.rb index <HASH>..<HASH> 100644 --- a/lib/rubex/ast/ruby_method_def.rb +++ b/lib/rubex/ast/ruby_method_def.rb @@ -52,12 +52,19 @@ module Rubex def generate_function_definition code declare_args code declare_vars code +...
Improved on initialization of pure Ruby objects.
SciRuby_rubex
train
c486c5e18aeb72631e8431cfb37380451504648b
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -30,10 +30,8 @@ function run(bin, args, env, cb) { var prog = spawn( bin , args - , { env: env } + , { stdio: 'inherit', env: env } ) - prog.stdout.pipe(process.stdout); - prog.stderr.pipe(process.std...
speeding things up by launching phantom earlier
thlorenz_zuul-mp
train
7b814eba118e2b94ae5187e4c5192cbc8e2c14b5
diff --git a/cursor.js b/cursor.js index <HASH>..<HASH> 100644 --- a/cursor.js +++ b/cursor.js @@ -353,29 +353,6 @@ Cursor.prototype._getmore = function(callback) { ); }; -Cursor.prototype._killcursor = function(callback) { - // Set cursor to dead - this.cursorState.dead = true; - this.cursorState.killed = tru...
refactor(cursor): combine `killcursor` and `kill`
mongodb_node-mongodb-native
train
d257a306afc6a35e61ce653c4fc9d88a50d6c1ed
diff --git a/src/main/java/com/amazon/carbonado/raw/GenericEncodingStrategy.java b/src/main/java/com/amazon/carbonado/raw/GenericEncodingStrategy.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/amazon/carbonado/raw/GenericEncodingStrategy.java +++ b/src/main/java/com/amazon/carbonado/raw/GenericEncodingStrateg...
Disable BigInteger support until key encoding is fixed.
Carbonado_Carbonado
train
516603af90b9e1260433c615f8f8f2ad2c68b41d
diff --git a/lib/classes/PromiseTracker.js b/lib/classes/PromiseTracker.js index <HASH>..<HASH> 100644 --- a/lib/classes/PromiseTracker.js +++ b/lib/classes/PromiseTracker.js @@ -20,7 +20,7 @@ class PromiseTracker { } start() { this.reset(); - this.interval = setInterval(this.report.bind(this), 2500); + ...
refactor: Show variables resolution info less frequently (to not pollute eventual MFA input)
serverless_serverless
train
ca8f6cb99a4a9ddf7a199c9956fd110d2edba1a9
diff --git a/source-map-support.js b/source-map-support.js index <HASH>..<HASH> 100644 --- a/source-map-support.js +++ b/source-map-support.js @@ -64,6 +64,10 @@ var retrieveFile = handlerExec(retrieveFileHandlers); retrieveFileHandlers.push(function(path) { // Trim the path to make sure there is no extra whitespac...
Add support for proper handling of file protocol (in windows)
evanw_node-source-map-support
train
a436c7fa2f0da2f76791699ce9cdbca22df5845b
diff --git a/internal/backend/remote/backend_plan.go b/internal/backend/remote/backend_plan.go index <HASH>..<HASH> 100644 --- a/internal/backend/remote/backend_plan.go +++ b/internal/backend/remote/backend_plan.go @@ -256,6 +256,8 @@ in order to capture the filesystem context the remote workspace expects: switch op....
backend/remote: Support refresh-only plans
hashicorp_terraform
train
f0b2aa4fea7fef3800e4a5cae3d4b68bb18bb89d
diff --git a/packages/ember-metal/tests/watching/watch_test.js b/packages/ember-metal/tests/watching/watch_test.js index <HASH>..<HASH> 100644 --- a/packages/ember-metal/tests/watching/watch_test.js +++ b/packages/ember-metal/tests/watching/watch_test.js @@ -229,3 +229,37 @@ test('when watching another object, destroy ...
Tests for watch methods on length properties
emberjs_ember.js
train
ac243a8e4f34811b500953adeacfbfbcd46ad2df
diff --git a/classes/ggezwebservicesclient.php b/classes/ggezwebservicesclient.php index <HASH>..<HASH> 100644 --- a/classes/ggezwebservicesclient.php +++ b/classes/ggezwebservicesclient.php @@ -318,6 +318,32 @@ class ggeZWebservicesClient return self::$errorlevels[$debuglevel] <= $logging; } + /** +...
- added per-remote-server limitation to proxy module
gggeek_ggwebservices
train
f75cc832d1e4473bf25afd2e5c42c1bbafeaaeef
diff --git a/app/controllers/integral/categories_controller.rb b/app/controllers/integral/categories_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/integral/categories_controller.rb +++ b/app/controllers/integral/categories_controller.rb @@ -36,7 +36,11 @@ module Integral private def canoni...
Take multilingual sites into account when creating category canonical URL
yamasolutions_integral
train
ed2054f4f256aa1acfa448ef38e9a2a033c28c60
diff --git a/lib/Cake/Test/Case/Utility/ValidationTest.php b/lib/Cake/Test/Case/Utility/ValidationTest.php index <HASH>..<HASH> 100644 --- a/lib/Cake/Test/Case/Utility/ValidationTest.php +++ b/lib/Cake/Test/Case/Utility/ValidationTest.php @@ -1708,6 +1708,11 @@ class ValidationTest extends CakeTestCase { $this->asse...
Allow international domains to pass validation. Fixes #<I>
cakephp_cakephp
train
d1e6fd6316e0a4ef2a7676edd0f977d2802d2653
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -60,22 +60,48 @@ Client.prototype.callback = function (uri, callback) { // handle authorization code response else if (authResponse.code) { request.post({ - uri: client.provider + '/token', - params: { + ...
added headers to token endpoint request in callback; parse token response
anvilresearch_connect-nodejs
train
e0cc0602f223858839a0f3c5829a2eb8cb6f338b
diff --git a/lib/active_storage/openstack/version.rb b/lib/active_storage/openstack/version.rb index <HASH>..<HASH> 100644 --- a/lib/active_storage/openstack/version.rb +++ b/lib/active_storage/openstack/version.rb @@ -1,5 +1,5 @@ module ActiveStorage module Openstack - VERSION = '1.2.0' + VERSION = '1.3.0' ...
Bump activestorage-openstack to <I>
chaadow_activestorage-openstack
train
c0ce4f716bd7cff02811236ee59a85e522a9a6df
diff --git a/src/main/java/com/github/jmchilton/galaxybootstrap/DownloadProperties.java b/src/main/java/com/github/jmchilton/galaxybootstrap/DownloadProperties.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/github/jmchilton/galaxybootstrap/DownloadProperties.java +++ b/src/main/java/com/github/jmchilton/galax...
Added ability to set specific revisions of Galaxy to checkout
jmchilton_galaxy-bootstrap
train
fc30b093cb36ff5a556b0bb8b7b30b4fc0003e67
diff --git a/tests/test_backend.py b/tests/test_backend.py index <HASH>..<HASH> 100644 --- a/tests/test_backend.py +++ b/tests/test_backend.py @@ -97,9 +97,9 @@ def test_render_img(capsys, tmpdir, filesdir, engine='dot', format_='pdf'): gv_path = subdir / 'img.gv' rendered = gv_path.new(ext='%s.%s' % (gv_pa...
switch relative image path test to wanted behaviour, make if fail
xflr6_graphviz
train
729adc20a3904557cfad29c1a682ac6ca3a3d912
diff --git a/n2w/n2w.py b/n2w/n2w.py index <HASH>..<HASH> 100644 --- a/n2w/n2w.py +++ b/n2w/n2w.py @@ -9,32 +9,32 @@ class N2w(Convert): def __init__(self): super(N2w, self).__init__() - def convert(self, input=0): - if input == 0: + def convert(self, number=0): + if number == 0: ...
Refactor, avoid using `input` keyword as var name
collin5_python-n2w
train
f0c3385cfc10909d4b8d9a1e58abeabdc96dca49
diff --git a/etcdctl/command/member_commands.go b/etcdctl/command/member_commands.go index <HASH>..<HASH> 100644 --- a/etcdctl/command/member_commands.go +++ b/etcdctl/command/member_commands.go @@ -34,7 +34,14 @@ func NewMemberCommand() cli.Command { } func mustNewMembersAPI(c *cli.Context) client.MembersAPI { - m...
etcdctl: wire up --peers for member commands
etcd-io_etcd
train
0dd087cdce9aa786436b4fcc8b1a1151de704d6a
diff --git a/lib/sprockets.rb b/lib/sprockets.rb index <HASH>..<HASH> 100644 --- a/lib/sprockets.rb +++ b/lib/sprockets.rb @@ -46,7 +46,7 @@ module Sprockets @mime_exts = {}.freeze @encodings = {}.freeze @engines = {}.freeze - @engine_extensions = {}.freeze + @engine_mime_types = {}...
Track engine mime types instead of extensions
rails_sprockets
train
23ef563b75a2d8dbe61ff2d460d8ae4ce72da820
diff --git a/lxd/storage/drivers/driver_zfs_utils.go b/lxd/storage/drivers/driver_zfs_utils.go index <HASH>..<HASH> 100644 --- a/lxd/storage/drivers/driver_zfs_utils.go +++ b/lxd/storage/drivers/driver_zfs_utils.go @@ -55,7 +55,7 @@ func (d *zfs) createDataset(dataset string, options ...string) error { } func (d *z...
lxd/storage/drivers: MinBlockBoundary usage
lxc_lxd
train
31fc13714f72d19dabdcc467fc37a65c741c6a1f
diff --git a/src/Codeception/Module/Laravel4.php b/src/Codeception/Module/Laravel4.php index <HASH>..<HASH> 100644 --- a/src/Codeception/Module/Laravel4.php +++ b/src/Codeception/Module/Laravel4.php @@ -140,5 +140,32 @@ class Laravel4 extends \Codeception\Util\Framework { { $this->kernel['auth']->driver($driver)->...
Return an instance of a class from the IoC Container
Codeception_Codeception
train
27b139bc752bfa19b46b1ae9d2ecdce0661c25b4
diff --git a/core/Object.php b/core/Object.php index <HASH>..<HASH> 100755 --- a/core/Object.php +++ b/core/Object.php @@ -470,12 +470,21 @@ abstract class Object { } /** - * Return TRUE if a class has a specified extension - * - * @param string $requiredExtension the class name of the extension to check for. ...
Add backwards compatibility for has_extension
silverstripe_silverstripe-framework
train
786a3a55a2d5973e4d4a8e72230774f0f40d3f0b
diff --git a/src/main/java/io/airlift/slice/XxHash64.java b/src/main/java/io/airlift/slice/XxHash64.java index <HASH>..<HASH> 100644 --- a/src/main/java/io/airlift/slice/XxHash64.java +++ b/src/main/java/io/airlift/slice/XxHash64.java @@ -85,16 +85,9 @@ public class XxHash64 hash = rotateLeft(v1, 1) + ro...
More simplification of xxh<I>
airlift_slice
train
c5142344a8fef4f5969141056b79e505b644e9a6
diff --git a/blockstack/lib/storage/crawl.py b/blockstack/lib/storage/crawl.py index <HASH>..<HASH> 100644 --- a/blockstack/lib/storage/crawl.py +++ b/blockstack/lib/storage/crawl.py @@ -86,55 +86,22 @@ def get_cached_zonefile( zonefile_hash, zonefile_dir=None ): return None -def get_zonefile_data_from_sto...
remove all need to open the name database, so the atlas logic no longer shares the db with the blockchain indexer
blockstack_blockstack-core
train
0e2cd5013f29cf18eef124e2061929c7cdb2df25
diff --git a/werkzeug/_internal.py b/werkzeug/_internal.py index <HASH>..<HASH> 100644 --- a/werkzeug/_internal.py +++ b/werkzeug/_internal.py @@ -11,7 +11,6 @@ import re import string import inspect -from time import gmtime from weakref import WeakKeyDictionary from datetime import datetime, date @@ -212,23 +21...
Moved a function out of _internal
pallets_werkzeug
train
affe2671c0b3161e639b78fc8ceaff7c08a3a56f
diff --git a/channel.go b/channel.go index <HASH>..<HASH> 100644 --- a/channel.go +++ b/channel.go @@ -708,11 +708,53 @@ func (me *Channel) Get(queueName string, noAck bool) (msg *Delivery, ok bool, er return nil, false, ErrBadProtocol } +func (me *Channel) TxSelect() (err error) { + if err = me.send(&txSelect{});...
Implement tx class of select/commit/rollback Closes #<I>
streadway_amqp
train
923f6f06304087c9368075e25ad58890efc7edb1
diff --git a/src/Router.php b/src/Router.php index <HASH>..<HASH> 100644 --- a/src/Router.php +++ b/src/Router.php @@ -133,9 +133,7 @@ class Router implements StageInterface * Setup (part of) a URL for catching. The chain is called on match and * before control is delegated. * - * @param string|nu...
actually, this is ridiculous. $url is required, period. handle your errors elsewhere...
monolyth-php_reroute
train
05d86ea8f6e30456949f612cf68cf4a27ce8c9c5
diff --git a/index/store/boltdb/store.go b/index/store/boltdb/store.go index <HASH>..<HASH> 100644 --- a/index/store/boltdb/store.go +++ b/index/store/boltdb/store.go @@ -74,6 +74,12 @@ func New(mo store.MergeOperator, config map[string]interface{}) (store.KVStore, bo.ReadOnly = ro } + if initialMmapSize, ok :=...
add support for configuring the boltdb initialMmapSize option (#<I>) Without this option, sometimes committing a write Tx will block until all ongoing read Txs finish. If your application supports running long searches, this may result in unacceptable delays to indexing the data. By setting this value to a very...
blevesearch_bleve
train
e472721316942179a5589560b4eef248316f8f04
diff --git a/model/QueueBroker/RdsQueueBroker.php b/model/QueueBroker/RdsQueueBroker.php index <HASH>..<HASH> 100644 --- a/model/QueueBroker/RdsQueueBroker.php +++ b/model/QueueBroker/RdsQueueBroker.php @@ -111,10 +111,17 @@ class RdsQueueBroker extends AbstractQueueBroker /** @var Schema $schema */ $...
Work around the table alter for task queue, with drop and create.
oat-sa_extension-tao-task-queue
train
69edc0d32505026762dffbdb4fe1ba00a85f5db2
diff --git a/src/LdapTools/Query/Builder/ADFilterBuilder.php b/src/LdapTools/Query/Builder/ADFilterBuilder.php index <HASH>..<HASH> 100644 --- a/src/LdapTools/Query/Builder/ADFilterBuilder.php +++ b/src/LdapTools/Query/Builder/ADFilterBuilder.php @@ -37,6 +37,7 @@ class ADFilterBuilder extends FilterBuilder /** ...
Deprecate builder functions now handled by attributes.
ldaptools_ldaptools
train
afbf1d19cd28a65769ff581ac7f43f2b81c956f3
diff --git a/cukedoctor-main/src/test/java/com/github/cukedoctor/CukedoctorMainTest.java b/cukedoctor-main/src/test/java/com/github/cukedoctor/CukedoctorMainTest.java index <HASH>..<HASH> 100644 --- a/cukedoctor-main/src/test/java/com/github/cukedoctor/CukedoctorMainTest.java +++ b/cukedoctor-main/src/test/java/com/git...
refs #<I> adds test to the new option to restrict search paths
rmpestano_cukedoctor
train
7f90c3e5cc623b4d8004fef90092ffd97b47f9dd
diff --git a/lib/riddle/client.rb b/lib/riddle/client.rb index <HASH>..<HASH> 100644 --- a/lib/riddle/client.rb +++ b/lib/riddle/client.rb @@ -435,14 +435,23 @@ module Riddle def open_socket raise "Already Connected" unless @socket.nil? - if @timeout == 0 - @socket = initialise_connectio...
Retry on connection issues, but eventually raise a Riddle exception.
pat_riddle
train
afddc275fa5582a94d51e11c5407b70a04136684
diff --git a/translator/src/main/java/com/google/devtools/j2objc/gen/StatementGenerator.java b/translator/src/main/java/com/google/devtools/j2objc/gen/StatementGenerator.java index <HASH>..<HASH> 100644 --- a/translator/src/main/java/com/google/devtools/j2objc/gen/StatementGenerator.java +++ b/translator/src/main/java/...
Issue <I>: fixed string case statements when string is a constant rather than literal.
google_j2objc
train
b43d89ead37a0f8fb5ba417127932f32f796a28f
diff --git a/lib/puppet_library/forge/git_repository.rb b/lib/puppet_library/forge/git_repository.rb index <HASH>..<HASH> 100644 --- a/lib/puppet_library/forge/git_repository.rb +++ b/lib/puppet_library/forge/git_repository.rb @@ -78,8 +78,8 @@ module PuppetLibrary::Forge metadata = modulefile_for(version)...
Don't change directories when interacting with Git Problems occur when changing directories on multiple threads.
drrb_puppet-library
train
22a0a832a5ab49875346bffb930d146db81dc429
diff --git a/web/concrete/libraries/view.php b/web/concrete/libraries/view.php index <HASH>..<HASH> 100644 --- a/web/concrete/libraries/view.php +++ b/web/concrete/libraries/view.php @@ -733,7 +733,21 @@ defined('C5_EXECUTE') or die("Access Denied."); if ($view instanceof Page) { $_pageBlocks = $view->getBlo...
When a page is cached still dispatch the render events and set the correct Content-Type header Former-commit-id: <I>faec<I>ea<I>c<I>ce<I>b<I>a1d<I>ed8
concrete5_concrete5
train
c5e5a79b6ced358a4bd103df996b2936587109af
diff --git a/iopipe/mock_system.py b/iopipe/mock_system.py index <HASH>..<HASH> 100644 --- a/iopipe/mock_system.py +++ b/iopipe/mock_system.py @@ -20,6 +20,7 @@ def read_meminfo(): 'MemFree': random.randint(0, 999999999), 'MemAvailable': random.randint(0, 999999999), 'HugePages_Total': random...
Use peak memory usage for used memory metric (#<I>) Closes #<I>
iopipe_iopipe-python
train
5d260c0dc2bee9937db299a59453b1f35487c0a0
diff --git a/PPI/Crud.php b/PPI/Crud.php index <HASH>..<HASH> 100644 --- a/PPI/Crud.php +++ b/PPI/Crud.php @@ -3,22 +3,51 @@ * @author Paul Dragoonis <dragoonis@php.net> * @license http://opensource.org/licenses/mit-license.php MIT * @package CRUD + * @link http://www.ppi.io */ -class PPI_Crud { +na...
Adding the converter to create PPI\Form elements and their rules into a 'formstructure' which can be manipulated and traversed
ppi_framework
train
43156b15025c6c17800e1224c2a591bed4af0b36
diff --git a/app/src/js/.eslintrc.js b/app/src/js/.eslintrc.js index <HASH>..<HASH> 100644 --- a/app/src/js/.eslintrc.js +++ b/app/src/js/.eslintrc.js @@ -30,6 +30,6 @@ module.exports = { "no-new": "error", "no-extra-parens": "off", "no-undef": "error", - "no-unused-vars": "error" + ...
Allow "Bolt" and "init" as exported variables
bolt_bolt
train
aa1c9ed31bf7db66ddbca587b995ecc521b27190
diff --git a/panoptes_client/panoptes.py b/panoptes_client/panoptes.py index <HASH>..<HASH> 100644 --- a/panoptes_client/panoptes.py +++ b/panoptes_client/panoptes.py @@ -94,6 +94,7 @@ class Panoptes(object): redirect_url=None, username=None, password=None, + login=None, admin...
Add authentication method selection Panoptes.connect accepts a `login` argument that determines how the Panoptes object will try to get username and password variables to authenticate with Zooniverse.org. Currently supports `interactive` or None. Passing `interactive` will prompt the user to enter their username and ...
zooniverse_panoptes-python-client
train
27b7bf6353c46c4c0252bff2703dd4168c5a911d
diff --git a/fontbakery-check-ttf.py b/fontbakery-check-ttf.py index <HASH>..<HASH> 100755 --- a/fontbakery-check-ttf.py +++ b/fontbakery-check-ttf.py @@ -3898,6 +3898,49 @@ def check_regression_v_number_increased(fb, new_font, old_font, f): " old version %s") % (new_v_number, old_v_number)) +def glyphs...
check-ttf: Glyph structure regression check. If the family exists on fonts.google.com, make sure each glyph structure has not changed too drastically
googlefonts_fontbakery
train
30cfdc29edc7415f7d63be108f3312389c2df202
diff --git a/tools/tinytest-codegen.py b/tools/tinytest-codegen.py index <HASH>..<HASH> 100755 --- a/tools/tinytest-codegen.py +++ b/tools/tinytest-codegen.py @@ -50,7 +50,7 @@ test_dirs = ('basics', 'micropython', 'float', 'extmod', 'inlineasm') # 'import' exclude_tests = ( 'float/float2int_doubleprec.py', # req...
tools/tinytest-codegen: Blacklist recently added uheapq_timeq test (qemu-arm).
micropython_micropython
train
02908c3a2b1535a72753232b92cacb2d970bd83d
diff --git a/scs_core/osio/config/project_topic.py b/scs_core/osio/config/project_topic.py index <HASH>..<HASH> 100644 --- a/scs_core/osio/config/project_topic.py +++ b/scs_core/osio/config/project_topic.py @@ -90,12 +90,19 @@ class ProjectTopic(JSONable): ('CO', 'SO2', 'H2S', 'VOC'): ...
Added test load to ProjectTopic.
south-coast-science_scs_core
train
e4f9ec9ee5991916464f28c280fa7df933e19880
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## Unreleased + +- Un-deprecated `Firebase\Auth\Token\Domain\Generator`, `Firebase\Auth\Token\Domain\Verifier` and + `\Firebase\Auth\Token\Domain\KeyStore` + ## 1.15.0 - 2021-04-...
Un-deprecate interfaces and implementations
kreait_firebase-tokens-php
train
e430c1141c32a98f0b53d5ee9a02d4e0388fffa7
diff --git a/h2o-core/src/main/java/water/fvec/RollupStats.java b/h2o-core/src/main/java/water/fvec/RollupStats.java index <HASH>..<HASH> 100644 --- a/h2o-core/src/main/java/water/fvec/RollupStats.java +++ b/h2o-core/src/main/java/water/fvec/RollupStats.java @@ -185,10 +185,7 @@ class RollupStats extends Iced { do...
Reverted rollups stats mean reduction.
h2oai_h2o-3
train
322488e0dd5f409a641eefacba9787c517877008
diff --git a/test/test_email.rb b/test/test_email.rb index <HASH>..<HASH> 100644 --- a/test/test_email.rb +++ b/test/test_email.rb @@ -10,9 +10,11 @@ class TestEmail < Test::Unit::TestCase God::Contacts::Email.any_instance.expects(:notify_smtp).never God::Contacts::Email.any_instance.expects(:notify_sendm...
update sendmail code to work with current master
mojombo_god
train
2c15609d909bfc6e5b0aa416bb46a4540291b472
diff --git a/lib/lono_cfn/base.rb b/lib/lono_cfn/base.rb index <HASH>..<HASH> 100644 --- a/lib/lono_cfn/base.rb +++ b/lib/lono_cfn/base.rb @@ -37,7 +37,7 @@ module LonoCfn generator = LonoParams::Generator.new(@stack_name, project_root: @project_root, path: @params_path, - allow_no_file:...
be verbose about generating lono params
tongueroo_lono-cfn
train
ed7e2518b732049a6fb0ca6cf74a7ffe8eb54ff3
diff --git a/pyoko/db/connection.py b/pyoko/db/connection.py index <HASH>..<HASH> 100644 --- a/pyoko/db/connection.py +++ b/pyoko/db/connection.py @@ -18,6 +18,5 @@ from pyoko.conf import settings client = riak.RiakClient(protocol=settings.RIAK_PROTOCOL, - host=settings.RIAK_SERVER, - ...
more cleanups and a bit more docs
zetaops_pyoko
train
31fad33758cde50cf301d8fb80d667d222303a23
diff --git a/large_output_test.py b/large_output_test.py index <HASH>..<HASH> 100644 --- a/large_output_test.py +++ b/large_output_test.py @@ -15,7 +15,7 @@ with open(new_file, 'w') as _file: s = surrealism.getsentence() _string = str(s) + "\n" - _file.writelines(bytes(_string, 'utf-8')) + ...
Python 3 unicode errors are annoying.
Morrolan_surrealism
train
1b8a3c5673b7c27133d948a2f7cdf2fddbdff3df
diff --git a/core/src/main/java/org/springframework/security/config/HttpSecurityBeanDefinitionParser.java b/core/src/main/java/org/springframework/security/config/HttpSecurityBeanDefinitionParser.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/springframework/security/config/HttpSecurityBeanDefinitionPars...
SEC-<I>: Updated session fixation protection namespace support to set session registry on SessionFixationProtectionFilter.
spring-projects_spring-security
train
9a8d07c8eb6bf9491dee0b23e0fcf1326edb96b2
diff --git a/taxtastic/subcommands/taxtable.py b/taxtastic/subcommands/taxtable.py index <HASH>..<HASH> 100644 --- a/taxtastic/subcommands/taxtable.py +++ b/taxtastic/subcommands/taxtable.py @@ -162,8 +162,13 @@ def action(args): taxtable.update(dict(tax_rows)) all_ranks |= set(ranks) + # guppy r...
fixes for guppy - set tax_id == parent_id == 1 for root node - fix field order in taxtable
fhcrc_taxtastic
train
eceeb596325fef51181325fd68827f35733cbc06
diff --git a/test/functional/conftest.py b/test/functional/conftest.py index <HASH>..<HASH> 100644 --- a/test/functional/conftest.py +++ b/test/functional/conftest.py @@ -143,7 +143,9 @@ def namespace(kubeconfig): @pytest.fixture() def object_name(): - name = 'test-{}'.format(uuid.uuid4()) + # v1.3 services c...
update name generation to work with <I> services
openshift_openshift-restclient-python
train
966c2ac6069c1f16d82c264a7694bdb0f7389bae
diff --git a/media/boom/js/boom.core.js b/media/boom/js/boom.core.js index <HASH>..<HASH> 100755 --- a/media/boom/js/boom.core.js +++ b/media/boom/js/boom.core.js @@ -492,7 +492,7 @@ $.fn.sload = function(url, successCallback) { var self = this; - $.ajax({ + return $.ajax({ type: 'GET', url: url, success...
changing the definition of the sload() function.
boomcms_boom-core
train
d3e49e0465f37e6fb45adf5563ce705ef4374d55
diff --git a/php/WP_CLI/Runner.php b/php/WP_CLI/Runner.php index <HASH>..<HASH> 100644 --- a/php/WP_CLI/Runner.php +++ b/php/WP_CLI/Runner.php @@ -97,7 +97,7 @@ class Runner { } } - private static function set_url( $assoc_args ) { + private static function guess_url( $assoc_args ) { if ( isset( $assoc_args['b...
fake $current_site and $current_blog globals
wp-cli_extension-command
train
bedb9d0697ea7558c4524027529004ae225dc723
diff --git a/addon/components/models-table/row.js b/addon/components/models-table/row.js index <HASH>..<HASH> 100644 --- a/addon/components/models-table/row.js +++ b/addon/components/models-table/row.js @@ -18,7 +18,7 @@ import layout from '../../templates/components/models-table/row'; * <Body.Row @record={{r...
Update row.js (#<I>) Fixing typo, the closing tag should be for body not header
onechiporenko_ember-models-table
train
0f40e9caa135dd2aa9309cce3b41b97db6a7be20
diff --git a/benchexec/tools/smack.py b/benchexec/tools/smack.py index <HASH>..<HASH> 100644 --- a/benchexec/tools/smack.py +++ b/benchexec/tools/smack.py @@ -57,7 +57,7 @@ class Tool(benchexec.tools.template.BaseTool): Sets the name for SMACK, which gets displayed in the "Tool" row in BenchExec table...
Updated SMACK to SMACK+Corral as our name
sosy-lab_benchexec
train
bdeda562d71a080fedbd7d29f29fa0246362eac9
diff --git a/test/test_beanstalkd.rb b/test/test_beanstalkd.rb index <HASH>..<HASH> 100644 --- a/test/test_beanstalkd.rb +++ b/test/test_beanstalkd.rb @@ -15,6 +15,8 @@ class BeanstalkTests < TestBase config = @config['iron_mq'] @host = "#{config['host'] || "mq-aws-us-east-1.iron.io"}:#{config['beanstalkd_por...
Properly skipping rackspace beanstalk tests.
iron-io_iron_mq_ruby
train
0ad1e446535f6c3822dcc1e244467f8e63e56828
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -77,7 +77,7 @@ setup( ] }, install_requires=[ - "pyblish-base>=1.4" + "pyblish-base==1.4.2" ], entry_points={}, )
Lock supported version of pyblish-base
pyblish_pyblish-qml
train
9e9a1435792f24f4a0d35eb41458c2df0c082a30
diff --git a/src/Discord/Parts/Guild/Guild.php b/src/Discord/Parts/Guild/Guild.php index <HASH>..<HASH> 100644 --- a/src/Discord/Parts/Guild/Guild.php +++ b/src/Discord/Parts/Guild/Guild.php @@ -553,7 +553,7 @@ class Guild extends Part $options['before'] = $options['before']->id; } - $end...
Added missing guild id bind in endpoint (#<I>) Fix #<I> on method getAuditLog
teamreflex_DiscordPHP
train
6d2a77c5133fbdfb4576b4dc7e8c42397123474f
diff --git a/js/editors/libraries.js b/js/editors/libraries.js index <HASH>..<HASH> 100644 --- a/js/editors/libraries.js +++ b/js/editors/libraries.js @@ -50,8 +50,8 @@ Libraries.prototype.init = function () { }, jqueryui : { text: 'jQuery UI', - requires: 'http://ajax.googleapis.com/ajax/libs/jqu...
Merged jzaefferer's changes - fixed that damn stray </link> tag
jsbin_jsbin
train
f8eaea6586767dfc8934ddb5f216b4e34022e832
diff --git a/concrete/elements/files/move_to_folder.php b/concrete/elements/files/move_to_folder.php index <HASH>..<HASH> 100644 --- a/concrete/elements/files/move_to_folder.php +++ b/concrete/elements/files/move_to_folder.php @@ -18,7 +18,7 @@ $folders = $rootfolder->getHierarchicalNodesOfType('file_folder', 1, true, ...
Avoid accessing an undefined var in move_to_folder element
concrete5_concrete5
train
7a1bc3bef1259e5ebce7ea2c9c74df0fd34f601d
diff --git a/atomicpuppy/__init__.py b/atomicpuppy/__init__.py index <HASH>..<HASH> 100644 --- a/atomicpuppy/__init__.py +++ b/atomicpuppy/__init__.py @@ -17,8 +17,9 @@ class AtomicPuppy: running = False def __init__(self, cfg_file, callback, loop=None): - with open(cfg_file) as file: - se...
Allowing atomicpuppy to read config both from dict and a file path
madedotcom_atomicpuppy
train
2ea6a53ff28db34fe2961d843da02b8c49c5554f
diff --git a/autodispose-android-archcomponents/src/androidTest/java/com/uber/autodispose/android/archcomponents/AndroidLifecycleScopeProviderTest.java b/autodispose-android-archcomponents/src/androidTest/java/com/uber/autodispose/android/archcomponents/AndroidLifecycleScopeProviderTest.java index <HASH>..<HASH> 100644...
Fall through to destroy handling in stop (#<I>) Talked with Yigit from the UI toolkit team and he recommends failing hard in onDestroy too
uber_AutoDispose
train
d63333b1f193a39e8cac6c837a66aa51f1bb611e
diff --git a/src/Aindong/Pluggables/PluggablesServiceProvider.php b/src/Aindong/Pluggables/PluggablesServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/Aindong/Pluggables/PluggablesServiceProvider.php +++ b/src/Aindong/Pluggables/PluggablesServiceProvider.php @@ -127,7 +127,8 @@ class PluggablesServiceProvider e...
Updated the ioc container
aindong_pluggables
train
7275671a60153cc8eb59b0787d6418cb1ddce102
diff --git a/mod/glossary/lib.php b/mod/glossary/lib.php index <HASH>..<HASH> 100644 --- a/mod/glossary/lib.php +++ b/mod/glossary/lib.php @@ -589,10 +589,46 @@ function glossary_print_entry_definition($entry) { if ( $tags ) { $definition = str_replace($tags,array_keys($tags),$definition); } - + ...
Now, terms being defined in URLs aren't broken by the <nolink> tag. Bug <I> (<URL>) Merged from MOODLE_<I>_STABLE
moodle_moodle
train
1febe9d8257b4a89a7584be4608cee77ac955552
diff --git a/mod/quiz/questiontypes/numerical/questiontype.php b/mod/quiz/questiontypes/numerical/questiontype.php index <HASH>..<HASH> 100644 --- a/mod/quiz/questiontypes/numerical/questiontype.php +++ b/mod/quiz/questiontypes/numerical/questiontype.php @@ -96,10 +96,6 @@ class quiz_numerical_qtype extends quiz_shorta...
Fixes for bigs <I> and <I>.
moodle_moodle
train
8e031f425b1c53edde6996e2f59b884028f1b9db
diff --git a/lib/chef/knife/index_rebuild.rb b/lib/chef/knife/index_rebuild.rb index <HASH>..<HASH> 100644 --- a/lib/chef/knife/index_rebuild.rb +++ b/lib/chef/knife/index_rebuild.rb @@ -73,13 +73,7 @@ class Chef end def nag - unless config[:yes] - yea_or_nay = ask_question("This operati...
Use ui.confirm in nag instead of custom logic Removed tests for #nag, since now that amounts to testing ui.confirm.
chef_chef
train
b6e9d7dd9cd0ccc55132a5c96f726ac9f674026a
diff --git a/chisel/app.py b/chisel/app.py index <HASH>..<HASH> 100755 --- a/chisel/app.py +++ b/chisel/app.py @@ -51,7 +51,6 @@ class Application(object): self.alwaysReload = False self.__logStream = logStream self.__threadStates = {} - self.__threadStateDefault = self.ThreadState(Non...
Add setters for a few application properties.
craigahobbs_chisel
train
b64327bb58139f1e1f770b16492968423f011eab
diff --git a/docs/index.rst b/docs/index.rst index <HASH>..<HASH> 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -70,7 +70,7 @@ and in the documentation. # stable channel of the Charm Store. ubuntu_app = await model.deploy( 'ubuntu-0', - service_name='ubuntu', + applicati...
s/service_name/application_name/g
juju_python-libjuju
train
4c63f9bb30172911e5a4fc037f96c14260106e22
diff --git a/app/app.go b/app/app.go index <HASH>..<HASH> 100644 --- a/app/app.go +++ b/app/app.go @@ -3,8 +3,8 @@ package app import ( "github.com/Sirupsen/logrus" "github.com/codegangsta/cli" - "github.com/docker/libcompose/app" - "github.com/docker/libcompose/command" + "github.com/docker/libcompose/cli/app" + ...
Update for new package structure in libcompose
rancher_rancher-compose
train
a68e0848dc6927316e3e14a95031958d1ec35b94
diff --git a/test/e2e/core.go b/test/e2e/core.go index <HASH>..<HASH> 100644 --- a/test/e2e/core.go +++ b/test/e2e/core.go @@ -38,7 +38,7 @@ func CoreDump(dir string) { provider := testContext.Provider // requires ssh - if !providerIs("gce", "gke") { + if !providerIs(providersWithSSH...) { fmt.Printf("Skipping...
Factor out providers which support SSH in e2e tests
kubernetes_kubernetes
train
e9007a25974536fde095b3440a75a8d1f0c520e0
diff --git a/commons/src/main/java/org/infinispan/commons/equivalence/EquivalentHashMap.java b/commons/src/main/java/org/infinispan/commons/equivalence/EquivalentHashMap.java index <HASH>..<HASH> 100644 --- a/commons/src/main/java/org/infinispan/commons/equivalence/EquivalentHashMap.java +++ b/commons/src/main/java/org...
ISPN-<I> LRU eviction algorithm does not evict the eldest entry * Fixed issue where access queue wasn't updated properly on a put
infinispan_infinispan
train
0dba423a34e6812cd5a0c7e8612155fd8b9e48dc
diff --git a/azure-webapp-maven-plugin/src/main/java/com/microsoft/azure/maven/webapp/ConfigMojo.java b/azure-webapp-maven-plugin/src/main/java/com/microsoft/azure/maven/webapp/ConfigMojo.java index <HASH>..<HASH> 100644 --- a/azure-webapp-maven-plugin/src/main/java/com/microsoft/azure/maven/webapp/ConfigMojo.java +++ ...
Read plugin version from plugin descriptor during webapp config goal
Microsoft_azure-maven-plugins
train
8f612677caba6e2868c5c0d2f0db40487a4e96ce
diff --git a/src/main/java/org/jenetics/util/ArraySeq.java b/src/main/java/org/jenetics/util/ArraySeq.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/jenetics/util/ArraySeq.java +++ b/src/main/java/org/jenetics/util/ArraySeq.java @@ -42,6 +42,7 @@ abstract class ArraySeq<T> implements Seq<T>, Serializable { ...
Improve ArraySeq.checkIndex performance.
jenetics_jenetics
train
5b6ebfeb39c081fa0718d4287dff4c441dfd1272
diff --git a/tinycontent/models.py b/tinycontent/models.py index <HASH>..<HASH> 100644 --- a/tinycontent/models.py +++ b/tinycontent/models.py @@ -1,11 +1,13 @@ from django.db import models +from django.utils.encoding import python_2_unicode_compatible +@python_2_unicode_compatible class TinyContent(models.Model)...
Hopefully make tinycontent work with Python 3 Tests still don't run with Python 3 - waiting on a fix to django-setuptest: <URL>
dominicrodger_django-tinycontent
train
cea3e8db54ee19676c32547ecff76ec1ba734f23
diff --git a/src/Google/Service/Urlshortener.php b/src/Google/Service/Urlshortener.php index <HASH>..<HASH> 100644 --- a/src/Google/Service/Urlshortener.php +++ b/src/Google/Service/Urlshortener.php @@ -23,7 +23,7 @@ * * <p> * For more information about this service, see the API - * <a href="http://code.google.co...
Updated Urlshortener.php This change has been generated by a script that has detected changes in the discovery doc of the API. Check <URL>
googleapis_google-api-php-client
train
aa9828f6cb5d1a31a5e8fa3d12141df713a182d7
diff --git a/src/Provider/TranslationServiceProvider.php b/src/Provider/TranslationServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/Provider/TranslationServiceProvider.php +++ b/src/Provider/TranslationServiceProvider.php @@ -24,34 +24,40 @@ class TranslationServiceProvider implements ServiceProviderInterface ...
Streamlined fallback loading, load all english resources as fallback
bolt_bolt
train
9b9776e88f7abb59cebac8733c04cccf6eee1c60
diff --git a/TODO b/TODO index <HASH>..<HASH> 100644 --- a/TODO +++ b/TODO @@ -67,15 +67,7 @@ Refs ----- * When adjusting the reference of a symbolic reference, the ref log might need adjustments as well. This is not critical, but would make things totally 'right' -* Reference Objects should be able to set the co...
Refs can now set the reference they are pointing to in a controlled fashion by writing their ref file directly
gitpython-developers_GitPython
train
786af9e820ad24e862fa0230d62c7e63b0fdabeb
diff --git a/lib/plugins/tag/vimeo.js b/lib/plugins/tag/vimeo.js index <HASH>..<HASH> 100644 --- a/lib/plugins/tag/vimeo.js +++ b/lib/plugins/tag/vimeo.js @@ -8,5 +8,5 @@ module.exports = function(args, content){ var id = args[0]; - return '<div class="video-container"><iframe src="http://player.vimeo.com/video/...
Removed "height" and "width" attributes of youtube/vimeo tag plugin #<I>
hexojs_hexo
train
4a0ffc98509f3fafc8d43c8bd530db27e8ec6c9b
diff --git a/para-server/src/main/java/com/erudika/para/i18n/LanguageUtils.java b/para-server/src/main/java/com/erudika/para/i18n/LanguageUtils.java index <HASH>..<HASH> 100644 --- a/para-server/src/main/java/com/erudika/para/i18n/LanguageUtils.java +++ b/para-server/src/main/java/com/erudika/para/i18n/LanguageUtils.ja...
increased number of allowed untranslated strings in LanguageUtils to 5
Erudika_para
train
7ce980a7a2f45a6b5e5016d6aaa2d9a5ca60a042
diff --git a/src/VR.js b/src/VR.js index <HASH>..<HASH> 100644 --- a/src/VR.js +++ b/src/VR.js @@ -940,7 +940,7 @@ class FakeVRDisplay extends VRDisplay { const gamepad = this.gamepads[i]; localVector.copy(this.position) .add( - localVector2.set(-0.3 + i*0.6, -0.3, 0) + localVec...
Update FakeVRDisplay controller fake z distance
exokitxr_exokit
train
62056999876c042e6b26b9b02a3b33d3cb8ff398
diff --git a/bigtext.js b/bigtext.js index <HASH>..<HASH> 100644 --- a/bigtext.js +++ b/bigtext.js @@ -52,7 +52,7 @@ // https://github.com/lrbabe/jquery-smartresize/ eventName = 'smartresize.' + eventName; } else if(_.debounce) { - resizeFunction = _.debounce(resizeFunctio...
semicolons and spaces, not tabs
zachleat_BigText
train
bd224e4df2a1ca3122e0d6afe6bdf70d25bed584
diff --git a/inc/functions-utility.php b/inc/functions-utility.php index <HASH>..<HASH> 100644 --- a/inc/functions-utility.php +++ b/inc/functions-utility.php @@ -214,7 +214,21 @@ function hybrid_get_menu_name( $location ) { * @return string */ function hybrid_get_min_suffix() { - return defined( 'SCRIPT_DEBUG' ) ...
Adds the `hybrid_is_script_debug()` utility function for quickly checking if the core WP `SCRIPT_DEBUG` constant is set to `true`.
justintadlock_hybrid-core
train
5f44e93185fdb832b4cff533ae61360970caeae2
diff --git a/htmresearch/frameworks/nlp/classification_model.py b/htmresearch/frameworks/nlp/classification_model.py index <HASH>..<HASH> 100644 --- a/htmresearch/frameworks/nlp/classification_model.py +++ b/htmresearch/frameworks/nlp/classification_model.py @@ -47,17 +47,12 @@ class ClassificationModel(object): # T...
modify models to include sdr scaling, removing n and w member variables
numenta_htmresearch
train