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
f8af711896dd4c1f0fd9fbbdb988250f20ee8429
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -14,7 +14,7 @@ module.exports = function(grunt) { // Project configuration. grunt.initConfig({ nodeunit: { - all: ['tests/**.js', '!tests/fixtures/**'] + all: ['tests/**.js', '!tests/fixtur...
Exclude helpers/ from nodeunit
SBoudrias_file-utils
train
js
5a9fd24253f4a14c8377f6e60651916941facf6d
diff --git a/lib/gcli/system.js b/lib/gcli/system.js index <HASH>..<HASH> 100644 --- a/lib/gcli/system.js +++ b/lib/gcli/system.js @@ -160,11 +160,11 @@ exports.createSystem = function(options) { names = [ names ]; } names.forEach(function(name) { - if (options.loader == null) { - ...
Don't do computed requires, webpack just imports everything
joewalker_gcli
train
js
f8a4f1726a47dfba735d0a9a0e2492b2b878153e
diff --git a/tests/test_hexary_trie.py b/tests/test_hexary_trie.py index <HASH>..<HASH> 100644 --- a/tests/test_hexary_trie.py +++ b/tests/test_hexary_trie.py @@ -221,6 +221,22 @@ def test_hexary_trie_at_root_lookups(): assert key not in snapshot +def test_hexary_trie_empty_squash_does_not_read_roo...
Test that no-op squash_changes reads no nodes
ethereum_py-trie
train
py
b927788480e99c526edca2a049805f21edd4b211
diff --git a/test/helper/arg_test.rb b/test/helper/arg_test.rb index <HASH>..<HASH> 100644 --- a/test/helper/arg_test.rb +++ b/test/helper/arg_test.rb @@ -72,4 +72,20 @@ class HelperArgTest < Test::Unit::TestCase end end end + + context "The object_to_inptr method" do + context "when called with an o...
Specify object_to_inptr as far as known.
mvz_gir_ffi
train
rb
bf9caf8feb167aedf045008012ae721bcc5cfc78
diff --git a/src/java/org/apache/cassandra/db/CommitLog.java b/src/java/org/apache/cassandra/db/CommitLog.java index <HASH>..<HASH> 100644 --- a/src/java/org/apache/cassandra/db/CommitLog.java +++ b/src/java/org/apache/cassandra/db/CommitLog.java @@ -270,8 +270,17 @@ public class CommitLog /* read the logs...
handle incomplete CL entries on recover patch by jbellis; reviewed by Jun Rao for CASSANDRA-<I> git-svn-id: <URL>
Stratio_stratio-cassandra
train
java
9aef85e69c47ed1cfb45f77ea1f5f4c04615041a
diff --git a/lib/textbringer/input_methods/t_code_input_method.rb b/lib/textbringer/input_methods/t_code_input_method.rb index <HASH>..<HASH> 100644 --- a/lib/textbringer/input_methods/t_code_input_method.rb +++ b/lib/textbringer/input_methods/t_code_input_method.rb @@ -13,6 +13,11 @@ module Textbringer def initia...
Initialize instance variables to avoid warnings
shugo_textbringer
train
rb
b5fd59e2fe9abbd15b250b0d0a842370a3d7d87b
diff --git a/backbone.js b/backbone.js index <HASH>..<HASH> 100644 --- a/backbone.js +++ b/backbone.js @@ -676,8 +676,8 @@ _.result(this.collection, 'url') || urlError(); if (this.isNew()) return base; - var id = this.id || this.attributes[this.idAttribute]; - return base.replace(/([^...
Grab id using #get in #url Also, use the same slash normalizing as Router and History
jashkenas_backbone
train
js
566f082eb40359dedc9da37fbbe59d3ef0596170
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,8 @@ REQUIREMENTS = [ "sh>=1.11", "xmltodict>=0.10.1", "flake8>=2.5.4", - "Jinja2>=2.8" + "Jinja2>=2.8", + "mock==1.3.0" ]
added mock to rquirements
toros-astro_corral
train
py
cd53c1ebd320937c13bfa75392ec6387dd9d131a
diff --git a/lib/fake_sqs/memory_database.rb b/lib/fake_sqs/memory_database.rb index <HASH>..<HASH> 100644 --- a/lib/fake_sqs/memory_database.rb +++ b/lib/fake_sqs/memory_database.rb @@ -1,4 +1,5 @@ require "forwardable" +require "thread" module FakeSQS class MemoryDatabase @@ -8,7 +9,7 @@ module FakeSQS ...
Use a Mutex to make MemoryDatabase genuinely thread safe. While the "check and raise" boolean method sometimes works, it quickly starts raising errors and spamming the console when run under a modern threaded server like thin or puma. Since Ruby has a reliable, genuine mutex, use it so that instead of tossing away any...
iain_fake_sqs
train
rb
bb817b5ed6368103a9cdeadf65f1bad6c2266b8e
diff --git a/packages/dai-plugin-mcd/src/SavingsService.js b/packages/dai-plugin-mcd/src/SavingsService.js index <HASH>..<HASH> 100644 --- a/packages/dai-plugin-mcd/src/SavingsService.js +++ b/packages/dai-plugin-mcd/src/SavingsService.js @@ -119,10 +119,8 @@ export default class SavingsService extends PublicService { ...
SAVE-<I> return 0 if balance is less than sum
makerdao_dai.js
train
js
70cb270d543815036e9e99acdfa60aaa00facec1
diff --git a/lib/sass/script/list.rb b/lib/sass/script/list.rb index <HASH>..<HASH> 100644 --- a/lib/sass/script/list.rb +++ b/lib/sass/script/list.rb @@ -19,7 +19,7 @@ module Sass::Script # # @param value [Array<Literal>] See \{#value} # @param separator [String] See \{#separator} - def initialize(va...
Don't have a list separator by default. This will force people to think through what the separator should be.
sass_ruby-sass
train
rb
3e7eb3d3206b8835ada1399c9d91213e1a6a53b5
diff --git a/src/components/observables/QResizeObservable.js b/src/components/observables/QResizeObservable.js index <HASH>..<HASH> 100644 --- a/src/components/observables/QResizeObservable.js +++ b/src/components/observables/QResizeObservable.js @@ -34,10 +34,10 @@ export default { }, render (h) { return h(...
fix(QResizeObservable): Use visibility hidden only for IE (#<I>) Hides object border on IE and fixes Firefox
quasarframework_quasar
train
js
da654eb8cd99ac29b73a45cd9ca6cb55f8d6ea66
diff --git a/lib/stagehand/schema/statements.rb b/lib/stagehand/schema/statements.rb index <HASH>..<HASH> 100644 --- a/lib/stagehand/schema/statements.rb +++ b/lib/stagehand/schema/statements.rb @@ -7,7 +7,7 @@ module Stagehand return if options.symbolize_keys[:stagehand] == false return if UNTRACKE...
Fix rake not creating triggers If the test environment used only a single connection, and the rake task was run in that environment, the extended version of create_table would not create triggers because it found that it was migrating the production database (which was also the staging database). Now if there is a sin...
culturecode_stagehand
train
rb
9dbc31d72c256a6a581ae883a9781812cc30280d
diff --git a/tests/test_token_references.py b/tests/test_token_references.py index <HASH>..<HASH> 100644 --- a/tests/test_token_references.py +++ b/tests/test_token_references.py @@ -22,3 +22,26 @@ def test_orphan(): assert orphan.orth_ == 'orphan' assert orphan.pos_ == 'ADJ' assert orphan.head.orth_ == ...
* Add test from NSchrading
explosion_spaCy
train
py
e4db4a07b0e234592115a32d9397707ade63c4bd
diff --git a/src/templates/scripthash/input.js b/src/templates/scripthash/input.js index <HASH>..<HASH> 100644 --- a/src/templates/scripthash/input.js +++ b/src/templates/scripthash/input.js @@ -21,8 +21,8 @@ function check (script, allowIncomplete) { var inputType = bscript.classifyInput(scriptSigChunks, allowInc...
Make sure case with only one value in scriptSig as P2SH ONLY applies if the script is P2WPKH or P2WSH
BitGo_bitgo-utxo-lib
train
js
e564b8dbfa2fba6e6bf521953406628482375bc9
diff --git a/src/Http/Requests/RegisterRequest.php b/src/Http/Requests/RegisterRequest.php index <HASH>..<HASH> 100644 --- a/src/Http/Requests/RegisterRequest.php +++ b/src/Http/Requests/RegisterRequest.php @@ -3,6 +3,7 @@ namespace IntoTheSource\Entrance\Http\Requests; use App\Http\Requests\Request; +use Config; ...
You can now set the minimal length of the passwords
intothesource_laravel-entrance
train
php,php
3762ba25e8e5ed747bafd43288b59d26afb5624e
diff --git a/sandbox/src/test/java/org/acegisecurity/providers/dao/ldap/support/LdapDirInitializer.java b/sandbox/src/test/java/org/acegisecurity/providers/dao/ldap/support/LdapDirInitializer.java index <HASH>..<HASH> 100644 --- a/sandbox/src/test/java/org/acegisecurity/providers/dao/ldap/support/LdapDirInitializer.jav...
Fixed dumb mistake in the DN of the second user object.
spring-projects_spring-security
train
java
3ee65a8eab30d2d86e8db3f681dfc3dbeb9cdec6
diff --git a/Listener/ArticleEventListener.php b/Listener/ArticleEventListener.php index <HASH>..<HASH> 100644 --- a/Listener/ArticleEventListener.php +++ b/Listener/ArticleEventListener.php @@ -13,6 +13,7 @@ use ED\BlogBundle\Event\ArticleAdministrationEvent; use ED\BlogBundle\Event\TaxonomyArrayEvent; use ED\BlogBu...
Decrement articles count from taxonomy on remove article event
EtonDigital_EDBlogBundle
train
php
0ab9de52a1b62ab89390cedd19e5ec4336c627dc
diff --git a/test/tests.js b/test/tests.js index <HASH>..<HASH> 100644 --- a/test/tests.js +++ b/test/tests.js @@ -111,16 +111,28 @@ test('or', (t) => { test('anything', (t) => { const testRegex = VerEx().startOfLine().anything(); - const testString = 'what'; + let testString = 'foo'; + + t.true(testRe...
Improve tests for `anything` and `anythingBut`
VerbalExpressions_JSVerbalExpressions
train
js
f5a2db89fddf65f753b50ff7e77eab47db3b1f23
diff --git a/src/event/event.js b/src/event/event.js index <HASH>..<HASH> 100644 --- a/src/event/event.js +++ b/src/event/event.js @@ -188,9 +188,9 @@ jQuery.event = { // Calculate pageX/Y if missing and clientX/Y available if ( event.pageX == undefined && event.clientX != undefined ) { - var e = document.doc...
Clean up in jQuery.event.fix (#<I>)
jquery_jquery
train
js
4cc478d42edcb5544a6d26bfc45b34e6dc93897b
diff --git a/opbeat/traces.py b/opbeat/traces.py index <HASH>..<HASH> 100644 --- a/opbeat/traces.py +++ b/opbeat/traces.py @@ -253,8 +253,9 @@ class RequestsStore(object): yield return - transaction.begin_trace(signature, kind, extra, leaf) - - yield - - transaction.end_...
Make sure we always close traces.
elastic_apm-agent-python
train
py
d292f360a4c40d55a75da574b974ea9a598bcfcb
diff --git a/sherlock/transient_catalogue_crossmatch.py b/sherlock/transient_catalogue_crossmatch.py index <HASH>..<HASH> 100644 --- a/sherlock/transient_catalogue_crossmatch.py +++ b/sherlock/transient_catalogue_crossmatch.py @@ -96,6 +96,7 @@ class transient_catalogue_crossmatch(): # FOR EACH TRANSIENT SOU...
allowing for search modules with no magnitude filters
thespacedoctor_sherlock
train
py
1acaec8bff4719c46d1fffb303095fb791d6067b
diff --git a/packages/node_modules/pouchdb-core/src/changes.js b/packages/node_modules/pouchdb-core/src/changes.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/pouchdb-core/src/changes.js +++ b/packages/node_modules/pouchdb-core/src/changes.js @@ -65,7 +65,7 @@ function Changes(db, opts, callback) { opt...
(#<I>) - fix typo in changes.js
pouchdb_pouchdb
train
js
4ad831ac851a6e68dbf18b3b395af7a30bcac115
diff --git a/examples/FasterRCNN/train.py b/examples/FasterRCNN/train.py index <HASH>..<HASH> 100755 --- a/examples/FasterRCNN/train.py +++ b/examples/FasterRCNN/train.py @@ -142,12 +142,12 @@ class Model(ModelDesc): fg_inds_wrt_sample = tf.reshape(tf.where(rcnn_labels > 0), [-1]) # fg inds w.r.t all sam...
[FasterRCNN] fix rgb/bgr in visualization (fix #<I>)
tensorpack_tensorpack
train
py
1fd1c2db271d7b68b28b205aad1cc57b282bf938
diff --git a/Listener/PdfPlayerListener.php b/Listener/PdfPlayerListener.php index <HASH>..<HASH> 100644 --- a/Listener/PdfPlayerListener.php +++ b/Listener/PdfPlayerListener.php @@ -18,7 +18,8 @@ class PdfPlayerListener extends ContainerAware array( 'workspace' => $event->getResource()->g...
[PdfPlayerBundle] Displaying breadcrumb.
claroline_Distribution
train
php
657605ee566330698c0bc90931f677c750a77b8b
diff --git a/test_tube/log.py b/test_tube/log.py index <HASH>..<HASH> 100644 --- a/test_tube/log.py +++ b/test_tube/log.py @@ -149,7 +149,7 @@ class Experiment(SummaryWriter): # set the tensorboardx log path to the /tf folder in the exp folder logdir = self.get_tensorboardx_path(self.name, self.vers...
removed tensorboardx scalar writer
williamFalcon_test-tube
train
py
00b66b516b51dd14c7b654a0c7ff0255a0555d40
diff --git a/libraries/lithium/util/Inflector.php b/libraries/lithium/util/Inflector.php index <HASH>..<HASH> 100644 --- a/libraries/lithium/util/Inflector.php +++ b/libraries/lithium/util/Inflector.php @@ -411,11 +411,10 @@ class Inflector { * @return string Human readable version of the word (i.e. `'Red Bike'`). ...
Small optimization in `\util\Inflector::humanize()`.
UnionOfRAD_framework
train
php
fb7800daf76f4ac287d34cc1a960f76845b495c5
diff --git a/normalize/diff.py b/normalize/diff.py index <HASH>..<HASH> 100644 --- a/normalize/diff.py +++ b/normalize/diff.py @@ -484,6 +484,14 @@ def collection_generator(collection): elif hasattr(collection, "itertuples"): return collection.itertuples() + elif hasattr(collection, "keys"): + + ...
Be more pythonic when interpreting things as collections This collection duck-typing protocol is different to what python does, eg in the dict() constructor; do something similar to that, by detecting 'keys' and also 'items', not just 'iteritems'.
hearsaycorp_normalize
train
py
81e3fd04e964ebeb90456d24afdbccbb06e669b2
diff --git a/javascript/LeftAndMain.EditForm.js b/javascript/LeftAndMain.EditForm.js index <HASH>..<HASH> 100644 --- a/javascript/LeftAndMain.EditForm.js +++ b/javascript/LeftAndMain.EditForm.js @@ -160,12 +160,12 @@ /** * @param {String} url - * @param {Function} callback (Optional) + * @param {Funct...
MINOR Triggering LeftAndMain.EditForm.js load() callback after loading the response - this makes more sense, as the inserted HTML can be parsed at this point git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@<I> <I>b<I>ca-7a2a-<I>-9d3b-<I>d<I>a<I>a9
silverstripe_silverstripe-siteconfig
train
js
c15046c4545c24c345260ff5fb6b3ca83edbcf33
diff --git a/lib/inventory_refresh/version.rb b/lib/inventory_refresh/version.rb index <HASH>..<HASH> 100644 --- a/lib/inventory_refresh/version.rb +++ b/lib/inventory_refresh/version.rb @@ -1,3 +1,3 @@ module InventoryRefresh - VERSION = "0.3.2".freeze + VERSION = "0.3.3".freeze end
Release <I> Changes: * Relax bunder requirements to pass travis
ManageIQ_inventory_refresh
train
rb
3ecbe1fb7f9574116cad18b830411feb74065178
diff --git a/lib/fit4ruby/RecordAggregator.rb b/lib/fit4ruby/RecordAggregator.rb index <HASH>..<HASH> 100644 --- a/lib/fit4ruby/RecordAggregator.rb +++ b/lib/fit4ruby/RecordAggregator.rb @@ -162,9 +162,10 @@ module Fit4Ruby end end - @avg_stance_time = total_stance_time / stance_time_count - ...
Fix: Don't crash when stance_time is not included in records.
scrapper_fit4ruby
train
rb
feb2ded5a69268642d763560ea18412238d9b83f
diff --git a/src/javascript/ZeroClipboard/client.js b/src/javascript/ZeroClipboard/client.js index <HASH>..<HASH> 100644 --- a/src/javascript/ZeroClipboard/client.js +++ b/src/javascript/ZeroClipboard/client.js @@ -15,6 +15,8 @@ ZeroClipboard.Client = function (elem) { self.setCurrent(this); }); + // set cur...
We need this here, or the load function won't fire
zeroclipboard_zeroclipboard
train
js
b811d8bfac0f84b64755c985d0e7b5850ea0ff64
diff --git a/lib/workers.rb b/lib/workers.rb index <HASH>..<HASH> 100644 --- a/lib/workers.rb +++ b/lib/workers.rb @@ -16,26 +16,34 @@ require 'workers/task_group' module Workers def self.pool - return @pool ||= Workers::Pool.new + lock do + return @pool ||= Workers::Pool.new + end end def s...
Imrprove compatibility with fork().
chadrem_workers
train
rb
728557dc4691d0666d0f9c258f94be67af030dd5
diff --git a/packages/nbinteract-core/src/manager.js b/packages/nbinteract-core/src/manager.js index <HASH>..<HASH> 100644 --- a/packages/nbinteract-core/src/manager.js +++ b/packages/nbinteract-core/src/manager.js @@ -77,7 +77,7 @@ export class WidgetManager extends HTMLManager { const model = await util.msgToMod...
Remove top level button properly when widgets render Before, the top-level button would never disappear after widgets render. Now, it disappears properly.
SamLau95_nbinteract
train
js
3c99d8891626f09fae21773d5c233f7b83772c10
diff --git a/allegedb/allegedb/cache.py b/allegedb/allegedb/cache.py index <HASH>..<HASH> 100644 --- a/allegedb/allegedb/cache.py +++ b/allegedb/allegedb/cache.py @@ -385,7 +385,7 @@ class Cache(object): return kc[rev] except HistoryError: pass - kc = FuturistWindow...
Clean up Cache._forward_keycachelike a little
LogicalDash_LiSE
train
py
fd6bd7fd3fa4f2f21a461776d859d3848a25f7ef
diff --git a/legit/scm.py b/legit/scm.py index <HASH>..<HASH> 100644 --- a/legit/scm.py +++ b/legit/scm.py @@ -58,7 +58,7 @@ def repo_check(require_remote=False): def stash_it(sync=False): repo_check() - msg = 'syncing banch' if sync else 'switching branches' + msg = 'syncing branch' if sync else 'switchi...
Fix a typo that appears when syncing a branch
kennethreitz_legit
train
py
4df91fc12f1b4799eb5f7c64f6afd7e56c723ef9
diff --git a/lib/formtastic/inputs/select_input.rb b/lib/formtastic/inputs/select_input.rb index <HASH>..<HASH> 100644 --- a/lib/formtastic/inputs/select_input.rb +++ b/lib/formtastic/inputs/select_input.rb @@ -122,8 +122,8 @@ module Formtastic # <%= f.input :authors, :as => :select, :wrapper_html => { :class =>...
Documentation update: :include_blank option should be passed outside of :input_html option in order to take effect while using f.input :as => :select.
justinfrench_formtastic
train
rb
d62f609f3461ea9c88e17246ffacc466bd22b416
diff --git a/grimoire_elk/ocean/meetup.py b/grimoire_elk/ocean/meetup.py index <HASH>..<HASH> 100644 --- a/grimoire_elk/ocean/meetup.py +++ b/grimoire_elk/ocean/meetup.py @@ -30,3 +30,15 @@ class MeetupOcean(ElasticOcean): def _fix_item(self, item): item["ocean-unique-id"] = item["uuid"] + + @classme...
[ocean][meetup] Add the group meetup as tag so the raw index can store several groups in the same index
chaoss_grimoirelab-elk
train
py
a0b0dfb8b3af574bbe449bfaa79112739f1c464d
diff --git a/test/peers.js b/test/peers.js index <HASH>..<HASH> 100644 --- a/test/peers.js +++ b/test/peers.js @@ -24,8 +24,6 @@ var parallel = require('run-parallel'); var allocCluster = require('./lib/alloc-cluster'); -// clear() - allocCluster.test('add a peer and request', { numPeers: 2 }, function t(cl...
test/peers: harden and cleanup a bit
uber_tchannel-node
train
js
14b80ac4ece1e08b2ac5c3cf5a1a92eda058efa1
diff --git a/src/Providers/EloquentLDAPUserProvider.php b/src/Providers/EloquentLDAPUserProvider.php index <HASH>..<HASH> 100755 --- a/src/Providers/EloquentLDAPUserProvider.php +++ b/src/Providers/EloquentLDAPUserProvider.php @@ -253,7 +253,8 @@ class EloquentLDAPUserProvider implements UserProvider $us...
Corrected validation failure Added username field in order to pass validation when creating new model from LDAP
sroutier_eloquent-ldap
train
php
3ba9f1f6f4e693ced1e2f06f9e573ddc7acc8eb9
diff --git a/django_afip/admin.py b/django_afip/admin.py index <HASH>..<HASH> 100644 --- a/django_afip/admin.py +++ b/django_afip/admin.py @@ -140,18 +140,27 @@ class ReceiptAdmin(admin.ModelAdmin): cae.admin_order_field = 'validation__cae' def create_batch(self, request, queryset): - # TODO: use agr...
Fix non-postgres receipt-validation issue
WhyNotHugo_django-afip
train
py
7be2aa6cb92dfdc3e778b84ef3c1fcf8d2affb17
diff --git a/classes/phpDoctor.php b/classes/phpDoctor.php index <HASH>..<HASH> 100644 --- a/classes/phpDoctor.php +++ b/classes/phpDoctor.php @@ -1300,6 +1300,7 @@ class PHPDoctor if ($name) { switch ($name) { case 'package': // place current element in package + case 'namespace': if (!$this-...
Allowed @namespace tag as well as @package so as to follow PHP nomenclature
peej_phpdoctor
train
php
2acbb5931f4203a88e0bac1307f3c5a2855273c7
diff --git a/ddoc.js b/ddoc.js index <HASH>..<HASH> 100644 --- a/ddoc.js +++ b/ddoc.js @@ -102,7 +102,7 @@ function validate_doc_update(newDoc, oldDoc, userCtx, secObj) { if(newDoc.Body === null || newDoc.Body === undefined) throw {forbidden: 'Invalid .Body: ' + JSON.stringify(newDoc.Body)}; } else { - ...
Protect against missing old docs when replicating
jhs_cqs
train
js
deac36439e22e8da6ecd2407327b14752ae92242
diff --git a/controller/frontend/src/Controller/Frontend/Subscription/Standard.php b/controller/frontend/src/Controller/Frontend/Subscription/Standard.php index <HASH>..<HASH> 100644 --- a/controller/frontend/src/Controller/Frontend/Subscription/Standard.php +++ b/controller/frontend/src/Controller/Frontend/Subscriptio...
Set expiration date for subscription on same day as next execution
aimeos_ai-controller-frontend
train
php
72dcf3c862a5ee89dfbe8e6b28189295e4fa59bb
diff --git a/telemetry/telemetry/page/page_runner.py b/telemetry/telemetry/page/page_runner.py index <HASH>..<HASH> 100644 --- a/telemetry/telemetry/page/page_runner.py +++ b/telemetry/telemetry/page/page_runner.py @@ -305,8 +305,7 @@ def _UpdatePageSetArchivesIfChanged(page_set): if page_set.credentials_path: ...
Revert <I> "In page_runner, only look in the page_set bucket ..." Speculative revert to fix failing test. > In page_runner, only look in the page_set bucket for wpr files. > > R=<EMAIL>, <EMAIL> > BUG=<I> > > Review URL: <URL>
catapult-project_catapult
train
py
c9fd29ebc6f9c56c547710dd2ce1120ff39f53b0
diff --git a/pinax/waitinglist/tests/tests.py b/pinax/waitinglist/tests/tests.py index <HASH>..<HASH> 100644 --- a/pinax/waitinglist/tests/tests.py +++ b/pinax/waitinglist/tests/tests.py @@ -84,6 +84,9 @@ class SurveyFormTests(SurveyTestCase): form = SurveyForm(survey=self.survey) self.assertTrue(len(...
added a test to see what str on question choices does
pinax_pinax-waitinglist
train
py
523c453f947c612942d08fe108b50f94994c6073
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ runtime = set([ 'cachecontrol[filecache]', 'defusedxml', 'lockfile', - 'jinja2', + 'jinja2<=2.11.3', ]) if (sys.version_info < (2, 7)): @@ -66,16 +66,16 @@ develop = set([ ]) docs = ...
Fix error created by jinga2 <I> release (#<I>) * Fix error created by jinga2 <I> release * Update doc build modules to latest versions * Pinned jinja2 to the last version that worked with core
RedHatInsights_insights-core
train
py
ff5dad37161c3fd449dc0e77ab764659d4f65da5
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ with open(path.join(here, 'README.rst'), encoding='utf-8') as f: setup( name='encviewfuse.commons', - version='0.2.2', + version='0.2.3', description='Common encryption utilities for the impleme...
Updated version and travis config.
seiferma_deterministic_encryption_utils
train
py
b76eec73b99484de4fd88d2f3866cc7365328e48
diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -506,7 +506,7 @@ abstract class Kernel implements KernelInterface $this->cont...
[HttpKernel] changed cache warmup to be executed even in the CLI
symfony_symfony
train
php
443e3dabfc14549ffd88c3e32fa2729a3f7952d9
diff --git a/localshop/apps/packages/views.py b/localshop/apps/packages/views.py index <HASH>..<HASH> 100644 --- a/localshop/apps/packages/views.py +++ b/localshop/apps/packages/views.py @@ -1,6 +1,7 @@ import base64 import logging +from django.conf import settings from django.contrib.auth import authenticate fro...
Make sure we mark the <I> response as WWW-Authenticate and the correct realm.
mvantellingen_localshop
train
py
27d64adf79929bea955d2d854f656c77da824d85
diff --git a/src/Serializer/Error/Error.php b/src/Serializer/Error/Error.php index <HASH>..<HASH> 100644 --- a/src/Serializer/Error/Error.php +++ b/src/Serializer/Error/Error.php @@ -8,6 +8,9 @@ use Refinery29\ApiOutput\Serializer\Serializer; class Error implements Serializer { + /** + * @var Input|HasSerial...
Add missing doc block to Error resource property
refinery29_api-output
train
php
60ba1ea53e3ad9f7a678d878c19f4abcee24733b
diff --git a/lib/openscap/xccdf/item.rb b/lib/openscap/xccdf/item.rb index <HASH>..<HASH> 100644 --- a/lib/openscap/xccdf/item.rb +++ b/lib/openscap/xccdf/item.rb @@ -32,6 +32,9 @@ module OpenSCAP end def initialize(t) + if self.class == OpenSCAP::Xccdf::Item + fail OpenSCAP::OpenSCAPErr...
Make sure Item is Abstract Base Class.
OpenSCAP_ruby-openscap
train
rb
b7ea0d595393050fc4078471ca7e9ca63787db57
diff --git a/instaloader/instaloader.py b/instaloader/instaloader.py index <HASH>..<HASH> 100644 --- a/instaloader/instaloader.py +++ b/instaloader/instaloader.py @@ -823,7 +823,7 @@ class Instaloader: self.download_profilepic(profile) # Catch some errors - if ...
download_profiles: Check errors only if required Fixes #<I>, where with `--profile-pic-only` an error message is printed (without any further implications) when downloading profile pictures of private profiles without being logged in.
instaloader_instaloader
train
py
5e5d31fdc1480fdd85e037666e48075e1048f02c
diff --git a/library/BrowserDetector/Helper/InputMapper.php b/library/BrowserDetector/Helper/InputMapper.php index <HASH>..<HASH> 100644 --- a/library/BrowserDetector/Helper/InputMapper.php +++ b/library/BrowserDetector/Helper/InputMapper.php @@ -610,6 +610,9 @@ class InputMapper case 'sensationxe beats z7...
added device mapper for HTC S<I>B
mimmi20_BrowserDetector
train
php
87b80f16caccf3a96b8008063eaf91d9d27e223b
diff --git a/server/etcdserver/apply/uber_applier.go b/server/etcdserver/apply/uber_applier.go index <HASH>..<HASH> 100644 --- a/server/etcdserver/apply/uber_applier.go +++ b/server/etcdserver/apply/uber_applier.go @@ -116,7 +116,8 @@ func (a *uberApplier) Apply(r *pb.InternalRaftRequest, shouldApplyV3 membership. re...
Fixing missing comment on the dispatch() function.
etcd-io_etcd
train
go
8041c286386023284f417c2e3e75f62f35aa0d5b
diff --git a/gflags/exceptions.py b/gflags/exceptions.py index <HASH>..<HASH> 100644 --- a/gflags/exceptions.py +++ b/gflags/exceptions.py @@ -51,13 +51,12 @@ class CantOpenFlagFileError(FlagsError): """Raised if flagfile fails to open: doesn't exist, wrong permissions, etc.""" -class DuplicateFlagCannotPropagat...
Change DuplicateFlagCannotPropagateNoneToSwig's super class to FlagsError. Technically it's not a DuplicateFlag error, this also allows us removing the DuplicateFlag class.
google_python-gflags
train
py
8aabea52e52fe71a5aa7353f56db2a177719006f
diff --git a/packages/node_modules/@webex/internal-plugin-flag/src/index.js b/packages/node_modules/@webex/internal-plugin-flag/src/index.js index <HASH>..<HASH> 100644 --- a/packages/node_modules/@webex/internal-plugin-flag/src/index.js +++ b/packages/node_modules/@webex/internal-plugin-flag/src/index.js @@ -5,7 +5,7 ...
refactor(internal-plugin-flag): migrate to device Migrate from internal-plugin-wdm to internal-plugin-device.
webex_spark-js-sdk
train
js
e473b544f07636c963158b031e141ac8f4949176
diff --git a/typedload/datadumper.py b/typedload/datadumper.py index <HASH>..<HASH> 100644 --- a/typedload/datadumper.py +++ b/typedload/datadumper.py @@ -22,6 +22,8 @@ from enum import Enum from typing import * +from .exceptions import TypedloadValueError + __all__ = [ 'Dumper', @@ -117,7 +119,7 @@ class D...
Raise TypedloadException in the dumper as well
ltworf_typedload
train
py
af66e9d7f3eb22a8a5421073d332de941bd58204
diff --git a/notemplate-minify.js b/notemplate-minify.js index <HASH>..<HASH> 100644 --- a/notemplate-minify.js +++ b/notemplate-minify.js @@ -122,7 +122,7 @@ function fixRelativePaths(src, dst, text) { var text = text.replace(/(url\(["'])([^"']*)(["']\))|(@import\s+(?:url\()?["'])([^"']*)(["'])(?:\))?/gm, function(m...
Extend regexp for non-relative url
kapouer_notemplate-minify
train
js
2d04b3f1a57916b9f92589274b74928c8442fcbe
diff --git a/README.rdoc b/README.rdoc index <HASH>..<HASH> 100644 --- a/README.rdoc +++ b/README.rdoc @@ -48,8 +48,6 @@ It works like this: # ... check for individual roles >> u.has_role? :author => false - >> u.is_a? :admin # has_role? is aliased as is_a? - => true # see the internal bitmask represen...
remove is_a? and is_an? aliases for has_role? these were poor names and caused conflicts
martinrehfeld_role_model
train
rdoc,rb,rb
bea4dc5844148053e09f347e59a0db2eb53ba6fd
diff --git a/src/HasherServiceProvider.php b/src/HasherServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/HasherServiceProvider.php +++ b/src/HasherServiceProvider.php @@ -15,13 +15,6 @@ class HasherServiceProvider extends ServiceProvider | ------------------------------------------------------------------...
Updating HasherServiceProvider
ARCANEDEV_Hasher
train
php
b020138b6babec10e7562c3cd7bff914ea275bcd
diff --git a/staff/models.py b/staff/models.py index <HASH>..<HASH> 100644 --- a/staff/models.py +++ b/staff/models.py @@ -16,7 +16,7 @@ class StaffMemberManager(models.Manager): class StaffMember(models.Model): - user = models.ForeignKey(User) + user = models.ForeignKey(User, limit_choices_to = {'is_staff':...
Filtered users that could be set and double check the slug
callowayproject_django-staff
train
py
64a42ca6088b9b25c266f2380330a21208358636
diff --git a/dashboard/containers/dispatcher/fontprojects.py b/dashboard/containers/dispatcher/fontprojects.py index <HASH>..<HASH> 100755 --- a/dashboard/containers/dispatcher/fontprojects.py +++ b/dashboard/containers/dispatcher/fontprojects.py @@ -948,6 +948,15 @@ git_repos = [ ] if __name__ == '__main__': + pr...
exporting the current list as a CSV file
googlefonts_fontbakery
train
py
c62dc87994b7e234c3cd5feb923178bce256cd71
diff --git a/app/controllers/shopify_app/callback_controller.rb b/app/controllers/shopify_app/callback_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/shopify_app/callback_controller.rb +++ b/app/controllers/shopify_app/callback_controller.rb @@ -33,7 +33,7 @@ module ShopifyApp def jwt_callback ...
Use set_shopify_session for JWT callback Technically it does more than we need, but we protect against the other paths elsewhere, and this simplies the logic overall.
Shopify_shopify_app
train
rb
9f44400d2d559035e88d0035a9a5eff6b12d1371
diff --git a/src/jasmine.junit_reporter.js b/src/jasmine.junit_reporter.js index <HASH>..<HASH> 100644 --- a/src/jasmine.junit_reporter.js +++ b/src/jasmine.junit_reporter.js @@ -18,6 +18,10 @@ + pad(d.getMinutes()) + ':' + pad(d.getSeconds()); } + + function trim(str) { + r...
added trim func to reporter for cross browser support
larrymyers_jasmine-reporters
train
js
afef5ce373794fa59756f64db45ca86b7cf063e9
diff --git a/panic.go b/panic.go index <HASH>..<HASH> 100644 --- a/panic.go +++ b/panic.go @@ -19,6 +19,10 @@ A crash log has been placed at "crash.log" relative to your current working directory. It would be immensely helpful if you could please report the crash with Terraform[1] so that we can fix this. +When rep...
panic: Instruct the user to include terraform's version for bug reports. This way, bug-fixers are more likely to know which version of terraform is actually broken.
hashicorp_terraform
train
go
41ca730e4bb1ad57dc9dc6bd8a37686fc1713be7
diff --git a/lib/ljm_functions.js b/lib/ljm_functions.js index <HASH>..<HASH> 100644 --- a/lib/ljm_functions.js +++ b/lib/ljm_functions.js @@ -118,7 +118,7 @@ LJM_FUNCTIONS.LJM_ListAllExtended = { ] }; -LJM_FUNCTIONS.ljM_OpenAll = { +LJM_FUNCTIONS.LJM_OpenAll = { 'ret': [{'LJM_ERROR_RETURN': 'int'}], 'args': ...
Fixed a typo in a function name.
chrisJohn404_ljm-ffi
train
js
5ebfa41d0feebcc07bfd6ce102649bd1d47a8d53
diff --git a/test-complete/src/test/java/com/marklogic/javaclient/TestBug19443.java b/test-complete/src/test/java/com/marklogic/javaclient/TestBug19443.java index <HASH>..<HASH> 100644 --- a/test-complete/src/test/java/com/marklogic/javaclient/TestBug19443.java +++ b/test-complete/src/test/java/com/marklogic/javaclient...
Fixed string passed to XMLEquals as "testBug<I>"
marklogic_java-client-api
train
java
d0138c19340cfaa5a6b9602044b8e5e9e5176f49
diff --git a/lib/grammar.js b/lib/grammar.js index <HASH>..<HASH> 100644 --- a/lib/grammar.js +++ b/lib/grammar.js @@ -339,14 +339,14 @@ var grammar = module.exports = { // RFC version 26 for SCTP over DTLS // https://tools.ietf.org/html/draft-ietf-mmusic-sctp-sdp-26#section-5 name:'sctpPort', - ...
simplify regex to match just digits
clux_sdp-transform
train
js
141b97fdfe1548e4b239f825f9d94d4babfb7ff9
diff --git a/lib/hstore_translate/version.rb b/lib/hstore_translate/version.rb index <HASH>..<HASH> 100644 --- a/lib/hstore_translate/version.rb +++ b/lib/hstore_translate/version.rb @@ -1,3 +1,3 @@ module HstoreTranslate - VERSION = "0.0.6" + VERSION = "0.0.7" end
Version bump for Rails <I>.rc1
cfabianski_json_translate
train
rb
c66991d961469f70b9649813e8bf5eb2f231fead
diff --git a/src/platforms/web/runtime/transition-util.js b/src/platforms/web/runtime/transition-util.js index <HASH>..<HASH> 100644 --- a/src/platforms/web/runtime/transition-util.js +++ b/src/platforms/web/runtime/transition-util.js @@ -27,7 +27,8 @@ if (hasTransition) { } } -const raf = (inBrowser && window.re...
Fix hot reload in IE in strict mode (#<I>) Following a fix for v1 at #<I> for issue #<I>
IOriens_wxml-transpiler
train
js
f9a22ec1712b7a14c6e53e26dfd914e6e634a6aa
diff --git a/upload/admin/language/english/sale/recurring.php b/upload/admin/language/english/sale/recurring.php index <HASH>..<HASH> 100644 --- a/upload/admin/language/english/sale/recurring.php +++ b/upload/admin/language/english/sale/recurring.php @@ -3,7 +3,7 @@ $_['heading_title'] = 'Recurr...
Missing ";" at recurring language file
opencart_opencart
train
php
4d3a3627de4e846963a829fcba479d3db666de32
diff --git a/src/EventDispatcher.php b/src/EventDispatcher.php index <HASH>..<HASH> 100644 --- a/src/EventDispatcher.php +++ b/src/EventDispatcher.php @@ -112,18 +112,16 @@ class EventDispatcher implements Dispatcher, LoggerAwareInterface $subscriber = $subscription->getSubscriber(); if (! $hasMatch...
CS fix, build should still fail but...
event-bus_event-dispatcher
train
php
0a0460b45ac67ddf2425a9efbc28bfcab4a5483f
diff --git a/packages/gluestick/src/commands/start-server/runWithPM2.js b/packages/gluestick/src/commands/start-server/runWithPM2.js index <HASH>..<HASH> 100644 --- a/packages/gluestick/src/commands/start-server/runWithPM2.js +++ b/packages/gluestick/src/commands/start-server/runWithPM2.js @@ -80,16 +80,13 @@ const sta...
make start in production exit on ctrl+c
TrueCar_gluestick
train
js
041e0b498f90b6bf9134e2160a3395b0d196759e
diff --git a/Kwf/Assets/Dependency/File/Scss.php b/Kwf/Assets/Dependency/File/Scss.php index <HASH>..<HASH> 100644 --- a/Kwf/Assets/Dependency/File/Scss.php +++ b/Kwf/Assets/Dependency/File/Scss.php @@ -78,6 +78,7 @@ class Kwf_Assets_Dependency_File_Scss extends Kwf_Assets_Dependency_File_Css $wrapperContents ...
Make wrapperFile world writeable Fixes build when using ccw where scss is rebuilt by apache user and had <I> permissions so build (on cli) failed as it has no permissions to access the temp file. File was accessed in Kwf/Assets/ContentsCache.php::<I>
koala-framework_koala-framework
train
php
be8a2212d88dac5e16ee69d81918eaed31b06ae4
diff --git a/echo_test.go b/echo_test.go index <HASH>..<HASH> 100644 --- a/echo_test.go +++ b/echo_test.go @@ -1,6 +1,7 @@ package echo import ( + "bufio" "bytes" "fmt" "net/http" @@ -41,6 +42,20 @@ func TestEcho(t *testing.T) { assert.Equal(t, http.StatusInternalServerError, rec.Code) } +func TestLogger...
adding tests for setting log output and prefix to make coveralls happy
webx-top_echo
train
go
82fc80a26dff892e27689f1f1a5eafb5b1c8065c
diff --git a/pyaavso/formats/visual.py b/pyaavso/formats/visual.py index <HASH>..<HASH> 100644 --- a/pyaavso/formats/visual.py +++ b/pyaavso/formats/visual.py @@ -93,12 +93,12 @@ class VisualFormatReader(object): A short example: - >>> with open('data.txt', 'rb') as fp: - ... reader = VisualFormatRea...
Fixed indentation of the reader example.
zsiciarz_pyaavso
train
py
cb189173222b236f71d0cfafb0d10f3a0293ed34
diff --git a/wro4j-core/src/main/java/ro/isdc/wro/model/resource/processor/impl/css/AbstractCssUrlRewritingProcessor.java b/wro4j-core/src/main/java/ro/isdc/wro/model/resource/processor/impl/css/AbstractCssUrlRewritingProcessor.java index <HASH>..<HASH> 100644 --- a/wro4j-core/src/main/java/ro/isdc/wro/model/resource/p...
reduce visibility of the PATTERN constant
wro4j_wro4j
train
java
52ab26a6bb0daa80af29c58e9784fb7e1d6f79a5
diff --git a/src/values/PropertyDescriptor.js b/src/values/PropertyDescriptor.js index <HASH>..<HASH> 100644 --- a/src/values/PropertyDescriptor.js +++ b/src/values/PropertyDescriptor.js @@ -40,7 +40,7 @@ class PropertyDescriptor { console.log("Wrote to const?!"); return this.value; } - return new Compl...
Don't new a factory function.
codecombat_esper.js
train
js
456f99fc715e1f877944e28acb1656c9a4b19248
diff --git a/test/dummy/config/application.rb b/test/dummy/config/application.rb index <HASH>..<HASH> 100644 --- a/test/dummy/config/application.rb +++ b/test/dummy/config/application.rb @@ -2,7 +2,7 @@ require File.expand_path('../boot', __FILE__) require "action_controller/railtie" require "action_mailer/railtie"...
Skip requiring active_resource in Rails 4
svenfuchs_routing-filter
train
rb
bff952515d8676b471a59353a2bf6a4446d1ee1b
diff --git a/examples/xrmp-three.js b/examples/xrmp-three.js index <HASH>..<HASH> 100644 --- a/examples/xrmp-three.js +++ b/examples/xrmp-three.js @@ -205,8 +205,8 @@ class XRMultiplayerTHREE { return localPlayerMesh; } createObjectMesh(id, state) { - const object = this.xrmp.addObject(id, state); - ob...
Small xrmp three.js bindings create object mesh debugging
exokitxr_exokit
train
js
4a6fd8348b545e34049c4a77ca7abf4a6db116bf
diff --git a/src/frontend/org/voltdb/HealthMonitor.java b/src/frontend/org/voltdb/HealthMonitor.java index <HASH>..<HASH> 100644 --- a/src/frontend/org/voltdb/HealthMonitor.java +++ b/src/frontend/org/voltdb/HealthMonitor.java @@ -257,6 +257,7 @@ public class HealthMonitor implements Runnable, Promotable if (m...
Add more information to the ERROR message when resource limit is exceeded (#<I>)
VoltDB_voltdb
train
java
ab32d1b9e1371d0ce97086d6a194913bff45a41a
diff --git a/src/ciphers/asymmetric/jsbn2.js b/src/ciphers/asymmetric/jsbn2.js index <HASH>..<HASH> 100644 --- a/src/ciphers/asymmetric/jsbn2.js +++ b/src/ciphers/asymmetric/jsbn2.js @@ -643,9 +643,15 @@ function bnpMillerRabin(t) { t = (t+1)>>1; if(t > lowprimes.length) t = lowprimes.length; var a = nbi(); + ...
Avoid repeating bases in MillerRabin.
openpgpjs_openpgpjs
train
js
96fe4845888652de4405459da46655ac87b17ceb
diff --git a/js/radio-buttons.js b/js/radio-buttons.js index <HASH>..<HASH> 100644 --- a/js/radio-buttons.js +++ b/js/radio-buttons.js @@ -12,6 +12,7 @@ class UiRadioButtons extends UiControl { */ constructor() { super(RadioButtons.create()); + this.itemsCount = 0; } /** @@ -25,6 +26,9 @@ class UiRadioBu...
dont set property selected if it's out of bounds
parro-it_libui-napi
train
js
4c1bdb46a8aeba6a6fc9803614b074dbca2ec050
diff --git a/backbone.js b/backbone.js index <HASH>..<HASH> 100644 --- a/backbone.js +++ b/backbone.js @@ -941,20 +941,24 @@ // it difficult to read the body of `PUT` requests. Backbone.sync = function(method, model, options) { var type = methodMap[method]; - var modelJSON = (method === 'create' || method...
Issue #<I>. Make options.data possible for creates and updates with the default sync.
jashkenas_backbone
train
js
bac8373699af3699bd8e96f013a78ab3dcd55d5c
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + from setuptools import setup, find_packages package_name = "seqrepo"
setup.py: set encoding for embedded unicode on <I>
biocommons_biocommons.seqrepo
train
py
5bca8e7210bccd1a2428d068fb551f5edea2da5f
diff --git a/src/wofRecordStream.js b/src/wofRecordStream.js index <HASH>..<HASH> 100644 --- a/src/wofRecordStream.js +++ b/src/wofRecordStream.js @@ -1,5 +1,4 @@ var event_stream = require('event-stream'); -var _ = require('lodash'); module.exports = {}; @@ -7,13 +6,11 @@ module.exports.createWofRecordsStream = ...
refactored to be less code
pelias_whosonfirst
train
js
f3b9eba048f0e59ead4ead4bec890ca9c2752041
diff --git a/tests/test_gitlab.py b/tests/test_gitlab.py index <HASH>..<HASH> 100644 --- a/tests/test_gitlab.py +++ b/tests/test_gitlab.py @@ -86,15 +86,15 @@ class TestGitlabIssue(ServiceTest): 'project': self.arbitrary_extra['project'], 'priority': self.service.default_priority, ...
Fix the broken tests - some string was bytes instead of unicode - microseconds needed to be ignored in the test as well
ralphbean_bugwarrior
train
py
bc05697058e24d3b884ff75c4dea42ba1027b57b
diff --git a/src/chisel/__init__.py b/src/chisel/__init__.py index <HASH>..<HASH> 100644 --- a/src/chisel/__init__.py +++ b/src/chisel/__init__.py @@ -6,7 +6,7 @@ Chisel is a light-weight Python WSGI application framework with tools for buildi well-tested, schema-validated JSON web APIs. """ -__version__ = '0.9.107...
chisel <I>
craigahobbs_chisel
train
py
cc18e3af4111874844acc63ce724ed5e92bc94e8
diff --git a/src/factory.js b/src/factory.js index <HASH>..<HASH> 100644 --- a/src/factory.js +++ b/src/factory.js @@ -754,6 +754,7 @@ angular.module("datetime").factory("datetime", function($locale){ throw err; } setDate(date, node.value, node.token); + updateText(parser.nodes, date, parser.timezone...
It should update text after parsing node value
eight04_angular-datetime
train
js
145d0635cdaed13ab320c4e4ca14424ab87ebef1
diff --git a/src/main/java/gldapo/entry/GldapoEntry.java b/src/main/java/gldapo/entry/GldapoEntry.java index <HASH>..<HASH> 100644 --- a/src/main/java/gldapo/entry/GldapoEntry.java +++ b/src/main/java/gldapo/entry/GldapoEntry.java @@ -247,6 +247,6 @@ public abstract class GldapoEntry { * * @throws GldapoEx...
• Documentation for authenticate(String) method . (previous commit for this left of method body)
ldaley_Gldapo
train
java
d8d46b2130921d1f130f63ac1e887b4bb3dcb68b
diff --git a/src/canvas/view/CanvasView.js b/src/canvas/view/CanvasView.js index <HASH>..<HASH> 100644 --- a/src/canvas/view/CanvasView.js +++ b/src/canvas/view/CanvasView.js @@ -510,12 +510,14 @@ export default Backbone.View.extend({ const toolsWrp = $el.find('[data-tools]'); this.toolsWrapper = toolsWrp.get...
Move sorter placeholder in a new container
artf_grapesjs
train
js
119ba2e728c2b5a25371c89b7bfcda27d9ab2364
diff --git a/luigi/contrib/hdfs/__init__.py b/luigi/contrib/hdfs/__init__.py index <HASH>..<HASH> 100644 --- a/luigi/contrib/hdfs/__init__.py +++ b/luigi/contrib/hdfs/__init__.py @@ -19,6 +19,13 @@ Provides access to HDFS using the :py:class:`HdfsTarget`, a subclass of :py:class:`~luigi.target.Target`. You can config...
hdfs.py refactoring: Add heads-up for changing API
spotify_luigi
train
py
0c1dd071a5d3d4b137efbe4fbdd7f841eb073927
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages import os -version = '1.0' +version = '1.1' setup(name='rhaptos.cnxmlutils', version=version, @@ -24,7 +24,7 @@ setup(name='rhaptos.cnxmlutils', zip...
remove explicit lxml dependency to avoid building it on production
openstax_rhaptos.cnxmlutils
train
py
a68446d053d8561085ec7e1f4af69b79fa647b2d
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,6 @@ setup( name="git-up", version="1.4.4", packages=find_packages(), - scripts=['PyGitUp/gitup.py'], install_requires=['GitPython>2.0.0', 'colorama>=0.3.7', 'termcolo...
Remove scripts from setup.py There is already a console_scripts entrypoint which results in a script. When installing to the system this results in /usr/bin/gitup.py and /usr/bin/git-up. Previously it was needed but <I>cc6a<I>f4fc<I>fd<I>a<I>da5db<I>a<I>d9a3c3 removed this requirement by using the full path.
msiemens_PyGitUp
train
py
9ec3194c5e8c65b0071e0e77d077667cf841e005
diff --git a/classes/VideoDownload.php b/classes/VideoDownload.php index <HASH>..<HASH> 100644 --- a/classes/VideoDownload.php +++ b/classes/VideoDownload.php @@ -99,7 +99,7 @@ class VideoDownload $process = $this->getProcess($arguments); //This is needed by the openload extractor because it runs Ph...
fix: Don't set QT_QPA_PLATFORM It looks like it not needed with the static build and it causes troubles on Windows
Rudloff_alltube
train
php
bd99d2f5860ad57c00ab42a168cd149d32904946
diff --git a/example/src/components/atoms/Snippet.js b/example/src/components/atoms/Snippet.js index <HASH>..<HASH> 100644 --- a/example/src/components/atoms/Snippet.js +++ b/example/src/components/atoms/Snippet.js @@ -36,10 +36,13 @@ class Snippet extends PureComponent { ...props } = this.props + cons...
Parse snippets on re-render.
n6g7_redux-saga-firebase
train
js
0322b852b1365bb80eee533755b78975192a575b
diff --git a/lib/traject/version.rb b/lib/traject/version.rb index <HASH>..<HASH> 100644 --- a/lib/traject/version.rb +++ b/lib/traject/version.rb @@ -1,3 +1,3 @@ module Traject - VERSION = "3.0.0" + VERSION = "3.1.0.rc1" end
make version <I>.rc1
traject_traject
train
rb
5a82bb0b48956ee5ef9991191f9d0dd96bbb3371
diff --git a/visidata/loaders/tsv.py b/visidata/loaders/tsv.py index <HASH>..<HASH> 100644 --- a/visidata/loaders/tsv.py +++ b/visidata/loaders/tsv.py @@ -70,6 +70,10 @@ class TsvSheet(Sheet): self._rowtype = namedlist(self._rowtype.__name__, list(self._rowtype._fields) + ['_' for c in newcols]...
[tsv] extend short rows with editable Nones
saulpw_visidata
train
py
1c40a73cd50cec8f210ac905b6d42f8725bd8679
diff --git a/lib/hyrax/specs/shared_specs/factories/strategies/json_strategy.rb b/lib/hyrax/specs/shared_specs/factories/strategies/json_strategy.rb index <HASH>..<HASH> 100644 --- a/lib/hyrax/specs/shared_specs/factories/strategies/json_strategy.rb +++ b/lib/hyrax/specs/shared_specs/factories/strategies/json_strategy....
support newer versions of FactoryBot see: <URL>
samvera_hyrax
train
rb,rb